﻿@charset "UTF-8";

#preview-wovn-translate-widget[wovn].type-default.mobile.wovn--position-bottom, #preview-wovn-translate-widget[wovn].type-default.mobile.wovn--position-bottom.wovn--slide-in, #wovn-translate-widget[wovn].type-default.mobile.wovn--position-bottom, #wovn-translate-widget[wovn].type-default.mobile.wovn--position-bottom.wovn--slide-in {
  bottom: 80px;
  display:none!important;
}
#preview-wovn-translate-widget[wovn].type-default.mobile.wovn--position-bottom.wovn--slide-out, #wovn-translate-widget[wovn].type-default.mobile.wovn--position-bottom.wovn--slide-out {
  bottom: -48px;
  display:none!important;
}

/*
#h-header {
  transition: all 0.1s;
}
body.scroll #h-header{
	top: -100%;
}
body.upfixed #h-header{
	top:0%;
}
body.scroll .h-header__logo,
body.scroll .h-header__gnav-link,
body.scroll .h-header__menu{
	display: flex;
}

body.scroll .h-header__gnav-link {
  display: none;
}
*/

.htb-pagetop {
  bottom:2rem;
}

.htb-pagetop {
  bottom: 6rem;
}

@media screen and (max-width: 768px) {
	/*
	body.scroll .h-header__logo img {
		max-width: 130px;
		min-width: 100%;
	}
	*/
	.h-header__cta {
	  display: none;
	}

}




/************************************************

dialog

*************************************************/


/* ダイアログ開時に背景のスクロールを防ぐ */
html:has(dialog[open]) {
  overflow: hidden;
}

/* ダイアログにCSSトランジションを設定 */
dialog{
  transition: 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
/* ダイアログ開時の背景 */
dialog::backdrop {
	background: rgba(0, 0, 0, 0.3);
}

/* ダイアログメニュー */
dialog.js-dialog-menu{
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	width: 50%;
	left: auto;
	margin: 0;
	border: 0;
	outline: 0;
	padding: 0;
}
/* ダイアログメニューの表示前*/
dialog.js-dialog-menu.show-from,
dialog.js-dialog-menu.hide-to{
  translate: 100% 0%;
}
/* ダイアログメニューの表示前、非表示後は背景を透明にする */
dialog.js-dialog-menu.show-from::backdrop,
dialog.js-dialog-menu.hide-to::backdrop{
  opacity: 0;
}

/* ダイアログモーダル
dialog.js-dialog-modal{
  opacity: 1;
}
/* モーダルの表示前、非表示後は下に移動 */
dialog.js-dialog-modal.show-from,
dialog.js-dialog-modal.hide-to {
  opacity: 0;
  translate: 0% 10%;
}

/* モーダルの表示前、非表示後は背景を透明にする */
dialog.js-dialog-modal.show-from::backdrop,
dialog.js-dialog-modal.hide-to::backdrop {
  opacity: 0;
}


.dialog-menu-btn {
	position: relative;
	width: 32px;
	height: 20px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}
.dialog-menu-btn span {
  position: relative;
  width: 32px;
  height: 1px;
  background-color: #000;
  transition: transform .2s cubic-bezier(.27,1.2,.6,1);
}


.dialog_btn {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 30px;
}

.dialog_btn .btn{
	background: transparent;
	border: 1px #644839 solid;
	color: #644839;
}
.dialog_btn .btn:after {
  background-color: #644839;
}

@media (any-hover: hover) {
  .dialog-menu-btn:hover span:nth-child(1) {
	  transform: translateY(3px)
  }
  .dialog-menu-btn:hover span:nth-child(3) {
	  transform: translateY(-3px)
  }
}

.dialog-menu-btn.js-dialog-menu-close{
	background:#000;
	padding: 10px;
	height: 56px;
	width: 56px;
	margin: 0 0 0 auto;
	align-items: center;
}
.dialog-menu-btn.js-dialog-menu-close span {
  position: absolute;
  background-color: #fff;
}
.dialog-menu-btn.js-dialog-menu-close span:nth-child(1) {
   transform: translateY(18px) rotate(-45deg);
}
.dialog-menu-btn.js-dialog-menu-close span:nth-child(2) {
  opacity: 0;
}
.dialog-menu-btn.js-dialog-menu-close span:nth-child(3) {
    transform: translateY(18px) rotate(45deg);
}


.js-dialog-modal {
	padding:00px;
	border-radius: 20px;
	max-width: 480px;
	background:#fff;
	margin:auto;
	width: 90%;
	
	  overflow: visible;
}
.js-dialog-modal .js-dialog-inner {
	display: grid;
	gap: 22px;
	justify-content: center;
	justify-items: center;
	grid-template-columns: 1fr;
}

.js-dialog-modal .js-dialog-inner .head{
font-weight: 500;
  font-size: 18px;
  line-height: 160%;
  text-align: center;
  background: #000;
  color: #fff;
  padding: 16px;
  width: 100%;
  display: flex;
  justify-content: center;
    border-radius: 20px 20px 0 0;
}

.js-dialog-modal .js-dialog-inner .head:before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(/ticket/custom/images/icon/icon_attention_w.svg);
  background-repeat: no-repeat;
  margin-right: 10px;
  display: block;
}

.js-dialog-modal .js-dialog-inner .body {
  padding: 0 1.6rem 3rem;
}
.js-dialog-modal .js-dialog-inner ul{
  list-style: disc;
  margin-left: 25px;
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
}
.js-dialog-modal .js-dialog-inner a{
  text-align:left;
  color: #F26522;
  border-bottom: 1px #F26522 solid;
  text-decoration: none;
  display: inline-block;
}
.js-dialog-modal .js-dialog-inner ul a:after {
  content: "";
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: currentColor;
  background-repeat: no-repeat;
  background-position: center;
  width: 14px;
  height: 14px;
  display: inline-block;
  mask-image: url(data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20123.93%20123.93%22%3E%20%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1-2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%201%22%3E%20%3Cpath%20d%3D%22M61.97%2C0C27.74%2C0%2C0%2C27.74%2C0%2C61.97s27.74%2C61.97%2C61.97%2C61.97%2C61.97-27.74%2C61.97-61.97S96.19%2C0%2C61.97%2C0ZM81.11%2C65.62l-23.24%2C23.24c-1.01%2C1.01-2.33%2C1.51-3.65%2C1.51s-2.64-.5-3.65-1.51c-2.02-2.02-2.02-5.29%2C0-7.3l19.59-19.59-19.59-19.59c-2.02-2.02-2.02-5.29%2C0-7.3s5.29-2.02%2C7.3%2C0l23.24%2C23.24c2.02%2C2.02%2C2.02%2C5.29%2C0%2C7.3Z%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E);
	margin-left:5px;
}



.js-dialog-inner .js-dialog-close {
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 10%;
  text-align: center;
  background: transparent;
  color: #fff;
  padding: 0;
  border-radius: 0;
  margin: 0;
  position: absolute;
  top: -10px;
  right: -10px;
}


/****************************************
js-dialog カスタマイズ
****************************************/


nav >.nav__dialog {
  position: absolute;
  top: 20px;
  right: 10px;
  z-index: 1;
  background: #fff;
  border-radius: 999px;
  padding:10px;
}


.js-dialog-menu-open{
	width: 26px;
	height:26px;
	overflow: hidden;
	justify-content: space-evenly;
}
.dialog-menu-btn.js-dialog-menu-close {
  background:transparent;
}


.js-dialog-menu {
  width: 100%;
}
.dialog-menu-btn span {
  background-color: var(--color-dialog-menu-btn);
}
.dialog-menu-btn.js-dialog-menu-close span {
  background-color: var(--color-dialog-menu-btn);
}

.js-dialog-menu {
background:var(--color-dialog-menu-bg);
}

.js-dialog-menu .body {
  padding: 0 24px;
  width: 100%;
}

.js-dialog-menu .body > ul{
	margin:30px 0 60px;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.js-dialog-menu .body > ul > li{
	border-bottom: 1px #CBE6E4 solid;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}
.js-dialog-menu .body > ul li a,
.js-dialog-menu .body > ul li dt{
	font-weight: 700;
	font-size: 18px;
	line-height: 100%;
	vertical-align: middle;
	color: var(--color-dialog-menu-link);
	text-decoration: none;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	height: 100%;
	background: transparent;
	padding: 0;
	padding-bottom: 24px;
	cursor: pointer;
}

.js-dialog-menu .body > ul > li > ul a,
.js-dialog-menu .body > ul > li > dl dd a{
	font-weight: 500;
	font-size: 13px;
	line-height: 100%;
	vertical-align: middle;
	color: var(--color-black);
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	height: 100%;
}

.js-dialog-menu .body ul > li a:after {
	content: "";
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	background-color: currentColor;
	background-repeat: no-repeat;
	background-position: center;
	width: 16px;
	height: 16px;
	display: block;
	mask-image: url(data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20123.93%20123.93%22%3E%20%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1-2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%201%22%3E%20%3Cpath%20d%3D%22M61.97%2C0C27.74%2C0%2C0%2C27.74%2C0%2C61.97s27.74%2C61.97%2C61.97%2C61.97%2C61.97-27.74%2C61.97-61.97S96.19%2C0%2C61.97%2C0ZM81.11%2C65.62l-23.24%2C23.24c-1.01%2C1.01-2.33%2C1.51-3.65%2C1.51s-2.64-.5-3.65-1.51c-2.02-2.02-2.02-5.29%2C0-7.3l19.59-19.59-19.59-19.59c-2.02-2.02-2.02-5.29%2C0-7.3s5.29-2.02%2C7.3%2C0l23.24%2C23.24c2.02%2C2.02%2C2.02%2C5.29%2C0%2C7.3Z%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E);
}

.js-dialog-menu .body > ul li dt:after {
	content: "";
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	background-color: currentColor;
	background-repeat: no-repeat;
	background-position: center;
	width: 16px;
	height: 16px;
	display: block;
	mask-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2015.5%2015.5%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20none%3B%20stroke%3A%20%23fff%3B%20stroke-linecap%3A%20round%3B%20stroke-linejoin%3A%20round%3B%20stroke-width%3A%201.5px%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1-2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%201%22%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M7.75.75v14%22%2F%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M.75%2C7.75h14%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E');
	color: var(--color-dialog-menu-link);
	position: relative;
	top: 0;
	right:0;
	transform: unset;
}

.js-dialog-menu .body > ul li dt.active:after {
	mask-image:  url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2015.5%201.5%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20none%3B%20stroke%3A%20%23281815%3B%20stroke-linecap%3A%20round%3B%20stroke-linejoin%3A%20round%3B%20stroke-width%3A%201.5px%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1-2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%201%22%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M.75.75h14%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E');
}
.js-dialog-menu .body > ul li dd {
  padding: 0;
  background: transparent;
  border: 0;
}



.js-dialog-menu  .dialog-menu__cta{
  display: grid;
  margin: 0 24px;
  gap: 4px;
  grid-template-columns: 1fr 1fr;
}

nav  {
  position: sticky;
  left: 0px;
  top: 0px;
  z-index: 99;
  opacity: 0;
  transition: all 0.4s;
}
.scroll nav  {
  top: 70px;
  opacity: 1;
  
}
 #princess-anio.upfixed nav  {
  top: 120px;
  opacity:1;
}

nav > .nav__cta{
	diplay:none;
}

.scroll nav > .nav__cta {
  position: fixed;
  right: 0;
  top: auto;
  bottom: 0;
  width: 100%;
	diplay:block;
}

nav > .nav__cta div{
text-align: left;
}
nav > .nav__cta .cta{
	height: auto;
	padding: 1.8rem 1rem;
	background: var(--color-primary-gd);
	border: 0px #d1a537 solid;
	border-right: 0;
	border-radius:9999px;
	color: #fff;
	display: block;
	margin: 0.8rem 2.4rem;
	text-align: center;
}

nav > .nav__cta .cta span{
	letter-spacing: 0.3rem;
	font-weight: 500;
	justify-content: center;
}
#wakuwakupass nav .balloon {
  position: relative;
  display: inline-block;
  margin: 0 0 -2rem 4rem;
  padding: 0 5px;
  width: 40px;
  height: 40px;
  background: #FFEB3B;
  border-radius: 50%;
  box-sizing: border-box;
  text-align: center;
  z-index: 1;
}


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

	.scroll nav {
	}
	.scroll nav > .nav__cta {
	bottom: 2rem;
	}
	nav > .nav__cta div {
      max-width: 480px;
      margin:0 auto;
	}
	.js-dialog-menu-open {
	  width: 36px;
	  height: 36px;
	}
	nav > .nav__cta .cta {
	  padding: 18px 25px;
	}
	.js-dialog-menu {
	width: 450px;
	}
	nav > .nav__cta {
	}
	nav > .nav__cta .cta {
	  color: #fff;
	  display: block;
	      margin: 0 auto;
	          max-width: 480px;
	}
	.scroll  nav > .nav__cta .cta {
    display: flex;
    padding: 22px 25px;
    border: 4px #fff solid;
	  }
	nav > .nav__cta .cta span{
	}
	#wakuwakupass nav .balloon {
	}
}



/************************************************

Hybrid Scroll

*************************************************/


article:not(.sticky) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
}
.horizontal_scroll {
  --sticky-container-height: 100vh;
  height: var(--sticky-container-height);
  min-height: 100vh;
  box-sizing: border-box;
}
.horizontal_scroll .sticky {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}
.horizontal_scroll .scroller {
  display: flex;
  overflow: auto;
}
.horizontal_scroll .scroller.nobar {
  overflow: hidden;
}
.horizontal_scroll .scroller > * {
  flex-basis: 66%;
  flex-shrink: 0;
  aspect-ratio: 4 / 3;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: whitesmoke;
}
.horizontal_scroll .scroller > *:not(:first-child) {
  margin-left: 1%;
}


/************************************************

img

*************************************************/

img {
  object-fit: cover;
  position: relative;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  transition: 0.6s all;
  margin: 0 auto;
  display: block;
}


img.mercisbv {
  margin: 0px 0 0px auto;
  position: absolute !important;
  bottom: 0;
  right: 0;
  aspect-ratio: auto !important;
  width: 76px !important;
  height: auto !important;
  z-index: 1;
  height: auto;
  top: auto;
  padding: 3px;
}

/************************************************

ol li

*************************************************/

ul.asterisk{
	text-align: left;
	font-weight: 400;
	font-size: 13px;
	line-height: 150%;
	letter-spacing: 0;
	gap: 2px;

}
ul.asterisk li:before{
	content: "※";
	display: block;
	left: 0;
	margin: auto;
	padding: 0;
	position: absolute;
	top: 0;
}
ul.asterisk.midpoint li:before{
	content: "・";
}
ul.asterisk.circle li:before{
	content: "●";
}
ul.asterisk li{
	list-style-type: none;
	margin: 0;
	padding: 0 0 0 15px;
	position: relative;
}

dl.table{
	display: grid;
	justify-content: flex-start;
	align-items: start;
	margin: 10px auto;
	position: relative;
	gap: 10px;
	grid-template-columns:auto 1fr;
	width: 100%;
}
dl.table dt{
	width: 100px;
	display: block;
	background:#484747;
	color: #fff;
	border-radius: 5px;
	margin-right: 10px;
	padding: 3px 10px;
	line-height: 1.2;
	text-align: center;
}

/************************************************

.btn 

*************************************************/

.btn {
  background-color: var(--color-orange);
  display: block;
  color: #fff;
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4rem;
    padding: 1.8rem 2rem;
  font-family: YakuHanJP,"Zen Kaku Gothic New", sans-serif;
  border-radius: 9999px;
}

.btn span {
  line-height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn span:after {
  content: "";
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: currentColor;
  background-repeat: no-repeat;
  background-position: center;
  width: 14px;
  height: 14px;
  display: block;
  mask-image: url(data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20123.93%20123.93%22%3E%20%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1-2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%201%22%3E%20%3Cpath%20d%3D%22M61.97%2C0C27.74%2C0%2C0%2C27.74%2C0%2C61.97s27.74%2C61.97%2C61.97%2C61.97%2C61.97-27.74%2C61.97-61.97S96.19%2C0%2C61.97%2C0ZM81.11%2C65.62l-23.24%2C23.24c-1.01%2C1.01-2.33%2C1.51-3.65%2C1.51s-2.64-.5-3.65-1.51c-2.02-2.02-2.02-5.29%2C0-7.3l19.59-19.59-19.59-19.59c-2.02-2.02-2.02-5.29%2C0-7.3s5.29-2.02%2C7.3%2C0l23.24%2C23.24c2.02%2C2.02%2C2.02%2C5.29%2C0%2C7.3Z%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E);
}




/************************************************

オリジナル

*************************************************/


article:not(.sticky) {
  height: auto;
  margin: 0 auto;
}

#c-header{
	background: #fff;
	position: sticky;
	top: 0;
	left: 0;
	z-index:1001;
}

#c-header > section{
	display: grid;
	grid-template-columns: 1fr 1.8fr;
	align-items: center;
}
#c-header > section div{
    padding:5px 5px;
}

#c-header > section div:last-child{
background: #E95612;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding:5px 0;
}
  #c-header img {
    max-width: 350px;
  }
  #c-header div:last-child img {
    max-width: 65%;
  }

#c-body{
	max-width: 750px;
	  order: 2;
}


#c-cta{
	position: sticky;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 2;
	max-width: 750px;
	opacity: 0;
	transition: 0.6s all;
	transform: translateY(100%);
}
body.scroll #c-cta{
	opacity: 1;
	transform: translateY(0%);
}
#c-cta img{
  max-width: 80%;
}


#c-pc-left,
#c-pc-right {
	display: none;

	@media screen and (min-width: 1025px) {
		display: block;
		position: sticky;
		top: 250px;
		top: 128px;
		left: 0;
		height: calc(100vh - 0px);
	}
}
@media screen and (min-width: 1025px) {
	#c-pc-right {
    box-shadow: inset 20px -5px 15px rgb(0 19 127);
	}
	#c-body {
	  border-left: 3px #fff solid;
	  border-right: 3px #fff solid;
	}

}
main {
	@media screen and (min-width: 1025px) {
		display: grid;
		grid-template-columns: 1.2fr clamp(550px, 48vw, 750px) 1.2fr;
		    grid-template-columns: 2.5fr clamp(450px, 38vw, 750px) 2.5fr;
		gap: 0px;
		justify-content: center;
		align-items: start;
	}
}

@media screen and (min-width: 1025px) {
	#c-pc-left section,
	#c-pc-right section{
		display: flex;
		align-content: flex-end;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
		padding: 250px 1.6rem 0;
		height: calc(100% - 150px) ;
	}
	#c-pc-right section {
	}
	#c-pc-right section a{
	  width: 75%;
	  display: block;
	  margin:1.6rem auto 0;
	}
	#c-pc-left{
		order: 1;
	}
	#c-pc-left img{
		max-width: 100%;
	}
	#c-pc-left .c-body-footer__sns {
		margin: 0 auto 40px;
		max-width: 380px;
		width: 100%;
	}
	ul.c-pc__nav{
		display: grid;
		gap: 1.6rem;
		width: 100%;
		width: 70%;
	}
	#c-pc-left ul.c-pc__nav li{
	}
	#c-pc-left ul.c-pc__nav li a{
	    display: block;
	}

	#c-pc-left ul.c-pc__link {
		display: flex;
		gap: 1.6rem;
		font-size: 14px;
		flex-wrap: wrap;
		justify-content: center;
	}

	#c-pc-left ul.c-pc__link li{
	}
	#c-pc-left ul.c-pc__link li a{
		color: #fff;
		text-decoration: none;
		display: flex;
		align-content: center;
		align-items: center;
		gap: 0.8rem;
	}
	#c-pc-left ul.c-pc__link li a span{
		color: #fff;
	}
	#c-pc-left ul.c-pc__link li a:after {
	  content: "/";
	  mask-image: url(data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%205%209%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20none%3B%20stroke%3A%20%23000%3B%20stroke-linecap%3A%20round%3B%20stroke-linejoin%3A%20round%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1-2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%201%22%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M.5%2C8.5l4-4L.5.5%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E);
	  -webkit-mask-repeat: no-repeat;
	  mask-repeat: no-repeat;
	  -webkit-mask-position: center;
	  mask-position: center;
	  -webkit-mask-size: contain;
	  mask-size: contain;
	  background-color: currentColor;
	  background-repeat: no-repeat;
	  background-position: center;
	  width: 10px;
	  height:10px;
	  display: block;
	  margin: 0 auto 0;
	}
	#c-pc-right{
		order: 3;
	}
	#c-pc-right img{
		max-width: 100%;
	}
	#c-pc-right p {
		color:#fff;
		font-size:14px;
		    text-align: right;
		width: 100%;
		margin-top:20px;
	}
	#c-cta{
	display:none;
	}
	.c-body-footer {
	  display: none;
	}

	#c-header > section{
		display: grid;
		grid-template-columns: 1fr 4fr;
	}
	#c-header > section div{
	  padding:5px 10px;
	}
	#c-header > section div:last-child{
	  background: #E95612;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	}
	#c-header div img {
	  max-width:250px;
	}
	#c-header div:last-child img {
	  max-width: 650px;
	}
}

.c-body-app{}



.c-body-section{
	position: relative;
	overflow: hidden;
}
.c-body-section__body{
	position: relative;
}

.c-body-section__inner{
	position: relative;
	padding:0 2.4rem;
}




.c-body-app{
	background-image: url(../img/app/bg.png);
	background-size: cover;
	background-position: center;
	background-color: #fff;
	padding: var(--layout-padding-vertical) var(--layout-padding-horizontal);
}
.c-body-app p{
	font-size: var(--font-size-15-30);
	font-weight: var(--font-weight-bold);
	text-align: center;
	line-height: 140%;
	padding:var(--layout-padding-interval) 0;
}
.c-body-app p span{
	color: var(--color-orange);
}

.c-body-footer{
  background-color: #fff;
	padding: var(--layout-padding-vertical) var(--layout-padding-horizontal);
}


.c-body-footer__inner {
	display: grid;
	gap: var(--layout-padding-horizontal);
	font-size:var(--font-size-12-18);
	text-align: center;
}

.c-body-footer a.logo img{
  max-width: 30%;
}

.c-body-footer__sns {
  display: flex;
  gap: 1.6rem;
  margin: 0 auto;
  justify-content: center;
}
.c-body-footer__sns li {
	width: 14.5%;
}

.c-body-footer__links li {
  text-align: center;
  border-bottom: 1px solid #B3B3B3;
}
.c-body-footer__links li:last-chidl {
  border-bottom:0;
}
.c-body-footer__links li a{
	font-size: var(--font-size-14-20);
	text-decoration: none;
	color: var(--color-black);
	display: block;
	padding:0.5rem;
}

@media screen and (min-width: 1025px) {
}

#p-header{
	background: #FFC80B;
}


#p-header .movie {
  border: 4px #000 solid;
  border-left: 0;
  border-right: 0;
}

#p-header video {
  width: 100%;
}

#p-miffy .attraction{
	background:#005599;
}

#p-miffy .attraction .slider{
	padding:0 var(--layout-padding-3rem);
	position: relative;
}

#p-miffy .attraction .slider .swiper-button-prev::after,
#p-miffy .attraction .slider  .swiper-button-next::after {
  background-image: url(../img/sp/p-miffy/attraction/slider/navigation.svg);
}
#p-miffy .attraction .slider .swiper-button-prev::after {
	transform: rotate(180deg);
}
#p-miffy .attraction .swiper-button-next{
  right:clamp(1.4rem, 1.171rem + 0.48vw, 1.6rem);
}
#p-miffy .attraction .swiper-button-prev {
  left:clamp(1.4rem, 1.171rem + 0.48vw, 1.6rem);
}

#p-miffy .attraction .swiper-button-prev,
#p-miffy .attraction .swiper-button-next {
  height: clamp(3.6rem, -0.514rem + 8.57vw, 7.2rem);
  width: clamp(3.6rem, -0.514rem + 8.57vw, 7.2rem);
  top: 25%;
}
#p-miffy .attraction .swiper-button-prev::after,
#p-miffy .attraction .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: clamp(3.6rem, -0.514rem + 8.57vw, 7.2rem);
  margin: auto;
  width: clamp(3.6rem, -0.514rem + 8.57vw, 7.2rem);
}


#p-miffy .food {
	background:#247033;
}
#p-miffy .food .slider {
  background-image: url(../img/sp/p-miffy/food/slider/bg.png);
  background-size: contain;
  position: relative;
  
}

#p-miffy .food .slider .swiper {
	margin-left:var(--layout-padding-interval);
	padding-left:var(--layout-padding-horizontal);
}

#p-miffy .food .slider .swiper .swiper-slide{
aspect-ratio: 46 / 61;
}

#p-miffy .food .slider .swiper .swiper-slide img{
width: 80%;
  border-radius: clamp(2rem, -0.286rem + 4.76vw, 4rem);
}
#p-miffy .food .slider .swiper .swiper-slide.swiper-slide-active img{
width: 100%;
}

#p-miffy .food .slider .swiper-button-prev::after,
#p-miffy .food .slider .swiper-button-next::after {
	background-image: url(../img/sp/p-miffy/food/slider/navigation.svg);
	transition: 0.6s all;
}
#p-miffy .food .slider .swiper-button-prev:hover::after,
#p-miffy .food .slider .swiper-button-next:hover::after {
  background-image: url(../img/sp/p-miffy/food/slider/navigation_hover.svg);
}
#p-miffy .food .slider .swiper-button-next::after {
	transform: rotate(180deg);
}
#p-miffy .food .swiper-button-next{
  right:clamp(1.4rem, 1.171rem + 0.48vw, 1.6rem);
  right:8%;
}
#p-miffy .food .swiper-button-prev {
	left:clamp(1.4rem, 1.171rem + 0.48vw, 1.6rem);
	left: 70%;
}

#p-miffy .food .swiper-button-prev,
#p-miffy .food .swiper-button-next {
  height: clamp(3.75rem, -0.514rem + 8.57vw, 7.2rem);
  width: clamp(3.75rem, -0.514rem + 8.57vw, 7.2rem);
  top: 92%;
}
#p-miffy .food .swiper-button-prev::after,
#p-miffy .food .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: clamp(3.75rem, -0.514rem + 8.57vw, 7.2rem);
  margin: auto;
  width: clamp(3.75rem, -0.514rem + 8.57vw, 7.2rem);
}


#p-miffy .goods {
	background:#F26522;
}
#p-miffy .goods .slider {
  position: relative;
  
}
#p-miffy .goods .slider > div {
  margin-bottom:clamp(1rem, -0.143rem + 2.38vw, 2rem);
  
}

#p-miffy .goods .slider .swiper-wrapper {
    transition-timing-function: linear;
}


#p-miffy .hotel {
	background:#005599;
}
#p-miffy .hotel .slider {
  background-image: url(../img/sp/p-miffy/hotel/04.png);
  background-size: contain;
  position: relative;
  
}

#p-miffy .hotel .swiper .swiper-slide img{
	aspect-ratio: 213 / 236;
	border:2px #005599 solid;
	border-radius: clamp(2rem, -0.286rem + 4.76vw, 4rem);
}

#p-miffy .hotel .swiper .swiper-slide.swiper-slide-active img{
	border:2px #FFC80B solid;
}

#p-miffy .hotel .slider .swiper-pagination{
	position: relative;
	bottom: 0;
	margin: var(--layout-padding-interval) 0 var(--layout-padding-interval);
}

#p-miffy .hotel .slider .swiper-pagination-bullet {
  width:8x;
  height:8x;
  background:#fff;
  opacity:1;
  margin: 0 0.5rem;
}
#p-miffy .hotel .slider .swiper-pagination-bullet-active {
  opacity:1;
  background:#FFC80B ;
}



#p-miffy .expresspass{
	background:#FFC80B;
}

#p-miffy .expresspass .slider{
	background-image: url(../img/sp/p-miffy/expresspass/03.png);
	background-size: contain;
	padding:0 var(--layout-padding-horizontal);
	position: relative;
}

#p-miffy .expresspass .slider .swiper-button-prev::after,
#p-miffy .expresspass .slider  .swiper-button-next::after {
  background-image: url(../img/sp/p-miffy/expresspass/slider/navigation.svg);
}
#p-miffy .expresspass .slider .swiper-button-prev:hover::after,
#p-miffy .expresspass .slider .swiper-button-next:hover::after {
  background-image: url(../img/sp/p-miffy/food/slider/navigation_hover.svg);
}


#p-miffy .expresspass .slider  .swiper-button-next::after{
	transform: rotate(180deg);
}
#p-miffy .expresspass .swiper-button-next{
  right:19%;
}
#p-miffy .expresspass .swiper-button-prev {
    left: 19%;
}

#p-miffy .expresspass .swiper-button-prev,
#p-miffy .expresspass .swiper-button-next {
  height: clamp(3.6rem, -0.514rem + 8.57vw, 7.2rem);
  width: clamp(3.6rem, -0.514rem + 8.57vw, 7.2rem);
  top: 30%;
}
#p-miffy .expresspass .swiper-button-prev::after,
#p-miffy .expresspass .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: clamp(3.6rem, -0.514rem + 8.57vw, 7.2rem);
  margin: auto;
  width: clamp(3.6rem, -0.514rem + 8.57vw, 7.2rem);
}


#p-miffy .expresspass .slider .swiper-pagination{
	bottom: 28%;
}

#p-miffy .expresspass .slider .swiper-pagination-bullet {
  width:8px;
  height:8px;
  background:#fff;
  opacity:1;
  margin: 0 0.5rem;
}
#p-miffy .expresspass .slider .swiper-pagination-bullet-active {
  opacity:1;
  background:#005599 ;
}



#p-miffy .summer{
	background:#FFC80B;
	  position: relative;
}

#p-miffy .summer .slider{
	background-image: url(../img/sp/summer/02.png);
	background-size:100%;
	position: relative;
	  background-position: bottom;
}

#p-miffy .summer .slider .swiper-pagination{
	position: relative;
	bottom: 0;
	margin: var(--layout-padding-interval) 0 0;
}

#p-miffy .summer .slider .swiper-pagination-bullet {
  width:8x;
  height:8x;
  background:#fff;
  opacity:1;
  margin: 0 0.5rem;
}
#p-miffy .summer .slider .swiper-pagination-bullet-active {
  opacity:1;
  background:#0086B0 ;
}



#p-miffy .summer .movie {
  max-height: 100%;
  width: auto;
  object-fit: cover;
  aspect-ratio: 17 / 25;
  overflow: hidden;
  clip-path: polygon(5% 0, 95% 0, 100% 5%, 100% 95%, 95% 100%, 5% 100%, 0 95%, 0 5%);
  position: absolute;
  bottom: -1%;
  left: 0;
  right: 0;
  margin: 0 var(--layout-padding-horizontal) clamp(8rem, -1.143rem + 19.05vw, 16rem)
}

#p-miffy .summer .movie video {
  width: 100%;
}

#p-miffy .summer .kira_01,
#p-miffy .summer .kira_02{
  position: absolute;
  bottom: 12%;
  z-index: 2;
}
#p-miffy .summer .kira_02{
  bottom: 1%;
}



#p-miffy .fireworks .slider{
	background: #FDFFD0;
	position: relative;
}

#p-miffy .fireworks .slider .swiper-button-prev::after,
#p-miffy .fireworks .slider  .swiper-button-next::after {
  background-image: url(../img/sp/fireworks/navigation.svg);
}
#p-miffy .fireworks .slider .swiper-button-prev:hover::after,
#p-miffy .fireworks .slider .swiper-button-next:hover::after {
  background-image: url(../img/sp/fireworks/navigation.svg);
}


#p-miffy .fireworks .slider  .swiper-button-next::after{
	transform: rotate(180deg);
}
#p-miffy .fireworks .swiper-button-next{

}
#p-miffy .fireworks .swiper-button-prev {

}

#p-miffy .fireworks .swiper-button-prev,
#p-miffy .fireworks .swiper-button-next {
  height: clamp(3.6rem, -0.514rem + 8.57vw, 7.2rem);
  width: clamp(3.6rem, -0.514rem + 8.57vw, 7.2rem);
  top: 40%;
}
#p-miffy .fireworks .swiper-button-prev::after,
#p-miffy .fireworks .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: clamp(3.6rem, -0.514rem + 8.57vw, 7.2rem);
  margin: auto;
  width: clamp(3.6rem, -0.514rem + 8.57vw, 7.2rem);
}


#p-miffy .fireworks .slider .swiper-pagination{
  position: relative;
  margin-top: 30px;
}

#p-miffy .fireworks .slider .swiper-pagination-bullet {
  width:8px;
  height:8px;
  background:#F5DEAA;
  opacity:1;
  margin: 0 0.5rem;
}
#p-miffy .fireworks .slider .swiper-pagination-bullet-active {
  opacity:1;
  background:#FF9503;
}




#p-miffy .hotels{
	background:#fff;
	  position: relative;
}

#p-miffy .hotels .txt{
	background-image: url(../img/sp/hotel/02.png);
	background-size:100%;
	position: relative;
	padding:0 var(--layout-padding-horizontal) var(--layout-padding-3rem);
	  text-align: center;
}


#p-miffy .hotels .txt h3{
  font-size: clamp(2.2rem, 0.143rem + 4.29vw, 4rem);
  text-align: center;
}
#p-miffy .hotels .txt p{
	font-size: clamp(1.5rem, 0.929rem + 1.19vw, 2rem);
	text-align:left;
}

/* 最初から表示されるコンテンツ */
.visible-content {
  display: grid;
  gap: 1.6rem;
}

.visible-contents {
  background: #FFC809;
}

/* 隠れているコンテンツ（初期状態） */
.hidden-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

/* 表示状態のクラス（JavaScriptで付与） */
.show {
	max-height: 1000px; /* コンテンツの最大高さに合わせて調整 */
	max-height: max-content;
	padding:var(--layout-padding-interval) 0 var(--layout-padding-horizontal);
	padding:0;
}

.hidden-content dl{
	text-align: left;
	font-size: clamp(1.5rem, 0.929rem + 1.19vw, 2rem);
	display: grid;
	gap:1.6rem;
}
.hidden-content dt{
  border-bottom: 1px #000 solid;
  padding-top: 1.6rem;
  font-weight: 600;
}
.hidden-content dd{
}
.hidden-content dd small{
	font-size:90%
}

.hidden-content dd a {
  text-align: left;
  color: #864E2E;
  border-bottom: 1px #864E2E solid;
  text-decoration: none;
  display: inline-block;
}
.hidden-content dd a:after {
  content: "";
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: currentColor;
  background-repeat: no-repeat;
  background-position: center;
  width: 14px;
  height: 14px;
  display: inline-block;
  mask-image: url(data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20123.93%20123.93%22%3E%20%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1-2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%201%22%3E%20%3Cpath%20d%3D%22M61.97%2C0C27.74%2C0%2C0%2C27.74%2C0%2C61.97s27.74%2C61.97%2C61.97%2C61.97%2C61.97-27.74%2C61.97-61.97S96.19%2C0%2C61.97%2C0ZM81.11%2C65.62l-23.24%2C23.24c-1.01%2C1.01-2.33%2C1.51-3.65%2C1.51s-2.64-.5-3.65-1.51c-2.02-2.02-2.02-5.29%2C0-7.3l19.59-19.59-19.59-19.59c-2.02-2.02-2.02-5.29%2C0-7.3s5.29-2.02%2C7.3%2C0l23.24%2C23.24c2.02%2C2.02%2C2.02%2C5.29%2C0%2C7.3Z%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E);
  margin-left: 5px;
}


/* もっと見るボタンのスタイル */
.more-button {
	/*
	color: #000;
	border: none;
	padding: 1.6rem 0 0;
	border-bottom: 1px #000 solid;
	cursor: pointer;
	font-size: clamp(1.5rem, 0.929rem + 1.19vw, 2rem);
	transition: background-color 0.3s;
	margin: 0 auto;
	text-align: center;
	*/
	background-image: url(../img/sp/p-miffy/more.svg);
	width: 100%;
	height: var(--layout-btn-more-height);
	background-repeat: no-repeat;
	background-position: center;
	font-size: 0;
	background-size: contain;
}
.more-button:after {
  content: "";
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: currentColor;
  background-repeat: no-repeat;
  background-position: center;
  width: 14px;
  height: 14px;
  display: none;
  mask-image: url(data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20123.93%20123.93%22%3E%20%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1-2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%201%22%3E%20%3Cpath%20d%3D%22M61.97%2C0C27.74%2C0%2C0%2C27.74%2C0%2C61.97s27.74%2C61.97%2C61.97%2C61.97%2C61.97-27.74%2C61.97-61.97S96.19%2C0%2C61.97%2C0ZM81.11%2C65.62l-23.24%2C23.24c-1.01%2C1.01-2.33%2C1.51-3.65%2C1.51s-2.64-.5-3.65-1.51c-2.02-2.02-2.02-5.29%2C0-7.3l19.59-19.59-19.59-19.59c-2.02-2.02-2.02-5.29%2C0-7.3s5.29-2.02%2C7.3%2C0l23.24%2C23.24c2.02%2C2.02%2C2.02%2C5.29%2C0%2C7.3Z%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E);
  margin-left: 5px;
  transform: rotate(90deg);
}

.more-button.is-open {
	background-image: url(../img/sp/p-miffy/more_close.svg);
}
.more-button:hover {
	background-image: url(../img/sp/p-miffy/more_hover.svg);
}

.more-button.is-open:hover  {
	background-image: url(../img/sp/p-miffy/more_close.svg);
}



	
#p-miffy .officialhotel{
	background:#fff;
	  position: relative;
}

#p-miffy .officialhotel .svg{
  width: 70%;
  margin: 0 auto 4rem;
}

#p-miffy .officialhotel .slider{
	position: relative;
}

#p-miffy .officialhotel p {
  font-size: var(--font-size-15-30);
  font-weight: var(--font-weight-bold);
  text-align: left;
  line-height: 140%;
  padding: var(--layout-padding-interval);
}
#p-miffy .officialhotel p span {
  color: var(--color-orange);
}


#p-miffy .officialhotel .slider .swiper-pagination{
	position: relative;
	bottom: 0;
	margin: var(--layout-padding-interval) 0 var(--layout-padding-interval);
}

#p-miffy .officialhotel .slider .swiper-pagination-bullet {
  width:8x;
  height:8x;
  background:#B3B3B3;
  opacity:1;
  margin: 0 0.5rem;
}
#p-miffy .officialhotel .slider .swiper-pagination-bullet-active {
  opacity:1;
  background:var(--color-orange); ;
}

#p-miffy .officialhotel .swiper-button-next,
#p-miffy .officialhotel .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  color: #fff;
}
#p-miffy .officialhotel .swiper-button-next:after,
#p-miffy .officialhotel.swiper-button-prev:after {
  font-size: 38px;
}

.c-body-lp {
	display: flex;
	flex-direction: column;
	width: 100%;
	background: #fff
}
.c-body-lp img {
	display: block;
	width: 100%;
	height: auto;
}
.c-body-lp .lp-row {
	display: flex;
	width: 100%;
}
.c-body-lp .lp-row > div {
	flex: 1;
}


/* アコーディオン */
.lp-accordion {
	width: 100%;
}
.lp-accordion__trigger {
	display: block;
	width: 100%;
	border: none;
	background: none;
	padding: 0;
	cursor: pointer;
}
.lp-accordion__trigger img {
	width: 100%;
	height: auto;
	display: block;
}
.lp-accordion__content {
	width: 100%;
	display: none;
}
.lp-accordion__content img {
	width: 100%;
	height: auto;
	display: block;
}


/* ナイトショー動画重ね合わせ */
.video-overlay-container {
	position: relative;
	width: 100%;
}
.video-overlay-container img {
	display: block;
	width: 100%;
	height: auto;
}
.video-overlay-container img.kira_01 {
  position: absolute;
  top: -130px;
  left: 0;
}
.video-overlay-container img.kira_02 {
position: absolute;
  bottom: -20px;
  right: 20px;
  width: 100px;
  width: 12vh;
}


.video-overlay-container .movie {
  max-height: 94%;
  width: auto;
  object-fit: cover;
  aspect-ratio: 17 / 31;
  overflow: hidden;
  /*
  clip-path:polygon(5% 0, 95% 0, 100% 3%, 100% 97%, 95% 100%, 5% 100%, 0 97%, 0 3%);
  */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.video-overlay-container .movie .overlay-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}


/* モーダル起動ボタン */
.modal-button-container {
	position: relative;
	width: 100%;
	z-index: 5;
}
.modal-button-container > img {
	display: block;
	width: 100%;
	height: auto;
}
.modal-button-container .js-dialog-open {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: auto;
	max-width: 80%;
	display: block;
	cursor: pointer;
	line-height: 0;
}
.modal-button-container .js-dialog-open img {
	display: block;
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
.modal-button-container .js-dialog-open .btn-modal-hover {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.modal-button-container .js-dialog-open:hover .btn-modal-hover {
	opacity: 1;
}

/* ダイアログモーダル */
.c-dialog {
	border: none;
	border-radius:32px;
	padding: 0;
	max-width: 90%;
	width: 750px;
	max-height: 90vh;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
	background: #fff;
	overflow: hidden;
}
.c-dialog::backdrop {
	background: rgba(0, 0, 0, 0.7);
}
.c-dialog__inner {
	position: relative;
	padding: 0px;
	max-height: 90vh;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.c-dialog__close {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 30px;
	height: 30px;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	z-index: 10;
}
.c-dialog__close img {
	width: 100%;
	height: auto;
	display: block;
}

/* モーダル内スライダー */
#p-miffy  {
  background: #247033;
}
#p-miffy .movie {
  margin: 0 3.4rem;
  border-radius: 3rem;
  overflow: hidden;
}

#p-miffy .swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#p-miffy .swiper-miffy-thumb{
  margin: 3rem 2rem 2rem;
}
.thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 1.8rem;
  position: relative;
}
.thumb img{
    opacity: 0.5;
}
.swiper-slide-thumb-active .thumb img {
    opacity: 1;
}

.thumb:before {
    content: "";
    background-image: url(../img/sp/modal/p-miffy/movie/play.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* 最初から表示されるコンテンツ */
.visible-content {
  display: grid;
  gap: 1.6rem;
}

/* 隠れているコンテンツ（初期状態） */
.hidden-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

/* 表示状態のクラス（JavaScriptで付与） */
.show {
	max-height: 1000px;
	padding:var(--layout-padding-interval) 0 var(--layout-padding-horizontal);
}

.hidden-content dl{
	text-align: left;
	font-size: clamp(1.5rem, 0.929rem + 1.19vw, 2rem);
	display: grid;
	gap:1.6rem;
}
.hidden-content dt{
  border-bottom: 1px #000 solid;
  padding-top: 1.6rem;
  font-weight: 600;
}
.hidden-content dd{
}
.hidden-content dd small{
	font-size:90%
}

.hidden-content dd a {
  text-align: left;
  color: #864E2E;
  border-bottom: 1px #864E2E solid;
  text-decoration: none;
  display: inline-block;
}
.hidden-content dd a:after {
  content: "";
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: currentColor;
  background-repeat: no-repeat;
  background-position: center;
  width: 14px;
  height: 14px;
  display: inline-block;
  mask-image: url(data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20123.93%20123.93%22%3E%20%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1-2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%201%22%3E%20%3Cpath%20d%3D%22M61.97%2C0C27.74%2C0%2C0%2C27.74%2C0%2C61.97s27.74%2C61.97%2C61.97%2C61.97%2C61.97-27.74%2C61.97-61.97S96.19%2C0%2C61.97%2C0ZM81.11%2C65.62l-23.24%2C23.24c-1.01%2C1.01-2.33%2C1.51-3.65%2C1.51s-2.64-.5-3.65-1.51c-2.02-2.02-2.02-5.29%2C0-7.3l19.59-19.59-19.59-19.59c-2.02-2.02-2.02-5.29%2C0-7.3s5.29-2.02%2C7.3%2C0l23.24%2C23.24c2.02%2C2.02%2C2.02%2C5.29%2C0%2C7.3Z%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E);
  margin-left: 5px;
}


/* CTAボタン */
.cta-button-container {
	position: relative;
	width: 100%;
	z-index: 5;
}
.cta-button-container > img {
	display: block;
	width: 100%;
	height: auto;
}
.cta-button-container .btn-cta-link {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	max-width: 80%;
	display: block;
	cursor: pointer;
	line-height: 0;
}
.cta-button-container.js-trigger-start a{
  top: 40%;
}


.cta-button-container .btn-cta-link {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	max-width: 80%;
	display: block;
	cursor: pointer;
	line-height: 0;
}

.cta-button-container .btn-cta-link img {
	display: block;
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
.cta-button-container .btn-cta-link .btn-cta-hover {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.cta-button-container .btn-cta-link:hover .btn-cta-hover {
	opacity: 1;
}


/* 追従CTA（SP用下部固定） */
.c-float-cta {
	position: fixed;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 70%;
	max-width: 480px;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
.c-float-cta img {
	width: 100%;
	height: auto;
	display: block;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	border-radius: 50px;
}
.c-float-cta.is-visible {
	opacity: 1;
	visibility: visible;
}

@media screen and (min-width: 1025px) {
	.c-float-cta {
		display: none !important;
	}
}
