@charset "utf-8";
/* CSS Document */
/*----------------------------------------
PC用レイアウト（768px以上のスクリーン）
----------------------------------------*/
/*----------------------------------------
共通設定（PC）
----------------------------------------*/
html {
  scroll-behavior: smooth;
}
/*body全体の初期スタイル設定*/
body {
  font-size: 62.5%; /*emの計算がしやすくなる為の定番設定*/
  width: 100%;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #000000;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}
.header, .container {
  font-size: 1.6em;
}
img {
  width: 100%;
  vertical-align: bottom;
}
/*リンク文字の設定*/
a {
  text-decoration: underline;
  color: #000000;
  transition: .3s;
}
a:hover, a:active {
  color: #666666;
}
/*見出しタグ設定（PC）*/
h2 {
  margin: 0rem 0rem 1.5rem;
  font-size: 2.2rem;
  font-weight: bold;
	text-align: center;
}
h3 {
  margin: 0.5rem 0em;
  padding: 0.3rem 0.6rem;
  font-size: 1.5rem;
  font-weight: bold;
  border-left: 8px solid #fac839;
  border-bottom: 1px dotted #fac839;
}

/*----------------------------------------
全体レイアウト（PC）
----------------------------------------*/
/*全体エリア（全体背景を設定するにはここ）*/
.container, .header, .section, .footer {
  width: 100%;
  margin: 0;
  overflow: hidden;
}
/*カラム全体の幅設定*/
.header_inr, .top_image_inr, .section_inr, .contents, .footer_inr {
  max-width: 1000px;
  margin: 0 auto;
}
.contents {
  padding: 0px 80px 0px;
}
/*----------------------------------------
フェードイン設定
----------------------------------------*/
/*フェードイン*/
.fadein {
  opacity: 0;
  transform: translateY(0px);
  transition: all 1s;
}
/*左からフェードイン*/
.fadeinleft {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 1s;
}
/*右からフェードイン*/
.fadeinright {
  opacity: 0;
  transform: translateX(40px);
  transition: all 1s;
}
/*----------------------------------------
上部固定ヘッダー設定
----------------------------------------*/
/*上部固定ヘッダー全体*/
.header {
  background-color: rgba(255, 255, 255, 1);
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 5000;
	border-bottom: 1px solid #ccc;
}
/*ヘッダー内部をカラム幅にする*/
.header_inr {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/*ヘッダーロゴ*/
.header_logo {
  width: 16%;
  padding-left: 1em;
	padding-top: 0.5em;
	padding-bottom: 0.3em;
}
/*ヘッダーCTAの設定*/
.header_cta {
  width: 80%;
  margin: 0 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header_txt {
	width: 32%;
	padding-top: 0.5em;
	padding-right: 0.5em;
}
.header_tel {
  width: 34%;
  padding-right: 1em;	
}
.header_mail {
  width: 34%;
	padding-right: 1em;
}
.header_tel img, .header_mail img {
  -webkit-filter:drop-shadow(5px 5px 0px rgba(204, 204, 204, 1));
  -moz-filter:drop-shadow(5px 5px 0px rgba(204, 204, 204, 1));
  -ms-filter:drop-shadow(5px 5px 0px rgba(204, 204, 204, 1));
  filter:drop-shadow(5px 5px 0px rgba(204, 204, 204, 1));
}
.header_tel img:hover, .header_mail img:hover {
  -webkit-filter:drop-shadow(0px 0px 0px rgba(204, 204, 204, 0));
  -moz-filter:drop-shadow(0px 0px 0px rgba(204, 204, 204, 0));
  -ms-filter:drop-shadow(0px 0px 0px rgba(204, 204, 204, 0));
  filter:drop-shadow(0px 0px 0px rgba(204, 204, 204, 0));
}

/*----------------------------------------
ファーストビュー設定）
----------------------------------------*/
.top_image {
  background-image: url("../images/fv_bg_pc.webp");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
/*----------------------------------------
セクションの設定
----------------------------------------*/
/*----------------------------------
セクション（共通）
------------------------------------*/

/*スライダー設定*/
.slider1 {
  display: flex;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  overflow: hidden;
	padding: 0rem 0;
}
.slider1 ul{
	display:flex;
	padding: 0;
	margin:0;
	border-top: 5px solid #ffffff;
	border-bottom: 5px solid #ffffff;
}
.slider1 li{
	width:250px;
	list-style: none;
	margin: 0 0px;
}
.slider1 ul:first-child {
  animation: slide1 80s -40s linear infinite;
}

.slider1 ul:last-child {
  animation: slide2 80s linear infinite;
}
@keyframes slide1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes slide2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/*----------------------------------
セクション（CTA）
------------------------------------*/
.sec_cta {
 background-color: #00a0e9;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 304 304' width='304' height='304'%3E%3Cpath fill='%23ffffff' fill-opacity='0.2' d='M44.1 224a5 5 0 1 1 0 2H0v-2h44.1zm160 48a5 5 0 1 1 0 2H82v-2h122.1zm57.8-46a5 5 0 1 1 0-2H304v2h-42.1zm0 16a5 5 0 1 1 0-2H304v2h-42.1zm6.2-114a5 5 0 1 1 0 2h-86.2a5 5 0 1 1 0-2h86.2zm-256-48a5 5 0 1 1 0 2H0v-2h12.1zm185.8 34a5 5 0 1 1 0-2h86.2a5 5 0 1 1 0 2h-86.2zM258 12.1a5 5 0 1 1-2 0V0h2v12.1zm-64 208a5 5 0 1 1-2 0v-54.2a5 5 0 1 1 2 0v54.2zm48-198.2V80h62v2h-64V21.9a5 5 0 1 1 2 0zm16 16V64h46v2h-48V37.9a5 5 0 1 1 2 0zm-128 96V208h16v12.1a5 5 0 1 1-2 0V210h-16v-76.1a5 5 0 1 1 2 0zm-5.9-21.9a5 5 0 1 1 0 2H114v48H85.9a5 5 0 1 1 0-2H112v-48h12.1zm-6.2 130a5 5 0 1 1 0-2H176v-74.1a5 5 0 1 1 2 0V242h-60.1zm-16-64a5 5 0 1 1 0-2H114v48h10.1a5 5 0 1 1 0 2H112v-48h-10.1zM66 284.1a5 5 0 1 1-2 0V274H50v30h-2v-32h18v12.1zM236.1 176a5 5 0 1 1 0 2H226v94h48v32h-2v-30h-48v-98h12.1zm25.8-30a5 5 0 1 1 0-2H274v44.1a5 5 0 1 1-2 0V146h-10.1zm-64 96a5 5 0 1 1 0-2H208v-80h16v-14h-42.1a5 5 0 1 1 0-2H226v18h-16v80h-12.1zm86.2-210a5 5 0 1 1 0 2H272V0h2v32h10.1zM98 101.9V146H53.9a5 5 0 1 1 0-2H96v-42.1a5 5 0 1 1 2 0zM53.9 34a5 5 0 1 1 0-2H80V0h2v34H53.9zm60.1 3.9V66H82v64H69.9a5 5 0 1 1 0-2H80V64h32V37.9a5 5 0 1 1 2 0zM101.9 82a5 5 0 1 1 0-2H128V37.9a5 5 0 1 1 2 0V82h-28.1zm16-64a5 5 0 1 1 0-2H146v44.1a5 5 0 1 1-2 0V18h-26.1zm102.2 270a5 5 0 1 1 0 2H98v14h-2v-16h124.1zM242 149.9V160h16v34h-16v62h48v48h-2v-46h-48v-66h16v-30h-16v-12.1a5 5 0 1 1 2 0zM53.9 18a5 5 0 1 1 0-2H64V2H48V0h18v18H53.9zm112 32a5 5 0 1 1 0-2H192V0h50v2h-48v48h-28.1zm-48-48a5 5 0 0 1-9.8-2h2.07a3 3 0 1 0 5.66 0H178v34h-18V21.9a5 5 0 1 1 2 0V32h14V2h-58.1zm0 96a5 5 0 1 1 0-2H137l32-32h39V21.9a5 5 0 1 1 2 0V66h-40.17l-32 32H117.9zm28.1 90.1a5 5 0 1 1-2 0v-76.51L175.59 80H224V21.9a5 5 0 1 1 2 0V82h-49.59L146 112.41v75.69zm16 32a5 5 0 1 1-2 0v-99.51L184.59 96H300.1a5 5 0 0 1 3.9-3.9v2.07a3 3 0 0 0 0 5.66v2.07a5 5 0 0 1-3.9-3.9H185.41L162 121.41v98.69zm-144-64a5 5 0 1 1-2 0v-3.51l48-48V48h32V0h2v50H66v55.41l-48 48v2.69zM50 53.9v43.51l-48 48V208h26.1a5 5 0 1 1 0 2H0v-65.41l48-48V53.9a5 5 0 1 1 2 0zm-16 16V89.41l-34 34v-2.82l32-32V69.9a5 5 0 1 1 2 0zM12.1 32a5 5 0 1 1 0 2H9.41L0 43.41V40.6L8.59 32h3.51zm265.8 18a5 5 0 1 1 0-2h18.69l7.41-7.41v2.82L297.41 50H277.9zm-16 160a5 5 0 1 1 0-2H288v-71.41l16-16v2.82l-14 14V210h-28.1zm-208 32a5 5 0 1 1 0-2H64v-22.59L40.59 194H21.9a5 5 0 1 1 0-2H41.41L66 216.59V242H53.9zm150.2 14a5 5 0 1 1 0 2H96v-56.6L56.6 162H37.9a5 5 0 1 1 0-2h19.5L98 200.6V256h106.1zm-150.2 2a5 5 0 1 1 0-2H80v-46.59L48.59 178H21.9a5 5 0 1 1 0-2H49.41L82 208.59V258H53.9zM34 39.8v1.61L9.41 66H0v-2h8.59L32 40.59V0h2v39.8zM2 300.1a5 5 0 0 1 3.9 3.9H3.83A3 3 0 0 0 0 302.17V256h18v48h-2v-46H2v42.1zM34 241v63h-2v-62H0v-2h34v1zM17 18H0v-2h16V0h2v18h-1zm273-2h14v2h-16V0h2v16zm-32 273v15h-2v-14h-14v14h-2v-16h18v1zM0 92.1A5.02 5.02 0 0 1 6 97a5 5 0 0 1-6 4.9v-2.07a3 3 0 1 0 0-5.66V92.1zM80 272h2v32h-2v-32zm37.9 32h-2.07a3 3 0 0 0-5.66 0h-2.07a5 5 0 0 1 9.8 0zM5.9 0A5.02 5.02 0 0 1 0 5.9V3.83A3 3 0 0 0 3.83 0H5.9zm294.2 0h2.07A3 3 0 0 0 304 3.83V5.9a5 5 0 0 1-3.9-5.9zm3.9 300.1v2.07a3 3 0 0 0-1.83 1.83h-2.07a5 5 0 0 1 3.9-3.9zM97 100a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-48 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 96a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-144a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-96 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm96 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-32 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM49 36a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-32 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM33 68a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 240a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm80-176a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm112 176a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM17 180a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM17 84a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6z'%3E%3C/path%3E%3C/svg%3E");
  padding-top: 3em;
  padding-bottom: 3em;
}

.box_cta {
  background-color: #FFFFFF;
	border: 10px solid #007dc9;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.box_ctaInr {
	padding: 1.5em 2.5em;
}
.sub_cta {
	text-align: center;
	background-color: #007dc9;
	padding: 0em 0.5em 0.5em;
}
.sub_cta img {
	width: 70%;
}
.box_btn {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1em;
	
}
.btn_tel {
  width: 48%;
}


.btn_mail {
  width: 48%;
}
.btn_tel img, .btn_mail img {
  -webkit-filter:drop-shadow(5px 5px 0px rgba(204, 204, 204, 1));
  -moz-filter:drop-shadow(5px 5px 0px rgba(204, 204, 204, 1));
  -ms-filter:drop-shadow(5px 5px 0px rgba(204, 204, 204, 1));
  filter:drop-shadow(5px 5px 0px rgba(204, 204, 204, 1));
}
.btn_tel img:hover, .btn_mail img:hover {
  -webkit-filter:drop-shadow(0px 0px 0px rgba(204, 204, 204, 0));
  -moz-filter:drop-shadow(0px 0px 0px rgba(204, 204, 204, 0));
  -ms-filter:drop-shadow(0px 0px 0px rgba(204, 204, 204, 0));
  filter:drop-shadow(0px 0px 0px rgba(204, 204, 204, 0));
}

.cta_remark li {
	text-indent: -1em;
	padding-left: 1em;
}
.cta_remark li:before {
	content: '※';
}

/*----------------------------------------
セクション（悩み）
----------------------------------------*/
.sec_nayami {
  background-image: url("../images/bg_nayami_pc.webp");
	background-repeat: no-repeat;
	background-position: center center;
}
.secInr_nayami {
  padding-top: 4em;
  padding-bottom: 0em;
}
/*----------------------------------------
セクション（サービス）
----------------------------------------*/
.sec_service {
 background-color: #fff574;
background-image: url("../images/bg_service_town.webp"),
	url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.47' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
	background-repeat: no-repeat, repeat;
	background-position: center bottom 1em, center;
}


.secInr_service {
  padding-top: 4em;
  padding-bottom: 9em;
}
.title_service {
	position: relative;
	z-index: 1;
	margin-bottom: 1em;
}
.title_service:before {
	position: absolute;
	display: inline-block;
	content: '';
	background-image: url("../images/bg_service_women_pc.webp");
	background-repeat: no-repeat;
	width: 334px;
	height: 1107px;
	top: -4em;
	left: -8em;
	z-index: -1;
}
.title_service:after {
	position: absolute;
	display: inline-block;
	content: '';
	background-image: url("../images/bg_service_men_pc.webp");
	background-repeat: no-repeat;
	width: 435px;
	height: 1073px;
	top: -2em;
	right: -8em;
	z-index: -2;
}
.sub_service {
	position: relative;
	z-index: 1;
	margin-bottom: 0.5em;
}
.img_place {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
	z-index: 1;
	margin-bottom: 3.5em;
}
.img_place img {
	width: 31%;
	margin-bottom: 1em;
}
.img_job {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
	z-index: 1;
}
.img_job img {
	width: 22%;
	margin-bottom: 1em;
}
/*----------------------------------------
セクション（特徴）
----------------------------------------*/
.sec_tokucho {
  background-color: #fac839;
 background-image: url("../images/bg_tokucho.webp"),
	 url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.47' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat, repeat;
  background-position: top center, center;
}
.secInr_tokucho {
  padding-top: 4em;
  padding-bottom: 4em;
}
.txt_attouteki {
	margin-bottom: 4em;
}
.title_tokucho {
	margin-bottom: 1.2em;
}
.txt_tokucho {
	margin-bottom: 0.7em;
}
.txt_tokucho:last-child {
	margin-bottom: 0;
}
.re_tokucho {
	text-align: right;
}
/*----------------------------------------
セクション（秘密）
----------------------------------------*/
.sec_secret {
 background-color: #fff574;
background-image: url("../images/bg_secret.webp"),
	url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.47' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
	background-repeat: no-repeat, repeat;
	background-position: center top, center;
}
.secInr_secret {
  padding-top: 4em;
  padding-bottom: 4em;
}
.txt1_secret {
	width: 85%;
	margin: 0 auto;
}
.txt3_secret p {
	background-color: #FFFFFF;
	border: 3px solid #000000;
	padding: 2em 2.5em;
}
.txt3_secret {
	position: relative;
	z-index: 1;
}
.txt3_secret::before {
	content: '';
	position: absolute;
	bottom: -10px;
	right: -10px;
	width: 100%;
	height: 100%;
	background-color: #e4007f;
	border: 3px solid #000000;
	z-index: -2;
}
/*----------------------------------------
セクション（約束）
----------------------------------------*/
.sec_promise {
  background-color: #fac839;
 background-image:url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.47' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}
.secInr_promise {
  padding-top: 4em;
  padding-bottom: 4em;
}
.fukidashi_promise {
	width: 30%;
	margin: 0 auto;
	margin-bottom: 1em;
}
.title_promise {
	margin-bottom: 1.2em;
}
.box_promiseInr {
	background-color: #FFFFFF;
	border: 3px solid #000000;
	padding: 2em 2em 1.5em;
}
.box_promise {
	position: relative;
	z-index: 1;
	margin-bottom: 2em;
}
.box_promise:last-child {
	margin-bottom: 0;
}
.box_promise::before {
	content: '';
	position: absolute;
	bottom: -10px;
	right: -10px;
	width: 100%;
	height: 100%;
	border: 3px solid #000000;
	z-index: -2;
}
.bp_pink::before {
	background-color: #e4007f;
}
.bp_blue::before {
	background-color: #00a0e9;
}
.bp_orange::before {
	background-color: #f08300;
}
.bp_green::before {
	background-color: #009944;
}
.nmb_promise {
	position: absolute;
	width: 139px;
	top: -1em;
	left: 0.5em;
}
.sub_promise {
	display: inline-block;
	font-size: 1.8em;
	font-weight: bold;
	margin-left: 125px;
	position: relative;
	margin-bottom: 1em;
}
.sub_promise::after {
	content: '';
	position: absolute;
	background-image: url("../images/kirakira@2x.webp");
	background-repeat: no-repeat;
	background-size: 44px;
	width: 98px;
	height: 102px;
	right: -4em;
	top: 0;
}

.flex_promise {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.txt_promise {
	width: 58%;
}

.img_promise {
	width: 40%;
}



/*----------------------------------------
セクション（声）
----------------------------------------*/
.sec_voice {
 background-color: #fff574;
background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.47' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}
.secInr_voice {
  padding-top: 4em;
  padding-bottom: 4em;
}
.title_voice {
	margin-bottom: 5em;
}
.flex_voice {
	display: flex;
	justify-content: space-between;
	margin: 0 -80px;
}
.box_voiceInr {
	background-color: #FFFFFF;
	border: 3px solid #000000;
	padding: 4.5em 1.5em 1em;
	position: relative;
}
.box_voice {
	width: 32%;
	position: relative;
	z-index: 1;
	margin-bottom: 0em;
	display: flex;
	align-items: stretch;
}
.box_voice::before {
	content: '';
	position: absolute;
	bottom: -10px;
	right: -10px;
	width: 100%;
	height: 100%;
	border: 3px solid #000000;
	z-index: -2;
}
.bv_blue::before {
	background-color: #00a0e9;
}
.bv_orange::before {
	background-color: #f08300;
}
.bv_green::before {
	background-color: #009944;
}
.icon_voice {
	position: absolute;
	width: 120px;
	top: -4em;
	left: 50%;
	transform: translate(-50%, 0);
}
.sub_voice {
	margin-bottom: 0.7em;
}
.name_voice {
	margin-bottom: 0.7em;
}
/*----------------------------------------
セクション（ステップ）
----------------------------------------*/
.sec_step {
  background-color: #fac839;
 background-image:url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.47' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}
.secInr_step {
  padding-top: 4em;
  padding-bottom: 4em;
}
.title_step {
	margin-bottom: 2em;
}

.box_stepInr {
	background-color: #FFFFFF;
	border: 3px solid #000000;
	padding: 2em 2em 1.5em;
}
.box_step {
	position: relative;
	z-index: 1;
	margin-bottom: 1.2em;
}
.box_step:last-child {
	margin-bottom: 0;
}
.box_step::before {
	content: '';
	position: absolute;
	bottom: -10px;
	right: -10px;
	width: 100%;
	height: 100%;
	background-image: repeating-linear-gradient(-45deg, #000000, #000000 3px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 6px);
	border: 3px solid #000000;
	z-index: -2;
}

.nmb_step {
	position: absolute;
	width: 139px;
	top: -1em;
	left: 0.5em;
}
.sub_step {
	display: inline-block;
	font-size: 1.8em;
	margin-left: 125px;
	margin-bottom: 1em;
}
.flex_step {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.box_txt_step {
	width: 78%;
}

.icon_step {
	width: 20%;
}

.triangle {
  background-color: #000000;
  width: 22px;
  height: 20px;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  margin: 0 auto;
  margin-bottom: 0.4em;
}



/*----------------------------------------
セクション（質問）
----------------------------------------*/
.sec_qa {
 background-color: #fff574;
background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.47' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}
.secInr_qa {
  padding-top: 4em;
  padding-bottom: 4em;
}
.title_qa {
	margin-bottom: 1.2em;
}
.box_qaInr {
	background-color: #FFFFFF;
	border: 3px solid #000000;
	padding: 2em 2em 2em;
}
.box_qa {
	position: relative;
	z-index: 1;
	margin-bottom: 1.5em;
}
.box_qa:last-child {
	margin-bottom: 0;
}
.box_qa::before {
	content: '';
	position: absolute;
	bottom: -10px;
	right: -10px;
	width: 100%;
	height: 100%;
	background-image: repeating-linear-gradient(-45deg, #000000, #000000 3px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 6px);
	border: 3px solid #000000;
	z-index: -2;
}
.txt_q {
	font-size: 1.3em;
	padding-left: 80px;
	position: relative;
	border-bottom: 1px dotted #CCCCCC;
	padding-bottom: 1em;
		margin-bottom: 1em;
}
.txt_q::before {
	content: '';
	position: absolute;
background-image: url("../images/icon_q@2x.webp");
	background-repeat: no-repeat;
	background-size: 61px;
	width: 61px;
	height: 61px;
	left: 0;
	top: -20px;
}
.txt_a {
	padding-left: 80px;
	position: relative;
}
.txt_a::before {
	content: '';
	position: absolute;
background-image: url("../images/icon_a@2x.webp");
	background-repeat: no-repeat;
	background-size: 61px;
	width: 61px;
	height: 61px;
	left: 0;
	top: -13px;
}

/*----------------------------------------
セクション（メッセージ）
----------------------------------------*/
.sec_msg::before {
  content: "";
  background: url("../images/bg_msg.webp") no-repeat center center;
  background-size: cover;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  transform: translateZ(0);
}

.secInr_msg {
  padding-top: 2em;
  padding-bottom: 4em;
}
.logo_msg {
	width: 60%;
	margin: 0 auto;
}
.sub1_msg {
	width: 75%;
	margin: 0 0 0 auto;
	margin-bottom: 1em;
	margin-top: -3em;
}
.box_txt1_msg, .box_txt2_msg {
	position: relative;
	background-color: #FFFFFF;
	padding: 2.5em;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	border: 10px solid #00a0e9;
	margin-bottom: 4em;
}
.box_txt2_msg {
	margin-bottom: 0;
}
.women_msg {
	position: absolute;
	width: 43%;
	bottom: 0;
	left: 0;
}

.txt1_msg {
	width: 55%;
	margin: 0 0 0 auto;
}
.sub2_msg {
	width: 75%;
	margin-bottom: 1em;
}
.men_msg {
	position: absolute;
	width: 50%;
	right: -57px;
	bottom: -1em;
}
.txt2_msg {
	width: 60%;
}

/*----------------------------------------
セクション（プライバシー）
----------------------------------------*/
.secInr_privacy {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.indent01 {
  margin-left: 1.5rem;
}
.indent02 {
  margin-left: 3rem;
}
/*----------------------------------------
セクション（運営会社）
----------------------------------------*/
.secInr_co {
	padding-top: 2rem;
	padding-bottom: 4rem;
}

/*テーブルタグ*/
table {
  margin-bottom: 1.5em;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 10px 10px;
	width: 100%;
}
th {
  background: #fac839;
  width: 150px;
  overflow: visible;
  position: relative;
  color: #000000;
  font-weight: normal;
	text-align: center;
  vertical-align: center;
  font-size: 100%;
  padding: 0.5em;		
}
td {
  text-align: left;
  vertical-align: center;
  font-size: 100%;
    padding: 0.5em;	
}
/*----------------------------------------
フッター部分
----------------------------------------*/
.footer {
  background-color: #fac839;
  padding: 2rem 0rem 2rem;
  text-align: center;
	font-size: 0.9rem;
}

