@charset "utf-8";
/* CSS Document */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Noto+Sans+JP:wght@100..900&family=Sorts+Mill+Goudy:ital@0;1&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap');
#root{overflow: hidden}

.leftbox .logo img{
  /* 通常時（弱め） */
  filter:
    drop-shadow(0 0 2px rgba(255,255,255,0.6))
    drop-shadow(0 0 6px rgba(255,255,255,0.6))
    drop-shadow(0 0 12px rgba(255,255,255,0.5));

  transition: filter 300ms ease; /* ←これで滑らか */
  will-change: filter;
}

.leftbox .logo:hover img{
  /* ホバー時（強め） */
  filter:
    drop-shadow(0 0 4px rgba(255, 255, 255, 1))
    drop-shadow(0 0 12px rgba(255, 255, 255, 1))
    drop-shadow(0 0 24px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 40px rgba(255, 255, 255, 0.85));
}
/* ---------- more1 (sample button) ---------- */
.more1{
  display: flex;
  justify-content: center;
}

.more1 a{
  width:auto;
    gap:40px;
  padding: 8px 30px 6px 35px;
  border: 1px solid rgba(0,0,0,.55);
  text-decoration: none;
  align-items: center;
  position: relative;
justify-content: space-between;
  transition: background-color .3s ease, border-color .3s ease;
}

/* 文字（左寄せ） */
.more1 .jp{
  margin: 0;
  color: rgba(0,0,0,.85);
  letter-spacing: .18em;
  text-align: left;
      font-family: "Zen Old Mincho", serif;
}


.more1 .icon img{
  width: 10px;
  height: auto;
  display: block;
  transform: none;
  transition: transform .3s ease;
}

/* hover（任意：少し濃く＆矢印が動く） */
.more1 a:hover{
  background: rgba(0,0,0,.06);
  border-color: rgba(0,0,0,.8);
}

.more1 a:hover .icon img{
  transform: translateX(4px);
}

.footer_wrap .txtbox .color2{
    color: rgba(255,255,255,0.7)
}
/* ---------- footer ---------- */
.footer_wrap{
  background: #121821;
  color: rgba(255,255,255,.86);
}

.footer_wrap .footer_inner{
  max-width: 1280px;
  margin: 0 auto;
}

/* ---------- common ---------- */
.footer_wrap .txtbox p{
  margin: 0;
  line-height: 1.9;
  letter-spacing: .06em;
    color: #fff;
}

.footer_wrap .default_txt2 span{
  color: rgba(255,255,255,.86);
}

.footer_wrap .footer_upper a p{
  color: #fff;
}

.footer_wrap .footer_upper .default_txt2,
.footer_wrap .footer_upper .default_txt3{
  color: rgba(255,255,255,.70);
    white-space: nowrap;
}

.footer_wrap .footer_hline{
  height: 1px;
  width: 100%;
  background: rgba(255,255,255,.08);
  margin: 64px 0;
}

/* ---------- upper ---------- */
/* ※最終的に効いている grid のレイアウトを維持 */
.footer_wrap .footer_upper{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 64px;
  align-items: center;
}

/* left */
.footer_wrap .footer_linkrow{
flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 18px;
  margin-top: 14px;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 30px;
}

/* center line */
.footer_wrap .footer_vline{
  width: 1px;
  height: 220px;
  background: rgba(255,255,255,.10);
}

/* right */
.footer_wrap .footer_upper_right{
  display: grid;
  gap: 26px;
}

.footer_wrap .footer_item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
  text-decoration: none;
  color: inherit;
}

.footer_wrap .footer_upper_right .footer_item{
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.footer_wrap .footer_upper_right .footer_item:last-child{
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.footer_wrap .footer_item_row{
  display: flex;
  align-items: baseline;
  gap: 12px;
}

/* icon */
.footer_wrap .icon{
  width: 44px;
  height: 44px;
  border: 1px solid #fff;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.footer_wrap a:hover .icon{
  transform: translateX(6px);
}

.footer_wrap .icon img{
  width: 8px;
  height: auto;
  display: block;
  transform: translateX(1px);
}

/* hover */
.footer_wrap .footer_linkrow:hover,
.footer_wrap .footer_item:hover{
  opacity: 0.75;
}

/* ---------- lower ---------- */
.footer_wrap .footer_lower{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 150px;
  align-items: start;
}

/* brand */
.footer_wrap .footer_brand .imgbox img{
  display: block;
}

.footer_wrap .footer_sns{
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

.footer_wrap .footer_sns .imgbox{
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer_wrap .footer_sns .imgbox img{
  width: 100%;
  height: auto;
  display: block;
}

/* nav */
.footer_wrap .footer_nav{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.footer_wrap .footer_nav_item{
  display: grid;
  gap: 6px;
  padding: 8px 0;
 
}

.footer_wrap .en_txt{
  letter-spacing: .12em;
  color: rgba(255,255,255,.86);
}

/* dot (after) */
.footer_wrap .footer_nav_item .txtbox{
       padding-left: 20px;
}

.footer_wrap .footer_nav_item .en_txt{
  position: relative;
  display: inline-block;
}

.footer_wrap .footer_nav_item .en_txt::after{
  content: "";
  position: absolute;
  left:-14px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
}

/* ---------- copy ---------- */
.footer_wrap .footer_copy{
  margin-top: 44px;
  display: flex;
  justify-content: flex-end;
  color: rgba(255,255,255,.55);
}

/* ---------- responsive ---------- */
@media (max-width: 1080px){

.footer_wrap .footer_nav_item .txtbox .default_txt3{
    font-size: 16px;
    white-space: nowrap;
}
    
}
@media (max-width: 768px){ 
  .footer_wrap .footer_upper{
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer_wrap .footer_vline{
    display: none;
  }
  .footer_wrap .footer_lower{
    grid-template-columns: 1fr;
    gap: 44px;
  }
    }
@media (max-width: 576px){
  .footer_wrap .footer_nav{
    grid-template-columns: repeat(2, 1fr); /* ★ 2列 */
    gap: 24px;                              /* 任意：詰める */
  }
    
}


.contact-form_a .send .send-bt::after {
    background-image: none;

}

/* ---------- text color ---------- */
.header_d a,
.header_d .default_txt,
.header_d .default_txt2,
.header_d .default_txt3{
  color: #fff !important;
  transition: color .3s ease;
}

/* ---------- text color (scroll) ---------- */
.header_d.is_darktext a,
.header_d.is_darktext .default_txt,
.header_d.is_darktext .default_txt2,
.header_d.is_darktext .default_txt3{
  color: rgba(0,0,0,.82) !important;
}

/* ---------- nav dot (scroll) ---------- */
.header_d.is_darktext .default_txt::before{
  background: rgba(0,0,0,.82) !important;
}

/* ---------- hamburger line (scroll) ---------- */
.header_d.is_darktext .menu-bt .line div{
  background: rgba(0,0,0,.82) !important;
}

/* ---------- reserve button (scroll) ---------- */
.header_d.is_darktext .more a,
.header_d.is_darktext .more > div{
  color: rgba(0,0,0,.82) !important;
  border: 1px solid rgba(0,0,0,.82) !important;
}

/* ---------- hamburger ---------- */
.header_d .menu-bt{
  background-color: transparent;
}

/* ---------- logo ---------- */
.header_d .leftbox .logo img{
  width: clamp(160px, 36vw, 260px);
}

/* ---------- reserve button ---------- */
.header_d .more a,
.header_d .more > div{
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.9);
  padding: 8px 32px 6px;
  transition:
    color .3s ease,
    border-color .3s ease,
    background-color .3s ease;
}

.header_d .more .morebox p{
  color: #fff;
  font-size: 16px;
}

/* ---------- reserve button hover ---------- */

.header_d .more a:hover,
.header_d .more > div:hover{
  background-color: rgba(255,255,255,.08);
}

/* ---------- nav dot ---------- */
.header_d1 .rightbox .li .default_txt{
  position: relative;
  display: inline-block;
}

.header_d1 .rightbox .li p{
  padding-left: 18px;
  color: #fff;
}

.header_d1 .rightbox .li .default_txt::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
}

/* ---------- nav align ---------- */
.rightbox .ul .li a{
  align-items: flex-start;
  text-align: left;
}

.rightbox .ul .li p{
  text-align: left;
}


/* Web予約ボタンも左基準にする場合 */
.rightbox .more a{
  justify-content: flex-start;
}

.rightbox .more .morebox{
  justify-content: flex-start;
}
/* ---------- reserve button hover motion ---------- */
.header_d .more a{
  transition:
    color .3s ease,
    border-color .3s ease,
    background-color .3s ease,
    transform .35s ease,
    opacity .35s ease;
}

.header_d .more a:hover{
  transform: translateY(-2px); /* ★ ちょい浮く */
  opacity: .9;
}
.header_d .rightbox .li .default_txt::before{
  transition:
    background-color .3s ease,
    transform .35s ease;
}

.header_d .rightbox .li a:hover .default_txt::before{
  transform: translate(4px, -50%);
}
/* ---------- header nav link hover ---------- */
.header_d .rightbox .li a:hover{
  transform: translateX(6px); /* ★ 右に少し動く */
}

.header_d .rightbox .li a:hover p{
  opacity: .85;              /* ★ ほんのり薄く */
}

/* ---------- header nav link ---------- */
.header_d .rightbox .li a,
.header_d .rightbox .li a p{
  transition: color .3s ease, transform .35s ease, opacity .35s ease;
}


.main-wrap{
	position: relative;
	z-index: 2;
}
.pagetitle{
	position: relative;
	z-index: 1;
}
.pagetitle .imgbox {
    margin: 0;
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;        
	aspect-ratio: 2.7 / 1;
}
body:not(.gjs-dashed) .pagetitle .imgbox::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.6;
	width: 100%;
	height: 100%;
	mix-blend-mode: multiply;
	background: #606062;
	background: linear-gradient(180deg, rgba(96, 96, 98, 0.6) 1%, rgba(139, 137, 145, 0.5) 33%, rgba(175, 173, 186, 0.6) 66%, rgba(207, 204, 221, 1) 100%);
}

.pagetitle .bgimg{
	position: absolute;
	width: 100vw;
	min-height: 500px;
	aspect-ratio: 2.7 / 1;
	z-index: 2;
	top: 100%;
	left: 0;
	transform: translateY(-30%);
	background-position: top center;
	pointer-events: none;
  overflow: hidden; 
}

.pagetitle .titlebox {
  position: absolute;
left: clamp(80px, 10vw, 160px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pagetitle .bgimg img{
	display: block!important;
	opacity: 0;
}
/* 日本語：小さめ・白 */
.pagetitle .jp{
  margin: 0;
  letter-spacing: 0.18em;
  color: #f5efe6;
      font-family: "Zen Old Mincho", serif;
}

/* 英語：大きめ・ゴールド */
.pagetitle .en{
  margin: 0;
  letter-spacing: 0.2em;
  color: #c7a669;
    margin-top: -20px;
    
}
.pagetitle .en{
  left: clamp(74px, 9vw, 160px);
  color: rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 1080px) {

}

@media screen and (max-width: 768px) {
	.pagetitle .imgbox {
		min-height: 400px;
		aspect-ratio: 2.7 / 1;
	}

	.pagetitle .bgimg{
		min-height: 400px;
		aspect-ratio: 2.7 / 1;
		transform: translateY(-30%);
		background-position: top center;
		pointer-events: none;
	}

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

	.pagetitle .imgbox {
		min-height: 300px;
	}

	.pagetitle .bgimg{
		min-height: 300px;
		transform: translateY(-30%);
		background-position: top center;
		pointer-events: none;
	}

	.pagetitle .titlebox {
		width: 100%;
		left: 0;
	}
}








p span,
h1 span,
h2 span,
h3 span,
h4 span {
  display: inline-block;
}
.default_txt, .default_txt1, .default_txt2 {
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .default_txt, .default_txt1, .default_txt2 {
    line-height: 2;
  }
}


.font_eb {
  font-family: "EB Garamond", serif;
}
.font_mincho {
  font-family: "Zen Old Mincho", serif;
}
.en_title {
  font-family: "EB Garamond", serif;
  font-size: clamp(32px, 6vw, 60px);
  letter-spacing: .08em;
}
.en_title2 {
  font-family: "EB Garamond", serif;
  font-size: clamp(32px, 6vw, 40px);
  letter-spacing: .04em;
}
.default_title0 {
  font-size: clamp(20px, 3.2vw, 32px);
  letter-spacing: .05em;
}
.default_title {
  font-size: clamp(22px, 3.2vw, 30px);
  letter-spacing: .05em;
  
}
.default_title2 {
  font-size: clamp(20px, 2.9vw, 26px);
  letter-spacing: .05em;
  
}
.default_title3 {
  font-size: clamp(16px, 2.5vw, 20px);
  letter-spacing: .05em;
  
}
.default_txt {
  font-size: clamp(16px, 1.8vw, 18px);
  letter-spacing: .05em;
  line-height: 2.2;
    color: #56636C;
}
.default_txt2 {
  font-size: clamp(15px, 1.6vw, 16px);
  letter-spacing: .05em;
  line-height: 2.2;
    color: #56636C;
}
.default_txt3 {
  font-size: clamp(12px, 1.4vw, 14px);
  letter-spacing: .05em;
    color: #56636C;
}
.en_txt {
  font-size: clamp(16px, 1.8vw, 20px);
  letter-spacing: .05em;
  line-height: 2;
  font-family: "EB Garamond", serif;
}
.en_txt2{
  font-size: clamp(14px, 1.4vw, 18px);
  letter-spacing: .05em;
  line-height: 2;
  font-family: "EB Garamond", serif;
}



html{
}
body{
	font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif;
	background-color: #F0F1F2;
	color: #373B3E;
}

body .bg_img_wrap {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
body.on .bg_img_wrap .bg_img{
	display: none;
}
body .bg_img_wrap2 {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
body.on .bg_img_wrap2 > img{
	display: none;
}

a{
	display: inline-block;
	transition: ease 0.3s;
}
a:hover{
	opacity: 0.5;
}
a p,a,a i{
	color: #000000;
}
.font-medium{font-weight: 500;}
.font-semibold{font-weight: 600;}
.font-black{font-weight: 900;}

.pd_wrap{
	padding: 150px 80px 0;
}
.pd_wrap_all{
	padding: 150px 80px 150px;
}
.pd_wrap_side{
	padding-left: 80px;
	padding-right: 80px;
}

.cate_wrap > .cate{
	padding-top: 150px;
}

/* ---------- common ---------- */

/* ---------- header ---------- */
.header{
}

/* ---------- footer ---------- */

/* ANIME */
.sc-anime.topin.on{
	opacity:0;
	transform: translateY(-50px);
}
.sc-anime.topin.on.active{
	animation-name: topin;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.bottomin.on{
	opacity:0;
	transform: translateY(50px);
}
.sc-anime.bottomin.on.active{
	animation-name: bottomin;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.leftin.on{
	opacity:0;
	transform: translateX(-50px);
}
.sc-anime.leftin.on.active{
	animation-name: leftin;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.rightin.on{
	opacity:0;
	transform: translateX(50px);
}
.sc-anime.rightin.on.active{
	animation-name: rightin;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.fadein.on{
	opacity:0;
}
.sc-anime.fadein.on.active{
	animation-name: fadein;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.blurin.on{
	opacity:0;
	-ms-filter: blur(6px);
	filter: blur(6px);
}
.sc-anime.blurin.on.active{
	animation-name: blurin;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.blurin2.on{
	opacity:0;
	transform: translateY(50px);
	-ms-filter: blur(6px);
	filter: blur(6px);
}
.sc-anime.blurin2.on.active{
	animation-name: blurin2;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}

@keyframes topin {
	0% {
		opacity:0;
		transform: translateY(-50px);
	}
	100% {
		opacity:1;
		transform: translateY(0px);
	}
}
@keyframes bottomin {
	0% {
		opacity:0;
		transform: translateY(50px);
	}
	100% {
		opacity:1;
		transform: translateY(0px);
	}
}
@keyframes leftin {
	0% {
		opacity:0;
		transform: translateX(-50px);
	}
	100% {
		opacity:1;
		transform: translateX(0px);
	}
}
@keyframes rightin {
	0% {
		opacity:0;
		transform: translateX(50px);
	}
	100% {
		opacity:1;
		transform: translateX(0px);
	}
}
@keyframes upin {
	0% {
		transform: translateY(100%);
	}
	100% {
		transform: translateY(0);
	}
}
@keyframes fadein {
	0% {
		opacity:0;
	}
	100% {
		opacity:1;
	}
}
@keyframes fadeout {
	0% {
		opacity:1;
	}
	100% {
		opacity:0;
	}
}
@keyframes blurin {
	0% {
		opacity: 0;
		-ms-filter: blur(6px);
		filter: blur(6px);
	}
	100% {
		opacity:1;
		-ms-filter: blur(0px);
		filter: blur(0px);
	}
}
@keyframes blurin2 {
	0% {
		opacity: 0;
		transform: translateY(50px);
		-ms-filter: blur(6px);
		filter: blur(6px);
	}
	100% {
		opacity:1;
		transform: translateY(0px);
		-ms-filter: blur(0px);
		filter: blur(0px);
	}
}

/* color */
.txt-color-normal{color: #000000;}
.txt-white{color: #ffffff;}
.txt-red{color: red;}
.txt-color1{color: #FFE93C}
.txt-color2{color: #F1F1E9}
.txt-color3{color: #021745}
.txt-color4{color: #EBF5E5}
.bg-white{background-color: #ffffff;}
.bg-black{background-color: black}
.bg-color1{background-color: #FFE93C}
.bg-color2{background-color: #F1F1E9}
.bg-color3{background-color: #021745}
.bg-color4{background-color: #EBF5E5}
.border-color1{border-color: #FFE93C}
.border-color2{border-color: #F1F1E9}
.border-color3{border-color: #021745}
.border-color4{border-color: #EBF5E5}

.hvr-txt-color-normal:hover{color: #000000;}
.hvr-txt-white:hover{color: #ffffff;}
.hvr-txt-red:hover{color: red;}
.hvr-txt-color1:hover{color: #FFE93C}
.hvr-txt-color2:hover{color: #F1F1E9}
.hvr-txt-color3:hover{color: #021745}
.hvr-txt-color4:hover{color: #EBF5E5} 
.hvr-bg-white:hover{background-color: #ffffff;}
.hvr-bg-black:hover{background-color: black}
.hvr-bg-color1:hover{background-color: #FFE93C}
.hvr-bg-color2:hover{background-color: #F1F1E9}
.hvr-bg-color3:hover{background-color: #021745}
.hvr-bg-color4:hover{background-color: #EBF5E5}
.hvr-border-color1:hover{border-color: #FFE93C}
.hvr-border-color2:hover{border-color: #F1F1E9}
.hvr-border-color3:hover{border-color: #021745}
.hvr-border-color4:hover{border-color: #EBF5E5}

/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}

/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
	.pd_wrap{
		padding: 150px 60px 0;
	}
	.pd_wrap_all{
		padding: 150px 60px 150px;
	}
	.pd_wrap_side{
		padding-left: 60px;
		padding-right: 60px;
	}
/* ---------- common ---------- */
/* ---------- header ---------- */
/* ---------- footer ---------- */
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
/* ---------- common ---------- */
/* ---------- header ---------- */
/* ---------- footer ---------- */
  .footer_wrap .footer_nav{display:none;}
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
	.pd_wrap{
		padding: 100px 50px 0;
	}
	.pd_wrap_all{
		padding: 100px 50px 100px;
	}
	.pd_wrap_side{
		padding-left: 50px;
		padding-right: 50px;
	}
	.cate_wrap > .cate{
		padding-top: 100px;
	}
/* ---------- common ---------- */
/* ---------- header ---------- */
/* ---------- footer ---------- */
}
/* ---------- スマートフォン ---------- */
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.pd_wrap{
		padding: 80px 20px 0;
	}
	.pd_wrap_all{
		padding: 80px 20px 80px;
	}
	.pd_wrap_side{
		padding-left: 20px;
		padding-right: 20px;
	}
	.cate_wrap > .cate{
		padding-top: 80px;
	}
/* ---------- common ---------- */
/* ---------- header ---------- */
/* ---------- footer ---------- */
  .footer_wrap .footer_sns,.footer_wrap .footer_copy{
 justify-content: center;
  }
  .footer_wrap .footer_sns .imgbox{
 width: 30px;
    height: 30px;
  }
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}
