@charset "utf-8";
* {
	margin: 0px;
	padding: 0px;
	list-style: none;
	font-family: "Noto Sans JP", sans-serif;
	-webkit-appearance: none;
	box-sizing: border-box;
}
/*-------------------------------------------------
	Reset
-------------------------------------------------*/
html, body, h1, h2, h3, h4, h5, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td, input, textarea {
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: normal;
	vertical-align:baseline;
}
article, header, footer, aside, figure, figcaption, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
	list-style-type: none;
}
/*-------------------------------------------------
	all
-------------------------------------------------*/
body {
	width: 100%;
	font-size: 19px;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	color: #2B2929;
	line-height: 1;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
a {
	text-decoration: none;
	color: #000;
	outline: none;
	transition: all 0.3s ease;
}
a img {
	transition: all 0.3s ease;
}
a:hover ,
a:hover img {
	opacity: 0.8;
}
a:focus {
	outline: none;
}
a img {
	border: none;
}
img {
	max-width: 100%;
	height: auto;
}

.all_wrap{
	overflow: hidden;
}


/* SP
------------------ */
@media screen and (max-width: 860px) {
	body {
		min-width: 100%;
	}
	
	.all_wrap{
		overflow: visible;
		padding-bottom: 80px;
	}

	
	header,
	#cv_sp,
	#plan,
	#banner,
	#service,
	#start,
	#price,
	#flow,
	#faq,
	#map,
	footer{
		overflow: hidden;
	}
	
}



/* 初期はPC表示にしてSP非表示 */
.only-sp {
  display: none!important;
}

/* スマホ（例: 768px以下）のときは逆にする */
@media screen and (max-width: 860px) {
  .only-pc {
	display: none!important;
  }
  .only-sp {
	display: block!important;
  }
}


.inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.roboto{
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
}

button {
  color: black;          /* 文字色 */
}


.inner_w940{
	max-width: 940px;
	margin: 0 auto;
}

.inner_w1140{
	max-width: 1140px;
	margin: 0 auto;
}

/* SP
------------------ */
@media screen and (max-width: 860px) {
	.inner_w940{
		max-width: 940px;
		margin: 0 5%;
	}
	
	.inner_w1140{
		max-width: 1140px;
		margin: 0 5%;
	}

}

/*------------------------------------------------
	contents
------------------------------------------------*/

/*------------------------------------------------
	header
------------------------------------------------*/

header{ background: white;}

header .inner{ 
	padding: 19px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	width: 100%;
	z-index: 9999;
	background: white;
	}
	
header h1{ max-width: 280px; line-height: 0;}

header .right{
	display: flex;
	height: 57px;
}

header .right .tel{
	display: flex;
	height: 47px;
	padding-right: 20px;
}
header .right .tel img{
	height: 47px;
	margin-right: 3px;
}
header .right .tel p {
	margin-bottom: 3px;
	padding-top: 5px;
}

header .right .tel p img {
	height: 48px;
}

header .right .tel span{
	font-size: 10px;
	color: #2B2929;
	line-height: 1.2em;
	display: block;
	text-align: justify;
    text-align-last: justify;
}



header .right .btn {
  display: inline-block;        
  border: 1px solid #B79A57;
  background: #B79A57;
  border-radius: 30px;           /* 角丸 */
  color: #fff;                /* テキストの色 */
  font-size: 18px;               /* フォントサイズ調整 */
  font-weight: bold;             /* 太字 */
  text-decoration: none;         /* リンク下線を消す */
  text-align: center;            /* 中央揃え */
  transition: 0.3s;              /* ホバー時のアニメーション */
  width: 200px;
  margin-right: 8px;
}

header .right .btn {
  display: inline-block;
  padding: 17px 30px 15px 30px;        
  color: #fff;
  background-color: #b48a47; /* 茶色部分 */
  border: 1px solid #b48a47; /* 外側：茶色 */
  border-radius: 50px;
  position: relative;
  font-weight: bold;
  text-decoration: none;
  width: 200px;
}

header .right .btn::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  border: 2px solid #fff; /* 内側：白 */
  border-radius: 50px;
  pointer-events: none;
}





header .right .btn2 {
  display: inline-block;
  padding: 17px 30px 15px 30px;        
  color: #fff;
  background-color: #D4361A; /* 茶色部分 */
  border: 1px solid #D4361A; /* 外側：茶色 */
  border-radius: 50px;
  position: relative;
  font-weight: bold;
  text-decoration: none;
  width: 200px;
  text-align: center;
}

header .right .btn2::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  border: 2px solid #fff; /* 内側：白 */
  border-radius: 50px;
  pointer-events: none;
}


/* 中央から広がる白背景 */
header .right .btn2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: inherit;
  transform: scale(0);          /* 最初は0（見えない） */
  transform-origin: center;     /* 中央から拡大 */
  transition: transform 0.5s ease;
  z-index: -1;                  /* テキストの下に配置 */
}

/* ホバー時の変化 */
header .right .btn2:hover {
  color: #fff; /* テキストを緑に */
}
header .right .btn2:hover::before {
  transform: scale(1); /* 白背景が中央から広がる */
}


/* SP
------------------ */
@media screen and (max-width: 860px) {
	header h1{ max-width: 50%; line-height: 0;}
	header .inner {padding: 10px 20px;	position: relative;	}
	header .right{display: none;}

}


@media screen and (min-width: 861px) and (max-width: 1200px) {
  header .inner {
	padding: 20px;
  }

  header h1 {
	max-width: 200px;
  }

  header .right {
	/* height: 36px; ← 削除 */
	align-items: center;  /* 中央揃え */
  }

  header .right .tel {
	height: auto;         /* 固定値ではなく自然な高さに */
	padding-right: 8px;
  }

  header .right .tel img {
	height: 34px;
  }

  header .right .tel p img {
	height: 32px;
  }

  header .right .tel span {
	font-size: 9px;
  }

  header .right .btn,
  header .right .btn2 {
	width: 140px;
	font-size: 15px;
	padding: 8px 16px;    /* 6px → 8px に少し広げる */
	line-height: 1.2;     /* 高さ調整用 */
  }
}

/*------------------------------------------------
	#fv
------------------------------------------------*/

#fv{ 
	position: relative;
	margin-top: 102px;
}


#fv .cv_box {
	position: absolute;
	width: 33vw;
	margin-left: -16.5vw;
	margin-top: 29vw;
	left: 50%;
}

#fv .cv_box .btn {
	position: absolute;
	width: 61%;
	left: 50%;
	margin-top: 4.25vw;
	margin-left: -30%;
}

.fv_wrap{
	background: url("../img/fv_bg_2.png") center bottom ;
	background-size:  100% auto;
	background-color: 
}

.fv_wrap .intro{
	text-align: center;
	padding-bottom: 150px;
	padding-top:20px;
	z-index: 1;
}

.fv_wrap .intro h2{
	font-size: 20px;
	font-family: "Noto Sans JP", sans-serif;
	padding-bottom: 30px;
	font-weight: 700;
	position: relative;
	display: inline-block;
}

.fv_wrap .intro h2::before{
	content: "";
	height: 1em;
	width: 1em;
	position: absolute;
	background: url("../img/fv_icon.png") center center ;
	background-size: contain;
	left: -2em;
}

.fv_wrap .intro h2::after{
	content: "";
	height: 1em;
	width: 1em;
	position: absolute;
	background: url("../img/fv_icon.png") center center ;
	background-size: contain;
	right: -2em;
}


.fv_wrap .intro div.tx,
.fv_wrap .intro span{
	font-size: 15px;
	font-family: "Noto Sans JP", sans-serif;
	line-height: 2em;
	font-weight: 700;
	position: relative;
	z-index: 1;
}

.fv_wrap .intro span{
	font-size: 18px;
	margin: 0 3px;
}

.fv_wrap .intro span::before{
	content: "";
	height: 0.5em;
	width: 100%;
	background: #E7D5AB;
	position: absolute;
	bottom: 0;
	z-index: -1;
}

/* SP
------------------ */
@media screen and (max-width: 860px) {

#fv {
	margin-top: 0;
}

#fv .cv_box {
	position: absolute;
	width: 82vw;
	margin-left: -41vw;
	margin-top: 54vw;
	left: 50%;
}

#fv .cv_box .btn {
	position: absolute;
	width: 68%;
	left: 45%;
	margin-top: 10.25vw;
	margin-left: -30%;
}

.fv_wrap {
	background: none;
	background-size: 100% auto;
}

.fv_wrap .intro{
	position: relative;
	text-align: center;
	padding-bottom: 0;
	padding-top: 0;
	z-index: 1;
}

.fv_wrap .intro .ab_box{
	position: absolute;
	width: 100%;
	padding: 20px 5% 0 5%;
}

.fv_wrap .intro div.tx{
	font-size: 11px;
}

.fv_wrap .intro span{
	font-size: 15px;
	margin: 0 3px;
}

.fv_wrap .intro h2 {
	font-size: 17px;
	font-family: "Noto Sans JP", sans-serif;
	padding-bottom: 30px;
	font-weight: 700;
	position: relative;
	display: inline-block;
	line-height: 1.5em;
}

.fv_wrap .intro h2::before {
	content: "";
	height: 1em;
	width: 1em;
	position: absolute;
	background: url(../img/fv_icon.png) center center;
	background-size: contain;
	left: -2em;
	top: 1em;
}

.fv_wrap .intro h2::after{
	content: "";
	height: 1em;
	width: 1em;
	position: absolute;
	background: url("../img/fv_icon.png") center center ;
	background-size: contain;
	right: -2em;
	top: 1em;
}



}

/*------------------------------------------------
	#campaign
------------------------------------------------*/


#campaign{
	background: url("../img/camp_bg.jpg") top center ;
	background-size: 100% auto;
	padding-top: 20vw;
	margin-top: -15vw;
	z-index: -1;
	position: relative;
}

#campaign h2{
	width: 650px;
	margin: 0 auto;
	padding-bottom: 50px;
}

#campaign .example{
	background: white;
	border-radius: 8px;
	text-align: center;
	padding: 40px 30px 30px 30px;
	position: relative;
	margin-bottom: 40px;
}

#campaign .example .tx {
	font-size: 20px;
	margin-top: -60px;
	position: absolute;
	width: 100%;
	left: 0;
}

#campaign .example .tx div{
	background: #EFDAA8;
	font-family: "Noto Sans JP", sans-serif;
	line-height: 2em;
	font-weight: 700;
	display: inline-block;
	padding: 0 30px;
}


#campaign .example ul{
	display: flex;
}

#campaign .example ul {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 15px;
}

#campaign .example ul li:first-child {
  margin-left: 0;
}

#campaign .example ul li:last-child {
  margin-right: 0;
}

#campaign .example .gray{
	text-align: left;
	color:#8C8686;
	font-size: 12px;
	line-height: 1.5em;
}

#campaign .tx_2{
	width: 80%;
	margin: 0 auto;
	padding-bottom: 40px;	
}


#campaign .price_list {
	margin-bottom: 30px
}

#campaign .price_list .table{
	line-height: 0;
	margin-bottom: 20px;
}

#campaign .price_list .text{
	margin-left:18.5%;
}

#campaign .price_list .ul_1{
  font-size:14px;
  line-height:2;
  margin:0;
  padding-left:1.2em; 
  margin-bottom: 10px;
}

#campaign .price_list .ul_1 li{
  list-style: disc;                 /* ← liに指定 */
  list-style-position: outside;     /* or inside */
  display: list-item;
  
}


	/* SP
------------------ */
@media screen and (max-width: 860px) {
#campaign h2 {
		width: auto;
		margin: 0 auto;
		padding-bottom: 50px;
	}
#campaign .example {
		padding: 40px 20px 20px 20px;
	}

#campaign .example .tx {
		margin-top: -66px;
		position: absolute;
		width: 90%;
		left: 5%;
		font-size: 14px;
		line-height: 1.2em;
	}

#campaign .example .tx div {
		background: #EFDAA8;
		font-family: "Noto Sans JP", sans-serif;
		line-height: 1.2em;
		font-weight: 700;
		display: inline-block;
		padding: 8px 30px;
}

#campaign .example ul {
	display: flex;
	gap: 4%;
	justify-content: space-between;
	margin-bottom: 15px;
	flex-wrap: wrap;
}

#campaign .example ul li{
	width: 48%;
	margin-bottom: 10px;
}

#campaign .tx_2 {
	width: auto;
	margin: 0 auto;
	padding-bottom: 0;
}
	
}


	

/*------------------------------------------------
	.tab_area
------------------------------------------------*/

	
.tab_area{
	background: #F9F5EE;
	padding-top: 50px;
	padding-bottom: 100px;
}

.tab_area .tx_btm{
	font-size: 14px;
	line-height: 1.5em;
	color: #8C8686;
}

.ma_1{
	margin-bottom: 60px;
}

	/* SP
------------------ */



/*------------------------------------------------
	#recommend
------------------------------------------------*/

#recommend{
	padding-bottom: 60px;
}

#recommend h2{
	text-align: center;
	font-weight: 700;
	position: relative;
	padding-bottom: 30px;
	margin-bottom: 60px;
}

#recommend h2::before{
	content:"";
	display: block;
	background: #D4361A;
	height: 2px;
	width: 50px;
	position: absolute;
	left: 50%;
	margin-left: -25px;
	bottom: 5px;
}

#recommend h2::after{
	content:"";
	display: block;
	background: #D4361A;
	height: 2px;
	width: 50px;
	position: absolute;
	left: 50%;
	margin-left: -25px;
	bottom: 0;
}

#recommend ul.ex {
  display: flex;
  gap: 20px; /* li同士の間隔を20pxに */
  justify-content: center; /* 中央寄せ（不要なら削除OK） */
  padding: 0; /* 左右余白なし */
  margin: 0;
  margin-bottom: 60px;
}

#recommend ul.ex li {
  text-align: center;
  list-style: none; /* ドット消す場合 */
}

#recommend ul.ex li dt{
	margin-block: 15px;
}

#recommend ul.ex li dd{
	font-size: 14px;
}

#recommend .reco_comment{
	border: 3px solid #E5C47A;
	border-radius: 8px;
	padding: 5px;
	max-width: 700px;
	margin: 0 auto;
}

#recommend .reco_comment .inner{
	border: 1px solid #E5C47A;
	border-radius: 8px;
	padding: 20px;
}

#recommend .reco_comment .inner ul{
	max-width: 524px;
	margin: 0 auto;
}

#recommend .reco_comment .inner ul li{
	font-size: 16px;
	font-weight: 700;
	line-height: 2em;
	position: relative;
	padding-left: 25px;
}

#recommend .reco_comment .inner ul li::before{
	content: "";
	height: 1em;
	width: 1em;
	background: url(../img/icon_check.png) center center no-repeat;
	display: block;
	background-size: contain;
	position: absolute;
	left: 0;
	top: 0.5em;
}


	/* SP
------------------ */
@media screen and (max-width: 860px) {
	
#recommend h2 {
	text-align: center;
	font-weight: 700;
	position: relative;
	padding-bottom: 30px;
	margin-bottom: 30px;
	font-size: 20px;
}

#recommend .ex_sp{
	margin-bottom: 30px;
}

#recommend .reco_comment .inner ul li {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2em;
	position: relative;
	padding-left: 25px;
	padding-bottom: 15px;
}

#recommend .reco_comment .inner ul li:last-child{
	padding-bottom: 0;
}

#recommend .reco_comment .inner ul li::before {
	content: "";
	height: 1em;
	width: 1em;
	background: url(../img/icon_check.png) center center no-repeat;
	display: block;
	background-size: contain;
	position: absolute;
	left: 0;
	top: 0.10em;
}

}



/*------------------------------------------------
	#cv_red
------------------------------------------------*/

#cv_red{
	background: url(../img/cv_red_bg.jpg) center center no-repeat;
	background-size: cover;
	padding: 60px 0;
}

#cv_red h2{
	width: 70%;
	margin: 0 auto;
}

#cv_red .btn_box{
	max-width: 720px;
	margin: 0 auto;
	padding: 0 15px 30px 15px;
}

#cv_red .address{
	text-align: center;
	font-size: 15px;
	line-height: 1.5em;
	color: white;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

#cv_red .address p{
	margin-bottom:15px;
}

#cv_red .address div{
	background-color: rgba(255, 255, 255, 0.12);
	display: inline-block;
	padding: 8px 30px 8px 40px;
	position: relative;
	margin-bottom: 30px;
}

#cv_red .address div::before{
	content: "";
	height: 1.2em;
	width: 1.2em;
	background: url(../img/icon-mappin.png) center center no-repeat;
	display: block;
	background-size: contain;
	position: absolute;
	left: 15px;
	top: 0.75em;
}

#cv_red .btn_area{
	padding: 30px 0;
	margin-bottom: 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

#cv_red .btn_area .inner{
	display: flex;
	width: 80%;
	margin: 0 auto;
	align-items: center;
	justify-content: space-between;
}

#cv_red .btn_area .inner .l{
	width: 45%;
}

#cv_red .btn_area .inner .r{
	width: 50%;
}

#cv_red .limited {
	text-align: center;
	z-index: 1;
	position: relative;
}

#cv_red .limited h3 {
	font-size: 20px;
	font-family: "Noto Sans JP", sans-serif;
	padding-bottom: 30px;
	font-weight: 700;
	position: relative;
	display: inline-block;
	color: white;
}

#cv_red .limited h3::before{
	content: "";
	height: 1em;
	width: 1em;
	position: absolute;
	background: url("../img/fv_icon.png") center center ;
	background-size: contain;
	left:  -1.5em;
}

#cv_red .limited h3::after{
	content: "";
	height: 1em;
	width: 1em;
	position: absolute;
	background: url("../img/fv_icon.png") center center ;
	background-size: contain;
	right: -1.5em;
}

#cv_red .limited p{
	color: white;
	font-size: 16px;
	line-height: 2em;
	padding-bottom: 8px;
	position: relative;
	z-index: -2;
	}

#cv_red .limited p a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.2s ease, opacity 0.2s ease;
}
#cv_red .limited p a:hover {
  color: rgba(255, 255, 255, 0.85);
  text-decoration-thickness: 2px;
}
#cv_red .limited p a:focus {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}
#cv_red .limited p a:active {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}
#cv_red .limited p a:visited {
  color: #f9f9f9;
}

#cv_red .limited ul{
	display: flex;
	justify-content: center;
	color: white;
	font-size: 16px;
	line-height: 2em;
	padding-bottom: 12px;
}

#cv_red .limited ul li{
	padding-left: 45px;
	position: relative;
	z-index: -2;
}

#cv_red .limited ul li:first-child{
	padding-right: 10px;
}

#cv_red .limited ul li:first-child::before {
	content: "";
	height: 40px;
	width: 40px;
	position: absolute;
	background: url("../img/icon-airconditioner.png") center center;
	background-size: contain;
	left: 0;
	margin-right: 30px;
}

#cv_red .limited ul li:last-child::before {
	content: "";
	height: 40px;
	width: 40px;
	position: absolute;
	background: url("../img/icon-rangehood.png") center center;
	background-size: contain;
	left: 0;
}



#cv_red .bg{
	position: absolute;
	transform: scale(0.5);
	z-index: 0;
}

#cv_red .flower_1{
		left: 0;
		top: 0;
		transform-origin: top left;
	}
	
#cv_red .flower_2{
		left: 0;
		bottom: 0;
		transform-origin: bottom left;
	}
	
#cv_red .flower_3{
		right: 0;
		bottom: 0;
		transform-origin: bottom right;
	}
	
	
#cv_red {
		position: relative;
}
	
#cv_red .bg {
position: absolute;
transform: scale(0.5);
z-index: 0;
}

#cv_red .inner_w940 {
position: relative;
z-index: 1;
}

	/* SP
------------------ */
@media screen and (max-width: 860px) {

	#cv_red h2 {
		width: auto;
		margin: 0 auto;
	}
	
	#cv_red .btn_box {
		max-width: 1500px;
		margin: 0 auto;
		padding: 0 0 15px 0;
	}
	
	#cv_red .address p {
		margin-bottom: 15px;
		text-align: left;
		font-size: 12px;
	}
	
	#cv_red .address div {
		background-color: rgba(255, 255, 255, 0.12);
		display: inline-block;
		padding: 8px 30px 8px 30px;
		position: relative;
		margin-bottom: 15px;
		font-size: 12px;
		text-align: left;
	}
	
	#cv_red .address div::before {
		content: "";
		height: 1.2em;
		width: 1.2em;
		background: url(../img/icon-mappin.png) center center no-repeat;
		display: block;
		background-size: contain;
		position: absolute;
		left: 9px;
		top: 1em;
	}
	
	#cv_red .btn_area .inner {
		display: block;
		width: auto;
		margin: 0 auto;
	}
	
	#cv_red .btn_area {
		padding: 15px 0;
		margin-bottom: 15px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	}
	
	#cv_red .btn_area .inner .l {
		width: 70%;
		margin: 0 15% 20px 15%;
	}
	
	#cv_red .btn_area .inner .r {
		width: 90%;
		margin: 0 5%;
	}

	#cv_red .limited h3 {
		font-size: 16px;
		padding-bottom: 15px;
	}
	
	#cv_red .limited p {
		color: white;
		font-size: 14px;
		line-height: 2em;
		padding-bottom: 8px;
		position: relative;
		z-index: -2;
	}
	
	#cv_red .limited ul {
		display: block;
		justify-content: center;
		color: white;
		font-size: 14px;
		line-height: 2em;
		padding-bottom: 12px;
	}
	
	#cv_red .limited ul li{
		display: inline-block;
	}
	
	#cv_red .limited ul li:first-child {
		padding-right: 0;
		padding-bottom: 10px;
	}
	
	#cv_red .limited ul li:first-child::before {
		content: "";
		height: 30px;
		width: 30px;
		position: absolute;
		background: url(../img/icon-airconditioner.png) center center;
		background-size: contain;
		left: 0;
		margin-right: 0px;
	}
	
	#cv_red .limited ul li:last-child::before {
		content: "";
		height: 30px;
		width: 30px;
		position: absolute;
		background: url(../img/icon-rangehood.png) center center;
		background-size: contain;
		left: 0;
	}
	
	#cv_red .limited ul li {
		padding-left: 35px;
		position: relative;
		z-index: -2;
	}
	
	#cv_red .bg{
		position: absolute;
		transform: scale(1);
		z-index: 0;
		width: 100%;
	}

	#cv_red .flower_4{
			left: 0;
			top: 0;
		}

	#cv_red .flower_5{
			left: 0;
			bottom: 0;
		}

}


.img_box{
	max-width: 1140px;
	margin: 0 auto 40px auto;
}

	
/*------------------------------------------------
		#service
------------------------------------------------*/
#service{
	background: url("../img/bg_2.jpg") center center;
	background: cover;
}

	
#service .inner_w1140{
	padding: 60px 0;
}	
	
	/* 見出しブロック */
	h2.title{
	  margin: 0;
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  gap: 14px;
	  text-align: center;
	  margin-bottom: 48px;
	}
	
	/* 上の小バッジ */
	h2.title > p{
		font-size: 12px;
		line-height: 1em;
		margin-bottom: 10px;
	}

	
	/* メイン見出し */
	#service h2.title > div{
		text-align: center;
		font-weight: 700;
		position: relative;
		padding-bottom: 30px;
	}
	
	#service h2.title > div::before{
		content:"";
		display: block;
		background: #D4361A;
		height: 2px;
		width: 50px;
		position: absolute;
		left: 50%;
		margin-left: -25px;
		bottom: 5px;
	}
	
	#service h2.title > div::after{
		content:"";
		display: block;
		background: #D4361A;
		height: 2px;
		width: 50px;
		position: absolute;
		left: 50%;
		margin-left: -25px;
		bottom: 0;
	}
	
	#service ul{
		display: flex;
		justify-content: center;
	}
	#service ul.ul_1{
		margin-bottom: 30px;
	}
	
	#service ul li{
		margin: 0 5px;
		width: 352px;
	}

	@media (max-width: 1140px) {
	#service ul li{
		width: 30.9vw; /* 352 ÷ 1140 × 100 */
	  }
	}
	
	/* SP
	------------------ */
	@media screen and (max-width: 860px) {
		h2.title > div {
			line-height: 1.3em;
			padding-bottom: 10px;
		}
		
		h2.title > p{
			font-size: 12px;
		}
		
		#service h2.title > div {
			text-align: center;
			font-weight: 700;
			position: relative;
			padding-bottom: 30px;
			margin-bottom: 30px;
			font-size: 20px;
		}
		
		#service ul li {
			width:50%;
			margin: 0 ;

		}
		
		#service ul {
			display: flex;
			justify-content: center;
			flex-wrap: wrap;
		}
				

		

	}


/*------------------------------------------------
	#service_2
------------------------------------------------*/
	
#service_2{
	background: url("../img/bg_3.jpg") center center;
	background: cover;
}
	
#service_2 .inner_w1140{
	padding: 60px 0;
}	

#service_2 h2{
	font-size: 24px;
	line-height: 1em;
	text-align: center;
	font-weight: 700;
	background: url(../img/mark.png) center center  no-repeat;
	background-size: 84px auto;
	padding-top:85px;
	margin-bottom: 60px;
}

#service_2 ul {
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
}

#service_2 ul li {
  text-align: center;
  width: calc((1140px - 60px) / 5);
}

#service_2 ul li dt{
	padding-bottom: 12px;
}

#service_2 ul li dd h3{
	padding-bottom: 12px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5em;
}

#service_2 ul li dd p{
	text-align: left;
	font-size: 14px;
	line-height: 1.5em;
}

#service_2 figure{
	max-width: 705px;
	margin: 0 auto;
	padding-bottom: 30px;
}

#service_2 div.tx_box{
	max-width: 940px;
	margin: 0 auto;
	background: white;
	padding: 30px;
	text-align: center;
	font-size: 14px;
	line-height: 2em;
}

	/* SP
------------------ */
@media screen and (max-width: 860px) {

#service_2 .inner_w1140 {
	padding: 50px 0;
}


#service_2 h2 {
	font-size: 20px;
	margin-bottom: 30px;
}

#service_2 ul {
  display: flex;
  padding-bottom: 30px;
  overflow-x: auto;          /* ← scrollよりautoが自然 */
  -webkit-overflow-scrolling: touch; /* ← スマホで慣性スクロール */
  width: 100%;
}

#service_2 ul li {
	flex: 0 0 48vw;
	text-align: center;
	margin-right: 3vw;
}

#service_2 ul li dd h3 {
	padding-bottom: 7px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5em;
	text-align: left;
}

#service_2 ul li dt {
	padding-bottom: 6px;
}


#service_2 ul li dd p {
	text-align: left;
	font-size: 12px;
	line-height: 1.5em;
}

#service_2 div.tx_box {
	max-width: 940px;
	margin: 0 auto;
	background: white;
	padding: 15px;
	text-align: left;
	font-size: 12px;
	line-height: 1.5em;
}

h2.title {
	margin: 0;
	display: flex
;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	text-align: center;
	margin-bottom: 0;
}

#service ul.ul_1 {
	margin-bottom: 0;
}





}

/*------------------------------------------------
	#start
------------------------------------------------*/

#start h2{
	text-align: center;
	font-weight: 700;
	position: relative;
	padding-bottom: 30px;
	margin-bottom: 60px;
}

#start h2::before{
	content:"";
	display: block;
	background: #D4361A;
	height: 2px;
	width: 50px;
	position: absolute;
	left: 50%;
	margin-left: -25px;
	bottom: 5px;
}

#start h2::after{
	content:"";
	display: block;
	background: #D4361A;
	height: 2px;
	width: 50px;
	position: absolute;
	left: 50%;
	margin-left: -25px;
	bottom: 0;
}

#start .inner{
	max-width: 1140px;
	margin: 0 auto;
	padding: 80px 0 160px 0;
}

#start ul{
	display: flex;
	justify-content: center;
}

#start ul.first{
	padding-bottom: 40px;
	margin-bottom: 40px;
}

#start ul li{
	position: relative;
	width: calc((100% - 80px) / 3);
}

#start ul li {
	margin-right: 80px;
}

#start ul li:last-child {
	margin-right: 0px;
}

#start ul li h3{
	background: #B79A57;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 8px;
	border-radius: 15px 15px 0 0 ;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);

}

#start ul li h3 p:first-child {
	background: white;
	color: #B79A57;
	font-size: 12px;
	padding: 4px 10px;
	border-radius: 999px;
	margin-right: 8px;
}

#start ul li h3 p:last-child{
	color: white;
	font-size: 16px;
	line-height: 1;
}

#start ul li figure{
	line-height: 0;
	border-radius: 0 0 15px 15px;
	overflow: hidden;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);

}

#start ul li div{
	background: white;
	position: absolute;
	font-size: 16px;
	line-height: 1.5;
	text-align: center;
	color: #5E5656;
	border-radius: 15px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	bottom: -40px;
	left: 5%;
	width: 90%;
	padding-bottom: 15px;
}

#start ul li div p{
	padding: 25px 25px 8px 25px;
	font-weight: 600;
	text-align: center;
}

#start ul li div::after{
	content: "";
	background: url(../img/click.png) center center no-repeat;
	height: 22px;
	width: 61px;
	display: inline-block;
	background-size: contain;
	float: right;
	margin-right: 30px;
}

#start ul li div::before{
	content: "";
	display: block;
	border-left:  10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom:15px solid white;
	position: absolute;
	top:-15px;
	right: 50px;
}


/* SP
------------------ */
@media screen and (max-width: 860px) {
	#start .scroll{
		display: flex;
		overflow-x: scroll;
		width: 100%;
	}
	
	#start ul {
		padding-bottom: 40px;
		margin-bottom: 40px;
	}

	#start ul li{
		width: 320px;
		margin-right: 20px;
	}
	
	#start ul.first {
		margin-right: 20px;
		margin-left: 20px;
	}
	
	#start ul.second {
		margin-right: 20px;
	}

	#start .inner {
		padding: 80px 0 70px 0;
	}
	
	#start h2 {
		text-align: center;
		font-weight: 700;
		position: relative;
		padding-bottom: 30px;
		margin-bottom: 60px;
		font-size: 20px;
		line-height: 1.5em;
	}
	
	#start .inner {
		padding: 80px 0 20px 0;
	}


}


/*------------------------------------------------
	#reason
------------------------------------------------*/

#reason{
	background: #FFFDFB;
	padding: 60px 0;
}

#reason h2{
	text-align: center;
	font-weight: 700;
	position: relative;
	padding-bottom: 30px;
	margin-bottom: 60px;
}

#reason h2::before{
	content:"";
	display: block;
	background: #D4361A;
	height: 2px;
	width: 50px;
	position: absolute;
	left: 50%;
	margin-left: -25px;
	bottom: 5px;
}

#reason h2::after{
	content:"";
	display: block;
	background: #D4361A;
	height: 2px;
	width: 50px;
	position: absolute;
	left: 50%;
	margin-left: -25px;
	bottom: 0;
}

#reason dl{
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

#reason dl dt {
	text-align: center;
	font-size: 12px;
	line-height: 1.5em;
	width: 150px;
}

#reason dl dt figure{
	width: 100px;
	line-height: 0;
	padding-bottom: 10px;
	margin:0 auto;
	display: block;
}

#reason dl dd {
	background: white;
	border-radius: 15px;
	width: calc(100% - 150px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	font-size: 14px;
	line-height: 1.5em;
	padding: 15px 30px;
}

/* SP
------------------ */
@media screen and (max-width: 860px) {
	#reason h2 {
		text-align: top;
		font-weight: 700;
		position: relative;
		padding-bottom: 30px;
		margin-bottom: 60px;
		font-size: 20px;
		line-height: 1.5em;
	}
	
#reason dl {
		display: flex;
		align-items: flex-start;
		margin-bottom: 30px;
	}

#reason dl dt {
		text-align: center;
		font-size: 12px;
		line-height: 1.5em;
		width: 20vw;
		padding-right: 5vw;
	}
	
#reason dl dd {
		background: white;
		border-radius: 15px;
		width: 67vw;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
		font-size: 12px;
		line-height: 1.5em;
		padding: 15px ;
	}

	
	#reason dl dt figure {
		width: 100%;
	}
	
	#reason {
		background: #FFFDFB;
		padding: 60px 0 20px;
	}
	

}

/*------------------------------------------------
	#price
------------------------------------------------*/

#price {
	padding: 60px 0;
	background: url(../img/camp_bg.jpg) top center no-repeat #f9f4ee;
	background-size: 100% auto;
}

#price h2{
	text-align: center;
	font-weight: 700;
	position: relative;
	padding-bottom: 30px;
	margin-bottom: 60px;
}

#price h2::before{
	content:"";
	display: block;
	background: #D4361A;
	height: 2px;
	width: 50px;
	position: absolute;
	left: 50%;
	margin-left: -25px;
	bottom: 5px;
}

#price h2::after{
	content:"";
	display: block;
	background: #D4361A;
	height: 2px;
	width: 50px;
	position: absolute;
	left: 50%;
	margin-left: -25px;
	bottom: 0;
}

#price .banner{
	line-height: 0;
	padding-bottom: 60px;
}

#price h3{
	font-size: 24px;
	line-height: 1em;
	text-align: center;
	font-weight: 700;
	background: url(../img/mark.png) center center  no-repeat;
	background-size: 84px auto;
	padding-top:85px;
	margin-bottom: 60px;
}

#price .div_1{
	text-align: center;
	font-size: 16px;
	line-height: 2em;
	color: #2B2929;
	margin-bottom: 30px;
}

#price .div_1 span{
	color: #D4361A;
	font-weight: 700;
}

#price .div_1 span.icon {
	content: "";
	display: inline-block;
	background: url(../img/Icon-staff.png) center center no-repeat;
	background-size: contain;
	height: 28px;
	width: 30px;
	vertical-align: middle;
}


#price .table{
	padding-bottom: 30px;
}

#price .table img{
	margin-bottom: 15px;
}

#price .table ul,
.tab_area2 .ul_1 {
  list-style: none;
  margin-bottom: 30px;
}

#price .table ul li,
.tab_area2 .ul_1 li{
	font-size: 10px;
	line-height: 1.5em;
	color: #8C8686;
	position: relative;
	padding-left: 1.5em;
}

#price .table ul li::before,
.tab_area2 .ul_1 li::before{
  content: "・";
  position: absolute;
  left: 0.3em;
}


#price .box p{
	padding-top:25px;
}

#price .box p a{
	text-decoration: underline;
}

#price .box p a:hover{
	text-decoration: none;
}

#price .box {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
	position: relative;
}

#price .js-price.is-active + .box {
	max-height: 500px; 
}

#price .title{ 
	color: white;
	background: #6F5E15;
	padding: 15px 30px;
	font-size: 18px;
	line-height: 1em;
	margin-bottom: 5px;
	position: relative;
}

#price .title::before{
	content: "+";
	color: white;
	position: absolute;
	right: 15px;
	top: 25%;
	font-size: 30px;
}

#price .title.is-active::before{
	content: "-";
	right: 20px;
	top: 20%;
}

#price .accordion{
	padding-bottom: 30px;
}

#price .list_box .wrapper{
  display:flex;
  flex-wrap:wrap;          /* 狭い時の折り返し用 */
}

#price .list_box .wrapper .box_inner{
  flex:0 0 50%;            /* 横並び・各50% */
  box-sizing:border-box;
  padding:8px 16px;
  text-align:center;       /* box内は中央寄せ */
  font-size:16px;
  line-height:3em;
}

#price .list_box .wrapper .box_inner ul{
  display:inline-block;    /* shrink-to-fit + 中央寄せ（親のtext-alignで中央に） */
  text-align:left;         /* 中の文字は左寄せ */
  margin:0;
  padding-left:1.2em;      /* outside時のインデント */
  list-style:disc;
  list-style-position:outside;
}

#price .list_box .wrapper .box_inner ul li{
  display:list-item;
  line-height:3;
}

#price .list_box .wrapper .box_inner ul li {
  position: relative;
  padding-left: 1.2em;
}

#price .list_box .wrapper .box_inner ul li::before {
  content: "";
  height: 0.7em;
  width: 0.7em;
  position: absolute;
  background: #2B2929;
  left: 0;
  top: 1.2em;
}

/* SP
------------------ */
@media screen and (max-width: 860px) {


#price {
	padding: 60px 0;
	background: url(../img/camp_bg.jpg) top center no-repeat #f9f4ee;
	background-size: 150% auto;
}

#price h2 {
	text-align: center;
	font-weight: 700;
	position: relative;
	padding-bottom: 30px;
	margin-bottom: 60px;
	font-size: 20px;
	line-height: 1.5em;
}

#price .banner {
	padding: 0;
}

#price h3 {
	font-size: 20px;
	line-height: 1em;
	text-align: center;
	font-weight: 700;
	background: url(../img/mark.png) center center no-repeat;
	background-size: 84px auto;
	padding-top: 85px;
	margin-bottom: 30px;
}

#price .list_box {
	margin-bottom: 30px;
}



}


.cta{
	text-align: center;	
}

.cta .cta_tx_pc{
	margin-bottom: 15px;
	height: 35px;
}

.cta .box_cta{
	background: white;
	border:solid 3px #6f5e15;
	border-radius: 15px;
	max-width: 760px;
	margin: 0 auto;
	padding-bottom: 30px;
}

.cta .cta_ttl_pc{
	max-width: 372px;
	margin: -2px auto 15px auto;
}

.cta .cta_price_pc{
	margin-bottom: 15px;
}


.cta p{
	color: #808080;
	font-size:12px;
	text-align: left;
	padding-bottom: 26px;
}

.cta p span.first{
	margin-bottom: 5px;
	display: block;
}

.cta .wrapper{
	max-width: 500px;
	margin: 0 auto;
	padding-top: 20px;
}

.cta .wrapper a{
	width: 70%;
	margin: 0 auto;
	display: block;
}





@media screen and (max-width: 860px) {
	.cta{ margin: 0 15px;}
	
	.cta .cta_ttl_pc{
		width: 90%;
	}
	
	.cta .cta_price_pc{
		margin: 0 auto 20px auto;
		width: 70%;
	}

	.cta p{
		margin: 0 20px;
		font-size:12px;

	}

}

/*------------------------------------------------
	#price-comparison
------------------------------------------------*/

#price-comparison{
	padding: 100px 0;
	background-size: 100% auto;
}

#price-comparison h2{
	text-align: center;
	font-weight: 700;
	position: relative;
	padding-bottom: 30px;
	margin-bottom: 60px;
}

#price-comparison h2::before{
	content:"";
	display: block;
	background: #D4361A;
	height: 2px;
	width: 50px;
	position: absolute;
	left: 50%;
	margin-left: -25px;
	bottom: 5px;
}

#price-comparison h2::after{
	content:"";
	display: block;
	background: #D4361A;
	height: 2px;
	width: 50px;
	position: absolute;
	left: 50%;
	margin-left: -25px;
	bottom: 0;
}

/* SP
------------------ */
@media screen and (max-width: 860px) {
	#price-comparison {
		padding: 50px 0;
		background-size: 100% auto;
	}
	
	#price-comparison h2 {
		text-align: center;
		font-weight: 700;
		position: relative;
		padding-bottom: 30px;
		margin-bottom: 30px;
		font-size: 20px;
	}
	

}





/*------------------------------------------------
	#faq
------------------------------------------------*/

#faq{ 
	background: url(../img/bg_4.jpg) center center repeat-y;
	padding: 100px 0;
}

#faq h2{
	text-align: center;
	font-weight: 700;
	position: relative;
	padding-bottom: 30px;
	margin-bottom: 60px;
}

#faq h2::before{
	content:"";
	display: block;
	background: #D4361A;
	height: 2px;
	width: 50px;
	position: absolute;
	left: 50%;
	margin-left: -25px;
	bottom: 5px;
}

#faq h2::after{
	content:"";
	display: block;
	background: #D4361A;
	height: 2px;
	width: 50px;
	position: absolute;
	left: 50%;
	margin-left: -25px;
	bottom: 0;
}


#faq ul{
	max-width: 940px;
	margin: 0 auto;
}

#faq ul li{
	background: white;
	border-radius: 15px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	margin-bottom: 15px;
}

#faq ul li .li_inner{
	padding: 15px 30px;
	font-size:20px;
}

#faq .faq-question {
	cursor: pointer;
	position: relative;
	line-height: 36px;
	padding-left: 50px;
}


#faq .faq-question::before{
	content: "Q.";
	color: #D4361A;
	height: 36px;
	width: 36px;
	line-height: 36px;
	font-weight: 500;
	position: absolute;
	left: 0;
	top:0;
	display: block;
	border-radius: 999px;
	text-align: center;
}

#faq .faq-question::after{
	content: "+";
	color: white;
	background: #D4361A;
	height: 36px;
	width: 36px;
	line-height: 36px;
	font-weight: 500;
	position: absolute;
	right: 0;
	top:0;
	display: block;
	border-radius: 999px;
	text-align: center;
}

#faq .faq-question.is-active::after{
	content: "";
	background: url(../img/minus.png) center center no-repeat ;
	background-size: contain;
}

#faq .faq-answer p{
	padding-top:25px;
	padding-bottom:25px;
}

#faq .faq-answer p a{
	text-decoration: underline;
}

#faq .faq-answer p a:hover{
	text-decoration: none;
}

#faq .faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
	font-size: 16px;
	line-height: 2em;
	padding-left: 50px;
	position: relative;
}




#faq .js-question.is-active + .faq-answer {
	max-height: 500px; 
}

@media screen and (max-width: 860px) {
	
	#faq ul {
		max-width: 960px;
	}

	#faq ul li .li_inner {
		padding: 15px;
		font-size: 16px;
	}
	
	#faq .faq-question {
		padding-right: 50px;
		line-height: 23px;
		padding-top: 6px;
	}
		
	#faq .faq-answer p {
		font-size: 14px;
	}
	
	#faq .inner {
		padding: 80px 0 50px 0;
	}
	
	#faq h2 {
		text-align: center;
		font-weight: 700;
		position: relative;
		padding-bottom: 30px;
		margin-bottom: 60px;
		font-size: 20px;
	}
	
	#faq {
		background: url(../img/bg_4.jpg) center center repeat-y;
		padding: 60px 0;
	}
	
	#faq .faq-question {
		padding-right: 50px;
		line-height: 23px;
		padding-top: 0;
		font-size: 13px;
		font-weight: 700;
		padding-left: 23px;
	}
	
	#faq .faq-question::after {
		content: "+";
		color: white;
		background: #D4361A;
		height: 20px;
		width: 20px;
		line-height: 18px;
		font-weight: 500;
		position: absolute;
		right: 0;
		top: 2px;
		display: block;
		border-radius: 999px;
		text-align: center;
	}
	
	#faq .faq-question::before {
		content: "Q.";
		color: #D4361A;
		height: 20px;
		width: 20px;
		line-height: 18px;
		font-weight: 500;
		position: absolute;
		left: 0;
		top: 2px;
		display: block;
		border-radius: 999px;
		text-align: center;
	}
	
	#faq .faq-answer {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.4s ease;
		font-size: 10px;
		line-height: 1.8em;
		padding-left: 23px;
		position: relative;
	}
	
	#faq .faq-answer p {
		font-size: 12px;
		line-height: 1.8em;
	}

	#faq .faq-answer p {
		padding-top: 10px;
		padding-bottom: 10px;
	}
	
	#faq h2 {
		text-align: center;
		font-weight: 700;
		position: relative;
		padding-bottom: 30px;
		margin-bottom: 30px;
		font-size: 20px;
	}


}

/*------------------------------------------------
	.tabs
------------------------------------------------*/


.tabs {
  max-width: 1100px;
  margin: 0 auto 30px;
}

.tabs__list {
	display: flex;
	gap: 8px;
}

.tabs__list [role="tab"] {
	appearance: none;
	border: none;
	border-bottom: none;
	padding: 10px;
	border-radius: 15px 10px 0 0;
	font: inherit;
	cursor: pointer;
	outline: none;
	width: calc((100% - 16px) / 3);
	background: #396833
}

.tabs__list [role="tab"]:nth-child(2) {
  background-color: #6EA942; /* 好きな色に変更 */
 }

.tabs__list [role="tab"]:nth-child(3) {
   background-color: #EB6678; /* 好きな色に変更 */
  }
  
.tabs__list [role="tab"] .inner{
	padding: 8px 8px 15px 8px;
	position: relative;
	border:1px solid white;
	border-radius: 10px;
}

.tabs__list [role="tab"] .inner .icon{
	position: absolute;
	width: 90%;
	left: 5%;
	transform: translateY(-80%); 
}

.tabs__list [role="tab"] .inner .tx{
	margin: 30px 0 15px 0;
}

.tabs__list [role="tab"] .inner .btn{
	width: 80%;
}

[role="tabpanel"] {
	background: #fff;
	border-radius: 15px;
}

/*------------------------------------------------
	.tab_area2
------------------------------------------------*/

.tab_area2 .tabs__list [role="tab"] {
	appearance: none;
	border: none;
	border-bottom: none;
	padding: 20px 0;
	border-radius: 15px 10px 0 0;
	font: inherit;
	cursor: pointer;
	outline: none;
	width: calc((100% - 8px) / 2);
	background: #FFDB99;
}

.tab_area2 .tabs__list{
	gap: 0;
	justify-content: space-between;
}

.tab_area2 [aria-selected="false"] {
	opacity: 0.5;
}

.tab_area2 .tabs__list [role="tab"] p,
.tab_area2 .tabs__list [role="tab"] span{
	font-weight: 700;
	font-size: 18px;
	line-height: 1.2em;
}

.tab_area2 .tabs__list [role="tab"] p.p_1{
	font-size: 18px;
	padding-bottom: 4px;
}

.tab_area2 .tabs__list [role="tab"] p.p_2{
	font-size: 12px;
}

.tab_area2 .tabs__list [role="tab"] p.p_3{
	font-size: 16px;
	border-bottom: 2px black solid;
	display: inline-block;
}

.tab_area2 .tabs__list [role="tab"] p.p_3 span{
	font-size: 12px;
	margin-left: 2px;
}

.tab_area2 .tabs__list [role="tab"]:nth-child(2) {
  background-color: #FFC2A8; /* 好きな色に変更 */
 }

.tab_area2 .tabs__list [role="tab"]:nth-child(3) {
   background-color: #FFC2A8; /* 好きな色に変更 */
  }

.tab_area2 .tabs__list > [role="tab"][aria-selected="true"]:nth-of-type(1) {
	background: #FFCC90;
  }
  
.tab_area2 [role="tabpanel"]{
	border-radius: 0;
	padding: 40px 20px;
} 
.tab_area2 [role="tabpanel"]:nth-child(2) {
	border: 3px solid #FFDB99;
	padding: 20px 20px;
   }
	
.tab_area2 [role="tabpanel"]:nth-child(3) {
	border: 3px solid #FFCC90;
	padding: 30px 20px;
	}
	 
.tab_area2 [role="tabpanel"]:nth-child(4) {
		border: 3px solid #FFC2A8;
	 }
	 
.tab_area2 [role="tabpanel"] .img_1{
	margin-bottom: 10px;
}

.tab_area2 [role="tabpanel"] p{
	color: #8C8686;
	font-size: 12px;
	line-height: 1.5em;
	margin-bottom: 20px;
}

	  

/* カード */
.plan-card{
  position: relative;
  color: #fff;
  text-align: center;
  line-height: 1.25;
  font-weight: 700;
}

/* 上の白いピル + 先端（三角） */

.plan-badge::after{
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #fff; /* 下向きの三角 */
}

/* タイトル/補足/価格 */
.plan-title{ font-size: 18px; margin-top: 4px; font-weight:700;  }
.plan-sub  { font-size: 12px; font-weight: 600; }
.plan-price{ font-size: 24px; text-decoration: underline;font-weight:700;  margin-top: 4px;}
.plan-price span{ font-size: 16px;}


/* 1個目 */
.tabs__list > [role="tab"][aria-selected="true"]:nth-of-type(1){
  background: #396833;
  border-bottom: 2px solid #396833;
}

.tab_box .inner{
	padding: 30px;
}

.tab_box .inner .title{
	width: 80%;
	margin-left: 10%;
	margin-bottom: 20px;
}

.tab_box .inner .graph,
.tab_box .inner .timeline{
	margin-bottom: 20px;
}

.tab_box .inner p{
	text-align: center;
	line-height: 2em;
	padding: 25px;
	border: dotted #ccc 2px;
	border-radius: 15px;
	font-size: 15px;
}



/* SP: 横スクロール可能に（タブが多い時の保険） */
@media (max-width: 860px) {
  .tabs__list [role="tab"] {
	  appearance: none;
	  border: none;
	  border-bottom: none;
	  padding: 0;
	  border-radius: 15px 10px 0 0;
	  font: inherit;
	  cursor: pointer;
	  outline: none;
	  width: calc((100% - 16px) / 3);
	  background: none;
  }
  
  .tabs__list [role="tab"]:nth-child(2),
  .tabs__list [role="tab"]:nth-child(3)   {
	  background-color: transparent;
  }
  
  .tabs__list > [role="tab"][aria-selected="true"]:nth-of-type(1) {
	  background-color: transparent;
	  border-bottom: none;
  }
  
  .tab_box .inner {
	  padding: 15px;
  }
  
  .tab_box .inner .timeline {
	  margin-bottom: 20px;
	  width: 85%;
	  margin-left: 7.5%;
  }
  
  .tab_box .inner p {
	  text-align: left;
	  line-height: 1.5em;
	  padding: 15px;
	  border: dotted #ccc 2px;
	  border-radius: 15px;
	  font-size: 12px;
  }
  
  .tab_box .inner .title {
	  width: auto;
	  margin-left: 0;
	  margin-bottom: 20px;
  }
  
}



/* SP
------------------ */
@media screen and (max-width: 860px) {
	
	#price .banner {
		padding: 0 15px;
	}
	
	#price .div_1 {
		font-size: 10px;
		margin: 0 35px 48px 35px;
	}
	
	#price .price_list {
		margin: 0 ;
	}
	
	.plan-badge{
	  font-size: 10px;
	  padding: 4px 6px;
	}
	
	.plan-price {
		font-size: 20px;
	}
	
	#price .div_1 {
		font-size: 12px;
		margin: 0 0 48px 0;
	}

	.tabs {
		--tab-accent: #FF6928;
		--tab-text: #2B2929;
		max-width: 1100px;
		margin: 0 auto 30px;
	}
	
	.tab_area {
		background: #F9F5EE;
		padding-top: 50px;
		padding-bottom: 40px;
	}
	
	#price .list_box .wrapper {
		display: block;
		flex-wrap: wrap;
	}

	#price .list_box .wrapper .box_inner {
		flex: 0 0 50%;
		box-sizing: border-box;
		padding: 0;
		text-align: left;
		font-size: 12px;
		line-height: 0;
	}
	
	#price .list_box .wrapper .box_inner ul {
		display: inline-block;
		text-align: left;
		margin: 0;
		padding-left: 0;
		list-style: disc;
		list-style-position: outside;
		padding-bottom: 0;
	}
	
	#price .list_box .wrapper .box_inner ul li {
		display: list-item;
		line-height: 2;
	}
	
	#price .list_box .wrapper .box_inner ul li::before {
		content: "";
		height: 0.7em;
		width: 0.7em;
		position: absolute;
		background: #2B2929;
		left: 0;
		top: 0.7em;
	}
	
	.cta .cta_tx_pc {
		margin-bottom: 10px;
		height: 20px;
	}
	
	.cta .cta_ttl_pc {
		width: 67%;
		max-width: 372px;
		margin: -2px auto 0 auto;
	}
	
	.cta p {
		margin: 0 20px;
		font-size: 12px;
		line-height: 1.5em;
	}
	
	.cta .wrapper a {
		width: 90%;
		margin: 0 auto;
		display: block;
	}
	
	#price .banner {
		padding: 0;
	}
	
	.cta {
		margin: 0;
	}

	#price h2 {
		text-align: center;
		font-weight: 700;
		position: relative;
		padding-bottom: 30px;
		margin-bottom: 30px;
		font-size: 20px;
		line-height: 1.5em;
	}

	#price .tab_area2 .title {
		color: white;
		background: #6F5E15;
		padding: 15px;
		font-size: 13px;
		line-height: 1em;
		margin-bottom: 7px;
		position: relative;
		border-radius: 5px;
	}
	
	#price .title.is-active::before {
		content: "-";
		right: 20px;
		top: 26%;
	}
	
	#price .title::before {
		content: "+";
		color: white;
		position: absolute;
		right: 16px;
		top: 31%;
		font-size: 30px;
	}
	


}








/*------------------------------------------------
	#map
------------------------------------------------*/


#map{ 
	padding: 100px 0;
}

#map h2{
	text-align: center;
	font-weight: 700;
	position: relative;
	padding-bottom: 30px;
	margin-bottom: 60px;
}

#map h2::before{
	content:"";
	display: block;
	background: #D4361A;
	height: 2px;
	width: 50px;
	position: absolute;
	left: 50%;
	margin-left: -25px;
	bottom: 5px;
}

#map h2::after{
	content:"";
	display: block;
	background: #D4361A;
	height: 2px;
	width: 50px;
	position: absolute;
	left: 50%;
	margin-left: -25px;
	bottom: 0;
}


#map .map{
	max-width:710px;
	margin: 0 auto;
	padding-bottom: 80px; 
}

#map p{
	border: dotted 3px #D4CCCC;
	border-radius: 15px;
	padding: 20px;
	text-align: center;
	font-size: 15px;
	line-height: 2em;
}

@media screen and (max-width: 860px) {
	
	#map h2{
		text-align: center;
		font-weight: 700;
		position: relative;
		padding-bottom: 30px;
		margin-bottom: 60px;
		font-size: 20px;
	}
	
	#map .map{
		margin: 0 15px;
		padding-bottom: 34px; 
}

#map p {
	border: dotted 3px #D4CCCC;
	border-radius: 15px;
	padding: 20px;
	text-align: left;
	font-size: 12px;
	line-height: 1.5em;
}



}


/*------------------------------------------------
	footer
------------------------------------------------*/
footer {
	padding-top: 50px;
	border-top: 1px solid #8C8686;
}

footer .inner{
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 50px;
}


footer .left{
	max-width: 370px;
}
footer .left h1 {
	margin-bottom: 20px;
}

footer .left h1 img{
	max-width:268px;
	margin-bottom: 15px;
}

footer .left h1 p{
	font-size: 12px;
	line-height: 1;
}

footer .left h2 img{
	max-width:247px;
}

footer .left h2 p{
	font-size: 16px;
	line-height: 1.5em;
}

footer .right{
	max-width: 390px;
}

footer .right .img{
	margin-bottom: 15px;
}

footer .right ul{
	display: flex;
	justify-content: center;
}

footer .right ul li{
	width: 80px;
	margin-right: 15px;
}

footer .right ul li:last-child{
	margin-right: 0;
}

footer .rights{
	background: #2B2929;
	color: white;
	padding: 12px;
	font-size: 10px;
	text-align: center;
}


@media screen and (max-width: 860px) {
  footer .inner{
	flex-direction: column;   /* 横→縦 */
	align-items: stretch;     /* 幅いっぱい */
	margin: 0 25px;
  }
  
  footer .right{ order: -1; }  /* right を先頭に */
  footer .left,
  footer .right{
	max-width: none;
	width: 100%;
  }
  
  footer .left{
	  text-align: center;
  }
  
  footer .right{
	  margin-bottom: 40px;
  }
  
  footer .left h2 p {
	  font-size: 12px;
	  line-height: 1.5em;
	  text-align: left;
	  display: inline-block;
  }
}

/* Tablet (861px〜1200px)
------------------ */
@media screen and (min-width: 861px) and (max-width: 1200px) {
  footer .inner{
	padding-bottom: 40px;
	margin: 0 20px;         /* 左右に少し余白 */
	column-gap: 32px;       /* 左右ブロックの間隔 */
  }

  footer .left{
	max-width: 320px;       /* 370→320でコンパクトに */
  }
  footer .left h1 img{
	max-width: 220px;       /* ロゴ少し縮小 */
  }
  footer .left h2 p{
	font-size: 14px;        /* 本文少し小さめ */
	line-height: 1.6;
  }

  footer .right{
	max-width: 340px;       /* 390→340で圧縮 */
  }
  footer .right .img{
	margin-bottom: 12px;
  }
  footer .right ul{
	gap: 12px;              /* サムネの間隔を詰める */
	flex-wrap: wrap;        /* 幅が足りない時は折り返す */
  }
  footer .right ul li{
	width: 74px;            /* 80→74で収まりを良く */
  }
}

/*------------------------------------------------
	modal
------------------------------------------------*/

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;               /* hidden by default */
  align-items: center;
  justify-content: center;
}

.js-open-modal{ border: none;
	cursor: pointer;
}

.modal.is-open { display: flex; }

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.3); /* 白ベースで半透明 */
  backdrop-filter: blur(8px);        /* ぼかし効果 */
  -webkit-backdrop-filter: blur(8px);/* Safari対応 */
  opacity: 0;
  transition: opacity .25s ease;
}

.modal.is-open .modal__overlay { opacity: 1; }

.modal__content {
  position: relative;
  z-index: 1;
  width: min(92vw, 680px);
  max-height: 80vh;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  padding: 24px;
  transform: translateY(10px);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
}

.modal.is-open .modal__content {
  transform: translateY(0);
  opacity: 1;
}

.modal.is-open .modal__content .scroll_wrap{
  overflow-y: scroll;
  max-height: 74vh;
}

/* Close button (optional) */
.modal__close {
  position: absolute;
  right: 50%;
  margin-right: -19px;
  bottom: -60px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: #f2f3f7;
  cursor: pointer;
  font-size: 18px;
  line-height: 38px;
}

/* Scroll lock when modal open */
.body-lock { overflow: hidden; }

.modal_inner{ 
	padding:40px;
}
.modal_inner dl{
	display: flex;
	font-size: 16px;
	line-height: 36px;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 20px;
	width: 100%;
}

.modal_inner dl dt {
	color: white;
	background: #2B2929;
	width: 180px;
	text-align: center;
}

.modal_inner dl dd {
  color: #2B2929;
  background: #F6F1F4;
  width: calc(100% - 180px);
  position: relative;
}
.modal_inner dl dd p{
	padding: 0 30px;
	font-weight: 500;
}
.modal_inner dl dd p.m_5{
	padding: 0 30px;
	font-weight: 500;
	font-size: 13px;
}

.modal_inner dl dd::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0; /* 矢印の位置調整 */
  transform: translateY(-50%);
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #2B2929; /* 矢印の色 */
}

.modal_inner figure{
	margin-bottom: 30px;
}

.modal_inner .uservoice h3{
	font-size: 16px;
	line-height:24px;
	position: relative;
	padding-left: 38px;
	font-weight: 500;
	margin-bottom: 10px;
}

.modal_inner .uservoice h3::before{
	content:"";
	width:30px;
	height:24px;
	background:url(../img/icon_modal.jpg) center center no-repeat;
	background-size: contain;
	position: absolute;
	left: 0;
	top:0;
	display: block;
}

.modal_inner .uservoice p{
	font-size: 14px;
	line-height: 1.5em;
	font-weight: 300;
}

.modal_inner .uservoice p span{
	color:#D4361A;
	font-weight: 700;
}

.modal__content:focus,
.modal__close:focus {
  outline: none;
}


@media screen and (max-width: 860px) {
	.modal_inner {
		padding: 0;
	}
	
	.modal_inner dl {
		display: block;
		font-size: 14px;
	}
	
	.modal_inner dl dt,
	.modal_inner dl dd {
		width: 100%;
		text-align: center;
	}
	
	.modal_inner dl dd::before{
		display: none;
	}
	
	.modal_inner dl dd p {
		padding: 8px 30px!important;
		font-weight: 500;
		line-height: 1.5em;
	}
	
}




/*------------------------------------------------
	#cv_sp
------------------------------------------------*/
#cv_sp{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;                /* ここに吸着 */
  z-index: 9999;
  transform: translateY(110%); /* 初期は画面下に隠す */
  transition: transform .35s ease-out;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0));
  background: rgba(255,255,255,.98);
  box-shadow: 0 -8px 24px rgba(0,0,0,.08);
  backdrop-filter: blur(6px);
  border-top: 1px solid #eee;
  will-change: transform;
}

#cv_sp.is-show{
  transform: translateY(0);     /* ニョッキッと出る */
}

#cv_sp ul{
	display: flex;
	justify-content: space-between;
}

#cv_sp ul li{
	text-align: center;
	width: calc((100% - 20px) / 3);
}

#cv_sp ul li a{
  display: flex;         /* インライン要素として横並び可 */
  padding: 15px 15px 15px 15px;            /* 上下・左右の余白 */
  border: 2px solid #b48a47;     /* 緑の枠線 */
  border-radius: 30px;           /* 角丸 */
  color: white;                /* テキストの色 */
  font-size: 12px;               /* フォントサイズ調整 */
  font-weight: bold;             /* 太字 */
  text-decoration: none;         /* リンク下線を消す */
  text-align: center;            /* 中央揃え */
  transition: 0.3s;              /* ホバー時のアニメーション */
  width: 100%;
  margin-right: 8px;
  background: #b48a47;
  justify-content: center;
}

#cv_sp ul li:first-child a{
	background: white; 
	color: #D4361A;
	border: 2px solid #D4361A;
}

#cv_sp ul li:last-child a{
	border: 2px solid #D4361A;     /* 緑の枠線 */
	background: #D4361A; 
	color: white;                /* テキストの色 */
}

#cv_sp ul li:first-child a::before{
	content: "";
	height: 15px;
	width: 27px;
	background: url(../img/icon_tel_red.png) center center no-repeat;
	display: inline-block;
	background-size: contain;
	margin-right: 3px;
}


