@charset "utf-8";

/*============================
ヘッダー
============================*/
header .logo {
	display: none;
}

/*============================
ヘッダーMV
============================*/
.mv {
	height: calc(100vh + 2.50rem);
	min-height: 13.00rem;
	max-height: 13.50rem;
	background-image: url(../img/top/mv_pc.jpg);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 0;
}

@media screen and (max-width: 640px) {
	.mv {
		height: 100vh;
		min-height: 6.00rem;
		max-height: auto;
	}
}

.mv::before {
	content: "";
	width: 100%;
	height: calc(100% - 3.00rem);
	background: linear-gradient(to bottom, rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.8) 40%,rgba(255,255,255,0) 100%);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}

@media screen and (max-width: 640px) {
	.mv::before {
		height: calc(100% - 1.00rem);
	}
}

.mv::after {
	content: "";
	width: 100%;
	height: 100%;
	background-color: #FFF;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	animation: fadein 3s 2s forwards;
}

@keyframes fadein {
  0% {opacity: 1}
  100% {opacity: 0}
}

.mv .in {
	height: 100vh;
	max-height: 12.00rem;
}

.mv .illust {
	content: "";
	width: 100%;
	max-width: 11.50rem;
	height: 49.57vw;
	min-height: 7.00rem;
	background-image: url(../img/top/mv_illust.png);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 0.60rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 0;
}

@media screen and (max-width: 640px) {
	.mv .illust {
		height: 90.00vw;
		min-height: auto;
		background-image: url(../img/top/mv_illust_sp.png);
		top: 1.00rem;
	}
}

.mv .catch {
	padding-top: 0.75rem;
	width: fit-content;
	height: 50vh;
	max-height: 4.70rem;
	margin: auto;
	position: relative;
	z-index: 11;
}

@media screen and (max-height: 700px) {
	.mv .catch {
		padding-top: 0.35rem;
	}
}

@media screen and (max-width: 640px) {
	.mv .catch {
		padding-top: 0.75rem;
		height: 40vh;
	}
}

.mv .catch img {
	height: 100%;
}

.mv .logo {
	width: 2.44rem;
	margin: 0.40rem auto 0;
	position: relative;
	z-index: 11;
}

@media screen and (max-height: 700px) {
	.mv .logo {
		width: 10vw;
	}
}

@media screen and (max-width: 640px) {
	.mv .logo {
		width: 1.50rem;
	}
}

/* スクロール */
.mv .scroll {
	position: fixed;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	cursor: pointer;
	z-index: 10;
}

@media screen and (max-height: 640px) {
	.mv .scroll {
		display: none;
	}
}

.mv .scroll.hide {
	display: none;
}

.mv .scroll a {
	color: #1A1A1A;
}

.mv .scroll span {
	font-family: 'Poppins', sans-serif;
	font-size: 0.10rem;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	position: absolute;
	top: -0.90rem;
	left: -0.05rem;
}

.mv .scroll::before {
	content: "";
	width: 1px;
	height: 0.30rem;
	background-color: #000;
	position: absolute;
	bottom: 0;
	left: 0;
}

.mv .scroll::after {
	content: "";
	width: 0.03rem;
	height: 0.15rem;
	background-color: #000;
	border-radius: 0.04rem;
	position: absolute;
	top: -0.30rem;
	left: -0.01rem;
	animation: wheel 2s infinite;
}

@keyframes wheel {
  to {
    opacity: 0;
    top: 0;
  }
}

/*============================
イントロ
============================*/
.introduction {
	padding: 1.00rem 0;
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 640px) {
	.introduction {
		padding: 0.70rem 0 0.40rem;
	}
}

.introduction .intro_cont_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	flex-direction: row-reverse;
	align-items: center;
	padding-bottom: 0.80rem;
	margin-top: 0.80rem;
}

@media screen and (max-width: 640px) {
	.introduction .intro_cont_box {
		padding-bottom: 0.40rem;
		margin-top: 0;
		display: block;
	}
}

.introduction .intro_cont_box:first-child {
	padding-bottom: 0;
	margin-top: 0;
}

.introduction .intro_cont_box:nth-child(odd) {
	flex-direction:row;
}

@media screen and (max-width: 640px) {
	.introduction .intro_cont_box:nth-child(odd) {
		margin-top: 0.20rem;
	}
}

.introduction .intro_cont_box .ph_wrap {
	width: 7.60rem;
	height: 4.40rem;
	overflow: hidden;
	margin-right: -1.80rem;
}

@media screen and (max-width: 640px) {
	.introduction .intro_cont_box .ph_wrap {
		width: calc(100% + 0.20rem);
		height: 57.33vw;
		margin-right: -0.20rem;
	}
}

.introduction .intro_cont_box:nth-child(odd) .ph_wrap {
	flex-direction:row;
	margin-right: 0;
	margin-left: -1.80rem;
}

@media screen and (max-width: 640px) {
	.introduction .intro_cont_box:nth-child(odd) .ph_wrap {
		margin-right: auto;
		margin-left: -0.20rem;
	}
}

.introduction .intro_cont_box .textbox {
	width: 5.60rem;
}

@media screen and (max-width: 640px) {
	.introduction .intro_cont_box .textbox {
		width: calc(100% - 0.20rem);
		padding-top: 0.20rem;
	}
	.introduction .intro_cont_box:nth-child(odd) .textbox {
		padding-left: 0.20rem;
	}
}

.introduction .intro_cont_box .textbox .facility_name {
	font-family: 'Zen Old Mincho', serif;
	font-size: 0.15rem;
	padding-bottom: 0.30rem;
	position: relative;
	color: #4D7E4D;
}

@media screen and (max-width: 640px) {
	.introduction .intro_cont_box .textbox .facility_name {
		font-size: 0.12rem;
		font-weight: 600;
		padding-bottom: 0.10rem;
	}
}

.introduction .intro_cont_box .textbox .facility_name span {
	position: relative;
}

.introduction .intro_cont_box .textbox .facility_name span::after {
	content: "";
	width: 0.80rem;
	height: 1px;
	background-color: #4D7E4D;
	position: absolute;
	right: -0.90rem;
	top: 0.12rem;
}

@media screen and (max-width: 640px) {
	.introduction .intro_cont_box .textbox .facility_name span::after {
		top: 0.08rem;
	}
}

.introduction .intro_cont_box .textbox .title {
	font-family: 'Zen Old Mincho', serif;
	font-size: 0.30rem;
	letter-spacing: 0.075em;
	font-weight: 600;
	padding-bottom: 0.20rem;
	line-height: 1.65;
}

@media screen and (max-width: 640px) {
	.introduction .intro_cont_box .textbox .title {
		font-size: 0.20rem;
		padding-bottom: 0.10rem;
	}
}

.introduction .intro_cont_box .textbox .text {
	font-family: 'Zen Old Mincho', serif;
	font-size: 0.18rem;
	line-height: 2;
}

@media screen and (max-width: 640px) {
	.introduction .intro_cont_box .textbox .text {
		font-size: 0.14rem;
		letter-spacing: 0;
	}
}

.introduction .intro_cont_box:nth-child(even):before {
	content: "";
	width: 100%;
	height: calc(100% - 1.40rem);
	background-color: rgba(176, 192, 150, 0.3);
	position: absolute;
	left: -0.80rem;
	bottom: 0;
	z-index: -1;
}

@media screen and (max-width: 640px) {
	.introduction .intro_cont_box:nth-child(even):before {
		width: calc(100% + 0.20rem);
		left: -0.20rem;
		bottom: 0.10rem;
	}
}

.introduction .intro_cont_box:nth-child(odd):before {
	content: "";
	width: calc(100% - 3.00rem);
	height: calc(100% - 1.40rem);
	background-color: rgba(226,218,184,0.5);
	position: absolute;
	right: -1.80rem;
	bottom: 0;
	z-index: -1;
}

@media screen and (max-width: 640px) {
	.introduction .intro_cont_box:nth-child(odd):before {
		width: calc(100% + 0.20rem);
		right: -0.20rem;
		bottom: 0.10rem;
	}
}