@charset "UTF-8";
/* CSS Document */
/*------------------------------------
PC用レイアウト（768px以上スクリーン）
------------------------------------*/
/*--------------------
共通設定（PC)
--------------------*/
/*body全体の初期スタイル設定*/
body {
  font-size: 62.5%; /*emの設定がしやすくなる定番設定*/
  font-family: "Noto Serif JP", serif;
  color: #232323;
}
/*リンク文字の設定*/
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
/*ブラウザのCSSのリセット*/
p {
  margin: 0 !important;
  padding: 0 !important;
}
img{
	vertical-align:top;
}
/*セクションエリアの共通設定*/
section {
  clear: both;
}
/*--------------------
全体レイアウト共通設定
--------------------*/
/*全体エリアを設定するにはここ*/
/*記事（ボディ）エリア*/
.article {
  font-size: 1.8em;
}
/*記事（ボディ）エリアの行間*/
.article p {
  line-height: 1.6;
}
/*カラム全体の幅を変更する*/
.top_image_in {
  width: 750px;
  margin: 0 auto;
}
.pc_view {
  display: block !important;
}
.sp_view {
  display: none !important;
}
/*黄色マーカー*/
.marker-bold {
  background: linear-gradient(transparent 45%, #fdeb21 45%);
}



/* =====================
HEADER
===================== */
.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  background:transparent;
  transition:.3s;
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:25px 50px;
}
.header__logo img{
  height:50px;
}

/* =====================
PC MENU
===================== */
.header__nav{
  display:flex;
  align-items:center;
  margin-left:auto;
}
.header__menu{
  display:flex;
  align-items:center;
  gap:40px;

  list-style:none;
  margin:0;
  padding:0;
}
.header__menu a{
  color:#232323;
  text-decoration:none;

  font-size:14px;
  letter-spacing:.15em;
  font-weight:500;

  transition:.3s;
}
.header__menu a:hover{
  opacity:.7;
}

/* =====================
BUTTON
===================== */

.header__btn{
  width:200px;
  height:56px;
  margin-left:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  background-color: #b09d88;
  color:#fff;
  text-decoration:none;
  font-size:14px;
  letter-spacing:.08em;
  transition:.3s;
}
.header__btn:hover{
  opacity:.8;
}

/* =====================
HAMBURGER
===================== */
.hamburger{
  display:none;
  width:42px;
  height:32px;
  position:relative;
  background:none;
  border:none;
  cursor:pointer;
}
.hamburger span{
  position:absolute;
  left:0;
  width:100%;
  height:2px;
  background:#b0a190;
  transition:.3s;
}
.hamburger span:nth-child(1){
    top:0;
}
.hamburger span:nth-child(2){
    top:14px;
}
.hamburger span:nth-child(3){
    bottom:0;
}

/* OPEN */
.hamburger.active span:nth-child(1){
    transform:rotate(45deg);
    top:14px;
}
.hamburger.active span:nth-child(2){
    opacity:0;
}
.hamburger.active span:nth-child(3){
    transform:rotate(-45deg);
    bottom:16px;
}

/* =====================
DRAWER
===================== */
.drawer{
  position:fixed;
  inset:0;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  visibility:hidden;
  transition:.4s;
  z-index:998;
}
.drawer.active{
  opacity:1;
  visibility:visible;
}
.drawer__nav{
  text-align:center;
}
.drawer ul{
  list-style:none;
  padding:0;
  margin:0;
}
.drawer li{
  margin-bottom:30px;
}
.drawer a{
  color:#232323;
  text-decoration:none;

  font-size:22px;
  letter-spacing:.15em;
}
.drawer__btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:260px;
  height:60px;
  margin:50px auto 0;
  background:#9b8c7b;
  color:#fff !important;
}

/* =====================
RESPONSIVE
===================== */
@media(max-width:1024px){
.header__nav{
  display:none;
}

.hamburger{
  display:block;
  margin-left:auto;
}

.header__inner{
  padding:30px;
  justify-content:flex-start;
}

.header__logo img{
  height:40px;  
}

}




/*--------------------
セクションの設定
--------------------*/
.section_over {
  width: 100%;
  height: auto;
}
.section_under {
  width: 750px;
  height: auto;
  margin: 0 auto;
  padding: 1em 0em;
  background: #fff;
}
/*--------------------
見出しの設定
--------------------*/
h2 {
  margin: 0em;
  padding: 0.5em;
  text-align: center;
  font-size: 3em;
  font-weight: bold;
  color: #232323;
  letter-spacing: 0.2em;
}
h3 {
    display: block;
    font-size: 1.17em;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: 500;
    unicode-bidi: isolate;
}
/*--------------------
ファーストビューエリアの設定
--------------------*/
.under_fv {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0em 0em 0em;
}
.fv {
  height: 140vh;
  background: #fff;
}
.fv__content {
  display: flex;
  height: 100%;
}
.fv__left {
  width: 40%;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.fv__right {
  width: 60%;
  position: relative;
}
.fv__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position:top;
  display: block;
}
.fv__logo {
  margin-bottom: auto;
  width: 100%;
}
.fv__logo img {
  width: 100%;
}
.fv__text {
  padding: 40px 60px;
  max-width: 500px;
  margin-bottom: 80px;
}
.fv__sub-en {
  font-size: 1.22rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #333;
}
.fv_90 {
  width: 90%;
  margin: 0 auto;
}
.fv__sp-image {
  margin: 50px 0;
}
.fv__title {
  font-size: 40px;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 40px;
  letter-spacing: 0.08em;
}
.fv__description {
  font-size: 1rem;
  line-height: 2.2;
  padding-bottom: 40px;
  color: #333;
}
.fv__note {
  font-size: .875rem;
  color: #555;
}
.fv_90 {
  width: 100%;
  margin: 0 auto;
}
.cta_btn {
  margin: 30px 0 10px 0;
}
.cta_btn:hover {
  opacity: 0.8;
}

/*--------------------
セクション見出しの設定
--------------------*/
.midashi {
  margin: 0 auto;
}
.section-kicker {
  text-align: center;
  letter-spacing: 0.4em;
}
.midashi h2 {
  font-size: 30px;
}


/*--------------------
PHILOSOPHYエリアの設定
--------------------*/
#philosophy {
  padding: 0;
  background-color: #fff;
  margin-top: 8em;
}
.philosophy_con {
  width: 780px;
  margin: 2em auto;
}
.philosophy_con p {
  text-align: center;
  line-height: 2.3em;
}
.philosophy_img{
	position:relative;
	max-width:1400px;
	height:800px;
	margin:0 auto;
}

/* 画像共通 */
.philosophy_img img{
	position:absolute;
	display:block;
	object-fit:cover;

	opacity:0;
	transform:translateY(50px) scale(.95);
	filter:blur(8px);

	margin-top:10em;
}
.philosophy_img{
	position:relative;
	height:800px;
}
.img_100{
  margin-top:5em;
	opacity:0;
	transform:translateY(80px) scale(1.05);
	filter:blur(8px);

	transition:
		opacity 2.5s ease,
		transform 2.5s ease,
		filter 2.5s ease;
}
.img_100.active{
	opacity:1;
	transform:translateY(0) scale(1);
	filter:blur(0);
}

/* 右 */
.philosophy_img.active img:nth-child(3){
  width:600px;
  right:0;
  top:0;

	opacity:1;
	transform:translateY(0) scale(1);
	filter:blur(0);

	transition:1.2s ease;
}
/* 左 */
.philosophy_img.active img:nth-child(1){
  width:270px;
  left:50px;
  bottom:80px;

	opacity:1;
	transform:translateY(0) scale(1);
	filter:blur(0);

	transition:1.2s ease;
	transition-delay:.5s;
}
/* 真ん中 */
.philosophy_img.active img:nth-child(2){
  width:420px;
  left:350px;
  top:180px;

  opacity:1;
	transform:translateY(0) scale(1);
	filter:blur(0);

	transition:1.2s ease;
	transition-delay:1s;
}


/*--------------------
IMPORTANTエリアの設定
--------------------*/
#important {
  padding: 0;
  background-color: #f5f2ee;
  padding-top: 8em;
}
.important_con {
  width: 780px;
  margin: 1em auto;
}
.important_box {
  padding: 5em 0;
}
.important_title , .important_txt {
  text-align: center;
}
.important_title {
  margin-top: 30px;
}
.important_num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
}
.important_title .important_txt_title {
  font-size: 25px;
  line-height: 2.2;
}
.important_txt_title {
  letter-spacing: 1.3;
  padding-bottom: 1em;
}
.important_txt {
  margin: 0.8em 0;
}
.important_txt .important_txt_text {
  line-height: 1.8;
}
.important_img{
	position:relative;
	height:700px;
	margin-top:8em;
}

/* 画像共通 */
.important_img img{
	position:absolute;
	display:block;
	object-fit:cover;

	opacity:0;
	transform:translateY(60px) scale(.95);
	filter:blur(8px);
}
/* 左 */
.important_img img:nth-child(1){
	width:180px;
	left:200px;
	top:120px;
}
/* 中央 */
.important_img img:nth-child(2){
	width:650px;
	left:50%;
	transform:translateX(-50%) translateY(60px) scale(.95);
	top:0;
}
/* 右 */
.important_img img:nth-child(3){
	width:290px;
	right:90px;
	top:180px;
}
/* 中央 → 最初 */
.important_img.active img:nth-child(2){
	opacity:1;
	transform:translateX(-50%) translateY(0) scale(1);
	filter:blur(0);

	transition:1.5s ease;
}
/* 左 → 2番目 */
.important_img.active img:nth-child(1){
	opacity:1;
	transform:translateY(0) scale(1);
	filter:blur(0);

	transition:1.5s ease;
	transition-delay:.5s;
}
/* 右 → 最後 */
.important_img.active img:nth-child(3){
	opacity:1;
	transform:translateY(0) scale(1);
	filter:blur(0);

	transition:1.5s ease;
	transition-delay:1s;
}


/*--------------------
NAYAMIエリアの設定
--------------------*/
#nayami {
  padding: 8em 0 0 0;
  background-color: #fff;
}
.nayami_txt{
	text-align:center;
	margin-top:5em;
	margin-bottom:5em;
}
.nayami_span{
	font-size:1.4rem;
	display:block;
}
.nayami_txt p{
	font-size:30px;
	font-weight:400;
  line-height:1;
}
.nayami_con_img {
  width: 50%;
  margin: 0 auto;
	margin-top:5em;
}

.nayami_img{
	position:relative;
	height:700px;
	margin-top:8em;
}

/* 共通 */
.nayami_img img{
	position:absolute;
	display:block;
	object-fit:cover;

	opacity:0;
	transform:translateY(60px) scale(.95);
	filter:blur(8px);
}
/* 左 */
.nayami_img img:nth-child(1){
	width:260px;
	left:0;
	top:-180px;
}
/* 中央 */
.nayami_img img:nth-child(2){
	width:520px;
	left:40%;
	top:230px;
	transform:translateX(-50%) translateY(60px) scale(.95);
}
/* 右 */
.nayami_img img:nth-child(3){
	width:240px;
	right:0;
	top:-100px;
}
/* 下 */
.nayami_img img:nth-child(4){
	width:300px;
	right:270px;
	bottom:80px;
}
/* 中央 */
.nayami_img.active img:nth-child(2){
	opacity:1;
	transform:translateX(-50%) translateY(0) scale(1);
	filter:blur(0);

	transition:1.5s ease;
}
/* 左 */
.nayami_img.active img:nth-child(1){
	opacity:1;
	transform:translateY(0) scale(1);
	filter:blur(0);

	transition:1.5s ease;
	transition-delay:.3s;
}
/* 右 */
.nayami_img.active img:nth-child(3){
	opacity:1;
	transform:translateY(0) scale(1);
	filter:blur(0);

	transition:1.5s ease;
	transition-delay:.6s;
}
/* 下 */
.nayami_img.active img:nth-child(4){
	opacity:1;
	transform:translateY(0) scale(1);
	filter:blur(0);

	transition:1.5s ease;
	transition-delay:.9s;
}


/*--------------------
KODAWARIエリアの設定
--------------------*/
#kodawari {
  padding: 8em 0 0 0;
  background-color: #fff;
}
.kodawari{
	margin:10em 0;
}
.kodawari_con {
  width: 780px;
  margin: 1em auto;
}
.kodawari_title{
	display:flex;
	align-items:center;
	justify-content:center;
	gap:40px;
	margin-bottom:5em;
}
.midashi .kodawari_title h2{
  font-weight: 400;
}
.kodawari_title span{
	display:block;
	width:140px;
	height:1px;
	background:#333;
}


.kodawari_item{
	display:flex;
	align-items:center;
	gap:30px;

	padding:2em 1.5em;

	opacity:0;
	transform:translateY(50px);
	filter:blur(8px);
}

.kodawari_item:nth-of-type(odd){
	background:#f4efe9;
}

.kodawari_icon{
	width:80px;
	flex-shrink:0;
}

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

.kodawari_text h3{
	font-size:28px;
	font-weight:400;
	margin-bottom:.2em;
}

.kodawari_text p{
	line-height:2;
	margin:0;
}
.kodawari_item.active{
	opacity:1;
	transform:translateY(0);
	filter:blur(0);

	transition:0.7s ease;
}

/*--------------------
MESSAGEエリアの設定
--------------------*/
#message {
  padding: 8em 0;
  background-color: #fff;
}
.message{
	margin:10em 0;
  background-image: url(../images/bg_message.jpg);
  background-size:  cover; 
}
.message_con {
  width: 780px;
  margin: 1em auto;
}
.message_con .midashi {
  margin-bottom: 30px;
}
.message_con .message_p {
  text-align: center;
  line-height: 2.4;
}


/*--------------------
GALLERYエリアの設定
--------------------*/
#gallery {
  padding: 8em 0;
  background-color: #fff;
}
.gallery_con {
  width: 780px;
  margin: 1em auto;
}
.gallery{
	padding:120px 0;
}
.gallery .midashi {
  margin-bottom: 5em;
}
.gallery_grid{
	max-width:1100px;
	margin:0 auto;
	display:grid;
	grid-template-columns:repeat(2,1fr);
	gap:40px;
}
.gallery_item{
	aspect-ratio:1/1;
	overflow:hidden;

	opacity:0;
	transform:translateY(60px);
	filter:blur(8px);

	transition:
		opacity 1.2s ease,
		transform 1.2s ease,
		filter 1.2s ease;
}
.gallery_item.active{
	opacity:1;
	transform:translateY(0);
	filter:blur(0);
}
.gallery_item img{
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
}
.gallery_btn_wrap{
	text-align:center;
	margin-top:80px;
}
.gallery_btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;

	width:280px;
	height:70px;

	background:#fff;
	color:#232323;
  border: 2px solid #2323;
	text-decoration:none;
	letter-spacing:.15em;
	font-size:15px;

	transition:.3s;
}
.gallery_btn:hover{
	opacity:.6;
}


/*--------------------
FAIR PRICEエリアの設定
--------------------*/
#price_concept {
  padding: 8em 0;
  background-color: #fff;
}
.price_concept{
	margin:0 auto;
	padding:10em 0;
}
.price_concept_box{
  max-width: 1200px;
  margin: 0 auto;
	display:flex;
	align-items:flex-end; /* ←画像下とテキスト下を揃える */
	gap:80px;
	margin-bottom:12em;
}
.price_concept_box.reverse{
	flex-direction:row-reverse;
}
.price_concept_img_con{
	width:55%;
}
.price_concept_img_con img{
	width:100%;
	display:block;
	object-fit:cover;
}
.price_concept_txt{
	width:45%;
}
.price_concept_txt h3{
	font-size:30px;
	font-weight:400;
	line-height:1.6;
	margin-bottom:1em;
}
.price_concept_txt p{
	line-height:2.2;
	margin:0;
}


.price_concept_img{
	position:relative;
	height:700px;
	margin-top:8em;
}

/* 画像共通 */
.price_concept_img img{
	position:absolute;
	display:block;
	object-fit:cover;

	opacity:0;
	transform:translateY(60px) scale(.95);
	filter:blur(8px);
}
/* 左 */
.price_concept_img img:nth-child(1){
	width:260px;
	left:100px;
	top:220px;
}
/* 中央 */
.price_concept_img img:nth-child(2){
	width:590px;
	left:50%;
	transform:translateX(-50%) translateY(60px) scale(.95);
	top:0;
}
/* 右 */
.price_concept_img img:nth-child(3){
	width:240px;
	right:100px;
	top:200px;
}
/* 中央 → 最初 */
.price_concept_img.active img:nth-child(2){
	opacity:1;
	transform:translateX(-50%) translateY(0) scale(1);
	filter:blur(0);

	transition:1.5s ease;
}
/* 左 → 2番目 */
.price_concept_img.active img:nth-child(1){
	opacity:1;
	transform:translateY(0) scale(1);
	filter:blur(0);

	transition:1.5s ease;
	transition-delay:.5s;
}
/* 右 → 最後 */
.price_concept_img.active img:nth-child(3){
	opacity:1;
	transform:translateY(0) scale(1);
	filter:blur(0);

	transition:1.5s ease;
	transition-delay:1s;
}


/*--------------------
WEDDING PLANエリアの設定
--------------------*/
#wedding_plan {
  padding: 8em 0;
  background-color: #fff;
}
.wedding_plan_con {
  width: 780px;
  margin: 1em auto;
}


/* 全体 */
.structure{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:820px;
  margin:40px auto;
}
.structure-box{
  width:320px;
}
/* 上段 */
.structure-box .top{
  background:#f4efe9;
  text-align:center;
  padding:18px 0;
  font-size:20px;
  letter-spacing:2px;
}
/* 下段 */
.structure-box .bottom{
  background:#f9f7f4;
  text-align:center;
  padding:18px 0;
}

.plus{
  font-size:28px;
  margin:0 10px;
}
.text{
  margin-bottom:50px;
}
.bar{
  background:#efece8;
  padding:10px 20px;
  margin:25px 0 15px;
}

/* 見出し */
.heading{
  display:flex;
  align-items:center;
  margin:60px 0 30px;
}
.heading span{
  flex:1;
  height:1px;
  background:#bfbfbf;
  margin-top: 30px;
}
.heading div{
  text-align:center;
  padding:0 20px;
}
.sub{
  font-size:14px;
  letter-spacing:2px;
  margin-bottom:5px;
}
.heading h2{
  font-size:22px;
  letter-spacing:6px;
}

.price-area{
  margin-top:30px;
}

/* 1行ごとの塊 */
.price-row{
  display:flex;
  width:100%;
  margin-bottom:18px;
}
/* 左側（価格） */
.price-left{
  width:50%;
  background:#f4efe9;
  padding:30px 35px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  text-align: center;
}
/* 右側（内容） */
.price-right{
  width:50%;
  background:#f9f7f4;
  padding:30px 35px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  text-align: center;
}
.price{
  font-size:42px;
  letter-spacing:1px;
}
.price span{
  font-size:14px;
  margin-left:5px;
}
.sub{
  font-size:14px;
  margin-top:8px;
  color:#555;
}
.price-right strong{
  font-size:42px;
  font-weight:normal;
  margin:0 4px;
}
.weekend{
  text-align:center;
  margin:20px 0 10px;
}

/*基本料金に含まれるもの*/
.features{
  margin-top:40px;
}
.item{
  display:flex;
  align-items:center;
  gap:25px;
  margin-bottom:45px;
}
.features_icon{
  width:20%;
}

.features_icontent{
  flex:1;
}
.features_content h3{
  margin-bottom:10px;
}
.features_content h3 span{
  color:#a7865a;
  font-size: 40px;
}
.tags{
  margin-top:5px;
}
.tags span{
  border:1px solid #aaa;
  padding:3px 12px;
  margin:0 10px;
  font-size:15px;
}
.red{
  color:#dc7559;
}


.plan_img{
	position:relative;
	height:900px;
	margin-top:5em;
}
/* 共通 */
.plan_img img{
	position:absolute;
	display:block;
	object-fit:cover;

	opacity:0;
	transform:translateY(60px) scale(.95);
	filter:blur(8px);
}
/* 左 */
.plan_img img:nth-child(1){
	width:260px;
	left:0;
	top:-180px;
}
/* 中央 */
.plan_img img:nth-child(2){
	width:520px;
	left:40%;
	top:230px;
	transform:translateX(-50%) translateY(60px) scale(.95);
}
/* 右 */
.plan_img img:nth-child(3){
	width:240px;
	right:0;
	top:-100px;
}
/* 下 */
.plan_img img:nth-child(4){
	width:300px;
	right:270px;
	bottom:80px;
}
/* 中央 */
.plan_img.active img:nth-child(2){
	opacity:1;
	transform:translateX(-50%) translateY(0) scale(1);
	filter:blur(0);

	transition:1.5s ease;
}
/* 左 */
.plan_img.active img:nth-child(1){
	opacity:1;
	transform:translateY(0) scale(1);
	filter:blur(0);

	transition:1.5s ease;
	transition-delay:.3s;
}
/* 右 */
.plan_img.active img:nth-child(3){
	opacity:1;
	transform:translateY(0) scale(1);
	filter:blur(0);

	transition:1.5s ease;
	transition-delay:.6s;
}
/* 下 */
.plan_img.active img:nth-child(4){
	opacity:1;
	transform:translateY(0) scale(1);
	filter:blur(0);

	transition:1.5s ease;
	transition-delay:.9s;
}

/*FLOW*/
.steps{
  width: 100%;
  margin: 0 auto;
}
.step{
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
}
/* 左 */
.step-left{
  width: 260px;
  background: #f4efe9;
  padding: 10px 20px;
  text-align: center;
}
.step-num{
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.step-left h3{
  font-size: 18px;
  letter-spacing: 4px;
}
/* 右 */
.step-right{
  width: calc(100% - 260px);
  padding-left: 40px;
  font-size: 15px;
  line-height: 2.2;
}

.flow_img{
	position:relative;
	height:1200px;
	margin-top:5em;
}
/* 共通 */
.flow_img img{
	position:absolute;
	display:block;
	object-fit:cover;

	opacity:0;
	transform:translateY(60px) scale(.95);
	filter:blur(8px);
}
/* 左 */
.flow_img img:nth-child(1){
  width: 520px;
  right: 150px;
  top: 0px;
}
/* 中央 */
.flow_img img:nth-child(2){
	width:320px;
	left:40%;
	top:230px;
	transform:translateX(-50%) translateY(60px) scale(.95);
}
/* 右 */
.flow_img img:nth-child(3){
  width: 340px;
  left: 180px;
  top: 800px;
}
/* 下 */
.flow_img img:nth-child(4){
  width: 500px;
  right: 180px;
  bottom: 60px;
}
/* 中央 */
.flow_img.active img:nth-child(2){
	opacity:1;
	transform:translateX(-50%) translateY(0) scale(1);
	filter:blur(0);

	transition:1.5s ease;
}
/* 左 */
.flow_img.active img:nth-child(1){
	opacity:1;
	transform:translateY(0) scale(1);
	filter:blur(0);

	transition:1.5s ease;
	transition-delay:.3s;
}
/* 右 */
.flow_img.active img:nth-child(3){
	opacity:1;
	transform:translateY(0) scale(1);
	filter:blur(0);

	transition:1.5s ease;
	transition-delay:.6s;
}
/* 下 */
.flow_img.active img:nth-child(4){
	opacity:1;
	transform:translateY(0) scale(1);
	filter:blur(0);

	transition:1.5s ease;
	transition-delay:.9s;
}


/*--------------------
RESERVATIONエリアの設定
--------------------*/
#reservation {
  padding: 8em 0;
  background-color: #fff;
}
.reservation {
  width: 780px;
  margin: 5em auto;
}

.reservation{
  max-width:100%;
  background:#fff;
}

/* STEP */
.reservation__step{
  text-align:center;
}
.reservation__step-en{
  margin:0;
  font-size:18px;
  letter-spacing:.15em;
  color: #9b8c7b;
}
.reservation__step-no{
  position:relative;
  display:inline-block;
  margin:0;
  padding:0px;
  padding-bottom: 10px;
  margin-bottom: 1em;

  font-size:50px;
  font-weight:400;
  line-height:1;
  color: #9b8c7b;
  border-bottom: 2px solid #9b8c7b;
}
.reservation__step-no::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  width:72px;
  height:1px;
}

/* BOX */
.reservation__box{
  display:flex;
  align-items:center;

  background-color: #fefcfb;
  border: 1px solid #b0a190;

  padding:28px 24px;
}
.reservation__icon{
  width:130px;
  height:130px;

  display:flex;
  align-items:center;
  justify-content:center;
}
.reservation__icon img{
  height:auto;
}

/* CONTENT */
.reservation__content{
  flex:1;
  margin-left:32px;
}
.reservation__content h3{
  margin:0;
  padding-bottom:16px;

  font-size:23px;
  font-weight:500;
  line-height:1.5;
  border-bottom: 1px solid #b0a190;
  margin-bottom: 15px;
}
.reservation__content p{
  margin:18px 0 0;

  line-height:2;
  color:#232323;
}

/* ARROW */
.reservation__arrow{
  position:relative;
  width:1px;
  height:72px;
  margin:1em auto;
}
.reservation__arrow::before{
  content:"";
  position:absolute;
  top:24px;
  left:50%;

  width:30px;
  height:30px;

  border-right:3px solid #b0a190;
  border-bottom:3px solid #b0a190;
  transform:translateX(-50%) rotate(45deg);
}



/*--------------------
CTAエリアの設定
--------------------*/
#cta {
  padding: 8em 0;
  background-color: #f9f6f2;
}
#cta_line {
  padding: 8em 0;
  background-color: #faf8f5;
}
.cta_last {
  width: 100%;
  margin: 0em auto;
}
.cta {
  width: 100%;
  margin: 5em auto;
}
.reservation-calendar{
  padding:90px 20px 70px;
}
.reservation-calendar__inner{
  max-width:980px;
  margin:0 auto;
  text-align:center;
}
.reservation-calendar__title{
  margin:0;

  color:#232323;
  font-style: italic;
  font-size:36px;
  font-weight:400;
  line-height:1.5;
  letter-spacing:.08em;
}
.reservation-calendar__text{
  margin-top:22px;
}
.reservation-calendar__text p{
  margin:0;
  color:#232323;

  line-height:2.1;
  letter-spacing:.05em;
}
.cta_line__text {
  width: 65%;
  margin: 0 auto;
  padding: 1em 0 2em 0;
}
.cta_btn_con {
  width: 50%;
  margin: 2em auto;
}
.cta_btn_con:hover {
  opacity: 0.8;
}
.reservation-calendar__note{
  color:#232323;
  line-height:1.8;
}
.cta_line {
  margin-bottom: 5em;
}

.cta_img{
	position:relative;
	height:900px;
	margin-top:8em;
}
/* 共通 */
.cta_img img{
	position:absolute;
	display:block;
	object-fit:cover;

	opacity:0;
	transform:translateY(60px) scale(.95);
	filter:blur(8px);
}
/* 左 */
.cta_img img:nth-child(1){
	width:260px;
	left:0;
	top:50px;
}
/* 中央 */
.cta_img img:nth-child(2){
	width:520px;
	left:40%;
	top:230px;
	transform:translateX(-50%) translateY(60px) scale(.95);
}
/* 右 */
.cta_img img:nth-child(3){
	width:240px;
	right:0;
	top:0px;
}
/* 下 */
.cta_img img:nth-child(4){
	width:300px;
	right:270px;
	bottom:80px;
}
/* 中央 */
.cta_img.active img:nth-child(2){
	opacity:1;
	transform:translateX(-50%) translateY(0) scale(1);
	filter:blur(0);

	transition:1.5s ease;
}
/* 左 */
.cta_img.active img:nth-child(1){
	opacity:1;
	transform:translateY(0) scale(1);
	filter:blur(0);

	transition:1.5s ease;
	transition-delay:.3s;
}
/* 右 */
.cta_img.active img:nth-child(3){
	opacity:1;
	transform:translateY(0) scale(1);
	filter:blur(0);

	transition:1.5s ease;
	transition-delay:.6s;
}
/* 下 */
.cta_img.active img:nth-child(4){
	opacity:1;
	transform:translateY(0) scale(1);
	filter:blur(0);

	transition:1.5s ease;
	transition-delay:.9s;
}


/*--------------------
FAQエリアの設定
--------------------*/
#faq {
  padding: 8em 0;
  background-color: #fff;
}
.faq {
  width: 780px;
  margin: 1em auto;
}
.faq_con {
  margin: 5em auto;
}
.faq_box {
  margin-bottom: 5em;
}

/*タイトル*/
.faq_title{
  margin: 1em 0 2em 0;
  border-bottom: 1px solid #232323;
  padding-bottom: 10px;
}
.faq_title h3{
  text-align: center;
}
/*内容*/
.qa-6 {
  margin-bottom: 5px;
  border-bottom: 2px solid #ffffff;
}
.qa-6 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em 1em 0em;
  color: #232323;
  cursor: pointer;
}
.qa-6 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-bottom: 3px solid #232323b3;
  border-right: 3px solid #232323b3;
  content: '';
  transition: transform .5s;
}
.qa-6[open] summary::after {
  transform: rotate(225deg);
}
.qa-6 p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: .3em 3em 1.5em;
  color: #333;
  transition: transform .5s, opacity .5s;
}
.qa-6[open] p {
  transform: none;
  opacity: 1;
  padding: 1em;
}

/*--------------------
LOCATIONエリアの設定
--------------------*/
#location {
  padding: 8em 0;
  background-color: #fff;
}
.location {
  width: 780px;
  margin: 1em auto;
}
.location_con {
  margin: 5em auto;
}


.reservation-shop__inner{
  max-width:800px;
  margin:0 auto;
}

/* 上部説明 */
.reservation-shop__lead{
  text-align:center;
  line-height:2;
  margin:0 0 60px;
}

/* 店舗名帯 */
.reservation-shop__title{
  background-color: #f7f3ef;
  text-align:center;

  font-size:20px;
  font-weight:500;
  margin:25px 0;
  padding:8px;
}

/* 写真 */
.reservation-shop__image{
  margin-bottom:40px;
}
.reservation-shop__image img{
  display:block;
  width:100%;
  height:auto;
}

/* 店舗情報 */
.reservation-shop__info{
  border-top:1px solid #d0c7bc;
}
.reservation-shop__row{
  display:flex;
  align-items:flex-start;
  padding:24px 0;
  border-bottom:1px solid #d0c7bc;
}
.reservation-shop__label{
  width:170px;

  display:flex;
  align-items:center;
  gap:18px;

  color:#232323;
  flex-shrink:0;
}
.reservation-shop__label img{
  width:30px;
  height:30px;
}
.reservation-shop__label span{
  font-size:16px;
}
.reservation-shop__value{
  flex:1;

  color:#555;
  font-size:16px;
  line-height:1.9;
}

/* 注意事項 */
.reservation-shop__notes{
  margin:30px 0 0;
  padding-left:30px;
}
.reservation-shop__notes li{
  margin-bottom:15px;
  line-height:2;
  font-size:16px;
  color:#444;
}

/* MAP */
.reservation-shop__map{
  text-align:center;
  margin-top:80px;
}
.reservation-shop__map-btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;

	width:280px;
	height:70px;

	background:#fff;
	color:#232323;
  border: 2px solid #2323;
	text-decoration:none;
	letter-spacing:.15em;
	font-size:15px;

	transition:.3s;
}
.reservation-shop__map-btn:hover{
  opacity: .6;
}




/*--------------------
フッター部分
--------------------*/
.footer {
  background-color: #fff;
  padding: 2em 0em;
  text-align: center;
  font-size: 1.4em;
  color: #232323;
}
.footer_logo {
  width: 40%;
  margin: 0 auto;
  margin-bottom: 3em;
}
/*--------------------
トップに戻るボタン
--------------------*/
.pagetop {
  display: block;
  position: fixed;
  bottom: 40px;
  right: 15px;
}
.pagetop a {
  display: block;
  background-color: #fff;
  text-align: center;
  color: #2d2d2d;
  border: 1px solid #2d2d2d;
  text-decoration: none;
  padding: 10px 15px;
}
.pagetop a:hover {
  display: block;
  background-color: #2d2d2d;
  text-align: center;
  color: #fff;
  border: none;
  text-decoration: none;
  padding: 10px 15px;
  opacity: 0.5;
}
.pagetop_sankaku {
  font-size: 3em;
}



