@charset "UTF-8";

/*---------------------------------------------
	基本設定
---------------------------------------------*/
 :root{
  /* font-family */
  --font-base: "EB Garamond","Shippori Mincho", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;

  /* font-weight */
  --fw-regular: 400;
  --fw-bold: 700;

  /* font-size*/
  --fs-heading-xlg: clamp(60px, 2.5vw, 70px);  
  --fs-heading-lg: clamp(20px, calc(20px + (40 - 20) * ((100vw - 375px) / (980 - 375))), 40px);
  --fs-heading-md: clamp(19px, calc(19px + (25 - 19) * ((100vw - 375px) / (980 - 375))), 25px);
  --fs-body: clamp(14px, calc(14px + (16 - 14) * ((100vw - 375px) / (980 - 375))), 16px);
  --fs-note: clamp(11px, 1.2vw, 12px);

  /* color */
  --black: #000;
  --green: #3a5136;
  --deep-green: #546d4f;
  --right-green: #b9cfb5;
  --bright-green: #0d5900;
  --dark-green:#013220;
  --beige: #a78438;
  --gray: #f0eeeb;

  /* width */
  --main-width: 1200px;

  /* line-height */
  --lh-base:2;
  --lh-lg:1.7;
}

html,body{
	margin:0px;
	padding:0px;
  scroll-behavior: smooth;
}


body{
  font-family: var(--font-base);
  font-size: var(--fs-body);
  line-height:var(--lh-base);
}

img{
  max-width:100%;
  height:auto;
}

p{
  line-height:var(--lh-base);
}

a{
  font-size:var(--fs-body);
	color: var(--black);
	text-decoration: none;
}
a:link {
}
a:visited{
}
a:hover{
	color: var(--black);
	text-decoration: none;
}
a:active{
}
a.on{
	color: var(--black);
	text-decoration: none;
}

li{
	list-style: none;
}

.flex{
  display:flex;
}

/*---------------------------------------------
	共通設定
---------------------------------------------*/

.main-width{
  width:90%;
  max-width:var(--main-width);
  margin:0 auto 50px;
}

h2{
  font-weight: 400;
  font-size: var(--fs-body);
  text-align: left;
}
h2::before {
  display: block;
  font-weight: 400;
  font-size: var(--fs-heading-xlg);
  content: attr(data-label);
  letter-spacing: 0.2rem;
  line-height:1.2em;
}
.flex-box{
  display:flex;
}

section{
  padding:70px 0;
}





/*---------------------------------------------
	header
---------------------------------------------*/
header {
  width: 100%;
  position: fixed;
  background-color: #fff;
  display: flex;
  height: 90px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  box-sizing: border-box;
  gap: clamp(10px, calc(-31.7px + 4.33vw), 50px);
  top: 0;
  z-index: 9999;
  overflow: visible;
}

header button{
  display:none;
}
header .header-nav{
  display:none;
}
header h1 {
  flex-shrink: 1; 
}
header h1 img {
  width: clamp(120px, 35vw, 150px);
  height: auto;
}
header nav {
  box-sizing: border-box;
}
header nav ul {
  display: flex;
  box-sizing: border-box;
  align-items: center;
}
header nav.menu{
  margin-left:auto;
}
header nav.menu ul{
  gap: clamp(18px, calc(-19.44px + 3.816vw), 54px);
}
header nav.cta ul{
  gap: clamp(13px, calc(-14.04px + 2.756vw), 39px);
}

nav.cta ul li a{
  display:flex;
  align-items:center;
}
nav.cta ul li a div img{
  display:block;
}

nav.cta ul li:first-child a{
  background-color:var(--beige);
  color:#fff;
  border-radius: 50px;
  padding: 10px clamp(10px, calc(10px + (40 - 10) * ((100vw - 980px) / (1920 - 980))), 40px);
}

nav.cta ul li:first-child a div img{
  width:60%;
}

nav.cta ul li:last-child a{
  gap:10px;
}

nav.cta ul li:last-child a div:last-child{
  display:flex;
  flex-direction:column;
  color:var(--bright-green);
}
nav.cta ul li:last-child a div span{
  display:block;
}
nav.cta ul li:last-child a div span:first-child{
  font-size:clamp(30px, calc(30px + (40 - 30) * ((100vw - 980px) / (1440 - 980))), 40px);
  font-weight:700;
  line-height:1.2em;
}

nav.cta ul li:last-child a div span:last-child{
  font-size:var(--fs-note);
  line-height:1.2em;
  font-weight:400;
}





/*---------------------------------------------
	main,wrap
---------------------------------------------*/
.wrap{
  margin-top:80px;
  position:relative;
}

.wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px; /* ぼかしの長さ */
  background: linear-gradient(to bottom, #fff, transparent);
  pointer-events: none;
  z-index: 1;
}





/*---------------------------------------------
	about
---------------------------------------------*/
.about{
  background-color:var(--green);
  color:#fff;
}
.about h2{
  color:var(--right-green);
}
.about .flex-box{
  justify-content: space-around;
  gap:30px;
}
.about .flex-box div:last-child .about-heading{
  margin-bottom:20px;
}

.about .flex-box div:last-child .about-heading p{
  font-size:var(--fs-heading-lg);
  line-height: var(--lh-lg);
}
.about .flex-box div:last-child .about-heading p:first-child{
  font-size:var(--fs-body);
}






/*---------------------------------------------
	scene
---------------------------------------------*/
.scene h2{
  color:var(--green);
  margin-bottom:30px;
}
.scene ul{
  display:flex;
}
.scene ul li{
  flex:1;
  text-align:center;
  font-weight:500;
  padding:40px;
  color:#fff;
}
.scene ul li p{
  margin-bottom:10px;
  font-size:var(--fs-heading-md);
}

.scene ul li p:first-child{
  margin-bottom:10px;
}

.scene .list-1 li:first-child{
  background-image:url(../img/scene_bg01.webp);
}
.scene .list-1 li:nth-child(2){
  background-image:url(../img/scene_bg02.webp);
}
.scene .list-2 li:first-child{
  background-image:url(../img/scene_bg04.webp);
}
.scene .list-2 li:nth-child(2){
  background-image:url(../img/scene_bg03.webp);
}





/*---------------------------------------------
	cta
---------------------------------------------*/
.cta-01{
  background-image:url(../img/cta_bg01.webp);
}
.cta-02{
  background-image:url(../img/cta_bg02.webp);
}
.cta-03{
  background-image:url(../img/cta_bg01.webp);
}
.cta-04{
  background-image:url(../img/cta_bg03.webp);
}




.wrap .cta{
  color:#fff;
  text-align:center;
  padding:0;
}
.wrap .cta .cta-text{
  padding-top:100px;
}
.wrap .cta .cta-text p:last-child{
  font-size:var(--fs-heading-lg);
  line-height:var(--lh-lg);
  margin-top:15px;
}
.wrap .cta .cta-bottun{
  padding-bottom:100px;
  max-width:800px;
  margin:30px auto 0;
}

.wrap .cta .cta-bottun ul{
  display:flex;
  gap:15px;
}
.wrap .cta .cta-bottun ul li{
  flex:1;
}

.wrap .cta .cta-bottun ul li a{
  display:flex;
  justify-content: center;
  align-items:center;
  padding:20px auto;
  height:80px;
  color:#fff;
  border-radius: 50px;
  border:1px solid var(--gray);
  box-shadow: 0px 0px 15px -5px #777777;
}
.wrap .cta .cta-bottun ul li a div{
  font-size:var(--fs-heading-md);
}

.wrap .cta .cta-bottun ul li a div img{
  display:block;
}

.wrap .cta .cta-bottun ul li:first-child a{
  background-color:var(--beige);
}
.wrap .cta .cta-bottun ul li:last-child a{
  background-color:var(--bright-green);
}

.wrap .cta .cta-bottun ul li:first-child a div img{
  width:60%;
}
.wrap .cta .cta-bottun ul li:last-child a{
  gap:10px;
}

.wrap .cta .cta-bottun ul li:last-child a div:last-child{
  display:flex;
  flex-direction:column;
  color:#fff;
}
.wrap .cta .cta-bottun ul li:last-child a div span:first-child{
  font-size:var(--fs-heading-lg);
  font-weight:700;
  line-height:1.2em;
}

.wrap .cta .cta-bottun ul li:last-child a div span:last-child{
  font-size:var(--fs-note);
  line-height:1.2em;
  font-weight:400;
}
.wrap .cta .cta-bottom ul{
  display:flex;
  align-items:center;
  justify-content: center;
  gap:30px;
  padding:30px;
  background-color:var(--deep-green);
}
.wrap .cta .cta-bottom ul li a{
  display:block;
  color:#fff;
  background-image:url(../img/link_icon.webp);
  background-repeat: no-repeat;
  background-position:right center;
  padding-right:20px;
}



/*---------------------------------------------
	feature
---------------------------------------------*/
.bg-green{
  padding:35px 0 70px;
  background-color:var(--green);
}
.bg-green h2{
  color:var(--right-green);
  margin-bottom:30px;
}
.bg-green section{
  padding:35px 0;
}

.feature .flex-box{
  gap:30px;
  align-items:stretch;
}
.feature .flex-box>div{
  color:#fff;
  background-color:var(--dark-green);
  display:flex;
  flex-direction:column;
  flex:1;
  gap:5px;
}
.feature .feature-media{
  aspect-ratio:16/9;
  overflow:hidden;
}
.feature .feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature .feature-text{
  flex: 1;
  padding:clamp(25px, calc(25px + (40 - 25) * ((100vw - 375px) / (980 - 375))), 40px);
  padding-top:15px;
}
.feature .feature-text h3{
  font-size:var(--fs-heading-md);
  text-align:center;
  margin-bottom:10px;
}




/*---------------------------------------------
	servicesite-cta
---------------------------------------------*/
.servicesite-cta{
  display:block;
  color:#fff;
  border:1px #fff solid;
  border-radius:60px;
  max-width:400px;
  padding:30px;
  text-align:center;
  background-image:url(../img/link_icon.webp);
  background-repeat: no-repeat;
  background-position: 95% center;
  margin:80px auto 0;
  font-size:var(--fs-heading-md);
}
a.servicesite-cta:hover{
  color:#fff;
}
.servicesite-cta span{
  display:block;
}
.servicesite-cta span:first-child{
  font-size:var(--fs-body);
}





/*---------------------------------------------
	service
---------------------------------------------*/
.service h3,
.service p,
.service dl,
.service dd,
.service dt{
  color:#fff;
}
.service h3{
  font-size:var(--fs-heading-md);
}
.service .flex-box{
  gap:30px;
}
.service .flex-box>div{
  flex:1;
}

/* ========== DLリスト全体 ========== */
.service dl {
  margin-top:20px;
  display: grid;
  grid-template-columns: 120px 1fr;
  /* dt固定幅 : dd残り幅 */
  gap: 0; /* 行間はpaddingで管理 */
}

/* ========== DT========== */
.service dt {
  padding: 20px 0;
  font-size: var(--fs-body);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); 
  
  /* 縦方向の中央揃え */
  display: flex;
  align-items: flex-start;
}

/* ========== DD========== */
.service dd {
  padding: 20px 0 20px 20px;
  margin: 0;
  font-size: var(--fs-body);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  line-height: 1.8;
}

.service dt:last-of-type,
.service dd:last-of-type {
  border-bottom: none;
}

/* ========== DD内の注釈テキスト ========== */
.service dd span {
  display: block;
  font-size: var(--fs-note);
  opacity: 0.8;
  margin-top: 4px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto;
  justify-content: space-between;
}

.gallery__main {
  flex: 1 1 100%; /* 横幅いっぱい */
}

.gallery__thumbnail {
  width:calc(25% - 10px);
  display:none;
}


.gallery__main img{
    width:100%;
}

.gallery__thumbnail img {
  width:100%;
}







/*---------------------------------------------
	price
---------------------------------------------*/
.price dl{
  margin-bottom:30px;
  color:#fff;
}
.price-list__header,
.price-list__row {
  display: flex;
  gap: 1px;
  background-color: var(--green);
  margin-bottom: 1px;
}

.price-list dt {
  flex: 2; /* 2倍の幅 */
  padding: 20px 20px;
  background-color: var(--dark-green);
}

.price-list dd {
  flex: 1;
  padding: 20px 20px;
  text-align: center;
  background-color: var(--deep-green);
  margin: 0;
}

.price-list__header dt,
.price-list__header dd {
  background-color: var(--dark-green);
}
.price-note p{
  color:#fff;
}
.price-note p:last-child{
  font-size:var(--fs-note);
}

.price-option{
  margin-top:50px;
  padding:30px;
  background-color:var(--deep-green);
  color:#fff;
}
.price-option .flex-box{
  gap:20px;
  justify-content: space-between;
  align-items: center;
}
.price-option .flex-box>div{
  flex:1;
}
.price-option h3{
  font-size:var(--fs-heading-md);
  margin-bottom:15px;
}
.price-option .flex-box img{
  width:100%;
}





/*---------------------------------------------
	howto
---------------------------------------------*/
.howto{
  background-color: var(--gray);
}
.howto h2{
  color:var(--green);
  margin-bottom:30px;
  text-align:center;
}

.howto .profile-card {
  align-items: stretch;
  gap: 0;
  margin:0 auto 100px;
  max-width: 750px; 
  width: 100%;
  position:relative;
}

.profile-card__image {
  flex-shrink: 0;
  padding:20px;
  background-color: var(--green);
}

.profile-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-card__text {
  background-color: var(--green);
  color: var(--right-green);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profile-card__text .name {
  color: #fff;
  line-height:2.5em;
  margin-bottom:15px;
}

.profile-card__text .name span {
  font-size: var(--fs-heading-lg);
}
.howto .profile-card::after {
  content: '';
  display: block;
  width: 1px;
  height: 50px;
  background-color: var(--dark-green);
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.howto .howto-heading{
  text-align:center;
  font-size:var(--fs-heading-md);
}
.howto .howto-heading span{
  display:block;
  font-size:var(--fs-heading-lg);
  color:var(--bright-green);
}
.howto .howto-day h3{
  color:var(--bright-green);
  padding:20px 0;
  text-align:center;
  border:var(--beige) 1px solid;
  border-right:none;
  border-left:none;
  font-size:var(--fs-heading-md);
  margin:50px 0;
}
.howto .howto-day ul{
  display:flex;
  flex-direction:column;
  gap:50px;
}
.howto .howto-day ul li{
  background-color:#fff;
  position: relative;
  max-width:1100px;
  width:100%;
  margin:0 auto;
}
.howto .howto-day ul li:not(:last-child)::after {
  content: '';
  display: block;
  width: 80px;
  height: 60px;
  background-image: url('../img/howto_img02.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: -55px;
  left: 50%;
  transform: translateX(-50%);
}
.howto .howto-day ul li .flex-box div{
  flex:1;
}
.howto .howto-day ul li .flex-box .timeline-item__text{
  padding:40px;
}

.howto .howto-day ul li .flex-box .timeline-item__text h4{
  font-size:var(--fs-heading-md);
  background-color:var(--green);
  color:#fff;
  display:inline-block;
  padding:10px 20px;
  margin-bottom:15px;
}




/*---------------------------------------------
	faq
---------------------------------------------*/
.faq{
  background-color:var(--green);
}
.faq h2{
  color:var(--right-green);
  margin-bottom:30px;
}
/* ========== faq-item 各Q&A ========== */
.faq-item {
  padding: 30px 0;
  color:#fff;
}

/* ========== dt========= */
.faq-item dt {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-heading-md);
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.6;
  border: 1px solid var(--beige);
  border-left:none;
  border-right:none;
  /* Q.画像 */
  padding-top:10px;
  padding-bottom:10px;
  padding-left: 0;
}

/* Q.アイコン画像を::beforeで表示 */
.faq-item dt::before {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  background-image: url('../img/faq_icon.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* ========== dd========== */
.faq-item dd {
  margin: 0;
  font-size: var(--fs-body);
  line-height: 1.9;
}

.faq-item dd p {
  margin: 0;
  font-size: var(--fs-body);
}

/* ========== ※注釈テキスト ========== */
.faq-item dd span {
  display: block;
  font-size: var(--fs-note);
  margin-top: 10px;
  line-height: 1.8;
}








/*---------------------------------------------
	access
---------------------------------------------*/
.access h2{
  color:var(--green);
  margin-bottom:30px;
}
.access .flex-box{
  justify-content:space-between;
}
.access .flex-box div p{
  font-size:var(--fs-heading-md);
}
.access .flex-box div p.access-address{
  margin-top:15px;
  font-size:var(--fs-body);
}


/*---------------------------------------------
	footer
---------------------------------------------*/
footer{
  background-color:#333;
  color:#fff;
  padding:80px 20px 100px;
  text-align:center;
}
footer p,
footer p a{
  color:#fff;
}
footer h3{
  display:inline-block;
  text-align:center;
  padding-bottom:30px;
}

.fixed-buttons{
  display:none;
}