*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
table,
tr,
th,
td {
	border: 0;
	font-size: 100%;
	font-weight: 300;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
	display: block;
}

ol,
ul {
	list-style: none;
}

img {
	height: auto;
	max-width: 100%;
	vertical-align: middle;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	background: transparent;
	border: none;
	box-shadow: none;
	cursor: pointer;
	font: inherit;
	margin: 0;
	padding: 0;
}

input,
select,
textarea {
	color: inherit;
	font: inherit;
	vertical-align: top;
}

/*
それぞれ( )内にpxでの数値を入れるとrem, pxに変換
*/

body {
	background-color: #1C1A50;
	color: #ffffff;
	font-family: "Noto Serif JP", serif;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 300;
	letter-spacing: 0.8px;
	line-height: 180%;
	overflow-x: hidden;
}

img {
	height: auto;
	max-width: 100%;
}

a {
	color: inherit;
}

.inner {
	height: inherit;
	margin: 0 auto;
	max-width: 630px;
	padding: 0 0.9375rem;
	position: relative;
	width: 100%;
}

.button-gold {
	background: #807129;
	font-family: "Noto Serif JP", serif;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 1.8px;
	line-height: normal;
	padding: 0.75rem 0.9375rem;
	text-align: center;
	transition: opacity 0.3s;
}

.button-gold:hover {
	opacity: 0.7;
}

.button-blue {
	background: #1C1A50;
	border: 1px solid #B19613;
	color: #B19613;
	font-family: "Noto Serif JP", serif;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 1.8px;
	line-height: normal;
	padding: 0.75rem 1.25rem;
	text-align: center;
	transition: all 0.3s;
}

.button-blue:hover {
	background: #807129;
	color: #1C1A50;
}

.images-wrapper {
	display: flex;
	flex-direction: column;
	gap: 1.875rem;
}

.images-wrapper p {
	font-size: 0.75rem;
	font-weight: 300;
	letter-spacing: 1.4px;
	line-height: 165%;
	margin-top: 0.3125rem;
	text-align: center;
}

.image-content img {
	border: 1px solid #807129;
	height: 100%;
	width: 100%;
}

.images-wrapper__map p {
	text-align: left;
}

.image-content__map {
	width: 100%;
}

.title {
	color: #B19613;
	font-family: "Noto Serif JP", serif;
	font-size: 1.125rem;
	font-weight: 300;
	font-weight: 300;
	letter-spacing: 4px;
	line-height: 125%;
	margin-inline: auto;
	text-align: center;
	width: -moz-max-content;
	width: max-content;
}

body.is-checked {
	overflow: hidden;
}

.header__inner {
	align-items: center;
	background: #1C1A50;
	border-bottom: 1px solid #807129;
	display: flex;
	height: 42px;
	left: 0;
	padding-bottom: 0.3125rem;
	padding-left: 0.9375rem;
	padding-right: 0.9375rem;
	padding-top: 0.3125rem;
	position: fixed;
	top: 0;
	width: 100vw;
	z-index: 90;
}

.header__logo {
	transition: opacity 0.3s;
	width: clamp(110px, 7.375rem, 120px);
}

.header__logo:hover {
	opacity: 0.7;
}

.header__nav {
	display: none;
}

.header__link {
	transition: opacity 0.3s;
}

.header__link:hover {
	opacity: 0.7;
}

/* オーバーレイのスタイル */

.overlay {
	background-color: #333;
	cursor: pointer;
	height: 100vh;
	left: 0;
	opacity: 0;
	position: fixed;
	top: 0;
	transition: opacity 0.6s, visibility 0.6s;
	visibility: hidden;
	width: 100vw;
	z-index: 10; /* メニューよりも下にする */
}

.overlay.is-checked {
	opacity: 0.8;
	visibility: visible;
}

.header__open {
	height: 20px;
	margin-left: auto;
	position: relative;
	width: 35px;
	z-index: 51;
}

.header__open.is-checked .header__bar:nth-of-type(2) {
	display: none;
}

.header__open.is-checked .header__bar:nth-of-type(1) {
	background: #ffffff;
	top: 10px;
	transform: rotate(45deg);
}

.header__open.is-checked .header__bar:nth-of-type(3) {
	background: #ffffff;
	top: 10px;
	transform: rotate(-45deg);
}

.header__bar {
	background: #ffffff;
	height: 1px;
	left: 0;
	position: absolute;
	top: 0;
	transition: transform 0.3s linear, top 0.3s linear;
	width: 35px;
}

.header__bar:nth-of-type(1) {
	top: 0;
}

.header__bar:nth-of-type(2) {
	top: 10px;
}

.header__bar:nth-of-type(3) {
	top: 20px;
}

.header__content {
	background: #1C1A50;
	height: 100%;
	margin-top: 42px;
	padding: 52px 30px 57px 34px;
	position: fixed;
	right: 0;
	top: 0;
	transform: translateX(100%);
	transition: transform 0.3s linear;
	width: 18.75rem;
	z-index: 50;
}

.header__content.is-checked {
	transform: translateX(0);
}

.header__content-menu {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.header__content-link {
	color: #ffffff;
	font-size: 1rem;
}

.header__content-button {
	max-width: 210px;
}

.background::before {
	background-color: rgba(28, 26, 27, 0.4);
	background-image: url(../img/background.png);
	background-position: 50% 100%;
	background-repeat: no-repeat;
	content: "";
	display: block;
	height: 100vh;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: -1;
	-webkit-backdrop-filter: blur(2.5px);
	backdrop-filter: blur(2.5px);
	background-size: cover;
}

.fv {
	/* margin-top: 42px;
	padding-left: 3.125rem;
	padding-right: 3.125rem; */
	position: relative;
}

.splide__slide img {
	aspect-ratio: 884.56/540;
	border: 1px solid #807129;
	margin-top: 1.875rem;
	-o-object-fit: cover;
	display: block;
	margin-inline: auto;
	object-fit: cover;
}

/* スライドのサイズ調整 */

.splide__slide img {
	height: auto;
	width: 100%;
}

/* ページネーションのスタイル */

.splide__pagination {
	bottom: -6.5rem;
	display: flex;
	gap: 0.3125rem; /* ドット間のスペース */
	justify-content: flex-start;
	left: 0.75rem;
	padding: 0;
	position: absolute;
	z-index: 5;
}

.splide__pagination__page {
	background-color: transparent; /* ドットの色と透明度 */
	border: 1px solid #ffffff;
	border-radius: 0; /* 丸みを取り除く */
	height: 0.75rem; /* ドットのサイズ */
	transform: rotate(45deg);
	transition: background-color 0.3s, border 0.3s;
	width: 0.75rem; /* ドットのサイズ */
}

.splide__pagination__page.is-active {
	background-color: #807129; /* アクティブなドットの色 */
	border: 1px solid #807129;
	transform: scale(1.1) rotate(45deg);
}

/* 固定表示する文字とロゴ */

.overlay-content {
	color: #ffffff;
	font-family: "Noto Serif JP", serif;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	left: 1.25rem;
	letter-spacing: 2.5px;
	line-height: normal;
	opacity: 0;
	position: absolute;
	text-shadow: 0px 4px 32px rgba(13, 27, 38, 0.8);
	top: 1.25rem;
	transition: opacity 0.5s ease;
	z-index: 5;
}

.overlay-content.active {
	opacity: 1;
}

.overlay-images {
	bottom: -10.375rem;
	position: absolute;
	right: 1.25rem;
	z-index: 5;
}

.overlay-images img:nth-of-type(1) {
	height: 3.5625rem;
	width: 6.25rem;
}

.overlay-images img:nth-of-type(2) {
	width: 60px;
}

.about {
	padding-bottom: 9.375rem;
	padding-top: 11.3125rem;
	position: relative;
}

.about__text {
	font-size: 0.875rem;
	font-weight: 300;
	text-align: center;
}

.about__text span + span {
	display: block;
	margin-top: 1.5625rem;
}

.about__images {
	margin-top: 7.5rem;
}

.menu__buttons {
	align-items: center;
	background: #1C1A50;
	background-size: contain;
	border-bottom: 1px solid #807129;
	border-top: 1px solid #807129;
	display: flex;
	height: 90px;
	justify-content: center;
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}

.menu__button {
	background: #807129;
	border: 0.0625rem solid #1C1A50;
	color: #1C1A50;
	height: -moz-max-content;
	height: max-content;
	padding: 0.625rem 0;
	text-align: center;
	transition: all 0.3s;
	width: 83px;
}

.menu__button:hover {
	background: #1C1A50;
	border: 0.0625rem solid #807129;
	color: #807129;
}

.menu__contents {
	display: flex;
	flex-direction: column;
	gap: 9.375rem;
	padding-top: 6.25rem;
}

.menu__text {
	font-weight: 300;
	margin-top: 0.9375rem;
	text-align: center;
}

.menu__images {
	margin-top: 4.125rem;
}

.menu__detail-wrapper {
	border: 1px solid #807129;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	margin-top: 8.125rem;
	padding: 3.125rem 1.875rem;
	text-align: center;
}

.menu__detail-title {
	color: #B19613;
	display: flex;
	gap: 0.9375rem;
	justify-content: center;
}

.menu__detail-title h3 {
	font-size: 1.3125rem;
	font-weight: 400;
	letter-spacing: 3.6px;
	line-height: normal;
}

.menu__detail-title span:nth-of-type(1) {
	font-size: 1.375rem;
	font-weight: 400;
	letter-spacing: 3.6px;
	line-height: normal;
}

.menu__detail-title span:nth-of-type(2) {
	font-size: 1.25rem;
	font-weight: 400;
	letter-spacing: 3px;
	line-height: normal;
	margin-left: -0.8125rem;
	margin-top: 0.0625rem;
}

.menu__detail-text {
	margin-top: 1.875rem;
	text-align: left;
}

.menu__detail p {
	font-weight: 400;
	letter-spacing: 2.4px;
}

.title-bottom {
	justify-content: space-around;
	margin-top: 0.6875rem;
}

.title-bottom h3 {
	flex-shrink: 0;
	text-align: left;
	width: 9.0625rem;
}

.menu__detail-text--bottom {
	margin-inline: auto;
	width: 20.25rem;
}

.menu__detail-more {
	margin-top: 1.875rem;
}

.menu__detail-more a {
	border-bottom: 1px solid #B19613;
	color: #B19613;
	letter-spacing: 2.4px;
	margin-inline: auto;
	transition: opacity 0.3s;
	width: -moz-max-content;
	width: max-content;
}

.menu__detail-more a:hover {
	opacity: 0.7;
}

.menu__detail-more p {
	font-size: 0.75rem;
	letter-spacing: 1.8px;
	margin-top: 0.3125rem;
}

.parallax-bg {
	background: no-repeat center center/cover;
	background-image: url(../img/parallax-bg.webp);
	height: 100vh;
	margin-top: 6.25rem;
	position: sticky;
	top: 0;
	width: 100%;
	z-index: -1;
}

.introduction {
	margin-top: 0;
	padding-bottom: 5rem;
	position: relative;
	z-index: 1;
}

.introduction__wrapper {
	background: rgba(28, 26, 80, 0.8);
	border: 1px solid #807129;
	border: 1px solid #807129;
	margin-bottom: 9.375rem;
	padding: 3.125rem 2.4375rem;
}

.introduction__title {
	padding: 0;
	text-align: left;
}

.introduction__head {
	color: #B19613;
	font-size: 1.125rem;
	font-weight: 300;
	letter-spacing: 4.35px;
	line-height: normal;
	margin-top: 1.5625rem;
}

.introduction__contents {
	display: flex;
	flex-direction: column;
	gap: 1.875rem;
	margin-top: 1.25rem;
}

.introduction__contents-title {
	color: #B19613;
	font-size: 1rem;
	letter-spacing: 3.6px;
	line-height: normal;
}

.introduction__contents-text {
	margin-top: 1.25rem;
}

.introduction__managerName {
	display: flex;
	gap: 0.9375rem;
	justify-content: flex-end;
	margin-top: 1.6875rem;
}

.introduction__managerName span:nth-of-type(1) {
	font-weight: 300;
	letter-spacing: 1.6px;
	line-height: normal;
}

.introduction__managerName span:nth-of-type(2) {
	font-family: "Oooh Baby", cursive;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 2.4px;
	line-height: 180%;
}

.introduction__info {
	margin-top: 60px;
	padding: 20px 0;
}

.info-row {
	align-items: center;
	display: flex;
	gap: 1.25rem;
	padding-bottom: 1.25rem;
	padding-top: 1.25rem;
	position: relative;
}

.info-row::before {
	background: #807129;
	bottom: 0;
	content: "";
	height: 0.0625rem;
	left: 0;
	position: absolute;
	width: 6.25rem;
}

.info-row::after {
	background: #ffffff;
	bottom: 0;
	content: "";
	height: 0.0625rem;
	position: absolute;
	right: 0;
	width: calc(100% - 6.25rem);
}

.info-title {
	flex-shrink: 0;
	font-size: 1rem;
	letter-spacing: 3px;
	width: 5.625rem;
}

.info-detail {
	letter-spacing: 2.4px;
}

.access {
	padding-top: 9.375rem;
	position: relative;
	z-index: 1;
}

.access__images {
	margin-top: 2.5rem;
}

.access__image2 img {
	border: 1px solid #807129;
}

.access__map {
	margin-top: 4.3125rem;
}

.access__map iframe {
	aspect-ratio: 11/5;
	width: 100%;
}

.access__map p {
	font-size: 0.875rem;
	letter-spacing: 2.1px;
	line-height: 165%;
	word-break: auto-phrase;
}

.footer {
	padding-bottom: 6.25rem;
	padding-top: 6.25rem;
}

.footer__head {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.footer__head-left {
	margin-bottom: auto;
	margin-top: auto;
}

.footer__head-left img {
	width: 18.75rem;
}

.footer__head-right p {
	text-align: left;
}

.footer__buttons {
	display: flex;
	gap: 0.9375rem;
	justify-content: center;
	margin-top: 1.5625rem;
}

.footer__button.button-blue {
	background: transparent;
}

.footer__button.button-blue:hover {
	background: #807129;
	color: #1C1A50;
}

.footer__cards {
	display: flex;
	flex-direction: column;
	gap: 1.5625rem;
	justify-content: space-between;
	margin-top: 3.125rem;
}

.footer__card {
	border: 1px solid #807129;
	flex: 1;
	height: 15.625rem;
	position: relative;
	transition: opacity 0.3s;
}

.footer__card:hover {
	opacity: 0.8;
}

.footer__card img {
	box-shadow: 0px 4px 32px 0px rgba(38, 44, 49, 0.5);
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.footer__card p {
	font-weight: 500;
	left: 50%;
	letter-spacing: 1.6px;
	line-height: 165%;
	position: absolute;
	text-align: center;
	top: 50%;
	transform: translate(-50%, -50%);
	width: -moz-max-content;
	width: max-content;
}

.footer__links {
	display: grid;
	gap: 0.9375rem 0.625rem;
	grid-template-columns: repeat(2, 1fr);
	justify-content: center;
	margin-top: 1.875rem;
	place-items: center;
	text-align: center;
}

.footer__link {
	transition: opacity 0.3s;
	word-break: auto-phrase;
}

.footer__link:hover {
	opacity: 0.7;
}

.footer__copyright {
	display: block;
	font-family: "Noto Serif JP", serif;
	font-size: 0.75rem;
	font-weight: 400;
	letter-spacing: normal;
	line-height: normal;
	margin-top: 3.125rem;
	text-align: center;
}

.hidden-pc {
	display: inline-block;
}

.hidden-sp {
	display: none;
}

@media screen and (min-width: 600px) {

.menu__buttons {
	height: 120px;
}

.menu__button {
	width: 6.25rem;
}

.title-bottom {
	justify-content: center;
}

.overlay-images {
	bottom: -9.375rem;
}

}

@media screen and (max-width: 767px) and (min-width: 390px) {

html {
	font-size: calc(1400 / 390 * 1vw);
}

}

@media screen and (min-width: 768px) {

body {
	font-size: 1rem;
}

.inner {
	max-width: 1440px;
	padding: 0 10.625rem;
}

.button-gold {
	font-size: 1.125rem;
	padding: 0.625rem 2.5rem;
}

.button-blue {
	font-size: 1.125rem;
	padding: 0.625rem 1.875rem;
}

.images-wrapper {
	flex-direction: row;
	gap: 0;
	margin-left: calc((100% - 100vw) / 2);
	margin-right: calc((100% - 100vw) / 2);
	width: 100vw;
}

.images-wrapper p {
	font-size: 0.875rem;
}

.image-content {
	height: 25rem;
	-o-object-fit: cover;
	flex: 1;
	object-fit: cover;
}

.images-wrapper__map {
	flex-direction: row;
	margin-inline: auto;
	width: 100%;
}

.image-content__map {
	height: 19.8125rem;
}

.title {
	font-size: 1.875rem;
	line-height: 100%;
	padding: 0.75rem 1.5625rem;
}

.header__inner {
	padding-bottom: 0.6875rem;
	padding-left: 4.375rem;
	padding-right: 4.375rem;
	padding-top: 0.6875rem;
}

.header__logo {
	width: 11.5rem;
}

.header__content {
	width: 37.5rem;
}

.header__content-link {
	font-size: 1.25rem;
}

.header__content-button {
	max-width: 190px;
	padding: 1.25rem 1.875rem !important;
}

.fv {
	/* padding-left: 8.0625rem;
	padding-right: 8.0625rem; */
}

.splide__slide img {
	aspect-ratio: 884.56/540;
	width: 100%;
}

.splide__pagination {
	bottom: -8.125rem;
	left: 7.375rem;
}

.splide__pagination__page {
	border: 2px solid #ffffff;
}

.overlay-content {
	font-size: 1.5625rem;
	left: 7.5rem;
}

.overlay-images {
	bottom: -7.6875rem;
	gap: 0.94375rem;
	right: 7.5rem;
}

.about {
	padding-top: 17.5625rem;
}

.about__text {
	font-size: 1.125rem;
	letter-spacing: 2.7px;
	line-height: 180%;
}

.menu__button {
	height: -moz-max-content;
	height: max-content;
	padding: 1.25rem 0;
	text-align: center;
	width: 13.5rem;
}

.menu__text {
	margin-top: 0.3125rem;
}

.menu__detail-wrapper {
	padding: 3.125rem 14.125rem;
}

.menu__detail-title {
	gap: 1.5625rem;
}

.menu__detail-title h3 {
	font-size: 1.5rem;
}

.menu__detail-title span:nth-of-type(1) {
	font-size: 1.5rem;
}

.menu__detail-title span:nth-of-type(2) {
	margin-left: -1.25rem;
	margin-top: 0.25rem;
}

.title-bottom {
	justify-content: start;
	padding-left: 8.9375rem;
}

.title-bottom h3 {
	width: 14.0625rem;
}

.introduction {
	margin-top: 5rem;
}

.introduction__wrapper {
	padding: 6.25rem 4.9375rem;
}

.introduction__wrapper-inner {
	padding-left: 4.4375rem;
	padding-right: 4.4375rem;
}

.introduction__head {
	font-size: 1.8125rem;
}

.introduction__contents-title {
	font-size: 1.5rem;
}

.info-row {
	gap: 3.125rem;
}

.info-row::before {
	width: 12.5rem;
}

.info-row::after {
	width: calc(100% - 12.5rem);
}

.info-title {
	font-size: 1.25rem;
	margin-left: 1.5625rem;
	width: 9.375rem;
}

.access__map iframe {
	height: 31.25rem;
}

.footer__head {
	flex-direction: row;
	justify-content: space-between;
}

.footer__head-left img {
	height: auto;
	width: 25rem;
}

.footer__buttons {
	justify-content: flex-start;
}

.footer__button.button-blue {
	padding: 0.75rem 2.5rem;
}

.footer__cards {
	flex-direction: row;
}

.footer__links {
	gap: 1.875rem;
	grid-template-columns: repeat(4, 1fr);
	padding-left: 9.375rem;
	padding-right: 9.375rem;
}

.footer__link {
	font-size: 0.875rem;
	letter-spacing: 2.1px;
	line-height: 180%;
	text-wrap: nowrap;
}

.hidden-pc {
	display: none;
}

.hidden-sp {
	display: inline-block;
}

}

@media screen and (min-width: 900px) {

.title {
	font-size: 2.5rem;
	padding: 1rem 3.125rem 0.75rem;
}

.header__inner {
	height: 70px;
}

.header__nav {
	align-items: center;
	display: flex;
	flex-grow: 1;
	gap: 2.25rem;
	justify-content: flex-end;
}

.header__link {
	font-family: "Noto Serif JP", serif;
	font-weight: 300;
	letter-spacing: 1.6px;
	line-height: normal;
}

.header__button {
	margin-left: 0.3125rem;
}

.header__nav .header__button.button-blue {
	margin-left: -0.9375rem;
}

.header__open {
	display: none;
}

.fv {
	/* margin-top: 70px;
	padding-left: 14.3125rem;
	padding-right: 14.3125rem; */
}

.splide__pagination {
	bottom: -8.125rem;
	left: 7.25rem;
}

.overlay-content {
	font-size: 1.5625rem;
	left: 7.5rem;
	top: 3.125rem;
}

.menu__buttons {
	height: 100px;
}

}

@media screen and (min-width: 1200px) {

.menu__buttons {
	height: 153px;
}

}

@media screen and (max-width: 1439px) and (min-width: 768px) {

html {
	font-size: calc(1600 / 1440 * 1vw);
}

}

@media screen and (min-width: 1441px) {

.image-content {
	height: auto;
}

}

