@charset "UTF-8";
.opening {
	position: fixed;
  	inset: 0;
  	background: #186E9B;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	z-index: 99999;
  	opacity: 1;
  	transition: opacity 1.4s ease;
}

.opening.hide {
	opacity: 0;
  	pointer-events: none;
}

.opening-logo img {
	width: 300px;
  	opacity: 0;
  	animation: fadeInLogo 2.0s ease forwards;
}
@media screen and (max-width: 767.98px) {
	.opening-logo img {
		width: 140px;
	}
}
@keyframes fadeInLogo {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* ==============================
  MV
============================== */
.mvbox{
    --header-h: 10rem;
    position: relative;
    width: 100%;
    margin-top: var(--header-h);
    height: calc(100vh - var(--header-h));
    overflow: hidden;
}
@media screen and (max-width:1024px){
    .mvbox{
        --header-h: 8rem;
        height: 450px;
    }
}
@media screen and (max-width:767.98px){
    .mvbox{
        --header-h: 6rem;
        height: 350px;
        overflow: hidden;
    }
}

.mvbox__visual{
    position: absolute;
    inset: 0;
    background-image: url("../img/index/img_mv2026_pc.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 1;
}
@media screen and (max-width:767.98px){
    .mvbox__visual{
    	background-image: url("../img/index/img_mv2026_sp.jpg");
        background-size: 100%;
    }
}

.mvbox__wrap{
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}
@media screen and (max-width:767.98px){
    .mvbox__wrap{
        height: 100%;
        position: relative;
        z-index: 1;
    }
}

.mv-info{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-color: #186E9B;
    padding: 1.5rem 0;
    z-index: 2;
}
@media screen and (max-width:767.98px){
    .mv-info{
        position: absolute;
        left: 0; 
        right: 0;
        bottom: 0;
        padding: 1.5rem 0;
        z-index: 2;
    }
}

.mv-info .container{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0;
}
@media screen and (max-width:767.98px){
    .mv-info .container{
        padding: 0;
    }
}

.mv-info-item{
    position: relative;
    display: flex;
    color: #FFF;
    font-size: 1.6rem;
    padding: 0 1.5rem;
}
@media screen and (max-width:767.98px){
  .mv-info-item{
      text-align: center;
      font-size: 1.2rem;
      padding: 0 0.8rem;
  }
}

.mv-info-item::after{
  content: "";
  width: 0.1rem;
  height: 1.8rem;
  background-color: #FFF;
  position: absolute;
  right: 0;
  top: calc((100% - 1.8rem) / 2);
}
.mv-info-item:last-of-type::after {
    content: none;
}
@media screen and (max-width:767.98px){
    .mv-info-item::after{
        content: none;
    }
}

.mv-info-item p > span{
    display: inline-block;
    margin-right: 1rem;
}

@media screen and (max-height:520px){
    .mvbox{
        min-height: 520px;
        height: auto;
    }
}

/* ==============================
  News section
============================== */

.section-news .btnbox {
    margin-top: 6rem;
    text-align: center;
}
@media screen and (max-width:767.98px){
    .section-news .btnbox {
        margin-top: 3rem;
    }
}

.news-list-item {
    position: relative;
}

.news-list-item a {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.6rem;
    padding: 1.6rem 3.6rem 1.6rem 0;
    border-bottom: 1px solid #E3E3E3;
}
@media screen and (max-width:767.98px){
    .news-list-item a{
        gap: .8rem;
        padding: 1.2rem 2.6rem 1.2rem 0;
    }
}

.news-list-item a:hover {
    opacity: 0.8;
}

.news-list-item a::before{
    content: "";
    position: absolute;
    top: 50%;
    right: .8rem;
    width: 10px;
    height: 10px;
    border-right: 1px solid #101010;
    border-bottom: 1px solid #101010;
    transform: translateY(-50%) rotate(-45deg);
    transition: transform .2s ease, right .2s ease;
    opacity: .9;
}
@media screen and (max-width:767.98px){
    .news-list-item a::before{
        right: .6rem;
        width: 8px; 
        height: 8px;
    }
}

.news-list-item a:hover::before{
    right: .4rem;
    transform: translateY(-50%) rotate(-45deg) translateX(2px);
}

.news-list-body {
  flex: 1 1 auto;
}

.news-posts-item-head {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 0 0 .2rem;
}
@media screen and (max-width:767.98px){
    .news-posts-item-head { 
        gap: .8rem;
    }
}

.news-posts-item-head .cat{
    display: inline-block;
    background-color: #186E9B;
    border-radius: 1.4rem;
    color: #FFF;
    padding: .5rem 1.2rem;
    font-size: 1.2rem;
    line-height: 1;
}
@media screen and (max-width:767.98px){
    .news-posts-item-head .cat{
        border-radius: 1rem;
        padding: .5rem 1rem 0.3rem;
        font-size: 1rem;
    }
}

/* ==============================
  About section
============================== */

.section-about.sctbox {
    position: relative;
  	overflow: visible;
}

.about-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6rem;
}
@media screen and (max-width:767.98px) {
    .about-inner { 
        flex-direction: column; 
        gap: 2rem;
    }
}

.about-text {
    flex: 1;
    max-width: 680px;
}
@media screen and (max-width:1024px) {
    .about-text {
        max-width: none;
    }
}
@media screen and (max-width:767.98px) {
    .about-text { 
        max-width: 100%;
        order: 2;
    }
}

.about-text h2 {
    margin-bottom: 3rem;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.4;
}
@media screen and (max-width:767.98px) {
    .about-text h2 {
        margin-bottom: 2rem;
        font-size: 2rem;
    }
}

.about-text h2 > span {
    display: block;
    font-size: 4.5rem;
}
@media screen and (max-width:767.98px) {
    .about-text h2 > span {
        font-size: 3rem;
    }
}

.about-text .about-info {
    margin-top: 3rem;
}

.about-text .about-info dl dt {
    margin-bottom: 2rem;
}

.about-text .about-info dl dt > span {
    display: block;
    color: #186E9B;
	font-family: "Roboto", sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}
@media screen and (max-width:767.98px) {
    .about-text .about-info dl dt > span {
        font-size: 2.5rem;
    }
}

.about-text .about-info dl dd {
    display: inline-block;
    background-color: #186E9B;
    border-radius: 1.6rem;
    color: #FFF;
    padding: 1rem;
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: 700;
}
@media screen and (max-width:767.98px) {
    .about-text .about-info dl dd {
        display: block;
        border-radius: 1rem;
        font-size: 1.3rem;
        text-align: center;
    }
}

.about-text .about-info .about-info-add {
    margin: 2rem 0;
}
.about-text .about-info .btnbox {
	text-align: left;
}
@media screen and (max-width:767.98px) {
    .about-text .about-info .btnbox {
        text-align: center;
    }
}

.about-text .about-info .btnbox:last-of-type {
	margin-top: 1rem;
}

.about-photo {
	position: relative;
	flex-shrink: 0;
	width: 760px;
	margin-right: calc((100vw - 100%) / -2);
	z-index: 1;
}

@supports (width: 100svw) {
	.about-photo {
		margin-right: calc((100svw - 100%) / -2);
	}
}
@supports (width: 100dvw) {
	.about-photo {
		margin-right: calc((100dvw - 100%) / -2);
	}
}

@media screen and (min-width:2000px) {
	.about-photo {
		width: 900px;
	}
}
@media screen and (min-width:2400px) {
	.about-photo {
		width: 1040px;
	}
}
@media screen and (max-width:1600px) {
	.about-photo {
		width: 700px;
	}
}
@media screen and (max-width:1440px) {
  .about-photo {
	  width: 640px;
	}
}
@media screen and (max-width:1200px) {
	.about-photo {
		width: 560px;
	}
}
@media screen and (max-width:1024px) {
	.about-photo {
		width: 70%;
	}
}
@media screen and (max-width:767.98px) {
	.about-photo {
		width: 100%;
		margin-right: 0;
		order: 1;
	}
}

.about-photo img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 6rem 0 0 6rem;
	object-fit: cover;
}
@media screen and (max-width:767.98px) {
	.about-photo img {
		border-radius: 2rem;
	}
}

/* ==============================
  Activity section
============================== */

.areamap-fig {
    margin-bottom: 6rem;
}
@media screen and (max-width:767.98px) {
    .areamap-fig {
        margin-bottom: 3rem;
    }
}

.areamap-fig img{
	display: block;
  	width: 100%;
  	height: auto;
  	border-radius: 4rem;
}
@media screen and (max-width:767.98px) {
    .areamap-fig img{
        border-radius: 1.5rem;
    }
}

.activity-list {
    margin-bottom: 6rem;
}
@media screen and (max-width:767.98px) {
    .activity-list {
        margin-bottom: 3rem;
    }
}
.activity-list:last-of-type {
    margin-bottom: 0;
}

.activity-body {
    margin-bottom: 8rem;
}
@media screen and (max-width:767.98px) {
    .activity-body {
        margin-bottom: 4rem;
    }
}

.activity-tablebox {
    margin-bottom: 2rem;
}

.activity-tablebox:last-of-type {
    margin-bottom: 0;
}

.activity-tablebox table {
	width: 100%;
  	border-collapse: collapse;
	table-layout: fixed;
  	text-align: center;
}

.activity-tablebox table thead th {
	background: #186E9B;
  	color: #FFF;
  	font-weight: 400;
  	padding: 1rem;
	text-align: center;
}
@media screen and (max-width:767.98px){
    .activity-tablebox table thead th {
  	    padding: .8rem;
    }
}

.activity-tablebox table tbody th,
.activity-tablebox table tbody td {
	border: 1px solid #E5E5E5;
  	border-top: none;
  	padding: 1rem;
  	background: #FFF;
	text-align: center;
}
@media screen and (max-width:767.98px){
    .activity-tablebox table tbody th,
    .activity-tablebox table tbody td {
  	    padding: .8rem;
    }
}

.activity-tablebox table tbody th {
    background-color: #F4F4F4;
    font-weight: 400;
}

.activity-list-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 2.8rem 6rem;
    align-items: start;
}
@media screen and (max-width:1024px){
    .activity-list-grid{
        grid-template-columns: 1fr 300px;
        gap: 2.4rem 3.2rem;
    }
}
@media screen and (max-width:767.98px){
    .activity-list-grid{
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }
}

.activity-list__lead {
    margin-bottom: 2rem;
}

.activity-list-photo img{
    display:block;
    width:100%;
    height:auto;
    border-radius: 2rem;
}
@media screen and (max-width:767.98px){
    .activity-list-photo img{
        border-radius: 1.5rem;
    }
}

@media screen and (max-width:767.98px){
    #kidsarea .activity-list-body {
        order: 2;
    }
    #kidsarea .activity-list-photo {
        order: 1;
    }
}

.kids-tablebox table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.kids-tablebox table td{
    width: 50%;
    border: 1px solid #E2E2E2;
    padding: 1rem;
    text-align: center;
}
@media screen and (max-width:767.98px){
    .kids-tablebox table td{
        padding: .8rem;
    }
}

#attractionarea .activity-list-grid {
    margin-top: 8rem;
}
@media screen and (max-width:767.98px){
    #attractionarea .activity-list-grid {
        margin-top: 4rem;
    }
}

#attractionarea .activity-list-grid:nth-child(2n) .activity-list-body {
    order: 2;
}
@media screen and (max-width:767.98px){
    #attractionarea .activity-list-grid .activity-list-body {
        order: 2!important;
    }
    #attractionarea .activity-list-grid .activity-list-photo {
        order: 1!important;
    }
}


#attractionarea .activity-list-grid .activity-list-right {
    order: 2;
}

#attractionarea .attraction-title {
    margin-bottom: 1rem;
	font-size: 2rem;
  	font-weight: 700;
}
@media screen and (max-width:767.98px){
    #attractionarea .attraction-title {
	    font-size: 1.6rem;
    }
}

.activity-list-body .price-list:last-of-type {
	margin-top: 6rem;
}
@media screen and (max-width:767.98px){
	.activity-list-body .price-list:last-of-type {
		margin-top: 3rem;
	}
}

/*************************
 Dining section
************************ */
.dining-grid{
	display: grid;
  	grid-template-columns: 1fr 560px;
  	gap: 3.2rem 6rem;
  	align-items: start;
}
@media screen and (max-width:1024px){
	.dining-grid { 
		grid-template-columns: 1fr 340px; 
		gap: 2.4rem 3.2rem; 
	}
}
@media screen and (max-width:767.98px){
	.dining-grid { 
		grid-template-columns: 1fr; 
		gap: 2rem;
	}
}

.dining-item {
    margin-bottom: 3rem;
}
@media screen and (max-width:767.98px){
    .dining-item {
        margin-bottom: 2rem;
    }
}

.dining-item:last-of-type {
    margin-bottom: 0;
}

.dining-item__title{
	font-size: 2rem;
  	font-weight: 700;
  	margin-bottom: .6rem;
}
@media screen and (max-width:767.98px){
	.dining-item__title { 
		font-size: 1.6rem;
	}
}

.dining-item__lead{
    margin-bottom: 2rem;
}
@media screen and (max-width:767.98px){
    .dining-item__lead {
        margin-bottom: 1rem;
    }
}

.dining-tablebox table {
	width: 100%;
  	border-collapse: collapse;
	table-layout: fixed;
  	text-align: center;
}
.dining-tablebox table thead th {
	background: #186E9B;
  	color: #FFF;
  	font-weight: 400;
  	padding: 1rem;
	text-align: center;
}
@media screen and (max-width:767.98px){
    .dining-tablebox table thead th {
  	    padding: 0.8rem;
    }
}

.dining-tablebox table thead th .badge{
	display: inline-block;
  	padding: .2rem .8rem;
  	border: 1px solid rgba(255,255,255,.85);
  	border-radius: 3px;
}

.dining-tablebox table tbody td{
	border: 1px solid #E5E5E5;
  	border-top: none;
  	padding: 1rem;
  	background: #FFF;
}
@media screen and (max-width:767.98px){
    .dining-tablebox table tbody td{
  	    padding: 0.8rem;
    }
}

.dining-note{
	margin-top: 1rem;
    font-size: 1.2rem;
    text-align: right;
}
@media screen and (max-width:767.98px){
    .dining-note{
        font-size: 1rem;
    }
}

.dining-slidebox .slider {
	position: relative;
}

.dining-slidebox .slider .menu-slider-item .menu-text {
	margin-top: 2rem;
	text-align: center;
}

.dining-slidebox .slider .menu-slider-item .menu-img figure{
  	position: relative;
	border-radius: 2rem;
	overflow: hidden;
}

.dining-slidebox .slider .menu-slider-item .menu-img figure img{
	width: 100%;
	display: block;
	object-position: center center;
}

@media screen and (min-width: 768px){
	.dining-slidebox .slider .menu-slider-item .menu-img figure img{
		height: 38rem;
		object-fit: cover;
	}
}

@media (max-width: 767.98px) {
	.dining-slidebox .dining-slidebox .menu-img img,
	.dining-slidebox .slider .menu-slider-item .menu-img figure img {
		width: 100%;
		height: auto !important;
		max-height: none !important;
		object-fit: contain;
		display: block;
	}
	.dining-slidebox .slider,
	.dining-slidebox .slick-list,
	.dining-slidebox .slick-track {
		height: auto !important;
	}
	.dining-slidebox { 
		overflow: hidden;
	}
}

/*************************
 Access section
************************ */

.access-grid{
	display: grid;
  	grid-template-columns: 1fr 480px;
  	gap: 3.2rem 4rem;
  	align-items: start;
  	margin-bottom: 3rem;
}
@media screen and (max-width:1024px){
	.access-grid { 
		grid-template-columns: 1fr 300px; 
		gap: 2.4rem;
	}
}
@media screen and (max-width:767.98px){
	.access-grid { 
		grid-template-columns: 1fr; 
		gap: 1.6rem; 
	}
}

.access-lead{
	margin-bottom: 1rem;
}
.access-note{
	margin-top: 2rem;
}

.access-fig img{
	display: block;
  	width: 100%;
  	height: auto;
  	max-width: 480px;
}
@media screen and (max-width:767.98px){
	.access-fig img { 
		max-width: none;
	}
}

.access-map{
	position: relative;
  	width: 100%;
  	height: 300px;
  	overflow: hidden;
}
@media screen and (max-width:767.98px){
	.access-map{
    	height: 220px;
  	}
}
.access-map iframe{
	position: absolute;
  	inset: 0;
  	width: 100%;
  	height: 100%;
}

/*************************
 Faq section
************************ */

.accordion {
	position: relative;
  	width: 100%;
}

.accordion-item {
	background-color: #FFF;
  	border-radius: 2rem;
  	margin-bottom: 2rem;
  	overflow: hidden;
}
@media screen and (max-width: 767.98px) {
	.accordion-item {
  		border-radius: 1rem;
	}
}


.accordion-item:last-of-type {
	margin-bottom: 0;
}

.accordion-title {
	position: relative;
  	display: flex;
  	align-items: center;
  	cursor: pointer;
  	padding: 1.6rem 5.6rem 1.6rem 5.6rem;
  	line-height: 1.6;
  	user-select: none;
}
@media screen and (max-width: 767.98px) {
	.accordion-title {
    	padding: 1.2rem 4.6rem 1.2rem 4.2rem;
  	}
}

.accordion-title::before {
	content: "Q";
  	position: absolute;
  	left: 1.6rem;
  	font-family: "Albert Sans", sans-serif;
  	font-size: 3.7rem;
  	font-weight: 300;
  	line-height: 1;
  	color: #186E9B;
}
@media screen and (max-width: 767.98px) {
	.accordion-title::before {
		left: 1.2rem;
    	font-size: 3rem;
	}
}

.accordion-title .icon {
	position: absolute;
  	right: 2rem;
  	top: 50%;
  	width: 1.8rem;
  	height: 1.8rem;
  	transform: translateY(-50%);
}
@media screen and (max-width: 767.98px) {
	.accordion-title .icon {
    	right: 1.2rem;
    	width: 1.4rem;
    	height: 1.4rem;
  	}
}

.accordion-title .icon::before,
.accordion-title .icon::after {
	content: "";
  	position: absolute;
  	background-color: #101010;
  	border-radius: 1px;
  	transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.3s ease;
}

.accordion-title .icon::before {
	top: 50%;
  	left: 0;
  	width: 100%;
  	height: 2px;
  	transform: translateY(-50%);
}

.accordion-title .icon::after {
	top: 0;
  	left: 50%;
  	width: 2px;
  	height: 100%;
  	transform: translateX(-50%) rotate(0deg);
}

.accordion-title.open .icon::after {
	transform: translateX(-50%) rotate(90deg);
  	opacity: 0;
}

.accordion-title:hover .icon::before,
.accordion-title:hover .icon::after {
	background-color: #186E9B;
}

.accordion-content {
	display: none;
  	background-color: #FFF;
}
.accordion-content-innner {
	position: relative;
  	padding: 2rem 5.8rem 2rem 5.6rem;
}
@media screen and (max-width: 767.98px) {
	.accordion-content-innner {
    	padding: 1.2rem 4.6rem 1.6rem 4.2rem;
  	}
}

.accordion-content-innner::before {
	content: "A";
  	position: absolute;
  	left: 1.6rem;
  	top: 1.6rem;
  	font-family: "Albert Sans", sans-serif;
  	font-size: 3.7rem;
  	font-weight: 300;
  	line-height: 1;
  	color: #186E9B;
}
@media screen and (max-width: 767.98px) {
	.accordion-content-innner::before {
    	left: 1.2rem;
    	top: 1.2rem;
    	font-size: 3rem;
  	}
}

.accordion-content-innner p a {
	color: #186E9B;
	text-decoration: underline;
}