@charset "UTF-8";
/* スタイル編集 */
/* ▼▼▼ トップ
======================================================*/
.cta__Container {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: #202020;
  padding: 8px 16px;
}

.cta__Item {
  display: flex;
  justify-content: center;
  column-gap: 10px;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.cta__Item a {
  flex: 1;
}

.cta__Item a img {
  width: 100%;
  height: auto;
}

.cta__Item a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px){
.cta__Container {
  padding: 6px 6px;
}

.cta__Item {
  column-gap: 6px;
}
}

/* ▼ ヘッダー
----------------------------------------*/
.header{
  width: 100%;
  height: auto;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100; /* 追加 */
  background: #fff; /* 追加：背景がないと下のコンテンツが透けて見える */
}

.header {
  overflow: visible;
}

.header img{
	width: 160px;
	height: auto;
}

@media screen and (max-width: 768px){
.header img{
	width: 120px;
}
}

/* ===== ハンバーガーボタン ===== */
.hamburger-btn {
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px; padding: 8px;
  position: relative; z-index: 200;
}
.hamburger-btn .bar {
  width: 26px;
	height: 3px;
  background: #0f3890;
	border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1),
              opacity 0.25s ease, width 0.35s ease;
  transform-origin: center;
}
.hamburger-btn.is-open .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger-btn.is-open .bar:nth-child(2) { opacity: 0; width: 0; }
.hamburger-btn.is-open .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== オーバーレイ ===== */
.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease; z-index: 110;
}
.nav-overlay.is-open { opacity: 1; pointer-events: auto; }

/* ===== ドロワー ===== */
.nav-drawer {
  position: fixed; top: 0; left: 0;
  width: 62%; max-width: 300px; height: 100%;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.23,1,0.32,1);
  z-index: 150; padding-top: 68px;
}
.nav-drawer.is-open { transform: translateX(0); }
.nav-drawer ul { list-style: none; }
.nav-drawer ul li {
  border-bottom: 1px solid #e8e8e8;
  opacity: 0; transform: translateX(-16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.nav-drawer.is-open ul li { opacity: 1; transform: translateX(0); }
.nav-drawer.is-open ul li:nth-child(1) { transition-delay: 0.08s; }
.nav-drawer.is-open ul li:nth-child(2) { transition-delay: 0.13s; }
.nav-drawer.is-open ul li:nth-child(3) { transition-delay: 0.18s; }
.nav-drawer.is-open ul li:nth-child(4) { transition-delay: 0.23s; }
.nav-drawer.is-open ul li:nth-child(5) { transition-delay: 0.28s; }
.nav-drawer.is-open ul li:nth-child(6) { transition-delay: 0.33s; }
.nav-drawer ul li a {
  display: block; padding: 18px 28px;
  font-size: 14px; color: #222; text-decoration: none;
  letter-spacing: 0.03em;
}
.nav-drawer ul li a:hover { background: #f7f7f5; }

/* ▼ sec05 スライダー
----------------------------------------*/
	.slider{
		width: 100%;
		margin-top: 29px;
		margin-inline: auto;
		font-size: 0;
	}
	/* arrowsカスタム */
	/* .slider::before,
	.slider::after{
		content: "";
		width: 45px;
		height: 100%;
		background: #fff;
		position: absolute;
		top: 0;
		z-index: 1;
		opacity: .3;
	} */
	.slider::after{
		right: 0;
	}
	.slider .slick-prev,
	.slider .slick-next{
		top: 50%;
		height: 40px;
		z-index: 2;
		/* height: 100%; */
	}
	.slider .slick-prev{
		left: 0px;
	}
	.slider .slick-next{
		right: 0px;
	}
	/* .slick-next:before{
		content: url(../img/next.png)!important;
	}
	.slick-prev:before{
		content: url(../img/prev.png)!important;
	} */
	.slick-prev:before, .slick-next:before{
		opacity: 1;
	}
	.slick-slide {
		margin: 0 10px;
		/* 左右に10pxの余白を追加 */
	}

	/* top.css に追加して上書き */
.slider-track .slide {
  float: none; /* slick の float をリセット */
}

/* top.css に追加 */
.slider-track {
  touch-action: pan-y;
}

.slider-track .slide {
  float: none;
}

@media screen and (max-width: 768px){
	.slider{
		margin-top: 18px;
	}
}

	/* arrowsカスタム */
	.slider::before,
	.slider::after{
		content: "";
		width: 30px;
		}
		.slider .slick-prev{
			left: 0px;
		}
		.slider .slick-next{
			right: 0px;
		}

.slider_box {
    position: relative;
}

.slider_overlay_left,
.slider_overlay_right {
    position: absolute;
    top: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    pointer-events: none; /* クリック・スワイプを邪魔しない */
    z-index: 1;
}

.slider_overlay_left {
    left: 0;
    width: 15.2%; /* centerPaddingと合わせる */
}

.slider_overlay_right {
    right: 0;
    width: 15.1%; /* centerPaddingと合わせる */
}

@media screen and (max-width: 750px){
.slider_overlay_left{
    width: 15.1vw; /* centerPaddingと合わせる */

}
.slider_overlay_right{
    width: 15vw; /* centerPaddingと合わせる */

}
}
@media screen and (max-width: 700px){
.slider_overlay_left{
    width: 15.1vw; /* centerPaddingと合わせる */

}
.slider_overlay_right{
    width: 15vw; /* centerPaddingと合わせる */

}
}
@media screen and (max-width: 680px){
.slider_overlay_left{
    width: 14.95vw; /* centerPaddingと合わせる */

}
.slider_overlay_right{
    width: 14.94vw; /* centerPaddingと合わせる */

}
}
@media screen and (max-width: 600px){
.slider_overlay_left{
    width: 14.8vw; /* centerPaddingと合わせる */

}
.slider_overlay_right{
    width: 14.75vw; /* centerPaddingと合わせる */

}
}
@media screen and (max-width: 550px){
.slider_overlay_left{
    width: 14.6vw; /* centerPaddingと合わせる */

}
.slider_overlay_right{
    width: 14.6vw; /* centerPaddingと合わせる */

}
}
@media screen and (max-width: 500px){
.slider_overlay_left{
    width: 14.5vw; /* centerPaddingと合わせる */

}
.slider_overlay_right{
    width: 14.4vw; /* centerPaddingと合わせる */

}
}
@media screen and (max-width: 450px){
.slider_overlay_left{
    width: 14.22vw; /* centerPaddingと合わせる */

}
.slider_overlay_right{
    width: 14.2vw; /* centerPaddingと合わせる */

}
}
@media screen and (max-width: 400px){
.slider_overlay_left{
    width: 13.99vw; /* centerPaddingと合わせる */

}
.slider_overlay_right{
    width: 13.75vw; /* centerPaddingと合わせる */

}
}


/* ▼ スクロールダウン
----------------------------------------*/
/* スクロールダウンの位置 */
.scroll {
  padding-top: 60px;
  position: relative;
  text-align: center;
	background-color: #fff;
}
/* 矢印のアニメーション部分 */
.scroll::before {
  animation: scroll 2s infinite;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  content: "";
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  top: -5px;
  width: 20px;
}
/* 矢印のアニメーション */
@keyframes scroll {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translate(0, 0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: rotate(-45deg) translate(-20px, 20px);
  }
  100% {
    opacity: 0;
  }
}

/* ▼ FV
----------------------------------------*/
#fv{
	background-color: #f2f2f2;
}
.fv__Content{
background-color: #f2f2f2;
margin-top: 10px;
}

@media screen and (max-width: 768px){
.fv__Content{
background-color: #f2f2f2;
margin-top: 6px;
}
}

/* ▼ ご試着無料
----------------------------------------*/
.try-on__Wrapper{
	background-color: #f2f2f2;
/*	padding-top: 15px;*/
	padding-bottom: 40px;
}

@media screen and (max-width: 768px){
		.try-on__Wrapper{
/*		padding-top: 10px;*/
		padding-bottom: 20px;
	}
}

/* ▼ コレクション
----------------------------------------*/
.collection__Wrapper{
	background-color: #f2f2f2;
	padding-top: 80px;
}

.collection__Img_title{
	margin-inline: auto;
	width: 90%;
}

.collection__Container_brand{
	margin-top: 45px;
}

.collection__Content{
	text-align: center;
	margin-top: 83px;
}

.collection__Content:first-child{
	margin-top: 0;
}

.collection__Title_sm{
	display: inline-block;
	text-align: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
	font-size: 38px;
	border-bottom: solid 2px #b8b351;
	line-height: 1.2;
	color: #131313;
}
.short_movie {
	width: 90%;
	max-width: 540px;
	height: auto;
	margin: 0 auto;
	padding-top: 80px;
	padding-bottom: 10px;
}
.short_movie iframe {
	aspect-ratio: 9 / 16;
	width: 100%;
	height: auto;
}
@media screen and (max-width: 768px){
.collection__Wrapper{
	padding-top: 32px;
	}
.collection__Content{
	text-align: center;
	margin-top: 48px;
}
.collection__Container_brand{
	margin-top: 25px;
}

.collection__Img_title{
	width: 90%;
	margin-inline: auto;
}

.collection__Title_sm{
	font-size: 28px;
	border-bottom: solid 2px #b8b351;
}
}

/* ▼ 地域No.1
----------------------------------------*/
.no1__Wrapper{
	background-color: #f2f2f2;
  padding-top: 65px;
	padding-bottom: 72px;
}

.no1__Img img{
	width: 100%;
}

@media screen and (max-width: 768px){
.no1__Wrapper{
  padding-top: 35px;
	padding-bottom: 36px;
}
}

	/* ▼ プラン紹介
----------------------------------------*/
/* ===== レンタル ===== */
.plan__Wrapper{
	background-color: #f2f2f2;
}

/* ===== 購入 ===== */
.rental__Content + .purchase__Content,
.purchase__Content + .remake__Content{
	margin-top: 3px;
}

/* ▼ ５つのポイント
----------------------------------------*/
.five-point__Img_title{
	text-align: center;
	width: 75%;
	margin-inline: auto;
	padding: 90px 0 33px;
}

.five-point__Wrapper{
	width: 100%;
	margin: 0 auto;
	padding: 0 30px 100px;
	background-color: #f2f2f2;
}

.five-point__Content{
	margin-top: 38px;
}

.five-point__Content:first-child{
	margin-top: 0;
}

.five-point__Img{
	text-align: center;
		margin-top: 11px;

}

.five-point__Text_desc{
	margin-top: 35px;
	font-size: 28px;
	color: #282828;
}

/* タイトル行（数字とテキストを横並び） */
.five-point__Item_title {
  display: flex;
  align-items: center;
}

/* タイトルテキスト */
.five-point__Title {
  display: contents;
  align-items: center;
  gap: 12px;
  font-size: 36px;
  font-weight: 700;
	color: #282828;
  line-height: 1.5;
  margin: 0;
}

/* 数字画像（::before で表示） */
.five-point__Title::before {
  content: '';
  flex-shrink: 0;
  width: 125px;       /* 画像サイズに合わせて調整 */
  height: 125px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* 各番号の画像を指定 */
.five-point__Title--1::before { background-image: url('../../common/img/point1.png'); }
.five-point__Title--2::before { background-image: url('../../common/img/point2.png'); }
.five-point__Title--3::before { background-image: url('../../common/img/point3.png'); }
.five-point__Title--4::before { background-image: url('../../common/img/point4.png'); }
.five-point__Title--5::before { background-image: url('../../common/img/point5.png'); }

/* テキストのみドットアンダーライン */
.five-point__Title span {
  display: block;      /* inline-block → block */
  width: 70%;         /* 親要素いっぱいに */
  padding-bottom: 6px;
  background-image: radial-gradient(circle, #afafaf 1px, transparent 1px);
  background-size: 6px 6px;
  background-repeat: repeat-x;
  background-position: left bottom;
	color: #282828;
	padding-left: 9px;
}

@media screen and (max-width: 768px){
.five-point__Wrapper{
		padding: 0 20px 50px;
}

.five-point__Img_title{
		padding: 47px 0 24px;
		width: 77%;
}

.five-point__Content{
	margin-top: 18px;
}

.five-point__Img{
		margin: 8px auto 0;
		width: 81%;
}

.five-point__Text_desc{
	margin-top: 16px;
	font-size: 16px;
}

/* タイトルテキスト */
.five-point__Title {
  gap: 6px;         /* 数字とテキストの間隔 */
  font-size: 19px;
	line-height: 1.2;
}

/* 数字画像（::before で表示） */
.five-point__Title::before {
  width: 65px;       /* 画像サイズに合わせて調整 */
  height: 65px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* テキストのみドットアンダーライン */
.five-point__Title span {
  padding-bottom: 6px;
  background-size: 6px 6px;
	padding-left: 5px;
}
}

/* ▼ 口コミ
----------------------------------------*/
#review{
	background-image: url(../../common/img/review_bg.jpg);
/*  padding-bottom: 260px; インスタ追加のため変更 */
  padding-bottom: 100px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

.review__Wrapper{
	    /* max-width: 710px; */
    width: 100%;
    margin: 0 auto;
		padding: 0 40px;
}

.review__Img_title{
	text-align: center;
}

.review__Content{
	padding: 25px 44px 40px;
	background-color: #fff;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
	border-radius: 8px;
	width: 86%;
	margin-top: 37px;
}

.review__Content:first-child{
	margin-top: 66px;
}

.review__Content:nth-child(odd) {
  margin-right: auto;
}
.review__Content:nth-child(even) {
  margin-left: auto;
}

.review__Text_desc{
	font-size: 26px;
	margin-top: 18px;
	color: #282828;
	letter-spacing: -1px;
}

.review__Text_asterisk{
	font-size: 23px;
	margin-top: 37px;
	color: #282828;
	padding-left: 8px;
	letter-spacing: -.8px;
}

@media screen and (max-width: 768px){
#review{
/*padding-bottom: 190px;インスタセクション追加のため変更*/
	padding-bottom: 50px;
}

.review__Wrapper{
		padding: 0 20px;
}

.review__Content{
	padding: 16px 23px 19px;
	border-radius: 6px;
	width: 100%;
	width: 86%;
	margin-top: 18px;
}

.review__Content:first-child{
	margin-top: 35px;
}

.review__Img_icon{
	width: 90px;
	padding-left: 6px;
}

.review__Text_desc{
	font-size: 16px;
	margin-top: 6px;
	line-height: 1.5;
	letter-spacing: 0;
}

.review__Text_asterisk{
	font-size: 12px;
	margin-top: 17px;
}
}


/* ▼ Instagram
----------------------------------------*/

#insta {
	background-image: -moz-linear-gradient( 90deg, rgb(241,196,184) 0%, rgb(251,237,220) 100%);
	background-image: -webkit-linear-gradient( 90deg, rgb(241,196,184) 0%, rgb(251,237,220) 100%);
	background-image: -ms-linear-gradient( 90deg, rgb(241,196,184) 0%, rgb(251,237,220) 100%);
	padding: 66px 20px  178px;
	box-sizing: border-box;
}
.insta__Img_title {
	width: 52.66%;
	max-width: 395px;
	height: auto;
/*	text-align: center;*/
	margin: 0 auto;
}
.insta__contents {
	width: 98%;
	max-width: 540px;
	margin: 50px auto 30px;
}

@media screen and (max-width: 768px){
	#insta {
		padding-top: 38px;
	}
	.insta__Img_title {
		width: 76%;
	}
	.insta__contents {
		margin-top: 38px;
	}
}


/* ▼ フォトスタジオ
----------------------------------------*/
#studio {
  position: relative; /* ::before の基準点 */
}

#studio::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%); /* セクション上端の外側に配置 */
  width: 100%;   /* 三角画像の幅に合わせて調整 */
  height: 40px;  /* 三角画像の高さに合わせて調整 */
  width: 100%;
  height: 80px;
  background-image: url('../../common/img/studio_bg01.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
}

/* 三角の高さ分だけ上に余白を確保（任意） */
/* #studio の上の要素との間に三角が収まるスペースが必要な場合 */
#studio {
  margin-top: -80px; /* 三角の高さ相当 */
	background-color: #fff;
}

.studio__Img_title{
	text-align: center;
	padding-top: 50px;
	width: 60%;
	margin-inline: auto;
}

.studio__Img{
	position: relative;
	margin-top: 25px;
}

.studio__Text_name{
	position: absolute;
	bottom: -40px;
	right: 0;
	background-color: rgba(0, 0, 0, 0.7);
	padding: 25px 44px 26px;
	color: #fff;
	font-size: 31px;
	font-weight: 700;
	line-height: 1.2;
}

.studio__Text_name_sm{
	font-size: 26px;
}

.studio__Text_desc{
	padding: 97px 40px 94px;
	font-size: 27px;
	color: #282828;
	line-height: 1.5;
}

@media screen and (max-width: 768px){
/* 三角の高さ分だけ上に余白を確保（任意） */
/* #studio の上の要素との間に三角が収まるスペースが必要な場合 */
#studio {
  margin-top: -90px; /* 三角の高さ相当 */
	background-color: #fff;
}

.studio__Img_title{
	text-align: center;
	padding-top: 24px;
	width: 70%;
}

.studio__Img{
	margin-top: 16px;
}

.studio__Text_name{
	bottom: -17px;
	padding: 12px 22px 18px 24px;
	font-size: 17px;
}

.studio__Text_name_sm{
	font-size: 14px;
}

.studio__Text_desc{
	padding: 45px 20px 52px;
	font-size: 16px;
	line-height: 1.4;
}
}

/* ▼ 店舗情報
----------------------------------------*/
#shop{
  background-image: url(../img/shop_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  border-top: 1px solid #f2f2f2;
}

.shop__Wrapper {
		    /* max-width: 650px; */
    width: 100%;
    margin: 0 auto;
  text-align: center;
	padding: 90px 40px 100px;
}

.shop__Img_title{
	text-align: center;
	width: 30%;
	margin-inline: auto;
}

.shop__Map{
  border: solid 10px #ffffff;
  overflow: hidden;
  display: block;         /* inline-block → block に変更 */
  width: 100%;            /* 親要素いっぱいに */
  box-sizing: border-box; /* border込みで100%に収める（追加） */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
	margin-top: 20px;
}

.shop__Map iframe{
  display: block;
  width: 100%; /* 追加 */
}

.shop__Container{
	/* display: flex; */
	/* justify-content: space-between; */
	margin-top: 33px;
	background-image: url(../../common/img/bg_shop_gaikan.png);
  background-size: 313px auto;
  background-repeat: no-repeat;
  background-position: right top;
}

.shop__Text_name{
	font-size: 34px;
	font-weight: 500;
	color: #282828;
}

.shop__Text_detail{
	font-size: 25px;
	color: #282828;
text-shadow: 
	#d2d2d2 2px 0px 2px, #d2d2d2 -2px 0px 2px,
	#d2d2d2 0px -2px 2px, #d2d2d2 -2px 0px 2px,
	#d2d2d2 2px 2px 2px, #d2d2d2 -2px 2px 2px,
	#d2d2d2 2px -2px 2px, #d2d2d2 -2px -2px 2px,
	#d2d2d2 1px 2px 2px, #d2d2d2 -1px 2px 2px,
	#d2d2d2 1px -2px 2px, #d2d2d2 -1px -2px 2px,
	#d2d2d2 2px 1px 2px, #d2d2d2 -2px 1px 2px,
	#d2d2d2 2px -1px 2px, #d2d2d2 -2px -1px 2px,
	#d2d2d2 1px 1px 2px, #d2d2d2 -1px 1px 2px,
	#d2d2d2 1px -1px 2px, #d2d2d2 -1px -1px 2px;
}

.shop__Img_cta{
	margin-top: 85px;
	text-align: center;
	width: 63%;
	margin-inline: auto;
}

.shop__Img_cta:hover{
	opacity: .7;
}

@media screen and (max-width: 768px){
.shop__Wrapper {
	padding: 64px 20px 50px;
}

.shop__Img_title{
	width: 35%;
}

.shop__Map{
  border: solid 8px #ffffff;
	height: 250px;
	margin-top: 10px;
}


.shop__Map iframe{
  display: block;
  width: 100%; /* 追加 */
	height: 250px;

}

.shop__Container{
  background-size: 165px;
  background-size: 49%;
	margin-top: 28px;
}

.shop__Text_name{
	font-size: 18px;
	font-weight: 700;
}

.shop__Text_detail{
	font-size: 14px;

}

.shop__Img{
	width: 49%;
}

.shop__Img_cta{
	margin-top: 40px;
	width: 62%;
}
}
/* ▼ カレンダー予約フォーム
----------------------------------------*/
#reservation {
	background: #c4c6ba;
}
.reservation__title {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	color: #404135;
	margin-bottom: 0.8em;
}

/* ▼ フッター
----------------------------------------*/
.footer__Wrapper{
	background-color: #fff;
	padding: 24px 20px 130px;
}

.footer__Text_copyright{
	text-align: center;
	color: #282828;
}

@media screen and (max-width: 768px){
.footer__Wrapper{
	background-color: #fff;
	padding: 12px 20px 70px;
}
}

/* ▼▼▼ 480px〜768px
======================================================*/
	/* ▼ sec05 スライダー
	----------------------------------------*/

.swiper-wrap{
	position: relative;
	margin-top: 29px;
}

	
.swiper{
  /* max-width: 500px; */
}

.swiper-slide img {
  height: auto;
  width: 100%;
}

/* サイドのスライドを半透明に */
.swiper-slide {
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

/* アクティブ（中央）のスライドは通常表示 */
.swiper-slide-active {
  opacity: 1;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
	position: absolute;
	background: rgba(0, 0, 0, 1);
	padding: 15px 9px 16px;
}
/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
	content: '<';
	font-size: 18px;
	color: #ffffff;
	line-height: 1;
	left: -10px;
}
/* 次への矢印カスタマイズ */
.swiper-button-next::after {
	content: '>';
  font-size: 18px;
  color: #ffffff;
  line-height: 1;
	right: -10px;
}
/* 画像サイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}

/* ============================================================
   来店予約フォーム（#reservation）
   ============================================================ */
:root {
  --surface-1: #f4f5f6;
  --surface-2: #ffffff;
  --border: #e2e4e6;
  --border-danger: #c0392b;
  --radius: 8px;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #8a9096;
  --text-success: #2e7d32;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;

  --accent: #688489;
  --step-inactive-bg: #c3c7ca;
  --step-inactive-text: #8a9096;
  --step-active-text: #1a1a1a;
  --full-color: #c0392b;
}

:where(#reservation) * { box-sizing: border-box; }

#reservation {
  margin: 0;
  padding: 32px 16px;
  background: var(--surface-1);
  font-family: var(--font-sans);
  color: var(--text-primary);
}

:where(#reservation) button {
  font-family: var(--font-sans);
  background: var(--surface-2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
  font-size: 14px;
}
:where(#reservation) button:hover:not(:disabled) { border-color: var(--accent); }
:where(#reservation) button:disabled { cursor: default; }

:where(#reservation) input, :where(#reservation) select, :where(#reservation) textarea {
  font-family: var(--font-sans);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 10px;
  font-size: 14px;
  background: var(--surface-2);
  color: var(--text-primary);
}
:where(#reservation) input:focus, :where(#reservation) textarea:focus {
  outline: none;
  border-color: var(--accent);
}

#reservation .sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ---- レイアウト ---- */
.reservation_wrapper { max-width: 420px; margin: 0 auto; }
.card {
  background: var(--surface-2);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
}

/* ---- ステップインジケーター ---- */
.step-bar { display: flex; align-items: center; justify-content: center; margin: 0.75rem 0 1.75rem; }
.step-chevron { font-size: 14px; color: var(--step-inactive-bg); margin: 0 8px; flex-shrink: 0; }
.step-pill { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.step-circle {
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: #ffffff; flex-shrink: 0;
  background: var(--step-inactive-bg);
  transition: background 0.2s;
}
.step-circle.reached { background: var(--accent); }
.step-label {
  font-size: 13px; font-weight: 500; white-space: nowrap;
  color: var(--step-inactive-text);
  transition: color 0.2s;
}
.step-label.reached { color: var(--step-active-text); }
.step-label.current { font-weight: 600; }

/* ---- 月送り ---- */
.month-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.icon-btn { width: 32px; height: 32px; padding: 0; }
.month-label { font-size: 15px; font-weight: 500; }

/* ---- カレンダー ---- */
.weekday-row { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 6px; }
.weekday-cell { text-align: center; font-size: 12px; color: var(--text-muted); padding: 4px 0; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.day-btn { aspect-ratio: 1; padding: 0; font-size: 13px; border-radius: var(--radius); }
.day-btn:disabled { opacity: 0.35; }
.day-btn.full { color: var(--full-color); opacity: 0.7; }
.day-btn.selected { background: var(--accent); color: #ffffff; border-color: var(--accent); }

.notes-block { margin-top: 8px; display: flex; flex-direction: column; gap: 2px; }
.note-text { font-size: 12px; color: var(--text-muted); margin: 0; }

.notice-block { margin-top: 12px; }
.notice-text { font-size: 12px; color: var(--accent); margin: 0; }
/* ---- 日程調整チェック ---- */
.adjustment-label {
  display: flex; align-items: center; gap: 8px;
  margin-top: 14px; padding: 10px 12px;
  border: 1px solid var(--border); border-radius: var(--radius);
  cursor: pointer;
  background: transparent;
  transition: background 0.15s, border-color 0.15s;
}
.adjustment-label.checked { background: var(--accent); border-color: var(--accent); }
.adjustment-checkbox { width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--accent); }
.adjustment-text { font-size: 13px; color: var(--text-primary); transition: color 0.15s; }
.adjustment-label.checked .adjustment-text { color: #ffffff; }

/* ---- 時間選択 ---- */
.time-section { margin-top: 1.25rem; display: none; }
.time-section.visible { display: block; }
.time-header { display: flex; align-items: baseline; justify-content: space-between; margin: 0 0 8px; }
.time-header .label { font-size: 13px; color: var(--text-secondary); margin: 0; }
.time-header .hours { font-size: 12px; color: var(--text-muted); margin: 0; }
.time-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.time-btn { font-size: 13px; padding: 8px 0; }
.time-btn:disabled { opacity: 0.35; text-decoration: line-through; }
.time-btn.selected { background: var(--accent); color: #ffffff; border-color: var(--accent); }

/* ---- お客様情報入力 ---- */
.details-section { margin-top: 1.25rem; display: none; border-top: 0.5px solid var(--border); padding-top: 1rem; }
.details-section.visible { display: block; }
.field { margin-bottom: 10px; }
.field.last { margin-bottom: 14px; }
.field label { font-size: 13px; color: var(--text-secondary); display: block; margin-bottom: 4px; }
.required { color: var(--border-danger); }
.field input, .field textarea { width: 100%; }
.note-textarea { min-height: 60px; resize: vertical; }
.summary-line { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; }
.error-line { font-size: 12px; color: var(--border-danger); margin-bottom: 8px; display: none; }
.error-line.visible { display: block; }
.confirm-btn { width: 100%; border: 2px solid var(--accent); color: var(--accent); font-weight: 500; }
.confirm-btn.error { border-color: var(--border-danger); }

/* ---- 完了画面 ---- */
.done-section { display: none; text-align: center; padding: 1.5rem 0; }
.done-section.visible { display: block; }
.done-icon { font-size: 28px; color: var(--text-success); }
.done-title { font-weight: 500; margin: 8px 0 4px; text-align: center; }
.done-detail { font-size: 13px; color: var(--text-secondary); margin: 0; text-align: center; }
.reset-link {
  margin-top: 14px;
  font-size: 13px;
  color: var(--accent);
  text-decoration: underline;
  cursor: pointer;
  display: inline-block;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-sans);
}
.reset-link:hover { opacity: 0.8; }
