@charset "UTF-8";

* {
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
	font-size: 62.5%;
}

body {
	position: relative;
	background-color: #000;
	color: #fff;
	font-family: "Gupter", serif;
	font-weight: 700;
	font-style: normal;
	font-size: 2rem;
	line-height: 1.875;
}

html.no-scroll,
body.no-scroll {
	overflow: hidden;
}

body.no-scroll::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	overflow: visible;
	display: block;
	background-color: rgb(255 255 255 / 20%);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
}

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

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

p {
	margin-bottom: 2rem;
}

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

a {
	transition: all 0.475s;
}

a img {
	transition: all 0.475s;
}

.text-right {
	text-align: right;
}
.text-center {
	text-align: center;
}
.text-left {
	text-align: left;
}

/* --------------------------------------------------

	Spacing

-------------------------------------------------- */

.mb-1 {
	margin-bottom: 1rem;
}

/* --------------------------------------------------

	Heading

-------------------------------------------------- */

.h2 {
	margin: 0 0 1rem;
	font-size: 4rem;
	line-height: 1.2;
}

@media screen and (max-width: 768px) {
	.h2 {
		margin: 0 0 2rem;
		font-size: 2rem;
		line-height: 1;
	}
}

.h3 {
	margin: 0 0 1rem;
	font-size: 3rem;
	line-height: 1.2;
}

@media screen and (max-width: 768px) {
	.h3 {
		margin: 0;
		font-size: 2rem;
		line-height: 1.2;
	}
}

/* --------------------------------------------------

	btn

-------------------------------------------------- */

.btn {
	position: relative;
	display: block;
	padding: 3.2rem 3.8rem;
	background-color: #6a6434;
	border: 2px solid #6a6434;
	color: #fff;
	font-size: 2.4rem;
	line-height: 1.2;
	text-decoration: none;
}

.btn:hover {
	background-color: transparent;
}

@media screen and (max-width: 768px) {
	.btn {
		padding: 3rem 3.2rem;
		font-size: 2rem;
	}
}

.btn--blank {
	padding-right: 6.4rem;
}

.btn--blank:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 3.2rem;
	display: block;
	width: 25px;
	height: 25px;
	background: url("../images/icon-blank.svg") no-repeat center center;
	background-size: contain;
	transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
	.btn--blank {
		padding-right: 6rem;
	}

	.btn--blank:after {
		right: 2.4rem;
		width: 20px;
		height: 20px;
	}
}

.btn-more {
	display: flex;
	align-items: center;
}

.btn-more__arrow {
	content: "";
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	margin: 0 0 0 0.8rem;
	background-color: #fff;
	border-radius: 50%;
}

.btn-more__arrow img {
	width: 30px;
	height: 12px;
	transition: all 0.475s;
}

.btn-more:hover .btn-more__arrow img {
	margin-left: 6px;
}

.btn-website {
	display: flex;
	align-items: center;
}

.btn-website__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	margin: 0 0 0 0.8rem;
	background-color: #fff;
	border-radius: 50%;
}

.btn-website__arrow img {
	width: 16px;
	height: auto;
	transition: all 0.475s;
}

.btn-website:hover .btn-website__arrow img {
	margin-left: 6px;
}

/* --------------------------------------------------

	header

-------------------------------------------------- */

.header {
	position: relative;
	height: 100vh;
}

.header__logo {
	position: absolute;
	top: 8.6rem;
	left: 4rem;
	z-index: 12;
	margin: 0;
	font-size: 4rem;
	line-height: 1;
}

.header__mv img {
	display: block;
	max-width: none;
	height: calc(100vh - 4rem);
	object-fit: cover;
}

@media screen and (max-width: 768px) {
	.header {
		height: calc(100vh - 9rem);
	}

	.header__logo {
		top: 6rem;
		left: 2rem;
		font-size: 2rem;
	}

	.header__mv img {
		height: calc(100vh - 10rem);
	}
}

.header__copy {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 10;
	margin: 0;
	font-size: 20rem;
	line-height: 0.6;
	vertical-align: top;
}

@media screen and (max-width: 1024px) {
	.header__copy {
		font-size: 16rem;
	}
}

@media screen and (max-width: 768px) {
	.header__copy {
		font-size: 6rem;
	}
}

.mv-pattern {
	position: absolute;
	bottom: -4rem;
	left: -11rem;
	z-index: 2;
	max-width: 460px;
}

@media screen and (max-width: 768px) {
	.mv-pattern {
		bottom: -1rem;
		left: -4rem;
		max-width: 140px;
	}
}

.scrollbar {
	overflow: hidden;
	position: absolute;
	left: 24px;
	bottom: 40px;
	z-index: 3;
	width: 5px;
	height: 120px;
	border-radius: 2.5rem;
	background-color: #242424;
}

.scrollbar__btn {
	position: absolute;
	top: -100%;
	width: 5px;
	height: 34px;
	border-radius: 2.5rem;
	background-color: #6a6434;
	animation: scroll 3.5s infinite;
}

@keyframes scroll {
	0% {
		top: -100%;
	}

	80% {
		top: 100%;
	}

	0%,
	100% {
		opacity: 0;
	}

	40% {
		opacity: 1;
	}
}

@media screen and (max-width: 768px) {
	.scrollbar {
		left: 20px;
		bottom: -90px;
		width: 3px;
		height: 66px;
	}

	.scrollbar__btn {
		width: 3px;
		height: 18px;
	}
}

/* --------------------------------------------------

	lead

-------------------------------------------------- */

.lead {
	margin-top: -4rem;
	padding: 26rem 4rem 16rem;
	background: url("../images/lead-bg.jpg") no-repeat center top;
	background-size: 1400px auto;
}

@media screen and (max-width: 768px) {
	.lead {
		padding: 16rem 0 12rem;
		background-size: 680px auto;
	}
}

.lead__title {
	margin: 0 0 4.4rem;
	font-size: 4rem;
	line-height: 1.2;
}

@media screen and (max-width: 768px) {
	.lead__title {
		margin: 0 2rem 2.4rem;
		font-size: 2.4rem;
	}
}

.lead__text {
	margin: 0 0 10rem;
}

.lead__text p {
	margin-bottom: 4rem;
}

.lead__text > :last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 768px) {
	.lead__text {
		margin: 0 2rem 4rem;
	}

	.lead__text p {
		margin-bottom: 2rem;
	}
}

.lead-foot {
	display: flex;
	align-items: center;
	justify-content: center;
}

.lead-foot__text {
	margin-right: -15.2rem;
}

.lead-box {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 680px;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	border: 6px solid #35321a;
}

.lead-box__body {
	max-width: 310px;
}

.lead-box__body > :last-child {
	margin-bottom: 0;
}

.lead-foot__photo img {
	max-width: 624px;
}

@media screen and (max-width: 1280px) {
	.lead-foot__text {
		margin-right: 8rem;
	}

	.lead-box {
		width: 520px;
	}
}

@media screen and (max-width: 768px) {
	.lead-foot {
		flex-direction: column;
	}

	.lead-foot__text {
		margin-right: 0;
	}

	.lead-box {
		width: 100%;
	}

	.lead-box__body {
		max-width: 100%;
		padding: 0 3rem;
	}

	.lead-foot__photo {
		margin-top: 0;
		padding: 0 2rem;
	}
}

/* --------------------------------------------------

	heritage

-------------------------------------------------- */

.heritage {
	padding: 0 4rem;
}

.heritage__title {
	margin: 0 0 3rem;
	padding: 1rem 0 1rem 2rem;
	border-left: 5px solid #6a6434;
	font-size: 4rem;
	line-height: 1.2;
}

@media screen and (max-width: 768px) {
	.heritage {
		margin-bottom: 10rem;
		padding: 0 2rem;
	}

	.heritage__title {
		padding: 0.5rem 0 0.5rem 1rem;
		border-left-width: 3px;
		font-size: 2rem;
	}
}

.heritage-box {
	position: relative;
	margin-bottom: 12rem;
}

.heritage-box__photo {
	position: relative;
	z-index: -1;
	margin: 0 -4rem -14rem;
}

.heritage-box__photo:after {
	content: "";
	position: absolute;
	top: 50%;
	bottom: -2px;
	right: 0;
	left: 0;
	display: block;
	background-image: linear-gradient(0deg, rgba(0, 0, 0, 1), rgba(255, 255, 255, 0));
}

.heritage-box__title {
	margin: 0 0 1.4rem;
	font-size: 13rem;
	line-height: 1.12;
	vertical-align: bottom;
}

@media screen and (max-width: 1024px) {
	.heritage-box__title {
		margin-bottom: 1rem;
	}
}

@media screen and (max-width: 768px) {
	.heritage-box {
		margin-bottom: 3rem;
	}

	.heritage-box__photo {
		margin: 0 -2rem -4rem;
	}

	.heritage-box__title {
		font-size: 4rem;
	}
}

@media screen and (max-width: 420px) {
	.heritage-box__title {
		font-size: 3.5rem;
	}
}

.heritage-box__text {
	margin-bottom: 1rem;
	padding-right: 140px;
}

.heritage-box__btn {
	position: absolute;
	bottom: 0;
	right: 0;
}

.heritage-box__text > :last-child,
.heritage-box__btn > :last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 768px) {
	.heritage-box__text {
		padding-right: 0;
	}

	.heritage-box__btn {
		position: static;
		margin-left: 0;
	}
}

/* --------------------------------------------------

	container

-------------------------------------------------- */

.container {
	margin-bottom: 14rem;
	padding: 0 4rem;
}

@media screen and (max-width: 768px) {
	.container {
		margin-bottom: 10rem;
		padding: 0 2rem;
	}
}

.section {
	padding: 1rem 2rem;
	border-left: 5px solid #6a6434;
}

.section + .section {
	margin-top: 10rem;
}

@media screen and (max-width: 768px) {
	.section {
		padding: 0.5rem 1rem;
		border-left-width: 3px;
	}

	.section + .section {
		margin-top: 8.4rem;
	}
}

/* --------------------------------------------------

	map

-------------------------------------------------- */

.map-box {
	position: relative;
	width: 100%;
	max-width: 890px;
	aspect-ratio: 445 / 263;
	border: 1rem solid #fff;
}

.map-box iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	filter: grayscale(100%);
}

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

/* --------------------------------------------------

	transportation

-------------------------------------------------- */

.transportation-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 4.5rem 0.5rem -3rem;
}

.transportation-col {
	width: 25%;
	margin: 0 0 3rem;
	padding: 0 0.5rem;
}

@media screen and (max-width: 1280px) {
	.transportation-col {
		width: 33.33333333%;
	}
}

@media screen and (max-width: 1024px) {
	.transportation-col {
		width: 50%;
	}
}

@media screen and (max-width: 768px) {
	.transportation-row {
		margin: 0 -0.5rem -3rem;
	}

	.transportation-col {
		width: 100%;
	}
}

.transportation-box {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-bottom: 6rem;
	border: 3px solid #6a6434;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
}

@media screen and (max-width: 1024px) {
	.transportation-box {
		padding-bottom: 6rem;
	}
}

.transportation-box__title {
	margin: 0 0 1.6rem;
	font-size: 2.4rem;
}

.transportation-box__photo {
	margin-bottom: 2.6rem;
}

.transportation-box__text {
	max-width: 200px;
	margin: 0 auto;
	padding: 0;
	text-align: center;
}

.transportation-box__text > :last-child {
	margin-bottom: 0;
}

.transportation-box__text p {
	line-height: 1.25;
}

.transportation-box__link {
	position: absolute;
	bottom: 1.6rem;
	margin: 0;
}

.transportation-note {
	margin-top: 1.2rem;
}

.transportation-note p {
	font-size: 1.6rem;
	line-height: 1.25;
}

/* --------------------------------------------------

	access

-------------------------------------------------- */

.access-row {
	display: flex;
	margin: 0 -5rem;
}

.access-col {
	padding: 0 5rem;
}

.access-col h2 {
	white-space: nowrap;
}

@media screen and (max-width: 768px) {
	.access-row {
		flex-direction: column;
		margin: 0;
	}

	.access-col {
		width: 100%;
		padding: 0;
	}
}

.access-box {
	display: flex;
	align-items: flex-end;
	margin: 0 -2rem -2rem;
}

.access-box__photo {
	margin-bottom: 2rem;
	padding: 0 2rem;
}

.access-box__photo img {
	max-width: 630px;
}

.access-box__text {
	margin-bottom: 2rem;
	padding: 0 2rem;
}

.access-box__text > :last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
	.access-box {
		flex-direction: column;
		align-items: flex-start;
		margin: 0 -2rem;
	}
}

/* --------------------------------------------------

	movie-box

-------------------------------------------------- */

.movie-box {
	max-width: 850px;
	margin: 0 auto 6rem;
	padding: 0;
	text-align: center;
}

.movie-box iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
}

/* --------------------------------------------------

	related-sites

-------------------------------------------------- */

.related-sites {
	margin: 12rem 0 0;
	padding: 3.2rem 6.2rem 5.2rem;
	border-top: 1px solid #6a6434;
	border-bottom: 1px solid #6a6434;
}

.related-sites__title {
	margin: 0 0 2rem;
	font-size: 4rem;
	line-height: 1;
}

.sites-list ul {
	display: flex;
	margin: 0 -1.8rem -2rem;
	padding: 0;
	list-style: none;
}

.sites-list li {
	width: 33.33333333%;
	margin-bottom: 2rem;
	padding: 0 1.8rem;
}

@media screen and (max-width: 768px) {
	.related-sites {
		margin-top: 10rem;
		padding: 2rem 2rem 3rem;
	}

	.related-sites__title {
		font-size: 2rem;
	}

	.sites-list ul {
		flex-direction: column;
	}

	.sites-list li {
		width: 100%;
	}
}

/* --------------------------------------------------

	footer

-------------------------------------------------- */

.footer {
	padding: 3.2rem 6.2rem 4rem;
}

.footer-row {
	display: flex;
	align-items: center;
	margin: 0 -3.2rem -3rem;
}

.footer-col {
	margin: 0 0 3rem;
	padding: 0 3.2rem;
}

.sns-list ul {
	display: flex;
	align-items: center;
	margin: 0 -1.5rem;
	padding: 0;
	list-style: none;
}

.sns-list li {
	padding: 0 1.5rem;
}

.sns-list a:hover img {
	opacity: 0.75;
}

.footer-info {
}

.footer-info > :last-child {
	margin-bottom: 0;
}

.footer-info p {
	font-size: 1.6rem;
	line-height: 1.42;
}

@media screen and (max-width: 768px) {
	.footer {
		padding: 3rem 2rem 4rem;
	}

	.footer-row {
		flex-direction: column;
		margin: 0 0 -3rem;
	}

	.footer-col {
		padding: 0;
	}

	.sns-list ul {
		justify-content: center;
	}

	.footer-info p {
		font-size: 1.4rem;
		line-height: 1.2;
	}
}

/* --------------------------------------------------

	モーダル内

-------------------------------------------------- */

.head-parts {
	display: flex;
	align-items: flex-end;
	flex-direction: row-reverse;
	margin: 0 0 4rem;
}

.head-parts__photo {
	width: 75.384615%;
}

.head-parts__text {
	width: 24.615385%;
}

.head-parts__title {
	position: relative;
	z-index: 1;
	margin: 0;
	font-size: 8rem;
	line-height: 0.95;
	white-space: nowrap;
}

@media screen and (max-width: 768px) {
	.head-parts {
		flex-direction: column;
		margin: 0 -2rem 3.2rem;
	}

	.head-parts__photo {
		width: 100vw;
		margin-bottom: -4rem;
	}

	.head-parts__text {
		width: 100%;
		padding: 0 2rem;
	}

	.head-parts__title {
		font-size: 3.3rem;
		line-height: 1.09;
	}
}

.explanation-lead {
	margin: 0 0 9rem;
}

.explanation-lead > :last-child {
	margin-bottom: 0;
}

.explanation {
	display: flex;
	align-items: center;
	margin: 0 -2.5rem 6rem;
	padding: 0;
}

.explanation--reverse {
	flex-direction: row-reverse;
}

.explanation__photo {
	width: 64.8148148%;
	padding: 0 2.5rem;
}

.explanation__photo img {
	display: block;
	width: 100%;
	max-width: none;
}

.explanation__text {
	width: 35.1851852%;
	padding: 0 2.5rem;
}

.explanation__text > :last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 768px) {
	.explanation {
		flex-direction: column;
		margin: 0 -2rem 4rem;
	}

	.explanation__photo {
		width: 100%;
		margin-bottom: 2rem;
		padding: 0;
	}

	.explanation__text {
		width: 100%;
		padding: 0 2rem;
	}
}

.information {
	display: flex;
	margin: 0 -2.5rem -5rem;
	padding: 0;
}

.information__col {
	width: 50%;
	margin-bottom: 5rem;
	padding: 0 2.5rem;
}

.information__col-12 {
	width: 100%;
	margin-bottom: 5rem;
	padding: 0 2.5rem;
}

@media screen and (max-width: 768px) {
	.information {
		flex-direction: column;
		margin-right: 0;
		margin-left: 0;
	}

	.information__col,
	.information__col-12 {
		width: 100%;
		padding: 0;
	}
}

/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(43, 43, 10, 57%);
	padding: 7.2rem 0;
	overflow-x: hidden;
	overflow-y: auto;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}

@media screen and (max-width: 768px) {
	.modal-container {
		padding: 6.2rem 0;
	}
}

/*モーダル本体の擬似要素の指定*/
.modal-container:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active {
	opacity: 1;
	visibility: visible;
}

/*モーダル枠の指定*/
.modal-body {
	position: relative;
	z-index: 1002;
	display: inline-block;
	max-width: calc(100% - 5rem);
	width: calc(100% - 5rem);
	vertical-align: middle;
}

@media screen and (max-width: 768px) {
	.modal-body {
		max-width: calc(100% - 4rem);
		width: calc(100% - 4rem);
	}
}

/*モーダルを閉じるボタンの指定*/
.modal-close {
	position: fixed;
	top: 2rem;
	right: 2rem;
	display: block;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.475s;
}

.modal-close:hover {
	background-color: #fff;
}

.modal-close::before,
.modal-close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 2px;
	height: 22px;
	background-color: #fff;
	transition: all 0.475s;
}

.modal-close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-close:hover::before,
.modal-close:hover::after {
	background-color: #000;
}

@media screen and (max-width: 768px) {
	.modal-close {
		top: 1rem;
		right: 1rem;
	}
}

.modal-content {
	text-align: left;
}

/* add */
.lang {
	position: absolute;
	top: 1rem;
	right: 1rem;
}
.lang::after {
	content: "";
	clip-path: polygon(50% 100%, 0 0, 100% 0);
	width: 8px;
	height: 6px;
	background: #fff;
	position: absolute;
	top: 55%;
	transform: translateY(-50%);
	right: 15px;
}
.lang__select {
	background: #000;
	padding: 2px 40px 2px 20px;
	cursor: pointer;
	font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
	.lang__select {
		padding: 2px 30px 2px 10px;
		font-size: 1.2rem;
	}
}
.lang__select option {
	text-align: center;
}
