/* CSS Document */

/* ========================================================================
  Common style
======================================================================== */

p{
	font-family: "Noto Sans JP", sans-serif;
}

img,
picture {
    width: 100%;
    height: auto;
}

.wrap{
	overflow: hidden;
}

@media screen and (max-width:768px) {
	.pc{
		display: none;
	}

	.br-sp {
        display: block;
    }

	.br-pc{
		display: none;
	}

	.bg-pink{
		background-color: #ffeded;
	}

	.emphasis{
		background-color: #fff32e;
		font-weight: 700;
		color: #dc0000;
		font-size: 0.9rem;
	}
	.emphasis2{
		background-color: #fff32e;
		font-weight: 700;

	}
}

@media screen and (min-width:769px) {
	.sp{
		display: none;
	}

	.br-sp {
		display: none;
	}

	.br-pc{
		display: block;
	}

	img,
	picture{
		max-width: 100%;
		width: auto;
	}

	.notice-right{
		text-align: right;
	}
	
	.notice{
		font-size: 1.0rem;
	}
	
	.section-base{
		padding: 70px 0 100px;
	}
	
	.section-ttl{
		margin-bottom: 64px;
	}
	
	.inner{
		max-width: 1200px;
		margin: 0 auto;
		text-align: center;
	}
	
	.bg-pink{
		background-color: #ffeded;
	}
	
	.flex-list{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	
	.emphasis{
		background-color: #fff32e;
		font-weight: 700;
		color: #dc0000;
		font-size: 1.2rem;
	}
	.emphasis2{
		background-color: #fff32e;
		font-weight: 700;
		font-size: 1.2rem;
	}
}


/* ========================================================================
  header
======================================================================== */

@media screen and (max-width:768px) {

	.header {
		border-top: 4px solid #f55c00;
		padding: 4px 0 4px;
		background-image: url("../img/index/sp/header_bg.jpg") ;
		background-repeat:repeat-x;
		background-position: bottom;
	}

	.header__inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.header__inner-left{
		flex-basis: 40.93%;
	}

	.header__inner-left .header__lead {
		display: none;
	}

	.header__inner-left h1{
		margin-left: 5%;
	}

	.header__inner-left img{
		height: auto;
		width: 100%;
	}

	.header__inner-middle{
		flex-basis: 26.8%;
		flex-grow: 1;
		margin-left: 3.33%;
	}

	.header__inner-middle img{
	   width: 100px;
	}

	.header__tel{
		display: none;
	}

	.header__tel-sp {
		display: block;
		width: 52px;
		padding-right: 4px;
		flex-basis: 15%;
  	}

	.header__inner-right {
		text-align: right;
  	}
}

@media screen and (min-width:769px) {
	.header {
		border-top: 4px solid #f55c00;
		padding: 4px 0 10px;
		background-image: url("../img/index/header_bg.jpg") ;
		background-repeat:repeat-x;
		background-position: bottom;
 	}
  
	.header__inner {
		width: 1200px;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
	}

	.header__inner-left{
		width: 26%;
	}

	.header__inner-left h1{
		margin-top: 8px;
	}
  
	.header__inner-left .header__logo {
		height: 60px;
	}

	.header__inner-middle picture{
		display: inline-block;
		width: 127px;
	}

	.header__inner-middle{
		margin-left: -15px;
		margin-right: 20px;
	}
	
	.header__inner-right {
		display: flex;
		justify-content: flex-end;
		width: 60%;
	}
  
	.header__tel-sp {
		display: none;
	}

	.header__tel{
		margin-top: 0px;
		max-width: 504px;
	}

	.header__tel img{
		width: 100%;
	}
}

/* ========================================================================
  key
======================================================================== */
@media screen and (max-width:768px) {
	.key {
		position: relative;
	}
	.key__balloon{
		background-color: #fff;
		border-radius: 100px;
		color: #471b01;
		display: inline-block;
		font-size: 4.4vw;
		font-weight: 700;
		padding: 4px 16px;
		text-align: center;
		position: absolute;
		top: 2vw;
		left: 50%;
		transform: translateX(-50%);
		width: fit-content;
		white-space: nowrap;
		max-width: 100%;
		filter: drop-shadow(0 0 2px rgba(79, 79, 56, 0.2));
	}
	.key__balloon::after{
		background-image: url(../img/index/sp/key_balloon_bg.png);
		background-size:100%;
		background-repeat: no-repeat;
		content: "";
		display: block;
		width: 7px;
		height: 11px;
		position: absolute;
		bottom: -11px;
		left: 0;
		right: 0;
		margin: 0 auto;
	}
}

@media screen and (min-width:769px) {
	.key {
		background-image: url("../img/index/key_bg.jpg");
		background-position: top center;
		background-repeat: no-repeat;
		position: relative;
	}

	.key__balloon{
		background-color: #fff;
		border-radius: 100px;
		color: #471b01;
		display: inline-block;
		font-size: 1.8vw;
		font-weight: 700;
		padding: 4px 24px 6px;
		text-align: center;	
		position: absolute;
		top: 40px;
		left: 0;
		width: fit-content;
		white-space: nowrap;
		max-width: 100%;
		filter: drop-shadow(0 0 4px gray);
	}
	.key__balloon::after{
		background-image: url(../img/index/sp/key_balloon_bg.png);
		background-size:100%;
		background-repeat: no-repeat;
		content: "";
		display: block;
		width: 9px;
		height: 13px;
		position: absolute;
		bottom: -13px;
		left: 0;
		right: 0;
		margin: 0 auto;
	}

	.key__inner{
		position: relative;
		text-align: center;
		max-width: 1200px;
		margin: 0 auto;
	}
}

/* ========================================================================
  cv
======================================================================== */
@media screen and (max-width:768px) {
	.cv__help{
		position: absolute;
		top: -3%;
		left: 6%;
		width: 18%;
	}

	.cv__inner{
		position: relative;
	}
	
	.cv__time{
		position: absolute;
		top: 34%;
		left: 32%;
		width: 65%;
	}

	.cv__btn-sp{
		position: absolute;
		top: 70%;
		right: 0;
		left: 0;
		width: 90%;
		margin: 0 auto;
	}

	.time-display{
		font-size: 6.6vw;
		font-family: "Noto Sans JP", sans-serif;
		font-weight: 700;
		color: #dc0000;
	}

	.cv__time-txt{
		font-size: 6.6vw;
		font-family: "Noto Sans JP", sans-serif;
		font-weight: 700;
		line-height: 1.6;
		margin-bottom: 2%;
		font-feature-settings: "palt";
	}

	.cv__time-txt span{
		color: #dc0000;
	}

	.cv__time-note{
		font-size: 2.4vw;
	}
}

@media screen and (min-width:769px) {
	.cv{
		width: 996px;
		padding: 70px 0 100px;
		margin: 0 auto;
	}

	.cv__inner{
		position: relative;
		margin-bottom: 5px;
	}

	.cv__time{
		position: absolute;
		top: 62%;
		left: 24%;
		width: 70%;
	}

	.time-display{
		font-size: 1.64rem;
		font-family: "Noto Sans JP", sans-serif;
		font-weight: 700;
		color: #dc0000;
	}

	.cv__time-txt{
		font-size: 1.64rem;
		font-family: "Noto Sans JP", sans-serif;
		font-weight: 700;
		line-height: 1.4;
		margin-bottom: 2%;
		font-feature-settings: "palt";
	}

	.cv__time-txt span{
		color: #dc0000;
	}

	.cv__features{
		position: absolute;
		bottom: 36px;
		right: 42px;
		display: flex;
	}

	.cv__anytime{
		background-image: url("../img/index/anytime_bg.png");
		background-repeat: no-repeat;
		width: 302px;
		height: 56px;
		padding: 12px 0 0 20px;
		margin-right: 12px;
		text-align: center;
	}

	.cv__anywhere{
		background-image: url("../img/index/anywhere_bg.png");
		background-repeat: no-repeat;
		width: 397px;
		height: 56px;
		padding: 12px 0 0 20px;
		text-align: center;
	}

	.cv__anytime p,.cv__anywhere p{
		font-size: 1.52rem;
		font-weight: 700;
	}

	.cv__btn{
		position: absolute;
		bottom: 38px;
		right: 124px;
	}

	.cv__btn a{
		transition: filter 0.1s ease;
		filter: brightness(1.0);
	}

	.cv__btn a:hover{
		filter: brightness(1.10);
	}

	.bg-blue{
		background-color: #e4eeff;
	}

	.bg-blue .cv{
		padding: 80px 0 0;
	}
}

/* ========================================================================
  fee
======================================================================== */


@media screen and (max-width:768px) {
	.fee{
		background-image: url("../img/index/sp/fee_bg.png");
		background-repeat: no-repeat;
		background-position: right 15.5% bottom 11%;
		background-size: 32.1%;
		background-color: #fdf5ef;
		padding: 12.6% 5.33% 10.3%;
	}

	.fee__ttl{
		width: 90%;
		text-align: center;
		margin:0 auto 5.5%;
	}

	.fee__ttl picture{
		display: inline-block;
	}

	.fee__ttl img{
		display: inline-block;
	}



/* スマホ */
	/* PC用を非表示 */
.fee__list {
	display: none !important;
}

/* スマホ用を表示 */
.fee__list-sp {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.fee__list-sp li {
	width: auto; /* ←これ重要 */
}

.fee__list-sp img{
	display:block;
	width:100%;
	height:auto;
}



	.fee__text{
		font-size: 0.83rem;
		font-weight: 500;
		line-height: 1.6;
		text-align: center;
		margin-bottom: 9%;
	}

	.fee__text span{
		font-size: 0.64rem;
		margin-top: 10px;
		display: block;
	}

	.fee__inner{
		margin: 0 auto ;
		padding-bottom: 6%;
		position: relative;
	}

	.fee__list{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.fee__list-box{
		width: 47%;
		margin-bottom: 5%;
	}

	.fee__list-box:last-child{
		margin-bottom: 0;
	}

}

@media screen and (min-width:769px) {
	.fee{
		background-color: #fdf5ef;
		padding: 100px 0 84px;
	}

		/* PCではスマホ用を隠す */
.fee__list-sp {
	display: none;
}


	.fee__ttl{
		margin-bottom: 25px;
		text-align: center;
	}

	.fee__text{
		font-weight: 500;
		font-size: 1.1rem;
		line-height: 1.6;
		text-align: center;
		margin-bottom: 40px;
	}

	.fee__text span{
		font-size: 0.88rem;
		margin-top: 20px;
		display: block;
	}

	.fee__inner{
		background-repeat: no-repeat;
		background-position: right 10px bottom 16px;
		background-size: 161px;
		max-width: 1200px;
		margin: 0 auto ;
		position: relative;
	}

	.fee__list{
		display: flex;
		gap: 2%;
		flex-wrap: wrap;
		justify-content: space-between;
		row-gap: 48px;
	}

	.fee__list-box{
		width: 48%;
		border: solid 5px #f55c00;
		border-radius: 10px;
		overflow: hidden;
	}

	.fee__list-box img , .fee__list-box2 img{
		width: calc(100% + 1px);
	}
	.fee__list-box2{
		width: 31%;
		border: solid 5px #f55c00;
		border-radius: 10px;
		overflow: hidden;
	}

}

/* ========================================================================
  case
======================================================================== */
@media screen and (max-width:768px) {
	.case{
		background-image: url(../img/index/case_bg.png);
		background-position: top center;
		background-size: cover;
		padding: 7.2% 0 10%;
	}
	.case__ttl{
		margin:0 3.86% 10% 3.86%;
	}
	.case__inner{
		margin: 0 5%;
	}
	.case__list{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 24px;
		text-align: center;
	}
	.case__list-box{
		flex-basis: 46%;
		margin-bottom: 5%;
	}
	.case__list-box:nth-child(7),
	.case__list-box:nth-child(8){
		margin-bottom: 0;
	}
}

@media screen and (min-width:769px) {
.case{
	background-image: url(../img/index/case_bg.png);
	background-position: top left;
	background-repeat: repeat-x;
	background-size: 2400px;
	padding: 27px 0 100px;
	background-color: #323232;
}
	.case__ttl{
		margin:2% auto 3%;
		text-align: center;
	}
	.case__inner{
		max-width: 1000px;
		margin: 0 auto ;
		position: relative;
	}

.case__list{
	display:grid;
	grid-template-columns:repeat(6,1fr);
	gap:20px 20px; /* 上下 左右 */
	justify-items:center;
}

.case__list li:nth-child(-n+3){
	grid-column:span 2;
}

.case__list li:nth-child(4){
	grid-column:2 / span 2;
}

.case__list li:nth-child(5){
	grid-column:4 / span 2;
}

.case__list img{
	display:block;
	width:100%;
	height:auto;
}

.case__list-box{
		flex-basis: 23%;
		margin-bottom: 5%;
}

	.case__list-box:nth-child(5),
	.case__list-box:nth-child(6),
	.case__list-box:nth-child(7),
	.case__list-box:nth-child(8){
		margin-bottom: 0;
	}
}

/* ========================================================================
  howto
======================================================================== */
@media screen and (max-width:768px) {
	.howto{
		padding: 13.3% 0 14%;
			background-color: #fbefe8;
	}

	.howto__inner{
		margin: 0 5%;
	}

	.howto__ttl{
		width: 90%;
		margin: 0 auto 11%;
	}

	.howto__txt{
		display: none;
	}

	.howto__lead{
		font-size: 0.8rem;
		line-height: 2.0;
		margin-bottom: 20%;
		font-family: "Noto Sans JP", sans-serif;
		font-weight: 600;
	}

	.howto__list{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		width: 100%;
		margin:0 auto;
	}

	.howto__list-box{
		background: #fff;

		border-radius: 6px;
		width: 100%;
		box-shadow: 3px 3px 2px 1px rgba(190, 170, 153, 0.1);
		margin: 0 4px 20px 0;
		overflow: hidden;
	}

	.howto__list-box img{
		display: block;
		width: 100%;

	}

	.howto__list-box:last-child{
		margin: 0 4px 4px 0;
	}

	[class*="howto__sttl"]{
		align-items: center;
		background-position: left center;
		background:#fff;
		background-size: 14.5%;
		border-radius: 4px 4px 0 0;
		display: flex;
		height: 76px;
		padding: 0 0 0 0%;
		text-align: left;
		justify-content: center; /* 横中央 */
	}
	/*
	.howto__sttl-sp01{
		background-image: url(../img/index/sp/howto_sttl01_bg.png);
		background-repeat: no-repeat;
		background-position: center left 5.5%;
	}
	.howto__sttl-sp01 img{
		width: 54%;
	}

	.howto__sttl-sp02{
		background-image: url(../img/index/sp/howto_sttl02_bg.png);
		background-repeat: no-repeat;
		background-position: center left 5.5%;
	}
	.howto__sttl-sp02 img{
		width: 78%;
	}

	.howto__sttl-sp03{
		background-image: url(../img/index/sp/howto_sttl03_bg.png);
		background-repeat: no-repeat;
		background-position: center left 5.5%;
	}
	.howto__sttl-sp03 img{
		width: 54%;
	}*/

	.howto__sttl-01 img{
		width: 200px;
	}

	.howto__sttl-02 img{
		width: 214px;
	}

	.howto__sttl-03 img{
		width: 140px;
	}

	.howto__list-box p{
		padding: 5% 8%;
		text-align: left;
		line-height: 1.6;
		font-size: 0.85rem;
	}

}

@media screen and (min-width:769px) {
	.howto{
		padding: 100px 0 56px;
	}

	.howto__ttl-outer{
		background-image: url("../img/index/howto_ttl-bg.jpg"),url("../img/index/howto_ttl-bg-side.jpg");
		background-repeat: no-repeat,repeat-x;
		background-position: center;
		padding: 90px 0 24px;
		text-align: center;
	}

	.howto__ttl{
		margin: 0 auto 30px;
		text-align: center;
	}

	.howto__txt{
		font-size: 1.3rem;
		font-weight: 700;
		line-height: 1.6;
		margin-bottom: 70px;
		text-align: center;
	}

	.howto__lead{
		font-size: 1.3rem;
		line-height: 1.6;
		margin-bottom: 120px;
		font-family: "Noto Sans JP", sans-serif;
		font-weight: 600;
	}

	.howto__inner{
		max-width: 1200px;
		margin: 0 auto;
	}
	.howto__list{
		display: flex;
		justify-content: space-between;
	}

	.howto__list-box{
		background: #fff;
	
		border-radius: 12px;
		width: 31%;
		box-shadow: 3px 3px 2px 1px rgba(190, 170, 153, 0.1);
		margin: 0 4px 4px 0;
	}

	.howto__list-box img{
		display: block;
		width: 100%;
	}

	[class*="howto__sttl"]{
align-items: center;
justify-content: center; /* 横中央 */

background-color: #fff;
background-position: center; /* 中央 */
background-repeat: no-repeat;
background-size: 40%; /* サイズ調整 */

border-radius: 9px 9px 0 0;
display: flex;
height: 102px;
padding: 16px;
text-align: center;
	}
/*
	.howto__sttl-01{
		background-image: url(../img/index/sp/howto_sttl01_bg.png);
	}

	.howto__sttl-02{
		background-image: url(../img/index/sp/howto_sttl02_bg.png);
	}

	.howto__sttl-03{
		background-image: url(../img/index/sp/howto_sttl03_bg.png);
	}*/
	

	.howto__sttl-01 img{
		width: 248px;
	}

	.howto__sttl-02 img{
		width: 260px;
	}

	.howto__sttl-03 img{
		width: 169px;
	}

	.howto__list-box p{
		padding: 25px;
		text-align: left;
		line-height: 1.8;
		font-size: 1.2rem;
	}
}

/* ========================================================================
  flow
======================================================================== */

@media screen and (max-width:768px) {
	.flow{
		background: #fbefe8;
		margin-top: 0%;
	}

	.flow__ttl{
		background-color: #f55c00;
		padding: 4.26% 3.33% 7.6% 3.06%;
		margin: 0 auto 10%;
	}
	
	.flow__list{
		display: flex;
		flex-direction: column;
		width: 92%;
		margin: 0 auto;
	}

	.flow__list-item,
	.flow__list-item-end{
		position: relative;
	}

	.flow__list-box , .flow__list-box-end{
	    background: #fff;
        position: relative;
        text-align: left;
        box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        margin: 0 4px 12% 0;
        display: flex;
        flex-direction: column;
        padding: 0px;
        border: solid #f55c00 3px;
		overflow: hidden;
	}
	
	.flow__list-box h3 , .flow__list-box-end h3{
		font-weight: 700;
		font-size: 1.1rem;
		margin: 20px 12px 12px 12px;
		letter-spacing: -0.2px;
		font-family: "Noto Sans JP", sans-serif;
	}

	.flow__list-box p , .flow__list-box-end p{
		font-size: 0.8rem;
		line-height: 1.6;
		margin: 0 12px 0 12px;
	}

	.flow__list-txt{
		width: 100%;
		margin: 20px 0;
	}

	.flow__list-txt p{
		font-size: 1.0rem;
        font-weight: 400;
        font-family: "Noto Sans JP", sans-serif;
	}

	.flow__list-item::after{
		content: "";
        background-image: url(../img/index/sp/flow_arrow01.png);
        background-size: 100%;
        background-repeat: no-repeat;
        width: 45px;
        height: 25px;
        display: block;
        position: absolute;
        top: 89.5%;
        right: 0;
        left: 0;
        margin: 0 auto;
        transform: rotate(-43deg);
	}

	.flow__list-item-end::after{
		background-image: none;
	}

	
}

@media screen and (min-width:769px) {
	.flow{
		background: #fbefe8;
		margin-top: 0%;
		padding-bottom: 6.9%;
	}

	.flow__ttl{
		background-color: #f55c00;
		display: flex;
		justify-content: center;
		padding: 28px 0 70px;
		margin-bottom: 64px;
	}

	.flow .inner{
		max-width: 1200px;
	}

	.flow__list{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		align-items: stretch;
	}

	.flow__list-item,
	.flow__list-item-end{
		position: relative;
        width: 30%;
		display: flex;
	}

	.flow__list-box , .flow__list-box-end{
		background: #fff;
        text-align: left;
        box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.1);
        padding: 0px 0px 32px 0px;
        border-radius: 14px;
        margin: 0 4px 4px 0;
        border: solid #f55c00 3px;
		overflow: hidden;
		display: flex;
		flex-direction: column;
		height: 100%;
	}

	.flow__list-box img , .flow__list-box-end img{
		width: calc(100% + 1px);
	}

	.flow__list-box h3 , .flow__list-box-end h3{
		font-weight: 700;
		font-size: 1.3rem;
		margin: 20px 12px 12px 12px;
		letter-spacing: -0.2px;
		font-family: "Noto Sans JP", sans-serif;
	}

	.flow__list-box p , .flow__list-box-end p{
		font-size: 1.1rem;
        font-weight: 400;
        line-height: 1.6;
        margin: 20px 18px 0 18px;
	}

	.flow__list-item::after{
		content:"";
		background-image: url(../img/index/flow_arrow01.png);
		background-repeat: no-repeat;
		width: 29px;
		height: 47px;
		display: block;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: -44px;
	}

	.flow__arrow{
		margin: 10px 0;
	}

	.flow__list-item:last-child::after{
		display: none;
	}

}

/* ========================================================================
  award
======================================================================== */
@media screen and (max-width:768px) {
	.award{
		background: #fff4b7;
		background-image: url("../img/index/sp/award_bg.jpg");
		background-position: center;
		background-size: 100%;
		background-repeat:none ;
		padding: 8% 0 6%;
	}
	
	.award__ttl{
		width: 80%;
		margin: 0 auto 6%;
	}

	.award__list{
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 20px;
		margin-bottom: 5%;
	}

	.award__medal01{
		width: 40%;
		margin: 0 auto;
	}

	.award__list-box{
		width: 40%;
	}

	.award__note{
		color: #331606;
		font-size: 0.64rem;
		margin-left: 9%;
	}
}

@media screen and (min-width:769px) {
	.award{
		background: #fff4b7;
		background-image: url("../img/index/award_bg.jpg");
		background-position: center;
		background-repeat: none;
		padding: 72px 0 32px;
	}

	.award__ttl{
		margin-bottom: 58px	;
	}

	.award__list{
		display: flex;
		justify-content: center;
		margin-bottom: 30px;
	}

	.award__list-box{
		margin-right: 32px;
	}

	.award__note{
		color: #331606;
		font-size: 0.93rem;
		text-align: left;
		margin-left: 140px;
	}
}

/* ========================================================================
  media
======================================================================== */
@media screen and (max-width:768px) {
	.media{
		padding: 8% 0 12%;
	}

	.media__ttl{
		width: 90%;
		margin: 0 auto 10%;
	}

	.media__list-box{
		align-items: center;
		display: flex;
		width: 92%;
		margin: 0 auto 6%;
	}

	.media__list-box img{
		width: 30%;
	}

	.media__list-box div{
		width: 64%;
		margin-left: 6%;
	}

	.media__list-box p{
		font-size: 0.9rem;
		width: 80%;
		line-height: 1.6;
		text-align: left;
	}
}

@media screen and (min-width:769px) {
	.media{
		padding: 100px 0 140px;
	}

	.media__ttl{
		margin-bottom: 64px;
	}

	.media__list-box{
		display: flex;
		width: 30%;
		align-items: center;
	}

	.media__list-box p{
		font-size: 1.0rem;
		margin-left: 16px;
		line-height: 1.6;
		text-align: left;
	}
}

/* ========================================================================
  reason
======================================================================== */
@media screen and (max-width:768px) {
	.reason{
	        padding: 0 0 20px 0;
        background: #fbefe8;
	}

	.reason__ttl{
		background-image: url(../img/index/sp/reason_ttl_bg.png);
		background-position: top left;
		background-repeat:  no-repeat;
        background-size:  200%;
        padding: 10% 6.4% 9.6% ;
	}

	.reason__inner{
		margin: 3.2% 0 0 0;
	}

	.reason__list{
		display: flex;
		flex-wrap: wrap;
		width: 92%;
		margin: 0 auto;
		justify-content: space-between;
		padding: 12px 6px 6px 0;
	}

	.reason__list-item-inner{
		border-radius: 8px;
		overflow: hidden;
		box-shadow: 3px 3px 3px 0px rgba(204, 168, 147, 0.1);
	}

	.reason__list li{
		width: 48%;
		margin-bottom: 5%;
	}

	.reason__list li:nth-child(3),
	.reason__list li:nth-child(4){
		margin-bottom: 0;
	}

	.reason__list-wrap{
		padding-top: 14%;
	}

	
	.reason__list-box{
		display: flex;
		position: relative;
		flex-direction: column;
		width: 92%;
		margin: 0 auto 8%;
		overflow: visible;
		box-shadow: 3px 3px 3px 0px rgba(204, 168, 147, 0.1);
	}

	.reason__sttl-sp01 img{
		width: 100%;
	}

	.reason__sttl-sp02 img{
		width: 100%;
	}

	.reason__sttl-sp03 img{
		width: 100%;
	}

	.reason__sttl-sp04 img{
		width: 100%;
	}

	.reason__txt{
		background: #fff;
		text-align: left;
		padding: 0 6% 6% 6%;
		border-radius: 8px 8px 0 0;
		z-index: 1;
	}

	.reason__icon{
		width: 34%;
		margin: 6% 0 16px 0%;
	}

	.reason__list-box-even{
		display: flex;
		position: relative;
		flex-direction: column;
		width: 92%;
		margin: 0 auto 8%;
		overflow: visible;
		box-shadow: 3px 3px 3px 0px rgba(204, 168, 147, 0.1);
	}

	.reason__txt-even{
		background: #fff;
		text-align: left;
		padding: 0 6% 6% 6%;
		border-radius: 8px 8px 0 0;
		z-index: 1;
	}

	.reason__icon-even{
		width: 34%;
		margin: 6% auto 16px 0;
	}

	.reason__txt  h3,
	.reason__txt-even  h3{
		border-bottom: 2px dotted #c9c9c9;
		padding-bottom: 5%;
		margin-bottom: 5%;
	}

	.reason__txt p , .reason__txt-even  p{
	    font-size: 0.85rem;
        line-height: 1.6;
        text-align: justify;
	}
	.reason__image img{
		border-radius: 0 0 8px 8px;
	}

	.reason__image-even img{
		border-radius: 0 0 8px 8px;
	}
	
}


@media screen and (min-width:769px) {
	.reason{
  
        padding: 0 0 20px 0;
        background: #fbefe8;
	}

	.reason__ttl{
		background-image: url("../img/index/reason_ttl_bg.png");
		background-repeat: repeat;
		background-position: top left;
		text-align: center;
		padding: 60px 0;
		position: relative;
		margin-bottom: 64px;
	}

	.reason__ttl::after{
		background-image: url("../img/index/reason_staff_bg.png");
		background-repeat: no-repeat;
		background-size: 100% auto;
		content: "";
		display: block;
		width: 255px;
		height: 360px;
		position: absolute;
		bottom: 0;
		right: calc(50% - 640px);
	}

	.reason__inner{
		max-width: 1200px;
		margin: 0 auto;
	}
	
	.reason__list{
		display: flex;
		justify-content: space-between;
		padding-bottom: 6px;
		padding-right: 6px;
	}
	
	.reason__list-item{
		flex-basis: 23.5%;	
	}

	.reason__list-item-inner{
		border-radius: 8px;
		overflow: hidden;
		box-shadow: 3px 3px 3px 0px rgba(204, 168, 147, 0.1);
	}

	.reason__list-wrap{
		padding-top: 90px;
		padding-right: 6px;
		padding-bottom: 6px;
	}

	.reason__list-box{
		background-color: #fff;
		border-top-left-radius: 10px;
		border-bottom-left-radius: 10px;
		border-top-right-radius: 10px;
		border-bottom-right-radius: 10px;
		display: flex;
		position: relative;
		margin: 0 0 80px;
		overflow: visible;
		box-shadow: 3px 3px 3px 0px rgba(204, 168, 147, 0.1);
	}

	.reason__sttl-sp01 img{
		width: 90.8%;
	}

	.reason__sttl-sp02 img{
		width: 86.5%;
	}

	.reason__sttl-sp03 img{
		width: 80.8%;
	}

	.reason__sttl-sp04 img{
		width: 80.6%;
	}

	.reason__txt{
		width: 68%;
		text-align: left;
		padding: 0 50px 0 40px;
	}

	.reason__image{
		width: 56%;
	}
	.reason__image-even {
    	width: 56%;
	}

	.reason__image img{
		border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
		overflow: hidden;
	}

	.reason__image-even img{
		border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
		overflow: hidden;
	}

	.reason__image img,
	.reason__image-even img{
		width: 100%;
		display: block;
	}

	.reason__icon{
        width: 23%;
        margin: 40px 0 16px 0%;
	}

	.reason__list-box-even{
		display: flex;
		flex-direction: row-reverse;
		margin: 0 0 80px;
		box-shadow: 3px 3px 3px 0px rgba(204, 168, 147, 0.1);
	}

	.reason__txt-even{
		background: #fff;
		border-top-right-radius: 10px;
		border-bottom-right-radius: 10px;
		width: 68%;
		text-align: left;
		padding: 0 40px 0 50px;
	}

	.reason__icon-even{
		width: 23%;
		margin: 40px auto 16px 0%;
	}

	.reason__txt  h3,
	.reason__txt-even  h3{
		align-items: center;
		border-bottom: 2px dotted #c9c9c9;
		display: flex;
		padding-bottom: 20px;
		margin-bottom: 20px;
		min-height: 70px;
	}

	.reason__txt p , .reason__txt-even  p{
		font-size: 1.0rem;
		        line-height: 1.6;
		text-align: justify;
	}
}


/* ========================================================================
  kinds
======================================================================== */
	@media screen and (max-width:768px) {
	

	.kinds__ttl{
		background-position: bottom right,top left;
		background-repeat: no-repeat, no-repeat;
        background-size: 19%, 200%;
        padding: 10% 6.4% 9.6% 6.4%;
	}

		.kinds{
		padding:0 0 60px 0;
		background:#fbefe8;
		}

		/* ★ここを基準にする */

		.kinds__wrap{
		position:relative;
		display:block;
		padding-left:36px;
		}
		.kinds__item{
		display:block;
		padding:0px 0;
		border-bottom:1px solid #cfcfcf;
		}

		.kinds__content{
		background:#fff;
		padding:20px;
		}

		.kinds__image{
		margin: 0 auto;
		width: 150px;
		display: none;
		}

		.kinds__image img{
		width:100%;
		}

		/* バー */

		.kinds__bar{
			position:absolute;
			top:0;
			left:0;
			width:36px;
			height:100%;
		}

		.kinds__bar img{
			width:100%;
			height:100%;
			object-fit:cover;
			background-position: top;
		}
		.kinds__head {
			max-width: 300px;
			padding-bottom: 20px;
		}
		.kinds__text{
			line-height:1.6;
			font-size:14px;
		}



	}

@media screen and (min-width:769px) {
	.kinds{
  
        padding: 0 0 100px 0;
        background: #fbefe8;
	}

	.kinds__ttl{
		background-repeat: repeat;
		background-position: top left;
		text-align: center;
		padding: 30px 0;
		position: relative;
		margin-bottom: 24px;
	}


/* 左の矢印バー */

.kinds__wrap{
    display:flex;
    max-width:1000px;
    margin:auto;
    align-items:stretch; /* ←追加 */
}

.kinds__bar{
    width:87px;
}

.kinds__bar img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* リスト */

.kinds__list{
    flex:1;
    list-style:none;
    padding:0;
    margin:0 0 0 16px;
}

/* 各行 */

.kinds__item{
    display:flex;
    justify-content:space-between;
     align-items:center; /* ←これ */
    padding:40px 40px;
    border-bottom:1px solid #cfcfcf;
	background: #ffffff;
}

.kinds__item:last-child{
    display:flex;
    justify-content:space-between;
     align-items:center; /* ←これ */
    padding:40px 40px;
    border-bottom:none;
	background: #ffffff;
}

/* 左テキスト */

.kinds__content{
    width:80%;
    background:#fff;
    padding:24px 28px;
    border-radius:6px;
}

.kinds__head{
    margin-bottom:10px;
}

.kinds__head img{
    display:block;
}

.kinds__text{
    line-height:1.9;
    font-size:16px;
}

/* 右のペンキ缶 */

.kinds__image{
    width:150px;
    margin-left:30px;
}

.kinds__image img{
    width:100%;
    display:block;
}
}

/* ========================================================================
  example
======================================================================== */
@media screen and (max-width:768px) {
	.example{
padding: 6px 0 0;
background-image: url(../img/index/sp/example-exam_bg.png);
background-size: cover;
background-position: top center;
background-repeat: no-repeat;
	}

	.example__sttl-outer{
		display: flex;
		align-items: center;
		margin-bottom: 4%;
	}

	.example__sttl h3{
		font-weight: 700;
		font-size: 1.2rem;
		font-family: "Noto Sans JP", sans-serif;
		color: #572b05;
	}

	.example__type{
		background-color: #fff;
		border-radius: 8px;
		width: 92%;
		margin: 0 auto;
		padding: 0 6% 6% 6%;
		background-image: url("../img/index/example_type-bg.jpg");
		background-repeat: no-repeat;
		background-position: center;
		background-size: 92%;
		position: relative;
	}

	.example__list-box{
		margin:12% 0 12%;
	}

	.example__list-txt{
		width: 100%;
		text-align: left;
	}
	.example__list-image{
		width: 100%;
		text-align: left;
	}

	.example__list-image img{
		width: 100%;
	}

	.example__list-txt h3{
		font-weight: 800;
		font-size: 2.0rem;
		margin: 20px 12px 12px 0;
		letter-spacing: -0.1em;
		font-family: "Noto Sans JP", sans-serif;
		color: #572b05;
	}

	.example__list-txt p{
		line-height: 1.6;
		font-size: 0.9rem;
		text-align: justify;
	}

	.example__list-txt span{
		color:#dc0000;
		font-weight: 700;
	}

	.example-exam{
		padding: 12% 0 0 0;
	
		background-size: 100%;
		background-repeat:no-repeat ;
		background-position: top 20px;
	}

	.example-exam_ttl{
		width: 86%;
		margin: 0 auto 6%;
	}
	
	.example-exam__list{
	display: flex;
        flex-wrap: wrap;
        gap: 4px 2%;
        justify-content: center;
        margin-bottom: 20px;
	}

	.example-exam__list-box{
		width: 45%;
	}

	.example__illust{
		position: absolute;
		right: 12px;
		bottom: -22px;
		width: 32%;
	}
}


@media screen and (min-width:769px) {
	.example{
padding: 72px 0 0;
background-image: url(../img/index/sp/example-exam_bg.png);
background-size: cover;
background-position: top center;
background-repeat: no-repeat;
	}

	.example__type{
		background-color: #fff;
		border-radius: 8px;
		max-width: 998px;
		margin: 0 auto;
		padding: 0 50px 50px 50px;
		background-image: url("../img/index/example_type-bg.jpg");
		background-repeat: no-repeat;
		background-position: center;
		position: relative;
	}

	.example__list-box{
		margin-bottom:60px ;
	}

	.example__list-box-split{
		width: 45%;
		margin-bottom: 24px;
	}

	.example__list-box-split img{
		margin-bottom: 12px;
	}

	.example__list-box-split p{
		text-align: left;
		line-height: 2.0;
		font-size: 1.0rem;
	}

	.example__list-box-split span{
		color: #dc0000;
		font-weight: 700;
	}

	.example__list-txt{
		width: 46%;
		text-align: justify;
	}

	.example__list-image{
		width: 30%;
		text-align: left;
	}

	.example__list-image img{
		width: 100%;
	}

	.example__list-txt h3{
		font-weight: 800;
		font-size: 2.0rem;
		margin: 20px 12px 12px 0;
		letter-spacing: -0.1em;
		font-family: "Noto Sans JP", sans-serif;
		color: #572b05;
	}

	.example__list-txt p{
		line-height: 2.0;
		font-size: 1.0rem;
		text-align: justify;
	}

	.example__list-txt span{
		color:#dc0000;
		font-weight: 700;
	}

	.example-exam{

		background-repeat:no-repeat ;
	}
	
	    .example-exam__list {
        display: flex;
        flex-wrap: inherit;
        gap: 42px 0%;
        justify-content: center;
        margin-bottom: 80px;
    }

	.example-exam__list-box{
		width: 24%;
	}

	.example__illust{
		position: absolute;
		right: 12px;
		bottom: -32px;
	}

}


/* ========================================================================
  estimate
======================================================================== */
@media screen and (max-width:768px) {

	section.estimate {
    background: #fbefe8;
}

.estimate-head{
        background: #f55c00;
        text-align: center;
                padding: 30px 70px;
        position: relative;
}

.investigation-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
          padding: 20px 20px 40px;
        gap: 20px;
}

.investigation-grid li{
  width:auto;
}

.estimate-head::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-18px;
  transform:translateX(-50%);
  border-left:20px solid transparent;
  border-right:20px solid transparent;
  border-top:20px solid #f55c00;
}

.estimate-body{
  background:#fbefe8;
  padding:40px 20px 40px;
  display:flex;
  gap:40px;
  align-items:center;
}

h2.investigation-title {
    padding: 0 20px;
}

.estimate-text{
  flex:1;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
	line-height: 1.6;
}

.estimate-img{
  flex:1;
}

.estimate-img img{
  width:100%;
  border-radius:10px;
}

.repair-img {
    padding-bottom: 30px;
}

/* =========================
下の画像ブロック
========================= */

	.repair-block {
		padding-bottom: 80px;
		background: #fbefe8;
	}
	.repair-block-inner{
		max-width: 1200px;
		margin: 0 auto;
		display: flex;
		align-items: stretch;
		flex-wrap: wrap;
	}
	.repair-block-content{
		background-color: #f55c00;
		padding:56px 32px;
		text-align: center;
		width: 100%;
		order: 1;
	}
	.repair-block-content h3{
		margin-bottom: 36px;
	}
	.repair-block-content p{
		color: #fff;
		text-align: justify;
		font-size: 16px;
		line-height: 2.0;
	}
	.repair-img {
		max-width: 1200px;
		margin: 0 auto;
	}
	.repair-block-left{
		overflow: hidden;
		width: 50%;
		object-fit: cover;
		order: 2;
	}
	.repair-block-right{
		overflow: hidden;
		width: 50%;
		object-fit: cover;
		order: 3;
	}

	.repair-block-left img , .repair-block-right img{
		width: 100%;
		height: 100%;
		object-fit:cover;
	}



}

@media screen and (min-width:769px) {

section.estimate {
    background: #fbefe8;
}

	.estimate-head{
         background: #f55c00;
        text-align: center;
        padding: 80px 60px;
        position: relative;
}

.estimate-head img {
    width: 800px;
}

.estimate-head::after{
content: "";
        position: absolute;
        left: 50%;
        bottom: -40px;
        transform: translateX(-50%);
        border-left: 50px solid transparent;
        border-right: 50px solid transparent;
        border-top: 70px solid #f55c00;
}

.estimate-body{
  background:#fbefe8;
  padding:80px 20px 60px;
}

.estimate-container{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  gap:80px;
  align-items:center;
}

.estimate-text{
  flex:1;
  font-size: 16px;
  line-height: 2.0;
  font-weight: 500;
  text-align: justify;
}

.estimate-img{
  flex:1;
}

.estimate-img img{
  width:100%;
  border-radius:10px;
}

/* =========================
調査タイトル（画像）
========================= */

.investigation-title{
  text-align:center;
  margin-bottom:40px;
  background: #fbefe8;
}

.investigation-title img{
  width:100%;
  max-width:900px;
}


/* =========================
4カード
========================= */

.investigation-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  padding-bottom:80px;
}

/* カードの余計な幅を消す */
.investigation-card{
  width:100%;
}

.investigation-card img{
  width:100%;
  border-radius:12px;
}

.investigation-card p{
  background:#5a2a06;
  color:#fff;
  text-align:center;
  padding:8px;
  border-radius:20px;
  margin-top:10px;
  font-size:14px;
}

/* =========================
下の画像ブロック
========================= */

	.repair-block {
		padding-bottom: 80px;
		background: #fbefe8;
	}
	.repair-block-inner{
		max-width: 1200px;
		margin: 0 auto;
		display: flex;
		align-items: stretch;
	}
	.repair-block-content{
		background-color: #f55c00;
		padding:56px 42px;
		text-align: center;
		width: 48%;
	}
	.repair-block-content h3{
		margin-bottom: 36px;
	}
	.repair-block-content p{
		color: #fff;
		text-align: justify;
		font-size: 16px;
		line-height: 2.0;
	}
	.repair-img {
		max-width: 1200px;
		margin: 0 auto;
	}
	.repair-block-left{
		border-radius: 8px 0 0 8px;
		overflow: hidden;
		width: 26%;
		object-fit: cover;
	}
	.repair-block-right{
		border-radius: 0px 8px 8px 0px;
		overflow: hidden;
		width: 26%;
		object-fit: cover;
	}

	.repair-block-left img , .repair-block-right img{
		width: 100%;
		height: 100%;
		object-fit:cover;
	}
}

/* ========================================================================
  voice
======================================================================== */
@media screen and (max-width:768px) {
	.voice{
		background: #f3dfd4;
		text-align: center;
		padding: 0 0 3% 0;
	}

	.voice__ttl{
		width: 100%;
		margin: 0 auto 8%;
		position: relative;
		z-index: 1;
	}
	
	.voice__inner{
		max-width: 1000px;
		margin: 0 auto;
		position: relative;
		padding: 4% 0 0 0;
	}

	.voice__letter{
		position: absolute;
		right: 3%;
		top: 3%;
		z-index: 0;
		width: 32.5%;
	}

	.voice__list-box{
		/* display: flex;
		justify-content: space-between; */
		margin:0 auto 4%;
		width: 92%;
	}

	.voice__illust{
		width: 60%;
		margin-bottom: 10px;
	}

	.voice__bubble {
		box-shadow: 3px 3px 2px 1px rgba(204, 168, 147, 0.1);
		border-top-right-radius: 8px;
		border-top-left-radius: 8px;
		border-bottom-right-radius: 8px;
		background-color: #fff;
		color: #000;
		display: inline-block;
		font-size: 16px;
		font-weight: 400;
		width: 100%;
		padding: 24px;
		position: relative;
		line-height: 1.5;
		margin-bottom: 10px;
		text-align: left;
	}

	.voice__bubble-even {
		box-shadow: 3px 3px 2px 1px rgba(0, 0, 0, 0.1);
		border-top-right-radius: 8px;
		border-top-left-radius: 8px;
		border-bottom-right-radius: 8px;
		background-color: #ffffff;
		color: #000;
		display: inline-block;
		width: 100%;
		padding: 16px;
		position: relative;
		font-size: 8px;
		font-weight: 400;
		line-height: 1.5;
		margin-bottom: 10px;
		text-align: left;
	}

	.voice__list-ttl{
		line-height: 1.4;
		font-size: 1.2rem;
		font-weight: 700;
		border-bottom: 2px dotted #cecece;
		color: #1d1d1d;
		font-family: "Noto Sans JP", sans-serif;
		padding-bottom: 4%;
	}

	.voice__list-ttl span{
		color: #df2a2a;
	}

	.voice__list-txt{
		font-size: 0.9rem;
		font-family: "Noto Sans JP", sans-serif;
		padding-top: 4%;
		line-height: 1.6;
		text-align: justify;
	}

	.voice__list-txt span{
		background-color: #fff32e;
		font-weight: 700;
	}
}

@media screen and (min-width:769px) {
	.voice{
		background: #f3dfd4;
		text-align: center;
		padding: 0 0 60px 0;
	}

	.voice__ttl{
		margin-bottom: 84px;
		position: relative;
		z-index: 1;
	}
	
	.voice__inner{
		max-width: 1000px;
		margin: 0 auto;
		position: relative;
		padding: 100px 0 0 0;
	}

	.voice__letter{
		position: absolute;
		right: -10px;
		top: 36px;
		z-index: 0;
	}

	.voice__list{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: stretch;
	}

	.voice__list-box{
		flex-basis: 48%;
		margin-bottom: 20px;
		display: flex;
	}

	.voice__bubble {
		position: relative;
		display: block;
		width: 100%;
		height: 100%;
		padding: 40px;
		box-shadow: 3px 3px 3px 0px rgba(204, 168, 147, 0.1);
		border-top-right-radius: 16px;
		border-top-left-radius: 16px;
		border-bottom-right-radius: 16px;
		background-color: #fff;
		text-align: left;
		font-size: 16px;
		font-weight: 400;
		line-height: 1.5;
		color: #000;
		margin-bottom: 20px;
		align-items: stretch;
	}

	.voice__list-ttl{
		font-size: 1.45rem;
		font-weight: 700;
		border-bottom: 2px dotted #cecece;
		color: #1d1d1d;
		font-family: "Noto Sans JP", sans-serif;
		padding-bottom: 20px;
		line-height: 1.4;
		letter-spacing: -1px;
	}

	.voice__list-ttl span{
		color: #df2a2a;
	}

	.voice__list-txt{
		font-size: 1.05rem;
		font-family: "Noto Sans JP", sans-serif;
		padding-top: 20px;
		line-height: 2.0;
	}

	.voice__list-txt span{
		background-color: #fff32e;
		font-weight: 700;
	}

	.voice__illust{
		text-align: left;
		width: 204px;
		margin-bottom: 20px;
	}

}


/* ========================================================================
  faq
======================================================================== */
@media screen and (max-width:768px) {

	.faq{
		padding-bottom: 20px;
		background: #fbefe8;
	}

	.faq__ttl{
	
		background-position: center right;
		background-repeat: no-repeat;
		background-size: auto 100%;
	
		text-align: center;
		padding: 40px 0;
		margin-bottom: 0px;
	}

	.faq__ttl img{
		width: 71%;
	}

	.faq__list{
		display: flex;
		flex-direction: column;
	}
	
	.faq__list-box{
		background-color: #fff;
		        border: 3px solid #f55c00;
		width: 92%;
		padding: 0;
		margin: 0 auto 4%;
		border-radius: 8px;
		text-align: left;
	}

	.faq__q{
		background-color: #f9e9e0;
		
		border-top-left-radius: 8px;
		border-top-right-radius: 8px;
		padding:4.16% 2% 4.16% 13%;
		margin-bottom: 3.16%;
		display: flex;
		align-items: center;
		font-size: 1.0rem;
		font-weight: 700;
		font-family: "Noto Sans JP", sans-serif;
		line-height: 1.4;
		position: relative;
	}

	.faq__a{
		margin-bottom: 3.16%;
		display: flex;
		align-items: start;
		font-size: 0.8rem;
		font-family: "Noto Sans JP", sans-serif;
		line-height: 1.6;
		position: relative;
		padding:0 10% 0 13%;
	}

	.faq__q::before{
		content: "";
		background-image: url("../img/index/faq_icon-q.png");
		background-size: 100%;
		display: block;
		width: 30px;
		height: 30px;
		margin-right: 20px;
		position: absolute;
		top: 23%;
		left: 8px;
		text-align: justify;
	}

	.faq__a::before{
		content: "";
		background-image: url("../img/index/faq_icon-a.png");
		background-size: 100%;
		display: block;
		width: 30px;
		height: 30px;
		margin-right: 20px;
		position: absolute;
		top: 0;
		left: 8px;
	}
	
}


@media screen and (min-width:769px) {
	.faq{
		padding: 0 0 90px;
		background: #fbefe8;
	}

	.faq__ttl{

		background-position: center right;
		background-repeat: no-repeat;
		background-position: calc(50% + 400px) center;
		background-size: auto 120%;
		text-align: center;
		padding: 60px 0;
        margin-bottom: 0;
	}

	.faq__list{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	
	.faq__list-box{
		background-color: #fff;
		        border: 3px solid #f55c00;
		border-radius: 8px;
		flex-basis: 49%;
		padding: 0;
		margin-bottom: 2%;
		text-align: left;
	}

	.faq__list-box:nth-child(7),
	.faq__list-box:nth-child(8){
		margin-bottom: 0;
	}

	.faq__q{
		align-items: center;
		background-color: #ffe6d7;

		border-top-left-radius: 8px;
		border-top-right-radius: 8px;
		display: flex;
		font-size: 1.2rem;
		font-weight: 700;
		font-family: "Noto Sans JP", sans-serif;
		height: 80px;
		margin-bottom: 3.16%;
	}

	.faq__a{
		padding-bottom: 3.16%;
		margin-bottom: 5.16%;
		display: flex;
		align-items: start;
		font-size: 1.0rem;
		font-family: "Noto Sans JP", sans-serif;
		line-height: 1.8;
		position: relative;
		padding: 0px 30px 0 90px;
	}

	.faq__q::before{
		content: "";
		background-image: url("../img/index/faq_icon-q.png");
		display: block;
		width: 47px;
		height: 47px;
		margin: 10px 20px 10px 20px;
		background-repeat: no-repeat;
	}

	.faq__a::before{
		content: "";
		background-image: url("../img/index/faq_icon-a.png");
		display: block;
		width: 47px;
		height: 47px;
		margin-right: 20px;;
		position: absolute;
		top: 0;
		left: 20px;
		background-repeat: no-repeat;
	}
}

/* ========================================================================
  area
======================================================================== */

@media screen and (max-width:768px) {
	.area{
		background-color: #ddeeff;
		background-image: url("../img/index/sp/area_bg.png");
		text-align: center;
		height: 180vw;
		background-position: top 77px center;
		background-repeat: no-repeat;
		padding: 27px 0 0;
		background-size: 100%;
	}
	
	.area_02{
		background-color: #ddeeff;
		background-image: url("../img/index/sp/area_bg_repair.png");
		text-align: center;
		height: 180vw;
		background-position: top 77px center;
		background-repeat: no-repeat;
		padding: 27px 0 0;
		background-size: 100%;
	}

	.area__container{
		margin: 0 5%;
		position: relative;
	}

	.area__ttl{
		margin: 0 auto 100vw;
		width: 60%;
	}

	.area__sttl{
		margin-bottom: 10px;
	}
	.area__text{
		font-size: 0.73rem;
		line-height: 1.6;
		text-align: left;
		margin: 0 auto;
	}

	.area__text span{
		display: block;
		font-size: 0.64rem;
		margin-top: 10px;
	}

}

@media screen and (min-width:769px) {
	.area{
		background-color: #ddeeff;
		background-image: url("../img/index/area_bg.png");
		background-position: top 200px center;
		background-repeat: no-repeat;
		text-align: center;
		padding: 80px 0 50px;
	}
	
	.area_02{
		background-color: #ddeeff;
		background-image: url("../img/index/area_bg_repair.png");
		background-position: top 200px center;
		background-repeat: no-repeat;
		text-align: center;
		padding: 80px 0 50px;
	}

	.area__ttl{
		margin-bottom: 600px;
	}

	.area__container{
		align-items: center;
		display: flex;
		width: 1200px;
		margin: 0 auto;
		position: relative;
	}

	.area__txt{
		width: 374px;
		position: absolute;
		text-align: left;
		top: 48px;
		left: 0;
	}

	.area__sttl{
		margin: 0 20px 0 0;
	}

	.area__text{
		font-size: 0.9rem;
		line-height: 2.2;
		text-align: left;
		flex-basis: 80%;
	}

	.area__text span{
		display: block;
		font-size: 0.8rem;
		margin-top: 20px;
	}

}

/* ========================================================================
  support
======================================================================== */
@media screen and (max-width:768px) {
	.support{
		padding: 10% 0 0;
	}

	.support__ttl{
		width: 90%;
		margin: 0 auto 10.4%;
	}

	.support__image{
		width: 36%;
		margin: 0 auto 3%;
	}

	.support__container{
		border: solid 5px #e4c43a;
		background-image: linear-gradient(120deg, rgba(244, 230, 172, 1) 20%, rgba(255, 253, 247, 1) 50%, rgba(244, 230, 172, 1) 70%);
		padding: 5% 4% 5%;
		margin: 0 3% 6.4%;
	}

	.support__text > p{
		font-size: 0.85rem;
		margin-bottom: 8px;
		line-height: 1.6;
	}

	.support__text > p:last-child{
		margin-bottom: 0;
	}
}

@media screen and (min-width:769px) {
	.support{
	padding: 60px 60px 0;
	}

	.support__ttl{
		margin: 0 auto 2%;
		text-align: center;
	}

	.support__image{
		margin: 0 0 0 40px;
	}

	.support__container{
		background-image: url("../img/index/support_bg.png");
		background-size: 100%;
		background-repeat: no-repeat;
		display: flex;
		padding: 30px 0 30px;
		margin: 0 auto ;
		width: 995px;
	}

	.support__text{
		flex-basis: 62%;
		margin: 10px 0 0 30px;
		text-align: justify;
	}

	.support__text > p{
		font-size: 1.0rem;
		line-height: 1.6;
		margin-bottom: 20px;
	}	

p.haba {
    width: 74%;
}


}

/* ========================================================================
  fair
======================================================================== */

@media screen and (max-width:768px) {
	.fair{
		background-color: #fbefe8;
		padding: 8.66% 0 0 0;
	}

	.fair__ttl{
		width: 68.6%;
		margin:0 auto 5.33%;
	}

	.fair__list{
		margin: 0 5.33%;
	}

	.fair__list-box{
		margin-bottom: 5.33%;
		margin-right: 4px;
	}

	.fair__list-box-inner{
		box-shadow: 3px 3px 2px 1px rgba(204, 168, 147, 0.1);
		border-radius: 8px;
		background-color: #fff;
	}

	.fair__list-box-inner img {
    	border-radius: 8px 8px 0px 0;
	}

	[class*="fair__sttl"]{
		align-items: center;
		display: flex;
		margin: 0 auto 6.4%;
		justify-content: center;
	}

	.fair__sttl01 img{
		width: 80%;
	}

	.fair__sttl02 img{
		width: 80%;
	}

	.fair__sttl03 img{
		width: 80%;
	}

	.fair__list-text{
		padding: 8% 0 8%;
	}

		li.fair__list-box img {
}

	.fair__text{
		font-size: 0.88rem;
		line-height: 1.6;
		margin: 0 5%;
	}
}

@media screen and (min-width:769px) {
	.fair{
		background-color: #fbefe8;
		padding: 6.4% 0 7%;
	}

	.fair__ttl{
		width: 68.6%;
		margin:0 auto 5.33%;
	}

	.fair__list{
		align-items: stretch;
		display: flex;
		justify-content: space-between;
	}

	.fair__list-box{
		display: flex;
		flex-basis: 32%;
		flex-direction: column;
		padding: 0 10px 10px 0;
	}

	.fair__list-box-inner{
		border-radius:  10px;
		box-shadow: 3px 3px 3px 0px rgba(204, 168, 147, 0.1);
		height: 100%;
		background-color: #fff;
	}

	[class*="fair__sttl"]{
		align-items: center;
		display: flex;
		min-height: 120px;
		margin: 0 auto 6.4%;
		justify-content: center;
	}

	.fair__list-box-inner img{
		width: 100%;
		height: auto;
		object-fit: cover;
	}


	.fair__sttl01 img{
		width: 94%;
	}

	.fair__sttl02 img{
		width: 94%;
	}

	.fair__sttl03 img{
		width: 94%;
	}
	.fair__list-box-inner img {
    border-radius: 10px 10px 0px 0;
}

	.fair__list-text{
		background-color: #fff;
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
		padding: 30px 20px 20px;
		flex-grow: 1;
	}

	.fair__text{
		font-size: 1rem;
		line-height: 1.8;
		text-align: left;
		margin-top: auto;
	}
}

/* ========================================================================
  payment
======================================================================== */

@media screen and (max-width:768px) {
	.payment{
		margin: 12% auto 4% ;
		text-align: center;
	}

	.payment__ttl{
		width: 48.4%;
		margin: 0 auto 12%;
	}
	
	.payment__list{
		display: flex;
		flex-direction: column;
	}

	.payment__list-box{
		border: 2px solid #f55c00;
		border-radius: 8px;
		width: 92%;
		margin: 0 auto 6%;
	}

	.payment__sttl{
		color: #fff;
		background-color: #f55c00;
		font-size: 1.3rem;
		font-weight: 700;
		padding: 10px 0;
		border-radius: 4px 4px 0 0;
		font-family: "Noto Sans JP", sans-serif;
		margin-bottom: 20px;
	}

	.payment__list-box p{
		text-align: left;
		font-size: 0.96rem;
		line-height: 1.8;
		margin: 10px 20px 20px;
	}

	.payment__list-box img{
		margin: 0 auto 0;
		width: 92%;
	}

	.payment__list-box .payment_image_mid{
		width: 76%;
		margin-top: 3%;
	}

}

@media screen and (min-width:769px) {
	.payment{
		max-width:1000px;
		margin: 94px auto 140px;
		text-align: center;
	}

	.payment__ttl{
		font-weight: 700;
		margin-bottom: 84px;
	}
	
	.payment__list{
		display: flex;
		justify-content: space-between;
	}

	.payment__list-box{
		border: 3px solid #f55c00;
		border-radius: 16px;
		width: 32%;
		min-height: 408px;
	}

	.payment__list-box p{
		text-align: left;
		font-size: 1.0rem;
		line-height: 1.6;
		margin: 0 20px;
	}

	.payment__list-box img{
		margin: 14px 0;
		width: 92%;
	}

	.payment__list-box .payment_image_mid{
		margin: 40px 0;
		width: 80%;
	}

	.payment__sttl{
		color: #fff;
		background-color: #f55c00;
		font-size: 1.6rem;
		font-weight: 700;
		padding: 20px 0;
		border-radius: 8px 8px 0 0;
		font-family: "Noto Sans JP", sans-serif;
	}

}

/* ========================================================================
  about
======================================================================== */

@media screen and (max-width:768px) {
	.about{
		background-image: url("../img/index/sp/about_bg.png");
		background-size: 100%;
		background-repeat: no-repeat;
		padding: 13.3% 0 0% 0;
		background-color: #74ceff;
	}

	.about__ttl{
		width: 80%;
		margin: 0 auto 8%;
	}

	.about__inner{
		max-width: 1200px;
		margin: 0 auto;
	}

	.about__text{
		width: 90%;
		margin: 0 auto ;
	}

	.about__text p{
		line-height: 1.8;
		text-align: justify;
		font-weight: 600;
		margin-bottom: 20px;
	}

	.about__text p:last-child{
		line-height: 1.8;
		text-align: justify;
		font-weight: 600;
		margin-bottom: 0px;
	}

	.about__container-outer{
		background-color: #fff;
		padding-bottom: 8%;
	}

	.about__container{
		border: 2px solid #f55c00;
		border-radius: 8px;
		background-color: #fff;
		padding: 0 6% 6%;
		width: 92%;
		margin: 0 auto;
	}

	.about__sttl{
		width: 74%;
        margin: -1px auto;
	}

	.about__container-lead{
		text-align: left;
		display: flex;
		align-items: center;
	}

	.about__illust{
		width: 28%;
		float: right;
		margin-left: 10px;
	}

	.about__container-lead-outer{
		margin: 6% 0 12%;
	}

	.about__container-lead-outer p{
		font-size: 0.83rem;
		font-weight: 600;
		line-height: 1.9;
	}

	.about__container-lead p{
		font-size: 0.8rem;
	}

	.about__list{
		display: flex;
		flex-direction: column;
		margin-top: 6%;
	}

	.about__list-box{
		text-align: left;
		width: 100%;
		display: flex;
		align-items: center;
		margin-bottom: 6%;
	}

	.about__list-box img{
		width:  50%;
		margin-right: 6%;
		display: block;
	}

	.about__list-box p{
		font-size: 0.83rem;
		font-weight: 600;
		line-height: 1.6;
		width: 50%;
		display: block;
	}

	.about__list-box span{
		color: #dc0000;
		font-size: 0.8rem;
		margin: 0 0 2%;
		display: inline-block;
	}

}

@media screen and (min-width:769px) {
	.about{
		background-image: url("../img/index/about_ttl-bg.png");
		background-size: 2400px;
		background-position: top center;
		background-repeat: no-repeat;
		padding: 80px 0 120px 0;
	}

	.about__ttl{
		margin-bottom: 60px;
		text-align: center;
	
	}

	.about__text{
		width: 545px;
		font-size: 1.0rem;
		text-align: left;
		margin-bottom: 5%;
	}

	.about__text p{
		font-size: 0.93rem;
		margin-bottom: 22px;
		line-height: 2;
	}

	.about__text p:last-child{
		margin-bottom: 97px;
	}

	.about__inner{
		width: 1200px;
		margin: 0 auto;
		position: relative;
	}

	.about__container{
		border: 2px solid #f55c00;
		border-radius: 16px;
		background-color: #fff;
		padding: 0 50px 80px;
		max-width: 1200px;
		margin: 0 auto;
		text-align: center;
	}

	.about__container-lead{
		text-align: left;
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}

	.about__container-lead p{
		font-size: 1.0rem;
		line-height: 2.0;
		flex-basis: 78%;
		margin: 50px 0 40px;
	}

	.about__container-lead img{
		margin-top: 40px;
		margin-right: 20px;
	}

	.about__list{
		display: flex;
		justify-content: space-between;
	}

	.about__list-box{
		text-align: left;
		flex-basis: 32%;
	}

	.about__list-box span{
		color: #dc0000;
		font-size: 1.0rem;
		margin: 20px 0 10px;
		display: inline-block;
	}

	.about__list-box p{
		font-size: 1.4rem;
		font-weight: 600;
		line-height: 1.2;
	}
	
}

/* ========================================================================
  coupon
======================================================================== */

@media screen and (max-width:768px) {
	.coupon__ttl{
		width: 90%;
		margin: 0 auto 8%;
	}
	
	.coupon{
		background-color: #fbefe8;
		padding: 12% 0;
	}

	.coupon .inner{
		width: 92%;
		margin: 0 auto;
	}
}

@media screen and (min-width:769px) {
	.coupon{
		background-color: #fbefe8;
		padding: 70px 0 100px;
	}
	.coupon__ttl{
		margin-bottom: 4%;
	}

}

/* ========================================================================
  footer
======================================================================== */

@media screen and (max-width:768px) {
	.footer{
		background-color: #242424;
		padding: 8% 0 40%;
		text-align: center;
		color: #fff;
	}
}

@media screen and (min-width:769px) {
	.footer{
		background-color: #242424;
		padding: 4% 0 10%;
		text-align: center;
		color: #fff;
	}
}

/* ========================================================================
  ページトップへ
======================================================================== */

#page_top {
    position: fixed;
    right: 10px;
    width: 55px;
    height: 55px;
    background: rgba(34, 34, 38, 0.8) no-repeat;
	border-radius: 8px;
	z-index: 999;
}

#page_top a::before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 25px;
    height: 25px;
    margin: auto;
    color: #fff;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f077';
    font-size: 25px;
    text-align: center;
}


/* ========================================================================
  フロートボタン
======================================================================== */

@media screen and (max-width:768px) {
	.float_btn{
		display: none;
		position: fixed;
		bottom: 0;
		z-index: 999;
 	 }

 	 .float_btn-inner{
		display: flex;
		background-color: rgba(0, 0, 0, 0.3);
		padding: 2%;
		column-gap: 2%;
	}
}

/* ========================================================================
  屋根修理のレスキュー
======================================================================== */


@media screen and (max-width:768px) {
	.key-roof {
		position: relative;
	}

	.case-roof{
		background-color: #dfe9f5;
		background-position: top center;
		background-size: 100%;
		padding: 3.2% 0 10%;
	}

	.case__ttl-roof{
		margin: 0 10% 10%;

	}

	.howto__list-box-roof{
		background: #fff;
		border: 2px solid #0a4dbb;
		border-radius: 6px;
		width: 100%;
		box-shadow: 3px 3px 2px 1px rgba(0, 0, 0, 0.1);
		margin: 0 4px 20px 0;
		overflow: hidden;
	}

	.howto__list-box-roof p{
		padding: 5% 8%;
		text-align: left;
		line-height: 1.6;
		font-size: 0.85rem;
	}


	.howto__sttl-roof-sp01{
		background-image: url(../img/index/sp/howto_sttl-roof01_bg.png);
		background-repeat: no-repeat;
		background-position: center left 5.5%;
	}
	.howto__sttl-roof-sp01 img{
		width: 54%;
	}

	.howto__sttl-roof-sp02{
		background-image: url(../img/index/sp/howto_sttl-roof02_bg.png);
		background-repeat: no-repeat;
		background-position: center left 5.5%;
	}
	.howto__sttl-roof-sp02 img{
		width: 54%;
	}

	.howto__sttl-roof-sp03{
		background-image: url(../img/index/sp/howto_sttl-roof03_bg.png);
		background-repeat: no-repeat;
		background-position: center left 5.5%;
	}
	.howto__sttl-roof-sp03 img{
		width: 48%;
	}

	.howto__sttl-roof-sp04{
		background-image: url(../img/index/sp/howto_sttl-roof04_bg.png);
		background-repeat: no-repeat;
		background-position: center left 5.5%;
	}
	.howto__sttl-roof-sp04 img{
		width: 54%;
	}

	.howto__sttl-roof-sp05{
		background-image: url(../img/index/sp/howto_sttl-roof05_bg.png);
		background-repeat: no-repeat;
		background-position: center left 5.5%;
	}
	.howto__sttl-roof-sp05 img{
		width: 40%;
	}

	.howto__sttl-roof-sp06{
		background-image: url(../img/index/sp/howto_sttl-roof06_bg.png);
		background-repeat: no-repeat;
		background-position: center left 5.5%;
	}

	.howto__sttl-roof-sp06 img{
		width: 54%;
	}

	.howto__sttl-roof-sp07{
		background-image: url(../img/index/sp/howto_sttl-roof07_bg.png);
		background-repeat: no-repeat;
		background-position: center left 5.5%;
	}

	.howto__sttl-roof-sp07 img{
		width: 40%;
	}

	.howto__sttl-roof-sp08{
		background-image: url(../img/index/sp/howto_sttl-roof08_bg.png);
		background-repeat: no-repeat;
		background-position: center left 5.5%;
	}

	.howto__sttl-roof-sp08 img{
		width: 54%;
	}

	.flow__ttl-roof{
		background-color: #0446b2;
		padding: 4.26% 7.2% 7.6%;
		margin: 0 auto 10%;
	}

	.trouble-roof{
		background-color: #d8e4f3;
		background-position: top center;
		background-repeat: no-repeat;
		background-size: 100%;
		padding: 7.46% 0 0 0;
	}
	

	.trouble__list-roof{
		margin: 0 5.33% 0 4.53%;
	}

	.troubleExample-roof{
		background-image: url(../img/index/sp/trouble_arrow.png);
		background-position: top center;
		background-repeat: no-repeat;
		background-size: 10%;
		background-color: #1b3e84;
		border-radius: 20px;
		padding: 10.9% 0 8.3%;
		margin: 0 2.66%;
	}

	.troubleExample__sttl-roof{
		margin:0 auto 9.43%;
		width: 78.7%;
	}

	.troubleExample__list-roof{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin: 0 6%;
	}

	.troubleExample__list-item-roof{
		flex-basis: 45%;
		margin-bottom: 20px;
	}

	.troubleExample__list-item-roof:nth-child(7),
	.troubleExample__list-item-roof:nth-child(8){
		margin-bottom: 0;
	}

	.area-roof{
		background-color: #e4eeff;
		background-image: url("../img/index/sp/area_bg-roof.jpg");
		text-align: center;
		height: 180vw;
		background-position: top 77px center;
		background-repeat: no-repeat;
		padding: 27px 0 0;
		background-size: 100%;
	}

	.support-roof_left p{
		font-size: 0.85rem;
		line-height: 1.6;
		text-align: justify;
	}

	.support-roof_right{
		margin-top: 32px;
		text-align: center;
	}

	.support-roof_right img{
		width: 60%;
	}

	.fee__list-roof{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.fee__list-box-roof{
		width: 47%;
		margin-bottom: 5%;
	}

	.fee__list-box-roof:last-child{
		margin-bottom: 0;
	}


	

	
}

@media screen and (min-width:769px) {
	.key-roof {
		background-image: url("../img/index/key-roof_bg.jpg");
		background-position: top center;
		background-repeat: no-repeat;
		position: relative;
	}


	.howto{
		padding: 100px 0 80px;
		background-color: #fbefe8;
	}

	.howto__ttl-outer{
		background-image: url("../img/index/howto_ttl-bg.jpg"),url("../img/index/howto_ttl-bg-side.jpg");
		background-repeat: no-repeat,repeat-x;
		background-position: center;
		padding: 90px 0 24px;
		text-align: center;
	}

	.howto__ttl{
		margin: 0 auto 30px;
		text-align: center;
	}

	.howto__txt{
		font-size: 1.3rem;
		font-weight: 700;
		line-height: 1.6;
		margin-bottom: 70px;
		text-align: center;
	}

	.howto__lead{
		font-size: 1.3rem;
		line-height: 1.6;
		margin-bottom: 120px;
		font-family: "Noto Sans JP", sans-serif;
		font-weight: 600;
	}

	.howto__inner{
		max-width: 1200px;
		margin: 0 auto;
	}
	.howto__list-roof{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.howto__list-box-roof{
		background: #fff;
		border: 2px solid #0a4dbb;
		border-radius: 12px;
		width: 23.5%;
		box-shadow: 3px 3px 2px 1px rgba(0, 0, 0, 0.1);
		margin: 0 4px 32px 0;
	}

	

	.howto__list-box-roof img{
		display: block;
		width: 100%;
	}

	[class*="howto__sttl-roof"]{
		align-items: center;
		background-color:#0a4dbb;
		background-position: center left 5.5%;
		background-repeat: no-repeat;
		background-size: 14.5%;
		border-radius: 9px 9px 0 0;
		display: flex;
		height:102px;
		padding: 16px 0 16px 64px;
		text-align: left;
	}

	.howto__sttl-roof-01{
		background-image: url(../img/index/sp/howto_sttl-roof01_bg.png);
	}

	.howto__sttl-roof-02{
		background-image: url(../img/index/sp/howto_sttl-roof02_bg.png);
	}

	.howto__sttl-roof-03{
		background-image: url(../img/index/sp/howto_sttl-roof03_bg.png);
	}

	.howto__sttl-roof-04{
		background-image: url(../img/index/sp/howto_sttl-roof04_bg.png);
	}

	.howto__sttl-roof-05{
		background-image: url(../img/index/sp/howto_sttl-roof05_bg.png);
	}

	.howto__sttl-roof-06{
		background-image: url(../img/index/sp/howto_sttl-roof06_bg.png);
	}

	.howto__sttl-roof-07{
		background-image: url(../img/index/sp/howto_sttl-roof07_bg.png);
	}

	.howto__sttl-roof-08{
		background-image: url(../img/index/sp/howto_sttl-roof08_bg.png);
	}


	.howto__sttl-roof-01 img{
		width: 162px;
	}

	.howto__sttl-roof-02 img{
		width: 162px;
	}

	.howto__sttl-roof-03 img{
		width: 138px;
	}

	.howto__sttl-roof-04 img{
		width: 167px;
	}

	.howto__sttl-roof-05 img{
		width: 111px;
	}

	.howto__sttl-roof-06 img{
		width: 152px;
	}

	
	.howto__sttl-roof-07 img{
		width: 111px;
	}

	.howto__sttl-roof-08 img{
		width: 153px;
	}

	.howto__list-box-roof p{
		padding: 20px 25px;
		text-align: left;
		line-height: 1.6;
		font-size: 1.0rem;
		text-align: justify;
	}

	.troubleExample-roof{
		background-image: url(../img/index/sp/trouble_arrow.png);
		background-position: top center;
		background-repeat: no-repeat;
		background-size: 9%;
		background-color: #1b3e84;
		border-radius: 20px;
		padding: 10.9% 0 4.3%;
		margin: 0 auto;
	}
	

	.trouble__list-roof{
		background-image: url(../img/index/trouble_list_bg-roof.png);
		background-repeat: no-repeat;
		background-position: right 20px bottom;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin: 0 auto 8.9%;
	}

	.trouble-roof{
		background-color: #d8e4f3;
		background-image: url(../img/index/trouble_end_bg-roof.jpg);
		background-position: bottom center;
		background-repeat: no-repeat;
		background-size: auto;
		padding: 100px 0 556px;
	}




	.troubleExample__list-roof{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin: 0 6%;
	}

	.troubleExample__list-item-roof{
		flex-basis: 22%;
		margin-bottom: 5%;
	}

	.troubleExample__list-item-roof:nth-child(4),
	.troubleExample__list-item-roof:nth-child(5),
	.troubleExample__list-item-roof:nth-child(6){
		margin-bottom: 0;
	}

	.area-roof{
		background-color: #e4eeff;
		background-image: url("../img/index/area_bg-roof.jpg");
		background-position: top 120px center;
		background-repeat: no-repeat;
		text-align: center;
		padding: 80px 0 50px;
	}

	.case-roof{
		background-color: #dfe9f5;
		background-position: top left;
		background-repeat: repeat-x;
		background-size: 2400px;
		padding: 27px 0 100px;
	}

	.support-roof{
		display: flex;
		justify-content: space-between;
	}

	.support-roof_left{
		width: 68%;

	}

	.support-roof_left p{
		font-size: 1.0rem;
		line-height: 1.8;
	}

	.support-roof_right{
		width: 28%;
		
	}

	.fee__inner-roof{
		background-repeat: no-repeat;
		background-position: right 10px bottom 16px;
		background-size: 161px;
		max-width: 1200px;
		margin: 0 auto ;
		position: relative;
	}

	.fee__list-roof{
		display: flex;
		flex-wrap: wrap;
		justify-content:space-between;
		row-gap: 24px;
	}

	.fee__list-box-roof{
		width: 19.0%;
	}

	

}
/* ========================================================================
  footer
======================================================================== */
@media screen and (max-width:768px) {
  .footer {
    background-color: #242424;
    padding: 8% 0 30%;
    text-align: center;
    color: #fff;
  }
}
@media screen and (min-width:769px) {
  .footer {
    background-color: #242424;
    padding: 4% 0;
    text-align: center;
    color: #fff;
  }
}
/* ========================================================================
  繝壹�繧ｸ繝医ャ繝励∈
======================================================================== */
#page_top {
  position: fixed;
  right: 10px;
  width: 55px;
  height: 55px;
  background: rgba(34, 34, 38, 0.8) no-repeat;
  border-radius: 8px;
}
#page_top a::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 25px;
  height: 25px;
  margin: auto;
  color: #fff;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f077';
  font-size: 25px;
  text-align: center;
}
/* ========================================================================
  繝輔Ο繝ｼ繝医�繧ｿ繝ｳ
======================================================================== */
@media screen and (max-width:768px) {
  .float_btn {
    display: none;
    position: fixed;
    bottom: 0;
    z-index: 999;
	width: 100%;
  }
  .float_btn-inner {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 2%;
    column-gap: 2%;
  }
}
.footer .footer_list {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .footer .footer_list {
    flex-wrap: wrap;
  }
}
.footer .footer_list .list_item {
  border-right: 1px solid #fff;
}
@media screen and (max-width: 750px) {
  .footer .footer_list .list_item {
    border: none;
    position: relative;
  }
  .footer .footer_list .list_item::after {
    content: "";
    display: block;
    background: #fff;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0%, -50%);
    width: 0.13vw;
    height: 3.2vw;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .footer .footer_list .list_item:nth-of-type(3)::after, .footer .footer_list .list_item:last-of-type::after {
    display: none;
  }
}
.footer .footer_list .list_item:last-of-type {
  border: none;
}
.footer .footer_list .list_item a {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-align: center;
  color: #fff;
  padding: 0 1.2em;
}
@media screen and (max-width: 1000px) {
  .footer .footer_list .list_item a {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 750px) {
  .footer .footer_list .list_item a {
    font-size: 3.2vw;
    line-height: 6vw;
  }
}
.footer .copy {
  margin-top: 21px;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .footer .copy {
    margin-top: 2.1vw;
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 750px) {
  .footer .copy {
    margin-top: 3.6vw;
    font-size: 2.8vw;
  }
}
.footer__copy {
  padding: 1.5rem;
}
.inner_title {
  font-size: 1.5rem;
  font-weight: bold;
  padding: 0 2px 10px;
}
@media screen and (max-width:768px) {
  .footer_02 {
    background-color: #242424;
    padding: 8% 0;
    text-align: center;
    color: #fff;
  }
}
@media screen and (min-width:769px) {
  .footer_02 {
    background-color: #242424;
    padding: 4% 0;
    text-align: center;
    color: #fff;
  }
}
.footer_02 .footer_02_list {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .footer_02 .footer_02_list {
    flex-wrap: wrap;
  }
}
.footer_02 .footer_02_list .list_item {
  border-right: 1px solid #fff;
}
@media screen and (max-width: 750px) {
  .footer_02 .footer_02_list .list_item {
    border: none;
    position: relative;
  }
  .footer_02 .footer_02_list .list_item::after {
    content: "";
    display: block;
    background: #fff;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0%, -50%);
    width: 0.13vw;
    height: 3.2vw;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .footer_02 .footer_02_list .list_item:nth-of-type(3)::after, .footer_02 .footer_02_list .list_item:last-of-type::after {
    display: none;
  }
}
.footer_02 .footer_02_list .list_item:last-of-type {
  border: none;
}
.footer_02 .footer_02_list .list_item a {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-align: center;
  color: #fff;
  padding: 0 1.2em;
}
@media screen and (max-width: 1000px) {
  .footer_02 .footer_02_list .list_item a {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 750px) {
  .footer_02 .footer_02_list .list_item a {
    font-size: 3.2vw;
    line-height: 6vw;
  }
}
.footer_02 .copy {
  margin-top: 21px;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .footer_02 .copy {
    margin-top: 2.1vw;
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 750px) {
  .footer_02 .copy {
    margin-top: 3.6vw;
    font-size: 2.8vw;
  }
}
.footer_02__copy {
  padding: 1.5rem;
}
.inner_title {
  font-size: 1.5rem;
  font-weight: bold;
  padding: 0 17px 10px;
}
.c-table01 {
  margin: 40px auto;
  overflow: hidden;
  border-radius: 3px
}
.c-table01 tr {
  border-bottom: 1px solid #333;
}
.c-table01 tr:last-of-type {
  border-bottom: none
}
.c-table01 th, .c-table01 td {
  padding: 20px;
  text-align: left;
  vertical-align: middle
}
.c-table01 th {
  background: var(--mh--color--secondary-100);
  font-weight: 700;
  line-height: var(--mh--line-height--sm)
}
@media(max-width: 767px) {
  .c-table01 th, .c-table01 td {
    display: block;
    width: 100%
  }
}
@media(min-width: 768px) {
  .c-table01 {
    border-radius: 20px
  }
  .c-table01 th, .c-table01 td {
    height: 80px;
    padding-block: 23px;
    padding-inline: 40px
  }
  .c-table01 th {
    width: 280px
  }
}