	@charset "utf-8";

/* reset */
html {
	min-width: 100%;
	overflow-y: scroll;
}
html.scroll-lock {
	overflow-y: hidden;
}
body, header, footer, nav, main, section, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, input, textarea, p, span, table, tr, th, td, a, :after, :before {
	margin: 0;
	padding: 0;
	font-size: 100%;
	font-style: normal;
	font: inherit;
	vertical-align: baseline;
}
object, embed {
	vertical-align: top;
}
img, abbr, acronym, fieldset {
	border: 0;
}
a img {
	outline: none;
	border: none;
}
img {
	vertical-align: top;
	border: none;
	outline: none;
}
ul, ol {
	list-style-type: none;
}
button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}
button, input, optgroup, select, textarea , label {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
	font-weight: inherit;
    line-height: inherit;
    color: inherit;
}
a:focus, *:focus {
	outline:none;
}
*, :after, :before {
	box-sizing: border-box;
}



/* default */
body {
	width: 100%;
	color: #000;
	font-family: Helvetica, "Helvetica Neue", "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-feature-settings: "palt";
	line-height: 1;
	font-weight: 500;
	background: #f8f7f5;
}
#wrap {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
/*　PC時の最小画面サイズが必要ならいれる
@media screen and (min-width: 768px) {
	#wrap {
		min-width: 1024px;
	}
}
*/
#wrap.is-locked {
	position: fixed;
    width: 100%;
}

:root {
	--color01: #ff7675;
	--color02: #5ABF71;
}

a {
	color: #000;
	text-decoration: none;
	word-break: break-all;
}
a:hover, a:focus {
	color: var(--color01);
	text-decoration: none;
}

.imgwrap {
	margin: 0 auto;
}
.imgwrap img {
	display: block;
	margin: 0 auto;
	width: 100%;
	height: auto;
}

@media screen and (min-width: 768px) {
	.noPc {
		display: none;
	}
}
@media screen and (max-width: 768px) {
	.noSp {
		display: none;
	}
}



/* loader
====================================================*/
#loader {
	position: fixed;
	width: 100%;
	height: 100vh;
	left: 0;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #FFF;
	z-index: 9999;
	overflow: hidden
}



/* heaeder
====================================================*/
.headerwrap {
	width: 100%;
}
header {
	position: relative;
	width: 100%;
	background: transparent;
	overflow: hidden;
	z-index: 100;
}


/* ---  logo  --- */
.header-logo {
	position: fixed;
	left: 0;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0;
	padding: 0;
	width: 300px;
	height: 90px;
	z-index: 150;
}
.header-logo img {
	display: block;
	margin: 0 auto;
	width: 100%;
}
@media screen and (max-width: 768px) {
	header {
		height: calc(60px + 1rem);
		background: #FFF;
	}
	.header-logo {
		position: absolute;
		left: 0;
		top: 0;
		width: auto;
		height: calc(60px + 1rem);
	}
	.header-logo img {
		width: auto;
		height: calc(60px + 1rem);
	}
}


/* ---  navbtn  --- */
.navbtn {
	position: fixed;
	right: .5rem;
	top: .6rem;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #000;
	cursor: pointer;
	z-index: 300;
}
.navbtn-box {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	width: 60px;
	height: 60px;
	border-radius: 30px;
	background: #FFF;
	transition: .4s;
}
.navbtn-box span {
	display: block;
	width: 30px;
	height: 2px;
	background: #000;
	transition: .4s;
}

/*menu-open*/
.menu-open .navbtn .navbtn-box::after {
	content: "CLOSE";
	position: absolute;
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
	font-size: .8rem;
	font-weight: bold;
}
.menu-open .navbtn .navbtn-box  span:nth-child(1) {
	transform: translateY(4px) rotate(-45deg);
}
.menu-open .navbtn .navbtn-box  span:nth-child(2) {
	opacity: 0;
}
.menu-open .navbtn .navbtn-box  span:nth-child(3) {
	transform: translateY(-14px) rotate(45deg);
}


/* ---  gnavi  --- */
.gnav {
	position: fixed;
	right: -100%;
	top: 0;
	display: flex;
	justify-content: center;
	flex-direction: column;
	width: 100vw;
	height: 100%;
	background: #FFF;
	visibility: hidden;
	transition: .4s;
	overflow-y: auto;
}
.menu-open .gnav {
	right: 0;
	visibility: visible;
	z-index: 200;
	background: #f8f7f5;
	min-height: 650px;
}

/*gnav-logo*/
.gnav-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	width: 290px;
	height: auto;
	transition: .4s;
}
.gnav-logo .imgwrap {
	margin:0 auto;
	display: block;
	width: 100%;
}
@media screen and (max-width: 768px) {
	.gnav-logo {
		position: absolute;
		left: 0;
		top: 0;
		padding-top: .5rem;
		width: 100%;
		height: calc(60px + 1rem);
		background: #FFF;
	}
	.gnav-logo img {
		width: auto;
		height: 60px;
	}
}

/*menu*/
.menu {
	display: flex;
	flex-direction: column;
	margin: 2rem auto -.5rem;
	width: 100%;
}
@media screen and (max-width: 768px) {
	.menu {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 1rem;
		margin: 2rem auto 0;
		padding: 0 2rem;
		width: 100%;
	}
}
.menu-item {
	position: relative;
	margin: 0 0 1rem;
	padding: 0;
	width: 100%;
	height: auto;
	text-align: center;
}
.menu-link {
	position: relative;
	display: inline-flex;
	flex-direction: column-reverse;
	justify-content: center;
	align-items: center;
	padding: .5rem 1rem;
	font-size: .8rem;
	font-weight: bold;
	color: #666;
	transition: .2s;
}
@media screen and (max-width: 768px) {
	.menu-item {
		margin: 0;
		width: calc(50% - .5rem);
	}
	.menu-link {
		display: flex;
		width: 100%;
		border: 1px solid #CCC;
		border-radius: .5rem;
		background: #FFF;
	}
}
.menu-link span::first-letter {
	color: var(--color01);
}
.menu-link span {
	position: relative;
	margin-top: .2rem;
	padding-bottom: .3rem;
	width: 100%;
	font-size: 1.2rem;
	color: #000;
	letter-spacing: .1rem;
	transition: .2s;
}
.menu-link:hover span {
	color: var(--color01);
}
.menu-link .imgwrap {
	width: 50px;
}
@media screen and (max-width: 1100px) {
	.menu-link span {
		font-size: 1.1rem;
	}
}
@media screen and (max-width: 820px) {
	.menu-link span {
		font-size: .7rem;
	}
}
@media screen and (max-width: 768px) {
	.menu-link span {
		font-size: 1.2rem;
	}
}


/*header-fixed*/
@media screen and (min-width: 768px) {
	.header-fixed .navbtn {
		display: none;
	}
	.header-fixed header {
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 110px;
		overflow: hidden;
		z-index: 100;
	}
	.header-fixed .header-inner {
		position: absolute;
		left: 0;
		top: 0;
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin: 0 auto;
		padding: 0 20px;
		width: 100%;
		height: 100%;
		background: #FFF;
	}
	.header-fixed .header-logo {
		position: relative;
		left: auto;
		top: auto;
		width: 350px;
		height: auto;
		border-radius: 0;
		background: transparent;
		font-size: .8rem;
	}
	.header-fixed .header-logo .imgwrap {
		width: 100%;
	}
	.header-fixed .header-logo img {
		width: 100%;
	}
	.header-fixed .gnav {
		position: relative;
		right: auto;
		top: auto;
		justify-content: flex-end;
		align-items: center;
		flex-direction: row;
		width: auto;
		flex: 1;
		background: transparent;
		visibility: visible;
		overflow: hidden;
	}
	.header-fixed .gnav-logo {
		display: none;
	}
	.header-fixed .menu {
		flex-direction: row;
		margin: 0;
		width: auto;
	}
	.header-fixed .menu-item {
		margin: 0 0 0 1.5rem;
		width: auto;
	}
	.header-fixed .menu-item:first-child {
		margin-left: 0;
	}
	.header-fixed .menu-link {
		padding: 1rem .5rem;
	}
}
@media screen and (max-width: 1100px) {
	.header-fixed .header-logo {
		width: 220px;
	}
	.header-fixed .menu-item {
		margin: 0 0 0 .5rem;
	}
}
@media screen and (max-width: 768px) {
	.header-fixed .header-logo {
		width: auto;
	}
	.header-fixed .menu-item {
		margin: 0;
	}
}



/* footer
====================================================*/
.footerwrap {
	width: 100%;
}

/*pagetop*/
.pagetop {
	position: fixed;
	right: .5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	border-radius: 30px;
	background: #FFF;
	cursor: pointer;
	z-index: 1;
}

footer {
	width: 100%;
}
.footer-inner {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 3rem 0;
	width: 100%;
	background: #000;
	color: #FFF;
}
.footer-copy {
	position: relative;
	width: 100%;
	text-align: center;
}
.footer-copy p {
	width: 100%;
}
.footer-copy p.sub {
	margin-top: 1rem;
	font-size: .9rem;
	line-height: 1.2;
}


/* main
====================================================*/
main.main {
	flex: 1;
	margin-top: 110px;
	padding: 0;
}
@media screen and (max-width: 768px) {
	main.main {
		margin-top: 0;
	}
}
section {
	margin: 0 auto 3rem;
	padding: 0 3rem;
}
@media screen and (max-width: 768px) {
	section {
		margin: 0 auto 2rem;
		padding: 0 1rem;
		width: 100%;
		overflow: hidden;
	}
}
.innerbox {
	margin: 0 auto;
	padding: 1rem;
	width: 100%;
	background: #FFF;
	border-radius: .5rem;
}



/* スライダー
====================================================*/
.slider {
	position: relative;
	width: 100%;
	max-height: calc(100vh - 90px);
	min-height:  700px;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}
.mv .slider {
	max-height: none;
	min-height: auto;
	aspect-ratio: auto;
	height: 400px;
}
.slider .swiper-slide {
	position: relative;
	width: 100%;
	height: 100%;
}
.slider .swiper-slide .imgwrap {
	width: 100%;
	height: 100%;
}
.slider .swiper-slide .imgwrap img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.slider .swiper-slide p {
	position: absolute;
	left: 50%;
	bottom: 8.5rem;
	transform: translateX(-50%);
	padding-left: min(5vw,6rem);
	width: 100%;
	font-size: min(5vw,6rem);
	color: #000;
	font-weight: bold;
	text-shadow: 
	white 2px 0px 1px, white -2px 0px 1px,
	white 0px -2px 1px, white -2px 0px 1px,
	white 2px 2px 1px, white -2px 2px 1px,
	white 2px -2px 1px, white -2px -2px 1px,
	white 1px 2px 1px, white -1px 2px 1px,
	white 1px -2px 1px, white -1px -2px 1px,
	white 2px 1px 1px, white -2px 1px 1px,
	white 2px -1px 1px, white -2px -1px 1px,
	white 1px 1px 1px, white -1px 1px 1px,
	white 1px -1px 1px, white -1px -1px 1px;
	z-index: 2;
	letter-spacing: .5vw;
}
.slider .swiper-slide p::first-letter {
	color: var(--color01);
	font-size: min(6vw,8rem);
}
@media screen and (max-width: 768px) {
	.slider {
		aspect-ratio: auto;
		height: 400px;
		min-height: auto;
	}
	.slider .swiper-slide {
		height: 400px;
	}
	.slider .swiper-slide .imgwrap {
		height: 400px;
	}
	.slider .swiper-slide p {
		bottom: 5.5rem;
		padding-left: 2rem;
		font-size: 2rem;
	}
	.slider .swiper-slide p::first-letter {
		font-size: 3rem;
	}
}
@keyframes zoomOut {
	0% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1.0);
	}
}
.swiper-slide-active .zoomout, .swiper-slide-duplicate-active .zoomout, .swiper-slide-prev .zoomout {
	animation: zoomOut 8s linear 0s normal both;
}
@keyframes fadeIn {
	0% {
		opacity: 0;
		filter: blur(300px);
	}
	100% {
		opacity: 1;
		filter: blur(0);
	}
}
.swiper-slide-active p, .swiper-slide-duplicate-active p, .swiper-slide-prev p {
	animation: fadeIn 2s .5s normal both;
}



/* top
====================================================*/
.eye {
	position: relative;
	display: flex;
	flex-direction: column-reverse;
	justify-content: center;
	margin: 0 auto 2rem;
	width: 100%;
	font-weight: bold;
	color: #000;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.eye {
		margin-bottom: .5rem;
	}
}
.eye h1 {
	position: absolute;
	left: 50%;
	bottom: 4rem;
	transform: translateX(-50%);
	width: 70%;
	max-width: 600px;
	z-index: 2;
}
.eye h1 img {
	width: 100%;
	height: auto;
}
@media screen and (max-width: 768px) {
	.eye h1 {
		width: 90%;
		bottom: 3rem;
	}
}

.catch {
	margin: 4rem auto 3rem;
	width: 100%;
}
.catch p {
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 2;
	text-align: center;
}
.catch p span {
	display: block;
	margin: 1rem auto 0;
}
@media screen and (max-width: 768px) {
	.catch p {
		font-size: 1.2rem;
	}
}


/* contents
====================================================*/
.contents {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: calc(1000px + 6rem);
}
@media screen and (max-width: 768px) {
	.contents {
		padding-top: 1rem;
	}
}
.contents-head {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 1.5rem;
	width: 100%;
	text-align: center;
}
.contents-head .imgwrap {
	margin-top: 1.5rem;
	width: 100px;
}
@media screen and (max-width: 768px) {
	.contents-head .imgwrap {
		margin: .5rem 0 0;
	}
}
.contents-head h1 {
	position: relative;
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0;
	padding: 0 .2rem;
	font-size: 1.5rem;
	font-weight: bold;
	color: #666;
}
.contents-head h1 span {
	position: relative;
	padding-bottom: .5rem;
	width: 100%;
	font-size: 3rem;
	letter-spacing: .1rem;
	color: #000;
}
.contents-head h1 span::first-letter {
	color: var(--color01);
	font-size: 3.5rem;
}
@media screen and (max-width: 768px) {
	.contents-head h1 span {
		font-size: 2rem;
	}
	.contents-head h1 span::first-letter {
		font-size: 2.5rem;
	}
}
.contents-head h2 {
	position: relative;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	margin: 0;
	padding: 0 .2rem;
	font-size: 1.5rem;
	font-weight: bold;
	color: #666;
}
.contents-head h2 span {
	position: relative;
	padding-bottom: .5rem;
	width: 100%;
	font-size: 3rem;
	letter-spacing: .1rem;
	color: #000;
}
.contents-head h2 span::first-letter {
	color: var(--color01);
	font-size: 3.5rem;
}
@media screen and (max-width: 768px) {
	.contents-head h2 span {
		font-size: 2rem;
	}
	.contents-head h2 span::first-letter {
		font-size: 2.5rem;
	}
}
.contents-head p {
	margin-top: 1.5rem;
}

.contents-more {
	text-align: center;
}
.contents-more a {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 2rem auto 1rem;
	width: 250px;
	height: 50px;
	border-radius: 25px;
	border: 2px solid #000;
	font-weight: bold;
}
@media screen and (max-width: 768px) {
	.contents-more a {
		margin: 1rem auto;
	}
}
.contents-more a:hover {
	background: var(--color01);
	color: #000;
}

.access {
	margin: 0 auto 3rem;
	max-width: 1000px;
}
@media screen and (max-width: 768px) {
	.access {
		padding: 0 1rem;
	}
}

.guideline {
	display: flex;
	justify-content: center;
	margin: 0 0 3rem;
}
.guideline a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 300px;
	height: 50px;
	background: #FFF;
	border-radius: .5rem;
	border: 1px solid #000;
	font-weight: bold;
}
.guideline a:hover {
	background: rgba(99,190,172,.5);
	color: #000;
}

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




/* item
====================================================*/
.item-list {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: -.5rem;
}
.item {
	display: flex;
	flex-direction: column;
	margin: .5rem;
	padding: 0 0 .5rem;
	width: calc(33.33% - 1rem);
	border-radius: .5rem;
	background: #FFF;
	overflow: hidden;
	transition: .2s;
}
.item:hover {
	box-shadow: .3rem .3rem 0 0 var(--color01);
}
@media screen and (max-width: 900px) {
	.item {
		width: calc(50% - 1rem);
	}
}
@media screen and (max-width: 768px) {
	.item {
		margin: .5rem 0;
		width: 100%;
	}
}
.item a {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	color: #000;
}
.item .imgWrap {
	width: 100%;
	aspect-ratio: 16 / 9;
}
.item .imgWrap img {
	object-fit: cover;
	aspect-ratio: 16 / 9;
	width: 100%;
	height: 100%;
}
.item .item-title {
	margin: 1rem 0;
	padding: 0 1rem;
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 1.2;
	transition: .2s;
}
.item:hover .item-title {
	color: var(--color01);	
}
.item p {
	display: flex;
	margin-bottom: .5rem;
	padding: 0 1rem;
}
.item p span {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-right: .5rem;
	width: 60px;
	height: 20px;
	border-radius: .2rem;
	font-size: .8rem;
	font-weight: bold;
	color: #FFF;
}
.item p span.day {
	background: #ff4d4d;
}
.item p span.night {
	background: #7158e2;
}
.item .item-plan {
	display: block;
	margin-top: -.5rem;
	margin-bottom: .5rem;
	text-align: right;
}
.item .item-plan span {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	padding: .2rem .5rem 0;
	width: auto;
	height: auto;
	border: 1px solid #CCC;
	border-radius: .2rem;
	font-size: .8rem;
	font-weight: bold;
	color: var(--color01);
	line-height: 1;
	letter-spacing: .1rem;
}
.item .item-plan span::before {
	content: "";
	margin-bottom: .2rem;
	margin-right: .5rem;
	width: 1.2rem;
	height: 1.2rem;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url("../asset/img/icon_plan.svg");
}
.item dl {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	padding: 0 .5rem;
	line-height: 1.2;
}
.item dt {
	display: flex;
	align-items: center;
	padding: .2rem .5rem 0;
	width: 100%;
	border-top: 1px dotted #CCC;
	font-size: .8rem;
	font-weight: bold;
	color: #666;
}
.item dt span {
	margin-right: .2rem;
	font-family: 'Material Icons Round';
	font-size: 1.2rem;
	color: #bcb08a;
}
.item dd {
	padding: 0 .5rem .2rem 2rem;
	width: 100%;
}
.item .linkWrap {
	display: flex;
	align-items: center;
	margin: .5rem -.5rem 1rem 0;
	padding: 0 1rem;
}
.item .linkWrap a {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: .5rem;
	width: calc(50% - .5rem);
	height: 30px;
	border-radius: .2rem;
	background: #000;
	color: #FFF;
	transition: .2s;
}
.item .linkWrap a:hover {
	background: var(--color02);
}



/* スポット　詳細
====================================================*/
/* ---  見出し  --- */
.spot_detail {
	display: flex;
	flex-direction: column;
	margin-bottom: 1rem;
	padding-top: 1.5rem;
	width: 100%;
	max-width: calc(1000px + 6rem);
}
@media screen and (max-width: 768px) {
	.spot_detail {
		padding: 20px 10px 0;
	}
}

.spot_detail-header {
	position: relative;
	margin-bottom: 1rem;
	padding-top: .3rem;
}
.spot_detail-cat {
	position: absolute;
	left: -1.5rem;
	top: 0rem;
	display: inline-flex;
	justify-content: center;
	padding: .8rem 0;
	width: 90px;
	background: var(--color01);
	color: #FFF;
	font-size: .8rem;
	font-weight: bold;
	letter-spacing: 1px;
}
.spot_detail-cat::before {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	border: none;
	border-bottom: solid 8px transparent;
	border-right: solid .5rem rgb(149, 158, 155);
}
@media screen and (max-width: 768px) {
	.spot_detail-cat {
		padding: .4rem 0;
	}
}
.spot_detail-title {
	padding: 0 0 1rem 75px;
	width: 100%;
	border-bottom: 1px solid #CCC;
	font-size: 1.7rem;
	font-weight: bold;
	line-height: 1.2;
}
@media screen and (max-width: 768px) {
	.spot_detail-title {
		padding: 1.8rem 0 .5rem;
		font-size: 1.5rem;
	}
}

/*画像*/
.spot_detail-image {
	display: flex;
}

/*スライダー*/
.spot_detail .slide-wrap {
	position: relative;
	flex: 1;
	overflow: hidden;
}
@media screen and (max-width: 768px) {
	.spot_detail .slide-wrap {
		width: 100%;
		padding-bottom: 2rem;
	}
}
.spot_detail .swiper-slide {
	position: relative;
	padding-top: 75%;
	width: 100%;
	height: 0;
	background: #EAEAEA;
}
.spot_detail .swiper-slide img {
	position: absolute;
	left: 0;
	top: 0;
	object-fit: contain;
	object-position: center center;
	width: 100%;
	height: 100%;
}
.spot_detail .swiper-button-next,
.spot_detail .swiper-button-prev {
	display: none;
}
.spot_detail .swiper-button-next::after,
.spot_detail .swiper-button-prev:after {
	color: #000;
}
@media screen and (max-width: 768px) {
	.spot_detail .swiper-button-next,
	.spot_detail .swiper-button-prev {
		display: flex;
		
	}
	.spot_detail .swiper-button-next::after,
	.spot_detail .swiper-button-prev:after {
		margin-top: -1rem;
		font-size: 2rem;
	}
}
.spot_detail .swiper-pagination {
	display: none;
	bottom: 0;
}
@media screen and (max-width: 768px) {
	.spot_detail .swiper-pagination {
		display: block;
	}
}
.spot_detail .swiper-pagination-bullet {
	width: 1rem;
	height: 1rem;
	background: #CCC;
	opacity: 1;
}
.spot_detail .swiper-pagination-bullet-active {
	background: var(--color01);
}

/*サムネイル*/
.thumb-list {
	display: flex;
	flex-direction: column;
	padding-left: 1rem;
	width: calc(160px + 1rem);
}
@media screen and (max-width: 768px) {
	.thumb-list {
		display: none;
	}
}
.thumb-list li {
	margin-bottom: .5rem;
	width: 160px;
	height: 120px;
}
.thumb-list li img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

/*説明文*/
.spot_detail-content {
	margin-top: 1rem;
	font-size: 1.1rem;
	line-height: 1.4;
}


/* ---  INFO  --- */
.spot_info {
	display: flex;
	flex-direction: column;
	padding-top: 1.5rem;
	width: 100%;
	max-width: calc(1000px + 6rem);
	text-align: center;
}
@media screen and (max-width: 768px) {
	.spot_info {
		padding: 10px 10px 0;
	}
}
.spot_info .innerbox {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
.info-head {
	margin-bottom: 1.5rem;
	width: 100%;
}
@media screen and (max-width: 768px) {
	.info-head {
		margin-bottom: .2rem;
	}
}
.spot_info-title {
	display: inline-flex;
	align-items: center;
	margin: 0;
	padding: 0 .2rem;
	height: 2rem;
	background: linear-gradient(transparent 70%, var(--color01) 0%);
	font-weight: bold;
	font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
	.spot_info-title {
		margin: 0 auto 1rem;
	}
}
.spot_info-data {
	display: flex;
	flex-wrap: wrap;
	padding: 0 .5rem;
	width: calc(50% - .5rem);
	border: 1px solid #CCC;
	line-height: 1.4;
	text-align: left;
}
@media screen and (max-width: 768px) {
	.spot_info-data {
		width: 100%;
	}
}
.spot_info-data dt {
	padding: 1rem .5rem;
	width: 100px;
	border-bottom: 1px dashed #CCC;
	font-weight: bold;
}
@media screen and (max-width: 768px) {
	.spot_info-data dt {
		padding: .5rem .5rem .2rem;
		width: 100%;
		border-bottom: none;
	}
}
.spot_info-data dd {
	padding: 1rem .5rem;
	width: calc(100% - 100px);
	border-bottom: 1px dashed #CCC;
}
@media screen and (max-width: 768px) {
	.spot_info-data dd {
		padding: 0 .5rem .5rem;
		width: 100%;
	}
}
.spot_info-data > dd:nth-last-child(1),
.spot_info-data > dt:nth-last-child(2) {
	border-bottom: none;
}
.spot_info-data dd a:hover {
	text-decoration: underline;
}


/*地図*/
.spot_info-map {
	width: calc(50% - .5rem);
	height: 500px;
}
@media screen and (max-width: 768px) {
	.spot_info-map {
		margin-top: 1rem;
		width: 100%;
		height: 300px;
	}
}
.spot_info-map .mapwrap {
	width: 100%;
	height: 100%;
}
.spot_info-map iframe {
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 768px) {
	.spot_info .contents-more a {
		margin-top: 2.5rem;
	}
}



/*イメージ動画*/
.movie .contents-head h2 {
	font-size: 1.2rem;
	line-height: 1.2;
}
.movie .youtube {
	
}
.movie .youtube iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
}
.movie .location {
    padding: 1rem;
    width: 100%;
    background: #FFF;
    border-radius: .5rem;
}
.movie .location p {
	margin: 0 0 1rem;
	text-align: center;
	font-weight: bold;
	font-size: 1.2rem
}
.movie .location ul {
	display: flex;
	flex-direction: column;
}
.movie .location li {
	padding: 1rem;
	width: 100%;
	border-top: 1px dashed #CCC;
}
.movie .location li:last-child {
	border-bottom: 1px dashed #CCC;
}
.movie .location a {
	display: flex;
	align-items: center;
}
.movie .location a::after {
	content: "attach_file";
	display: inline-block;
	margin-left: .2rem;
	font-family: 'Material Icons Round';
	color: #666;
	transform: rotate(45deg);
}

.movie-item:not(:last-child) {
	margin-bottom: 2rem;
}
.movie-item {
	display: flex;
	gap: 1rem;
	padding: 1rem;
	background: #FFF;
	border-radius: .5rem;
}
@media screen and (min-width: 768px) {
	.movie-item .youtube {
		width: 65%;
	}
	.movie-item .location {
		flex: 1;
	}
}
@media screen and (max-width: 768px) {
	.movie-item {
		flex-direction: column;
	}
	.movie .location {
		padding: 0;
	}
}



/* ---  詳細 お知らせ  --- */
.spot_news {
	display: flex;
	flex-direction: column;
	margin-bottom: 1rem;
	padding-top: 1.5rem;
	width: 100%;
	max-width: calc(1000px + 6rem);
	text-align: center;
}
@media screen and (max-width: 768px) {
	.spot_news {
		padding: 10px 10px 0;
	}
}
.spot_news-ttl {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: .5rem;
	font-size: 1.2rem;
	font-weight: bold;
	border-bottom: 2px dotted #CCC;
	line-height: 1.2;
}
.spot_news-ttl span {
	padding-left: .5rem;
	font-size: 1.1rem;
}
.spot_news-ttl::before {
	content: "";
	margin-right: .3rem;
	width: 2.5rem;
	height: 2.5rem;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url("../asset/img/icon_news.png");
}
.spot_news .innerbox div {
	padding: 1rem .5rem 0;
	text-align: left;
}
.spot_news .innerbox div p {
	margin-bottom: .5rem;
	font-size: .9rem;
}
.spot_news .innerbox div dl {
	line-height: 1.2;
}
.spot_news .innerbox div dt {
	font-weight: bold;
	font-size: 1.1rem;
}
.spot_news .innerbox div dd {
	margin-top: .5rem;
}
.spot_news .innerbox div dd a {
	text-decoration: underline;
	color: var(--color01);
}
@media screen and (max-width: 768px) {
	.spot_news-ttl {
		flex-direction: column;
	}
	.spot_news-ttl span {
		margin-top: .2rem;
		padding: 0;
	}
	.spot_news-ttl::before {
		margin-right: 0;
		margin-bottom: .2rem;
	}
}


/* ---  詳細 オリジナルプラン  --- */
.spot_plan {
	display: flex;
	flex-direction: column;
	margin-top: 3rem;
	margin-bottom: 1rem;
	padding-top: 1.5rem;
	width: 100%;
	max-width: calc(1000px + 6rem);
	text-align: center;
	overflow: visible;
}
@media screen and (max-width: 768px) {
	.spot_plan {
		padding: 10px 10px 0;
	}
}
.spot_plan .innerbox {
	position: relative;
	background: var(--color01);
}
.spot_plan .innerbox::before {
	content: "";
	position: absolute;
	top: -3rem;
	left: 50%;
	transform: translateX(-50%);
	width: 6rem;
	height: 6rem;
	border-radius: 3rem;
	background: var(--color01);
}
.spot_plan .innerbox::after {
	content: "";
	position: absolute;
	top: -2.6rem;
	left: 50%;
	transform: translateX(-50%);
	width: 5.2rem;
	height: 5.2rem;
	border-radius: 2.6rem;
	background-color: #FFF;
	background-position: center;
	background-size: 80%;
	background-repeat: no-repeat;
	background-image: url("../asset/img/icon_plan.svg");
}
.spot_plan-ttl {
	padding-top: 2.2rem;
	color: #FFF;
	font-weight: bold;
	font-size: 1.8rem;
}
.spot_plan-ttl span {
	padding-left: .5rem;
}
.spot_plan .innerbox div {
	margin-top: 1rem;
	padding: 1.5rem;
	border-radius: .4rem;
	background: #FFF;
	line-height: 1.2;
}
.spot_plan .innerbox div .plan-ttl {
	padding-top: .5rem;
	color: var(--color01);
	font-size: 1.4rem;
	font-weight: bold;
}
.spot_plan .innerbox div ul {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 2px dotted var(--color01);
}
.spot_plan .innerbox div li {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 1.1rem;
}
.spot_plan .innerbox div li + li {
	margin-top: 1rem;
}
.spot_plan .innerbox div li::before {
	margin-bottom: .5rem;
	padding: .2rem .5rem;
	width: 80px;
	border: 1px solid var(--color01);
	font-size: .8rem;
}
.spot_plan .innerbox div li.plan-use::before {
	content: "利用条件";
}
.spot_plan .innerbox div li.plan-date::before {
	content: "利用期限";
}
@media screen and (max-width: 768px) {
	.spot_plan {
		margin-top: 4rem;
	}
	.spot_plan-ttl {
		display: flex;
		flex-direction: column;
	}
	.spot_plan-ttl span {
		padding: .2rem 0 0;
	}
	.spot_plan .innerbox div ul {
		padding-top: 1rem;
	}
}


/* ---  トップ　お知らせ  --- */
.news {
	padding: 1rem;
	max-width: 1000px;
	width: 100%;
	background: #FFF;
	border-radius: .5rem;
}
.news .news-head p {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 1rem;
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 1.2;
}
.news .news-head p::before {
	content: "";
	margin-right: .3rem;
	width: 2.5rem;
	height: 2.5rem;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url("../asset/img/icon_news.png");
}

.news .news-list li {
	display: flex;
	padding: .3rem 1rem .5rem;
	border-bottom: 2px dotted #CCC;
}
.news .news-list li:first-child {
	border-top: 2px dotted #CCC;
}
.news .news-list li a {
	display: flex;
	width: 100%;
	color: #000;
}
.news .news-list li p {
	width: 130px;
	font-size: .9rem;
	line-height: 28px;
}
.news .news-list li dl {
	flex: 1;
	line-height: 1.2;
}
.news .news-list li dt {
	display: flex;
	align-items: center;
	margin-bottom: .2rem;
	height: 28px;
	font-weight: bold;
	font-size: .9rem;
}
.news .news-list li dt:not(.info_fs)::before {
	content: "";
	margin-right: .2rem;
	width: 1.5rem;
	height: 1.5rem;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
.news .news-list li dt.info_spot::before {
	background-image: url("../asset/img/icon_spot.png");
}
.news .news-list li dt.info_activity::before {
	background-image: url("../asset/img/icon_activity.png");
}
.news .news-list li dt.info_drive::before {
	background-image: url("../asset/img/icon_drive.png");
}
.news .news-list li dt.info_restaurant::before {
	background-image: url("../asset/img/icon_restaurant.png");
}
.news .news-list li dt.info_shop::before {
	background-image: url("../asset/img/icon_shop.png");
}
.news .news-list li dt.info_stay::before {
	background-image: url("../asset/img/icon_stay.png");
}

.news .news-list li a:hover dd {
	color: var(--color01);
}
@media screen and (max-width: 768px) {
	.news {
		width: calc(100% - 20px);
	}
	.news .news-list li {
		flex-direction: column;
		padding: .5rem;
	}
	.news .news-list a {
		flex-direction: column;
	}
}
.news-body > p {
	text-align: center;
}




/* ---  グルメガイド  --- */
.gourmet_guide {
	display: flex;
	flex-direction: column;
	padding-top: 1.5rem;
	text-align: center;
}
.gg-header {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.gg-header h1 {
	display: inline-block;
	margin: 1rem auto;
	padding: 0 .5rem;
	font-size: 3rem;
	font-weight: bold;
	letter-spacing: .1rem;
	background: linear-gradient(transparent 70%, var(--color01) 0%);
}
.gg-header h1 span {
	padding-right: .8rem;
}
.gg-header h2 {
	color: #666;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.2;
}
.gg-header p {
	margin: 1.5rem 0;
	line-height: 1.4;
}
.gg-img img {
	width: 100%;
}
.gg-body {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.gg-location {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.gg_loc-item {
	display: flex;
	flex-direction: column;
	gap: .5rem;
}
.gg-body h3 {
	display: inline-block;
	margin: 2rem auto 0;
	padding: 0 .2rem;
	font-size: 1.5rem;
	font-weight: bold;
	background: linear-gradient(transparent 60%, var(--color01) 0%);
}
.gg-body h4 {
	font-weight: bold;
	font-size: 1.2rem;
}
.gg-body p {
	font-weight: bold;
}
.gg-body dl {
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid var(--color01);
	text-align: left;
}
.gg-body dt {
	padding: .5rem;
	width: 40%;
	border: 1px solid var(--color01);
	border-top: none;
	border-right: none;
}
.gg-body dd {
	padding: .5rem;
	width: 60%;
	border: 1px solid var(--color01);
	border-top: none;
}
.gg-body dt:nth-child(4n-1), .gg-body dd:nth-child(4n) {
	background: #fef9fb;
}
@media screen and (max-width: 768px) {
	.gourmet_guide {
		padding: 20px 10px 0;
	}
	.gg-header h1 {
		display: flex;
		flex-direction: column;
		background: linear-gradient(transparent 80%, var(--color01) 0%);
	}
	.gg-header h1 span {
		display: block;
		margin-bottom: .3rem;
		padding: 0;
		font-size: 2rem;
	}
	.gg-header h2 {
		font-size: 1.4rem;
	}
	.gg-header p {
		margin: .5rem 0 2rem;
	}
}


/* ==========================================================
   スマホ：ファーストビューを1画面に収める調整（2026/07/31）
   ----------------------------------------------------------
   ▼ 詰め具合はこの2つの数値で調整できます
   　 .mv .slider の height … メインビジュアルの高さ
   　 .catch p の font-size … キャッチコピーの文字サイズ
   ========================================================== */
@media screen and (max-width: 768px) {

	/* メインビジュアル：固定400px → 画面高さに対する比率へ */
	.mv .slider,
	.mv .slider .swiper-slide,
	.mv .slider .swiper-slide .imgwrap {
		height: 32svh;
		min-height: 200px;
		max-height: 340px;
	}
	@supports not (height: 1svh) {
		.mv .slider,
		.mv .slider .swiper-slide,
		.mv .slider .swiper-slide .imgwrap {
			height: 32vh;
		}
	}
	.eye { margin-bottom: 0; }
	.eye h1 { bottom: 1rem; width: 88%; }
	/* スライダー内のコピー（食べてもいい。等）も比率に合わせる */
	.mv .slider .swiper-slide p { bottom: 3.4rem; font-size: 1.6rem; }
	.mv .slider .swiper-slide p::first-letter { font-size: 2.2rem; }

	/* キャッチコピー */
	.catch { margin: 1.2rem auto; }
	.catch p { font-size: 1rem; line-height: 1.7; }
	.catch p span { margin-top: .5rem; }

	/* プランバナー */
	.planbnr { margin-bottom: 1.2rem; }
	.planbnr a { padding: .8rem 2rem .8rem 1rem; }
}

/* ==========================================================
   TOPへ戻るボタンとフローティングバナーの重なり回避
   ----------------------------------------------------------
   .pagetop の bottom は common.js が動的に書き換えるため、
   干渉しない transform でずらしています。
   ========================================================== */
.pagetop {
	z-index: 1001;
	transition: transform .3s;
}
body.has-floating-bnr .pagetop {
	transform: translateY(-104px);
}
@media screen and (max-width: 768px) {
	body.has-floating-bnr .pagetop {
		transform: translateY(-86px);
	}
}
