@charset "utf-8";

/* カラー
------------------------------------------------------------------------------------ */
:root {
	--color-primary: #1d2a53;
	--color-primary-rgb: 29, 42, 83;
	--color-primary-light: #f4f4f6;
	--color-secondary: #a38441;

	--color-text: #333;

	--color-bg-gray: #f1eeec;

}


/* PC、SP表示切り替え
------------------------------------------------------------------------------------ */
.dNoSp {
	display: block;
}
.dNoPc {
	display: none;
}


/* header
------------------------------------------------------------------------------------ */
header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	padding: 30px 30px 0 30px;
	z-index: 999;
	box-sizing: border-box;
	transition: all 0.3s ease;
	background: transparent;
}
header div#headerInner {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}
header div#headerInner div#headerInnerLeft {
	flex: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 60px;
	background-color: #FFF;
	padding: 0 35px;
	border-radius: 50px 0 0 50px;
}
header div#headerInner div#headerInnerLeft h1 {
	width: 256px;
	line-height: 1;
}
header div#headerInner div#headerInnerLeft h1 a {
	transition: all 0.3s ease;
}
header div#headerInner div#headerInnerLeft h1 a:hover {
	opacity: 0.7;
}
header div#headerInner div#headerInnerLeft ul#gnavPc {
	display: flex;
	gap: 25px;
}
header div#headerInner div#headerInnerLeft ul#gnavPc li a {
	position: relative;
	line-height: 1;
	/* padding-bottom: 5px; */
	padding-bottom: 10px;
	transition: all 0.3s ease;
}
header div#headerInner div#headerInnerLeft ul#gnavPc li a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background-color: var(--color-primary);
	transform: scaleX(0);
	transform-origin: center;
	transition: all 0.3s ease;
}
header div#headerInner div#headerInnerLeft ul#gnavPc li a:hover {
	color: var(--color-primary);
}
header div#headerInner div#headerInnerLeft ul#gnavPc li a:hover::after {
	transform: scaleX(1);
}
header div#headerInner div#headerReservationBtn a {
	display: flex;
	align-items: center;
	gap: 15px;
	height: 60px;
	line-height: 1;
	font-weight: bold;
	color: #FFF;
	background-color: var(--color-primary);
	padding: 0 35px 0 30px;
	border-radius: 0 50px 50px 0;
	transition: all 0.3s ease;
}
header div#headerInner div#headerReservationBtn a:hover {
	background-color: var(--color-secondary);
}
header div#headerInner div#headerReservationBtn a span {
	width: 22px;
}

@media screen and (min-width:1025px) {
	/* headerスクロール後の変化
	------------------------------------------------------------------------------------ */
	body.headerScroll header {
		padding: 15px 20px 0 20px;
	}
}

/* ハンバーガーメニュー
------------------------------------------------------------------------------------ */
#gnavWrapper {
	display : none;
}


/* contents
------------------------------------------------------------------------------------ */
div#contents {
}
div#contents div.sectionInner {
	width:90%;
	margin:0 auto;
}
div#contents div.sectionInnerS {
	max-width:980px;
}


/* footer
------------------------------------------------------------------------------------ */
footer {
	margin-top: 150px;
	background-color: var(--color-primary);
}
footer div#footerInner {
	padding: 100px 5%;
}
footer div#footerInner div#footerInnerMain {
	display: flex;
	justify-content: space-between;
}
footer div#footerInner div#footerInnerMain div#footerInnerLeft h2 {
	width: 256px;
	line-height: 1;
	margin-bottom: 30px;
}
footer div#footerInner div#footerInnerMain div#footerInnerLeft h2 a {
	transition: all 0.3s ease;
}
footer div#footerInner div#footerInnerMain div#footerInnerLeft h2 a:hover {
	opacity: 0.7;
}
footer div#footerInner div#footerInnerMain div#footerInnerLeft p {
	color: #FFF;
}
footer div#footerInner div#footerInnerMain div#footerInnerRight ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
}
footer div#footerInner div#footerInnerMain div#footerInnerRight ul#footerNav li a {
	position: relative;
	line-height: 1;
	font-weight: bold;
	color: #FFF;
	padding-left: calc(5px + 10px);
	transition: all 0.3s ease;
}
footer div#footerInner div#footerInnerMain div#footerInnerRight ul#footerNav li a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 1px;
	background: #626C86;
}
footer div#footerInner div#footerInnerMain div#footerInnerRight ul#footerNav li a:hover {
	opacity: 0.7;
}
footer div#footerInner div#footerInnerMain div#footerInnerRight div#footerReservationBtn {
	margin-top: 30px;
}
footer div#footerInner div#footerInnerMain div#footerInnerRight div#footerReservationBtn a {
	position: relative;
	display: flex;
	align-items: center;
	gap: 15px;
	width: 280px;
	line-height: 1;
	font-weight: bold;
	color: #FFF;
	background-color: var(--color-secondary);
	padding: 20px 25px;
	box-sizing: border-box;
	transition: all 0.3s ease;
}
footer div#footerInner div#footerInnerMain div#footerInnerRight div#footerReservationBtn a span {
	width: 22px;
	aspect-ratio: 41 / 44;
	background: url("../images/icon_reservation_white.png") center / contain no-repeat;
	transition: all 0.3s ease;
}
footer div#footerInner div#footerInnerMain div#footerInnerRight div#footerReservationBtn a::after {
	content: "";
	position: absolute;
	display: block;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	aspect-ratio: 16 / 27;
	background: url("../images/arrow_right_white.png") center / contain no-repeat;
	transition: all 0.3s ease;
}
footer div#footerInner div#footerInnerMain div#footerInnerRight div#footerReservationBtn a:hover {
	color: var(--color-primary);
	background-color: #FFF;
}
footer div#footerInner div#footerInnerMain div#footerInnerRight div#footerReservationBtn a:hover span {
	background: url("../images/icon_reservation.png") center / contain no-repeat;
}
footer div#footerInner div#footerInnerMain div#footerInnerRight div#footerReservationBtn a:hover::after {
	background: url("../images/arrow_right.png") center / contain no-repeat;
}
footer div#footerInner div#footerInnerSub {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #566078;
	padding-top: 30px;
	margin-top: 30px;
}
footer div#footerInner div#footerInnerSub div {
	display: flex;
	gap: 20px;
}
footer div#footerInner div#footerInnerSub div a {
	font-size: 0.875rem;
	line-height: 1;
	font-weight: 400;
	color: #FFF;
	transition: all 0.3s ease;
}
footer div#footerInner div#footerInnerSub div a:hover {
	opacity: 0.7;
}
footer div#footerInner div#footerInnerSub p.copyright {
	font-size: 0.875rem;
	line-height: 1;
	color: #FFF;
}


/* 共通パーツ
------------------------------------------------------------------------------------ */
.en {
	font-family: "Libre Baskerville", serif;
	font-optical-sizing: auto;
	line-height: 1;
	font-weight: 400;
	letter-spacing: 0;
	font-style: normal;
}
.textLg {
	font-size: 1.125rem;
}

#pageTitle {
	position: relative;
	width: 100%;
	height: 400px;
	margin-bottom: 150px;
	overflow: hidden;
}
#pageTitle:before {
	display: block;
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	filter: blur(8px);
	-ms-filter: blur(8px);
}
#pageTitle:after {
	display: block;
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(29 42 83 / 0.8);
}
#pageTitle div {
	position: relative;
	top: 180px;
	z-index: 1;
}
#pageTitle div h2 {
	color: #FFF;
	font-size: 4.25rem;
	line-height: 1;
}
#pageTitle div h3 {
	color: #FFF;
	font-size: 1.125rem;
	line-height: 1;
	font-weight: bold;
	margin-top: 10px;
}

.title01 {
	font-size: 2.5rem;
	line-height: 1.5;
	font-weight: bold;
	color: var(--color-primary);
	margin-bottom: 40px;
}
.title02 {
	color: var(--color-primary);
	margin-bottom: 50px;
}
.title02 h2 {
	font-size: 1.125rem;
	line-height: 1;
	font-weight: bold;
}
.title02 span.en {
	display: block;
	font-size: 4.25rem;
	margin-bottom: 10px;
}
.title03 {
	font-size: 1.375rem;
	line-height: 1.5;
	font-weight: bold;
	margin: 30px 0 15px 0;
}
.title03 span {
	font-size: 1rem;
	line-height: 1.5;
	font-weight: bold;
}
.titleTag01 {
	display: inline-block;
	width: fit-content;
	color: #FFF;
	background-color: var(--color-primary);
	padding: 8px 10px;
	border-radius: 3px;
	margin-bottom: 10px;
}

table.table01 {
	margin-top: 40px;
	border-collapse:collapse;
	border-spacing: 0;
}
table.table01 tr th {
	text-align: left;
	white-space: nowrap;
	font-weight: 500;
	padding: 20px 20px 15px 0;
	border-bottom: 1px solid #1d2a53;
}
table.table01 tr td {
	width: 100%;
	padding: 20px 0 15px 20px;
	border-bottom: 1px solid #DDD;
}
table.table01 tr:first-child th,
table.table01 tr:first-child td {
	padding-top: 0;
}

.spacer-y {
	margin-top: 100px;
}
.spacer-y-l {
	margin-top: 150px;
}


/* 背景装飾
--------------------------------------------------------------- */
.bgGrayLeft,
.bgGrayRight {
	position: relative;
}
.bgGrayLeft::before,
.bgGrayRight::before {
	content: "";
	position: absolute;
	top: 0;
	width: 85%;
	height: 100%;
	background: var(--color-bg-gray);
	z-index: 1;
}
.bgGrayLeft::before {
	left: 0;
}
.bgGrayRight::before {
	right: 0;
}
.bgGrayLeft > *,
.bgGrayRight > * {
	position: relative;
	z-index: 2;
}


/* リンクボタン
--------------------------------------------------------------- */
.linkBtn {
	margin-top: 50px;
}
.linkBtn a {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 340px;
	font-size: 1.125rem;
	line-height: 1;
	font-weight: bold;
	color: var(--color-primary);
	padding-bottom: 20px;
}
.linkBtn a:hover {
	color: var(--color-primary);
}
/*矢印*/
.linkBtn a span {
	width: 8px;
	aspect-ratio: 16 / 27;
	background: url("../images/arrow_right.png") center / contain no-repeat;
}
/*下線*/
.linkBtn a::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: #DDD;
}
.linkBtn a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background: var(--color-primary);
	transition: all 0.3s ease;
}
.linkBtn a:hover::after {
	width: 100%;
}


/* 画像スライド
--------------------------------------------------------------- */
ul.photoSlider {
	height: 100%;
}
ul.photoSlider .slick-list,
ul.photoSlider .slick-track {
	height: 100%;
}
ul.photoSlider#topMvSlider,
ul.photoSlider#topMvSlider .slick-list,
ul.photoSlider#topMvSlider .slick-track {
	height: 100vh;
}
ul.photoSlider .slick-slide {
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
ul.photoSlider#topMvSlider .slick-slide {
	height: 100vh;
}

/*ナビ全体*/
ul.photoSlider .slick-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 15px;
	display: flex;
	justify-content: center;
	gap: 10px;
	padding: 0;
}

/*ナビ バー*/
ul.photoSlider .slick-dots li {
	display: flex;
	width: 40px;
	height: 5px;
	margin: 0;
}

/* buttonを線に */
ul.photoSlider .slick-dots li button {
	width: 100%;
	height: 100%;
	padding: 0;
	background: #FFF;
	border-radius: 0;
	transition: background 0.3s;
	font-size: 0;/*←数字表記消す*/
	line-height: 0;/*←数字行間消す*/
}

/* アクティブ */
ul.photoSlider .slick-dots li.slick-active button {
	background: var(--color-primary);
}

/* デフォルトの「●」消す */
ul.photoSlider.slick-dotted.slick-slider {
	margin-bottom: 0;
}
ul.photoSlider .slick-dots li button:before {
	content: '';
	display: none;
}

/* 画像スライドとテキスト横並び
------------------------------------------------------------------------------------ */
ul.photoBlock01 li {
	display: flex;
	align-items: stretch;
}
ul.photoBlock01 li:nth-child(even) {
	flex-direction: row-reverse;
}
ul.photoBlock01 div.photoBlock01Image {
	width: 60%;
	min-height: 0;
}
ul.photoBlock01 li div.photoBlock01Text {
	flex: 1;
	padding: 150px 100px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
}


/* 写真ブロック共通
--------------------------------------------------------------- */
ul.photoBlock02 {
	display: grid;
}
ul.photoBlock02 li div {
	position: relative;
	background-color: var(--color-bg-gray);
	padding: 35px;
	margin: -40px 15px 0;
}


/* 画像とテキストカードを重ねるレイアウト
--------------------------------------------------------------- */
div.imageCardOverlap {
}
div.imageCardOverlap div.imageCardOverlapImage {
	width: 90%;
	height: 600px;
}
div.imageCardOverlap--left div.imageCardOverlapImage {
	margin-left: auto;
}
div.imageCardOverlap--right div.imageCardOverlapImage {
	margin-right: auto;
}
div.imageCardOverlap div.imageCardOverlapImage img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
div.imageCardOverlap div.imageCardOverlapCard {
	position: relative;
	max-width: 660px;
	background-color: #FFF;
	padding: 80px;
	margin-top: -250px;
	box-sizing: border-box;
}
div.imageCardOverlap--right div.imageCardOverlapCard {
	margin-left: auto;
}

/* 20260608追記 */
#gnavPc .has-submenu {
    position: relative;
}

/* サブメニューの初期状態（隠す） */
#gnavPc .submenu {
    position: absolute;
    top: 100%;
    left: -20px;
    /* width: fit-content; */
    width: 140px;
    background: #fff;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    height: 0; /* 畳んでおく */
    transition: height 0.3s ease; /* スライドのアニメーション */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 999;
}

/* ホバー時に高さを広げて表示 */
#gnavPc .has-submenu:hover .submenu {
    height: fit-content;
}

/* サブメニュー内のリンク装飾 */
#gnavPc .submenu li a {
    display: block;
    padding: 10px 5px;
    color: #333;
	text-align: center;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

#gnavPc .submenu li a:hover {
    background: #f9f9f9;
}


@media screen and (max-width:1024px) {
	
	body {
		font-size: 0.875rem;
	}

	/* header
	------------------------------------------------------------------------------------ */
	header {
		padding: 0;
	}
	header div#headerInner {
		margin-right: 50px;
	}
	header div#headerInner div#headerInnerLeft {
		height: 50px;
		padding: 0 15px;
		border-radius: 0;
	}
	header div#headerInner div#headerInnerLeft h1 {
		width: 180px;
	}
	header div#headerInner div#headerInnerLeft ul#gnavPc {
		display: none;
	}
	header div#headerInner div#headerReservationBtn a {
		gap: 5px;
		height: 50px;
		font-size: .875rem;
		background-color: var(--color-secondary);
		padding: 0 15px;
		border-radius: 0;
	}
	header div#headerInner div#headerReservationBtn a span {
		width: 12px;
	}


	/* スクロールバー有無によるレイアウト幅変化を防止（ハンバーガーメニュー開閉時の横ズレ対策）
	------------------------------------------------------------------------------------ */
	html {
		scrollbar-gutter: stable;
	}


	/* ハンバーガーメニュー
	------------------------------------------------------------------------------------ */
	#gnavWrapper {
		display: block;
	}
	.hamburger {
		display : flex;
		justify-content: center;
		align-items: center;
		position: fixed;
		right: 0;
		top: 0;
		width: 50px;
		height: 50px;
		background-color: var(--color-primary);
		border: 3px solid transparent;
		box-sizing: border-box;
		cursor: pointer;
		text-align: center;
		z-index: 1001;
		transition: all 0.3s ease;
	}
	/* 3本線のベース（真ん中の棒） */
	.hamburger span.hamburgerBtn {
		position: relative;
		display: block;
		width: 26px;
		height: 2px;
		background-color: #FFF;
		transition: all 0.3s ease;
	}
	/* 上下の棒 */
	.hamburger span.hamburgerBtn::before,
	.hamburger span.hamburgerBtn::after {
		content: '';
		position: absolute;
		left: 0;
		width: 26px;
		height: 2px;
		background-color: #FFF;
		transition: all 0.3s ease;
	}
	.hamburger span.hamburgerBtn::before {
		top: -10px;
	}
	.hamburger span.hamburgerBtn::after {
		top: 10px;
	}

	/*ハンバーガーOPEN時の変化（.active）-----------------*/
	.hamburger.active {
		background-color: transparent;
	}
	.hamburger.active span.hamburgerBtn {
		background-color: transparent;
	}
	.hamburger.active span.hamburgerBtn::before {
		top: 0;
		transform: rotate(35deg);
	}
	.hamburger.active span.hamburgerBtn::after {
		top: 0;
		transform: rotate(-35deg);
	}


	/*ハンバーガー中身----------------------------------------*/
	#gnavWrapper nav {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100dvh;
		background-color: var(--color-primary);
		transition: opacity 0.3s ease, visibility 0.3s ease;
		opacity: 0;
		visibility: hidden;
		z-index: 1000;
		pointer-events: none;
	}
	body.active #gnavWrapper nav {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	/* ハンバーガーメニュー展開時に背景をスクロールさせない */
	body.active {
		overflow: hidden;
	}

	#gnavWrapper nav div#gnavWrapperInner {
		height: 100%;
		padding: 100px 0;
	}
	#gnavWrapper nav div#gnavWrapperInner ul li {
		line-height: 1;
		text-align: center;
	}
	#gnavWrapper nav div#gnavWrapperInner ul li:not(:first-child) {
		margin-top: 40px;
	}
	#gnavWrapper nav div#gnavWrapperInner li a {
		display: inline-block;
		font-size: 1.125rem;
		line-height: 1;
		color: #FFF;
	}


	/* footer
	------------------------------------------------------------------------------------ */
	footer {
		margin-top: 50px;
	}
	footer div#footerInner {
		padding: 50px 5%;
	}
	footer div#footerInner div#footerInnerMain {
		display: block;
	}
	footer div#footerInner div#footerInnerMain div#footerInnerLeft h2 {
		margin: 0 auto 25px;
	}
	footer div#footerInner div#footerInnerMain div#footerInnerLeft p {
		font-size: 0.875rem;
		text-align: center;
	}
	footer div#footerInner div#footerInnerMain div#footerInnerRight {
		margin-top: 30px;
	}
	footer div#footerInner div#footerInnerMain div#footerInnerRight ul {
		gap: 5px;
		max-width: 400px;
		margin: 0 auto;
	}
	footer div#footerInner div#footerInnerMain div#footerInnerRight ul#footerNav li a {
		font-size: 0.875rem;
		padding-left: calc(5px + 5px);
	}
	footer div#footerInner div#footerInnerMain div#footerInnerRight div#footerReservationBtn a {
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
	}
	footer div#footerInner div#footerInnerMain div#footerInnerRight div#footerReservationBtn a span {
		width: 20px;
	}
	footer div#footerInner div#footerInnerSub {
		display: block;
	}
	footer div#footerInner div#footerInnerSub div {
		justify-content: center;
	}
	footer div#footerInner div#footerInnerSub div a {
		font-size: 0.75rem;
	}
	footer div#footerInner div#footerInnerSub p.copyright {
		font-size: 0.625rem;
		text-align: center;
		margin-top: 20px;
	}


	/* 共通パーツ
	------------------------------------------------------------------------------------ */
	.textLg {
		font-size: 1rem;
	}

	#pageTitle {
		height: 140px;
		margin-top: 50px;
		margin-bottom: 50px;
	}
	#pageTitle div {
		top: 40px;
	}
	#pageTitle div h2 {
		font-size: 2rem;
		line-height: 1;
	}
	#pageTitle div h3 {
		font-size: 0.875rem;
		line-height: 1;
		margin-top: 5px;
	}

	.title01 {
		font-size: 1.5rem;
		margin-bottom: 15px;
	}
	.title02 {
		margin-bottom: 25px;
	}
	.title02 h2 {
		font-size: 1rem;
	}
	.title02 span.en {
		font-size: 2.5rem;
	}
	.title03 {
		font-size: 1.125rem;
		margin: 30px 0 10px 0;
	}
	.titleTag01 {
		font-size: 0.875rem;
	}

	table.table01 {
		margin-top: 30px;
	}
	table.table01 tr th {
		padding: 15px 15px 10px 0;
	}
	table.table01 tr td {
		padding: 15px 0 10px 15px;
	}

	.spacer-y {
		margin-top: 50px;
	}
	.spacer-y-l {
		margin-top: 50px;
	}

	/* 背景装飾
	--------------------------------------------------------------- */
	.bgGrayLeft::before,
	.bgGrayRight::before {
		width: 95%;
	}

	/* リンクボタン
	--------------------------------------------------------------- */
	.linkBtn {
		margin-top: 30px;
	}
	.linkBtn a {
		font-size: 1rem;
		padding-bottom: 15px;
	}

	/* 画像スライドとテキスト横並び
	------------------------------------------------------------------------------------ */
	ul.photoBlock01 li {
		display: block;
	}
	ul.photoBlock01 > li:not(:first-child) {
		margin-top: 20px;
	}
	ul.photoBlock01 div.photoBlock01Image {
		width: 100%;
		height: auto;
		aspect-ratio: 37 / 24;
	}
	ul.photoBlock01 li div.photoBlock01Text {
		position: relative;
		display: block;
		background-color: rgba(255, 255, 255, 0.9);
		padding: 30px 20px;
		margin: -80px 5% auto;
	}

	/* 写真ブロック共通
	--------------------------------------------------------------- */
	ul.photoBlock02 li div {
		padding: 25px 20px;
		margin: -20px 10px 0;
	}

	/* 画像とテキストカードを重ねるレイアウト
	--------------------------------------------------------------- */
	div.imageCardOverlap div.imageCardOverlapImage {
		width: 95%;
		height: auto;
		aspect-ratio: 35 / 25;
	}
	div.imageCardOverlap div.imageCardOverlapCard {
		max-width: none;
		padding: 30px 20px;
		margin: -50px 20px 0;
	}

}
