@charset "UTF-8";
/*
ブレイクポイント：min900／max899
*/
*, ::after, ::before {
	background: transparent;
	border: 0;
	box-sizing: border-box;
	margin: 0;
	outline: 0;
	padding: 0;
	transition-duration: .4s;
	transition-timing-function: cubic-bezier(.05, .55, .5, 1);
	vertical-align: bottom;
	word-break: break-all;
}
html {
	font-family: "Zen Maru Gothic", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 15px;
}
@media screen and (min-width: 900px) {
	html {
		font-size: 17px;
	}
}
/* ==================== テキスト ==================== */
h1, h2, h3, h4, h5, h6 {
	color: #09F;
	font-weight: 700;
	line-height: 1.3em;
}
p, li {
	color: #555;
	line-height: 1.8em;
	text-align: justify;
}
h2 {
	font-size: 1.8rem;
}
h3 {
	font-size: 1.5rem;
}
h4 {
	font-size: 1.3rem;
}
h5 {
	font-size: 1.2rem;
}
h6 {
	font-size: 1.1rem;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.line-height_15 {
	line-height: 1.5em;
}
br.sp-only {
	display: inline;
}
@media screen and (min-width: 900px) {
	h2 {
		font-size: 2.0rem;
	}
	h3 {
		font-size: 1.6rem;
	}
	br.sp-only {
		display: none;
	}
}
/* ==================== 画像 ==================== */
img {
	height: auto;
	max-width: 100%;
}
img.cover {
	object-fit: cover;
	height: 100%;
	width: 100%;
}
/* ==================== リンク・ボタン ==================== */
a.button {
	color: #FFF;
	display: inline-block;
	background-color: #09F;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 700;
	padding: 12px 24px;
}
/* ==================== フェードイン汎用 ==================== */
.fadein {
	opacity: 0;
	transform: translateY(60px);
	transition: opacity 1.5s, visibility 1.5s, transform 1.5s;
	visibility: hidden;
}
.is-fadein {
	opacity: 1;
	transform: translateX(0);
	visibility: visible;
}
/* ==================== コンテナ ==================== */
.w_720 {
	margin: 0 auto;
	max-width: 85%;
	width: 720px;
}
.w_720, #introduction > div, #flyer > div, #spot .text {
	display: flex;
	flex-direction: column;
	gap: 1.5em;
}
section {
	margin: 0 auto;
	padding: 60px 0;
}
section > * {
	margin: 0 auto;
	max-width: 85%;
}
@media screen and (min-width: 900px) {
	section {
		padding: 120px 0;
	}
}
/* ==================== メインビジュアル ==================== */
#mainvisual {
	align-items: center;
	background-image: url("../img/photo_mainvisual_IMG_9733_01.jpg");
	background-position: center center;
	background-size: cover;
	display: flex;
	height: 50vh;
	justify-content: center;
	position: relative;
}
#mainvisual h1 {
	max-width: 720px;
	text-align: center;
	width: 80%;
}
#mainvisual .fukushima {
	position: absolute;
	top: 30px;
	left:  30px;
}
#mainvisual .fukushima img {
	height: 60px;
	width: 60px;
}
#mainvisual .entry {
	position: absolute;
	top: 30px;
	right:  0;
}
#mainvisual .entry a {
	border-bottom: 1px solid #FFF;
	border-left: 1px solid #FFF;
	border-right: none;
	border-top: 1px solid #FFF;
	border-radius: 50px 0 0 50px;
}
@media screen and (min-width: 900px) {
	#mainvisual {
		height: 75vh;
	}
	#mainvisual .fukushima img {
		height: 90px;
		width: 90px;
	}
	#mainvisual .entry {
		position: absolute;
		top: 30px;
		right:  30px;
	}
	#mainvisual .entry a {
		border-right: 1px solid #FFF;
		border-radius: 50px;
	}
}
/* ==================== マップ ==================== */
#map {
	background-color: #ad9;
	padding: 0;
	text-align: center;
}
#map > img {
	max-width: 1440px;
	width: 100%;
}
/* ==================== 基本紹介 ==================== */
#introduction {
	background-color: #FFF9DD;
	background-image: linear-gradient(0deg, #FFF9DD, #FFF);
}
#introduction > div {
	width: 1140px;
}
#introduction .w_720 {
	max-width: 100%;
}
#introduction .swiper {
	max-width: 100%;
}
#introduction .overview {
	list-style: none;
}
#introduction .overview li {
	font-size: 1.25rem;
	font-weight: 700;
}
#introduction .swiper-slide img {
	border-radius: 15px;
}
/* ==================== スポットの紹介 ==================== */
#spot {
	padding: 0;
}
#spot > div {
	align-items: center;
	background-color: #FFF9DD;
	background-image: linear-gradient(0deg, #FFF9DD, #FFF);
	display: grid;
	gap: 0;
	grid-template-columns: repeat(1, 1fr);
	grid-template-rows: auto;
	justify-items: center;
	max-width: 100%;
	padding-top: 3em;
}
#spot > div img {
	border-radius: 15px;
	width: calc(100% - 6em);
}
#spot > div.reverse img {
	grid-column-start: 1;
	grid-row-start: 1;
}
#spot > div.reverse .text {
	grid-column-start: 1;
	grid-row-start: 2;
}
#spot .text {
	padding: 1.5em 3em 3em;
}
@media screen and (min-width: 900px) {
	#spot > div {
		grid-template-columns: 47.5% 52.5%;
		grid-template-rows: 50vh;
		padding-top: 0;
	}
	#spot > div.reverse {
		grid-template-columns: 52.5% 47.5%;
		grid-template-rows: 50vh;
	}
	#spot > div img {
		border-radius: 0;
		width: 100%;
	}
	#spot > div.reverse img {
		grid-column-start: 2;
		grid-row-start: 1;
	}
	#spot > div.reverse .text {
		grid-column-start: 1;
		grid-row-start: 1;
	}
	#spot .text {
		padding: 3em;
	}
}
/* ==================== チラシダウンロード ==================== */
.flyer_img {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(1, 1fr);
	gap: 10px;
}
@media screen and (min-width: 900px) {
	.flyer_img {
		gap: 30px;
}
}
/* ==================== 注意事項 ==================== */
#attention {
	background-color: #F9F9F9;
	padding: 120px 0;
}
#attention ul {
	list-style: none;
}
#attention ul li {
	margin-bottom: 0.5em;
}
/* ==================== フッター ==================== */
footer {
	background-color: #1D1D1D;
	padding: 60px 0;
}
footer * {
	color: #FFF;
}
footer > div {
	align-items: center;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	max-width: 85%;
	width: 1140px;
}
footer .logo {
	width: 114px;
}
footer .other {
	display: grid;
	gap: 1em;
	grid-template-columns: auto;
	grid-template-rows: auto;
	margin-top: 2em;
	width: 100%;
}
footer h2 {
	margin-bottom: 0.5em;
}
footer ul {
	grid-column-start: 1;
	grid-row-start: 1;
}
footer ul li {
	font-size: 16px;
	font-weight: 300;
	line-height: 1em;
	margin-bottom: 0.5em;
	text-align: center;
}
footer ul li a {
	text-decoration: underline;
}
footer address {
	grid-column-start: 1;
	grid-row-start: 2;
}
footer address h2 {
	font-size: 20px;
	font-weight: 700;
	text-align: center;
}
footer address h2 small {
	font-size: 14px;
	font-weight: 500;
}
footer address p {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5em;
	text-align: center;
}
footer .sns {
	grid-column-start: 1;
	grid-row-start: 3;
	text-align: center;
}
footer .copyright {
	margin: 2em auto 0;
	max-width: 85%;
	text-align: center;
	width: 1140px;
}
@media screen and (min-width: 900px) {
	footer > div {
		flex-direction: row;
	}
	footer .other {
		border-left: 1px solid #FFF;
		margin: 0 0 0 30px;
		padding-left: 30px;
	}
	footer ul {
		grid-column-start: 2;
		grid-row-start: 1;
	}
	footer ul li {
		text-align: right;
	}
	footer address {
		grid-row: span 2 / span 2;
		grid-column-start: 1;
		grid-row-start: 1;
	}
	footer address h2 {
		text-align: left;
	}
	footer address p {
		text-align: left;
	}
	footer .sns {
		grid-column-start: 2;
		grid-row-start: 2;
		text-align: right;
	}
	footer .copyright {
		margin: 0 auto;
		text-align: right;
	}
}