@charset "UTF-8";
body{
	background: #f8f8f8;
}
img{
	width: 100%;
	height: auto;
}

.mv{
	width:100%;
	position: relative;
	background: #484848;
}
.mv img{
	width:100%;
	/* opacity: 0.8; */
}
.mv_info_box{
	position: absolute;
	bottom: 0;
	left: 0;
	background: rgb(255 255 255 / 85%);
	padding: 0 100px 0px 0;
}
.mv_info{
	margin-left: calc((100vw - 1200px)/2);
}
.mv_info_h{
	font-size: 34px;
	line-height: 1.5em;
	/* font-weight: bold; */
	margin: 60px 0px 30px;
}
.mv_info p:last-of-type{
	line-height: 2.8em;
	margin: 0 0 60px;
}

.order_limited{
	color: #ffffff;
	text-align: right;
	position: absolute;
	right: 0;
	text-shadow: 1px 2px 3px #808080; 
}

.inner p.order_limited{
	position: absolute;
	font-size: 12px;
	right: 13%;
	color: #2597b1;
	bottom: -5px;
	text-shadow: none;
}

/* scroll js  */
.motion-txt {
  display: block;
  position: relative;
  overflow: hidden;
  padding:10px;
}
.motion-txt:after {
  content: '';
  position: absolute;
  opacity: 1;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0,92,63,1);
  transform: translate3d(-101%, 0, 0);
}
.js-scroll.show .motion-txt:after {
  transition-property: transform, opacity;
  transition-duration: 1s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(0, 0, 0);
}
.js-scroll.done .motion-txt:after {
  transition-property: transform;
  transition-duration: 1s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(103%, 0, 0);
}
.motion-txt .motion-inner {
  display: inline-block;
}
.js-scroll.done .motion-txt .motion-inner {
  opacity: 1;
}
/* // */


.inner{
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 10px;
}

.inner h3{
	text-align: center;
	font-size: 34px;
	font-weight: bold;
	letter-spacing: 0.095em;
	line-height: 1.5;
	margin-bottom: 35px;
}
.inner p{
	font-size: 16px;
	line-height: 28px;
	letter-spacing: 0.12em;
	text-align: justify;
}

p.housing{
	position: relative;
	text-align: center;
	margin: 57px 0 42px;
	overflow: hidden;
}
.housing img {
	max-width: 346.5px;
	width: 100%;
	background: #fff;
}

.housing.is-active::before {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.housing::before {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-200%, -50%);
    -webkit-transform: translate(-200%, -50%);
    -ms-transform: translate(-50%, -50%);
    background: #111;
    z-index: -1;
    transition: 1s all ease-in;
}
.inner h2{
	text-align: center;
	position: relative;
	margin-bottom: 30px;
	margin-top: 80px;
}
.yellow_bar{
	position: absolute;
	bottom: 10%;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	z-index: -4;
}
.w_yellow_bar::after{
	width: 100%;
	max-width: 540px;
	position: absolute;
	left: 49%;
	bottom: 0;
	height: 50px;
	background: #f8f8f8;
	content: "";
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transition: 1s all ease-in;
	z-index: -1;
}
.w_yellow_bar.is-active::after{
	width: 100%;
	max-width: 540px;
	position: absolute;
	left: 49%;
	bottom: 0;
	height: 50px;
	background: #f8f8f8;
	content: "";
	transform: translateX(60%);
	-webkit-transform: translateX(60%);
	-ms-transform: translateX(-50%);
	z-index: -1;
}
.yellow02_bar{
	position: absolute;
	bottom: 3px;
	left: 50%;
	width: 200px;
	z-index: -1;
}
.inner h2 img{
	max-width: 230px;
}



/* afterservice */

.after_flex{
	max-width: 860px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 100px;
}
.after_flex li{
	width: 47%;
	text-align: center;
	padding: 15px 5px 15px 0;
	position: relative;
}
.after_flex li a{
	display: block;
	font-size: 24px;
	letter-spacing: 0.12em;
	font-weight: bold;
	padding-left: 100px;
	position: relative;
}
.after_flex li:first-child{
	border: 1px solid #15976f;
}
.after_flex li:last-child{
	border: 1px solid #2597b1;
}
.after_flex li:first-child a{
	color: #15976f;
}
.after_flex li:last-child a{
	color: #2597b1;
}
.after_flex li:first-child a::before{
	position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 70px;/*画像の幅*/
  height: 70px;/*画像の高さ*/
  background-image: url(../img/afterservice/icon_call.png);
  background-size: contain;
  background-repeat: no-repeat;
	background-color: #15976f;
}
.after_flex li:last-child a::before{
	position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 70px;/*画像の幅*/
  height: 70px;/*画像の高さ*/
  background-image: url(../img/afterservice/icon_service.png);
  background-size: contain;
  background-repeat: no-repeat;
	background-color: #2597b1;
}

.call_wrap{
	background-image: url(../img/afterservice/callcenter_bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center right;
	padding: 160px 0;
	margin-bottom: 80px;
}
.call_box{
	max-width: 598px;
	margin: 0 auto;
}
.max870{
	max-width: 870px;
	margin: 0 auto;
	margin-bottom: 100px;
}
.section_box{
	background-color: #fff;
	padding: 50px 30px;
	border-top: 5px solid;
	border-image: linear-gradient(90deg, #1d8358 25%, #dbdbdb 25%) 1/1 0px 0px;
	margin-bottom: 90px;
}

.secttion_flex{
	display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.section_text_box{
	width: 70%;
}
.green_ttl{
	font-size: 24px;
	letter-spacing: 0.095em;
	line-height: 28px;
	color: #277e77;
	font-weight: bold;
	margin-bottom: 40px;
}
.mb_none{
	margin-bottom: 0;
}
.section_img{
	width: 28%;
}
.green_ttl span{
	font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size:14px;
	letter-spacing: 0.095em;
	line-height: 28px;
	color: #2e2e2e;
	font-weight: bold;
}
.green_sub{
	font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	max-width: 530px;
	text-align: center;
	background-color: #277e77;
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	padding: 10px 0;
	border-radius: 25px;
	margin: 10px;
}
.check_list{
	max-width: 800px;
	margin: 40px auto;
	border: 2px solid #d46a82;
	border-radius: 10px;
	padding: 40px 20px;
}
.check_list h3{
	text-align: center;
	margin-bottom: 40px;
}
.check_list h3 span{
	font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 24px;
	color: #d46a82;
	font-weight: bold;
	position: relative;
	padding-left: 45px;
}
.check_list h3 span::before{
	position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 34px;/*画像の幅*/
  height: 34px;/*画像の高さ*/
  background-image: url(../img/afterservice/icon_check.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.check_list ul{
	max-width: 650px;
	margin: 0 auto 40px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.check_list ul li{
	width: 30%;
	margin-bottom: 35px;
}
.check_list ul li span{
	font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 20px;
	font-weight: bold;
	color: #221815;
	position: relative;
	padding-left: 35px;
}
.check_list ul li span::before{
	position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 24px;/*画像の幅*/
  height: 24px;/*画像の高さ*/
  background-image: url(../img/afterservice/icon_check02.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.check_list p{
	font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	text-align: center;
	font-weight: bold;
	color: #3f3a39;
}

.service_wrap{
	background-image: url(../img/afterservice/service_bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 160px 0;
	margin-bottom: 80px;
}
.service_box{
	max-width: 598px;
	margin: 0 auto;
	position: relative;
}
.max800{
	max-width: 800px;
	margin: 0 auto;
	margin-bottom: 100px;
}

ul.service_list{
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
ul.service_list li{
	width: 48%;
    padding-left: 20px;
    margin-bottom: 50px;
    box-sizing: border-box;
}
ul.service_list h3{
	font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 21px;
	font-weight: bold;
	color: #00a29a;
	line-height: 1.2;
	padding-bottom: 3px;
	text-align: left;
	border-bottom: 1px solid #00a29a;
	margin-bottom: 30px;
	position: relative;
}
ul.service_list h3::before{
	position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 77px;/*画像の幅*/
  height: 77px;/*画像の高さ*/
  background-color: #e6f2f5;
	border-radius: 50px;
	z-index: -1;
}
ul.service_list p{
	font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 14px;
	line-height: 20px;
}
ul.service_list p span{
	font-size: 10px;
	line-height: 16px;
}
.room02{
	text-align: center;
}

.koji_box{
	background: #eeeeee;
	padding: 20px;
	margin-bottom: 50px;
}
ul.koji_flex{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
ul.koji_flex li{
	width: 28%;
	background: #fff;
	border: 1px solid #64b6c8;
	padding: 70px 20px 20px;
	text-align: center;
	position: relative;
	margin-top: 20px;
}
.case{
	max-width: 80px;
	position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
ul.koji_flex li h3{
	font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 21px;
	line-height: 34px;
	letter-spacing: 0.095em;
	font-weight: bold;
	color: #242424;
}
ul.koji_flex li p{
	font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.095em;
	color: #000;
	text-align: justify;
}
.case_img{
	text-align: right;
}
.koji_text{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	border: 1px solid #64b6c8;
	background: #64b6c8;
	border-radius: 10px;
}
.koji_left{
	width: 23%;
	text-align: center;
	background: #64b6c8;
	padding: 40px 0;
	border-radius: 8px 0 0 8px;
}
.koji_right{
	width: 77%;
    background-color: #fff;
    padding: 20px;
    box-sizing: border-box;
		border-radius: 0 8px 8px 0;
}
.koji_left p{
	font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 14px;
	text-align: center;
	line-height: 20px;
	letter-spacing: 0.095em;
	font-weight: bold;
	color: #fff;
}
.koji_right p{
	font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.095em;
}




.pc_none{
	display: none;
}

.pc_none02{
	display:none;
}
.sp_none02{
	display:block;
}

.br_480{
	display: none;
}


/* customersvoice */
.voice {

margin: 20px 0;
}
.customersvoice_flex {
	display: flex;
	justify-content: space-between;
}
.customersvoice_flex_in {
	width: 48%;
}
.case_inner {

}
.contactus {
	background: url(../img/customersvoice/contactus_bg.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 60px;
	margin-bottom: 150px;
}
.contactus_ttl {

max-width: 300px;

margin: 0 auto 40px;
}
.customersvoice_flex_in {
}
.customersvoice_flex.mw02 > .customersvoice_flex_in a {
	display: block;
	/* width: 100%; */
	/* height: 100%; */
	/* border: solid 1px #fff; */
	padding: 3%;
	transition: 0.3s;
}
.customersvoice_flex_in a:hover {
	opacity: 0.8;
}
.customersvoice_flex.mw01 > .customersvoice_flex_in {
	max-width: 338px;
}
.inner p.contact_txt {
	text-align: center;
	font-size: 22px;
	color: #fff;
	margin-bottom: 10px;
}
.tel_img {

width: 80%;

margin: 0 auto;
}
.mail_button {
	padding: 3% 5%;
	background-color: rgba(255, 255, 255, 0.85);
	color: #007d37;
	position: relative;
	text-align: center;
	width: 60%;
	font-size: 20px;
	margin: 5% auto 0;
}
.mail_button::after {
	content: "＞";
	color: #007d37;
	position: absolute;
	right: 0;
	bottom: 27%;
	transform: translateX(-50%);
}
.customersvoice_flex_in.border {
	border: solid 1px #fff;
	height: auto;
}
.inner p.section_box_out_cap{
	font-size: 10px;
	bottom: -2.5em;
	position: absolute;
	line-height: 1.2;
	letter-spacing: 0;
	right: 0;
}
.customersvoice_flex.mw01 {

max-width: 750px;

margin: 40px auto 80px;
}
.customersvoice_flex.mw02 {
}

@media (max-width: 1450px){

	.mv_info_h {
			font-size: 28px;
			margin: 60px 0px 30px;
	}
	.mv_info p:last-of-type {
			line-height: 2.4em;
			margin: 0 0 20px;
	}
}

@media (max-width: 1220px){
	.mv_info{
			margin-left: 0;
	}
	.mv_info_h {
			font-size: 26px;
			margin: 40px 0px 30px;
	}
	.mv_info_box {
			padding: 0 30px 0px 10px;
	}
	.br_con_txt01{
			display: none;
	}

}

@media (max-width: 1150px){

}

@media (max-width: 1060px){
	p {
			font-size: 14px;
			letter-spacing: 1px;
	}
	.mv_info_h {
			font-size: 26px;
			margin: 40px 0px 20px;
			line-height: 1.3em;
	}
	.mv_info p:last-of-type {
			line-height: 2.2em;
			margin: 0 0 10px;
	}


}


@media (max-width: 950px){


}


@media (max-width: 930px){
	.mv_info_h {
			font-size: 24px;
			margin: 30px 0px 10px;
			line-height: 1.3em;
	}
	.mv_info p:last-of-type {
			line-height: 2.2em;
			margin: 0 0 10px;
			font-size: 14px;
	}

	.inner h3 {
    font-size: 27px;
}

	.after_flex li a {
    display: block;
    font-size: 22px;
    letter-spacing: 0.12em;
    font-weight: bold;
    padding-left: 70px;
    position: relative;
}
.after_flex li {
	width: 47%;
	text-align: center;
	padding: 17px 5px 17px 0;
}
.green_ttl {
	font-size: 20px;
}
.green_sub {
	max-width: 100%;
	font-size: 20px;
	padding: 5px 0;
}

ul.koji_flex li {
	width: 29%;
	padding: 70px 10px 20px;
}
ul.koji_flex li p {
	font-size: 13px;
}



.contactus_ttl {
    max-width: 220px;
    margin: 0 auto 30px;
}
.mail_button {
    width: 80%;
	font-size: 17px;
}
.mail_button::after {
    bottom: 20%;
}
.inner h2 {
    margin-top: 40px;
}
.contactus {
    padding: 30px;
    margin-bottom: 100px;
}


}


@media (max-width: 768px){
	.inner p {
    font-size: 14px;
    line-height: 23px;
}

.housing img {
	max-width: 220px;
}
	
.pc_none{
	display: block;
}

.inner h3 {
	font-size: 23px;
}

.after_flex li a {
	display: block;
	font-size: 20px;
	letter-spacing: 0.12em;
	font-weight: bold;
	padding-left: 70px;
	position: relative;
}

.call_wrap {
	background-position: top right -130px;
	padding: 100px 0;
	margin-bottom: 80px;
}
.service_wrap {
	padding: 100px 0;
	margin-bottom: 80px;
}

.check_list h3 span {
	font-size: 21px;
}
.check_list ul li span {
	font-size: 17px;
}

ul.service_list li {
	width: 100%;
}
ul.koji_flex li {
	width: 100%;
	max-width: 450px;
	margin: 0 auto 20px;
	padding: 70px 10px 20px;
	margin-top: 20px;
}
.koji_left {
	width: 100%;
	text-align: center;
	background: #64b6c8;
	padding: 5px 0;
	border-radius: 8px 8px 0 0;
}
.koji_right {
	width: 100%;
	background-color: #fff;
	padding: 20px;
	box-sizing: border-box;
	border-radius: 0 0 8px 8px;
}


}

@media (max-width: 650px){

	.mv_info p:last-of-type {
		line-height: 2em;
		letter-spacing: 0;
}
.mv_info_box {
		padding: 0 20px 0px 10px;
		width: 80%;
		margin: 0 auto;
		/* background: rgba(255,255,255,0.95); */
}
.mv_info_h {
		font-size: 22px;
}

.pc_none02{
	display:block;
}
.sp_none02{
	display:none;
}

.section_box {
	padding: 50px 10px;
}

.after_flex li {
	max-width: 400px;
	width: 100%;
	margin: 0 auto 20px;
	text-align: center;
	padding: 17px 5px 17px 0;
}
.section_text_box {
	width: 100%;
	margin-bottom: 30px;
}
.section_img {
	width: 100%;
	text-align: center;
}

.check_list ul {
	max-width: 370px;
	margin: 0 auto 20px;
}
.check_list ul li {
	width: 50%;
	margin-bottom: 25px;
}
.check_list ul li span {
	font-size: 15px;
}

.ex_br1220{
	display: none;
}

.inner p.order_limited {
	left: 54%;
}



.inner h2 {
    margin-top: 20px;
}
.customersvoice_flex {
    flex-wrap: wrap;
}
.customersvoice_flex_in {
    width: 100%;
    margin-bottom: 20px;
}
.customersvoice_flex.mw01 {
    margin: 0px auto 40px;
}
.contactus {
    margin-bottom: 60px;
}
.voice {
    width: 70%;
}
.customersvoice_flex.mw02 {
    margin-bottom: -20px;
}
.customersvoice_flex.mw01 > .customersvoice_flex_in {
    max-width: unset;
}
}


@media (max-width: 600px){


}


@media (max-width: 550px){

}



@media (max-width: 480px){
	.inner h2 img {
		max-width: 50%;
	}
	
	.yellow02_bar {
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 30%;
}
	/* .inner h3 {
		font-size: 25px;
	} */

	.br_480{
		display: block;
	}
	.check_list h3 span {
    margin-left: -45px;
}
	
	
}
@media (max-width: 440px){
	
	
.sp_none{
	display: none;
}


}
@media all and (-ms-high-contrast:none){
	.after_flex li{
		display: flex;
		height:70px;
		align-items: center;
		padding:0;
	}

}




/* 20240207 */
.teiki_tenken .section_text_box{
	width: 100%;
}
.inner p.teiki_tenken_ttl{
	color: #4a8086;
	font-weight: 600;
	margin: 20px auto;
}
.teiki_tenken_img{
	max-width: 750px;
	margin: 0 auto;
}
.teiki_tenken_flex{
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
}
.teiki_tenken_l{
	width: 48%;
}
.teiki_tenken_r{
	width: 48%;
}
.teiki_tenken_flex_item{

}
.inner p.teiki_tenken_flex_ttl{
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fdd;
	text-align: center;
	line-height: 1.2;
	color: #fff;
	padding: 0.5em 0;
	margin-bottom: 10px;
	font-weight: 500;
}
.inner p.teiki_tenken_flex_lead{
	line-height: 1.8;
	font-size: 14px;
}
.inner .teiki_tenken_l p.teiki_tenken_flex_ttl{
	background: #986171;
}
.inner .teiki_tenken_r p.teiki_tenken_flex_ttl{
	background: #9fa0a0;
}
.teiki_tenken_item_img{
	max-width: 250px;
	margin: 20px auto 0;
}

.teiki_tenken_l .teiki_tenken_flex_item:not(:last-child){
	margin-bottom: 20px;
}
.teiki_tenken_r .teiki_tenken_flex_item:not(:last-child){
	margin-bottom: 20px;
}


.inner p.encho_hosyou_subttl{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.inner p.encho_hosyou_subttl .small{
    font-size: 0.8em;
}
.inner p.encho_hosyou_subttl .big{
    font-size: 1.8em;
}

.encho_hosyou_item{}
.encho_hosyou_item:not(:last-of-type){
    border-bottom: solid 1px #000;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.encho_hosyou_item_box{
	margin-top: 40px;
}
.encho_hosyou_item_inner{
	max-width: 750px;
	margin: 0 auto;
}
.inner p.encho_hosyou_item_cap{
	font-size: 10px;
	margin-top: 0.8em;
	letter-spacing: 0;
}
.encho_hosyou_flex{
	display: flex;
	justify-content: space-between;
}
.encho_hosyou_flex > div{
	width: 48%;
}
.encho_hosyou_img01{}
.encho_hosyou_img02{}
.encho_hosyou_img03{}
.db500{
	display: none;
}




/* 20240304 CASE01 */
.inner.top {
	margin-top: 40px;
}
.interview_flex {
	display: flex;
	justify-content: space-between;
	width: 88%;
	margin: 0 auto 60px;
	flex-wrap: wrap;
}
.interview_flex_img {
	width: 58%;
	max-width: 612px;
}
.interview_flex_txt {
	width: 38%;
}
.inner p.question {
	color: #6b6b6b;
	font-size: 16px;
	padding-left: 1.4em;
	text-indent: -1.4em;
}
.question_box {
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 20px;
}	
.under_line {
	position: absolute;
	bottom: 0;
	width: 50vw;
	width: calc(100% - (50% - 775px));
}
.under_line02 {
	position: absolute;
	bottom: 0;
	width: 50vw;
	right: 0;
	width: calc(100% - (50% - 775px));
}
.under_line img {

}
.inner p.answer {
	font-size: 16px;
	text-align: justify;
	line-height: 2;
}
.box01 {
	margin-bottom: 60px;
}
.inner p.center {
	text-align: center;
	margin-bottom: 60px;
}
.flex_img {
	width: 100%;
	max-width: 750px;
	margin: 30px auto 0;
}
.other_button {margin: 0 auto 100px;max-width: 500px;}
.other_button a {
	display: block;
	padding: 5%;
	text-align: center;
	font-size: 20px;
	border: solid 1px #007d37;
	color: #007d37;
	position: relative;
	transition: 0.3s;
}
.other_button a span::after {
	content: "＞";
	position: absolute;
	top: 30%;
	right: 100px;
	transform: translateX(-50%);
}
.other_button a:hover {
	background: #007d37;
	color: #fff;
}
.db1200 {
	display: none;
}
.dbn1200 {
	display: none;
}
.dnb500 {
	display: block;
}
.db500 {
	display: none;
}
.dn500 {
	display: block;
}
.cus03_fx{
	align-items: flex-end;
    margin-top: -100px;
}

@media (max-width: 1200px) {
	.interview_flex {
    width: 90%;
	}
	.inner p.question {
    font-size: 14px;
}
.inner p.answer {
	font-size: 14px;
}
.interview_flex_txt {
	width: 48%;
}
.interview_flex_img {
	width: 48%;
	max-width: unset;
}
.under_line02 {
	width: calc(100% - (50% - 620px));
}
.under_line {
	width: calc(100% - (50% - 620px));
}
.db1200 {
	display: block;
}
.other_button a {
	font-size: 16px;
}
.other_button a span::after {
	top: 33%;
}
.dbn1200 {
	display: block;
}
.dnb500 {
	display: none;
}
.aligncenter {
	align-items: center;
}
.cus03_fx{
	align-items: center;
    margin-top: 0px;
}
}
@media (max-width: 768px){
	.inner p.teiki_tenken_flex_lead {
		line-height: 1.5;
	}
	.inner p.encho_hosyou_subttl {
		font-size: 16px;
	}
}
@media (max-width: 500px){
	.db500{
		display: block;
	}
	.encho_hosyou_flex{
		flex-wrap: wrap;
	}
	.encho_hosyou_flex > div{
		width: 100%;
	}
	.encho_hosyou_flex > div:first-child{
		margin-bottom: 20px;
	}
	.inner p.teiki_tenken_flex_lead {
		font-size: 13px;
	}
	.dbn1200 {
		display: none;
	}
	.dnb500 {
		display: block;
	}
	.db500 {
		display: block;
	}

	.interview_flex_img {
    width: 100%;
    order: 1;
    margin-bottom: 30px;
}
.interview_flex_txt {
	width: 100%;
	order: 2;
}
.box01 {
	margin-bottom: 30px;
}
.inner p.answer {
	font-size: 13px;
}
.inner p.question {
	font-size: 13px;
}
.under_line02 {
	/* width: calc(100% - (50% - 610px)); */
	width: 100%;
}
.under_line {
	/* width: calc(100% - (50% - 610px)); */
	width: 100%;
}
.flex_img {
	order: 3;
}
.other_button a span::after {
	top: 30%;
	right: 60px;
}
.dn500 {
	display: none;
}
}