@charset "UTF-8";


div#container {
  margin-top: 0 !important;
}
#h-header {
  display:none;
}
#h-footer {
  display:none;
}

#h-header {
  transition: all 0.1s;
}
body.scroll #h-header{
  display: grid;
}
body.upfixed #h-header{
  display: grid;
}
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;
}


body.scroll #h-footer,
body.upfixed #h-footer {
	display: block;
}

.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;
	}
	body.scroll .h-header__logo, body.scroll .h-header__gnav-link, body.scroll .h-header__menu {
	  display: none;
	}
	body.upfixed .h-header__logo,
	body.upfixed .h-header__gnav-link,
	body.upfixed .h-header__menu{
		display: flex;
	}
	nav > .nav__cta {
	grid-area: cta;
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 10px;
	}
	.scroll nav > .nav__cta {
	display: block;
	z-index:3;
	}
	nav > .nav__cta div {
    display: flex;
    gap: 10px;
	}
}




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

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: 30px 20px;
	border-radius: 20px;
	max-width: 780px;
	background:#e2e2e2;
	margin:auto;
	width: 96%;
}
.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: 16px;
	line-height: 160%;
	text-align: center;
	background:#D9D9D9;
	padding:6px;
	  width: 100%;
}

.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: center;
  color: #000;
  /* display: inline-block; */
  border-bottom: 1px #000 solid;
  text-decoration: none;
}
.js-dialog-inner .js-dialog-close {
	font-weight: 500;
	font-size: 14px;
	line-height: 160%;
	letter-spacing: 10%;
	text-align: center;
	background:var(--color-black);
	color: #fff;
	padding: 8px 40px;
	border-radius: 5px;
	margin: 20px auto 0;
}


/****************************************
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 .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 {
	}
	
	nav > .nav__cta {
	  display: none;
	}
  .scroll nav > .nav__cta {
		display: block;
		background: #e2e2e2;
		max-width: 550px;
		left: 0;
		margin: 0 auto;
		padding: 1.5rem 2rem;
		border-radius: 2rem;
  }
  nav > .nav__cta div {
    display: flex;
    gap: 10px;
  }

}



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

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;
	justify-content: flex-start;
	min-height: 100vh;
}
.horizontal_scroll .scroller {
  display: flex;
  overflow: auto;
  gap: 8rem;
}
.horizontal_scroll .scroller.nobar {
  overflow: hidden;
}
.horizontal_scroll .scroller > div {
  flex-basis:60%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.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;
	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);
  border: 2px solid;
  border-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 3rem;
  font-family: YakuHanJP,"Zen Kaku Gothic New", sans-serif!important;
  border-radius: 9999px;
}

.btn.enjoy-border {
  background-color: var(--color-white);
  border-color: var(--color-htb-enjoy);
  color: var(--color-htb-enjoy);
}
.btn.expass-border {
  background-color: var(--color-white);
  border-color: var(--color-htb-event);
  color: var(--color-htb-event);
}

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

a.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: 15px;
  height: 15px;
  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);
}




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

オリジナル

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

body.no-scroll {
  position: fixed;
  width: 100%;
}


article {
  position: relative;
}

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

.c-section{
	max-width: 100%;
	position: relative;
}
.c-section__body{
	position: relative;
	padding: 0 0 var(--layout-interval-last);
	display: grid;
	gap:var(--layout-interval);
	z-index: 1;
}

.c-section__inner{
	position: relative;
	padding:5rem 2.4rem;
	margin: 0 auto;
	width: 100%;
}
.c-section__inner.wide{
	position: relative;
	padding:0rem;
}
.c-content-body{
	position: relative;
	display: grid;
	align-items: start;
	justify-items: center;
	gap: 4rem;
	padding-bottom:4rem;
	width: 100%;
	overflow: hidden;
}
.c-content-body-inner{
	max-width: 1440px;
	margin: 0 auto;
	display: grid;
	gap: 2rem;
	justify-items: center;
	grid-template-columns: 100%;
	width: 100%;
}
.c-content-body-inner{
	max-width: 1440px;
	margin: 0 auto;
	display: grid;
	gap: 2rem;
	justify-items: center;
	grid-template-columns: 100%;
	width: 100%;
}

.c-content-block{
	display: grid;
	gap: 1.6rem;
	grid-template-columns: 100%;
}

.text-heading{
  font-size: var(--font-size-headding);
  text-align: center;
  font-weight: 500;
}

.text-title{
  font-size: var(--font-size-title);
  line-height: 140%;
  font-weight: 600;
}
.text-big{
  font-size: var(--font-size-big);
  line-height: 180%;
  font-weight: 500;
}

.text-large{
  font-size: var(--font-size-large);
  line-height: 180%;
  font-weight: 500;
}
.text-base{
  font-size: var(--font-size-text);
  line-height: 180%;
  font-weight: 500;
}
.text-middle{
  font-size: var(--font-size-middle);
  line-height: 180%;
  font-weight: 500;
}
.text-small{
  font-size: var(--font-size-small);
  line-height: 140%;
  font-weight: 500;
}

.text-name{
  font-size: var(--font-size-name);
  line-height: 140%;
  font-weight: 500;
}

.align-c{
text-align: var(--align-center);
}
.align-c-sp{
text-align: var(--align-center-sp);
}
.align-l{
text-align: var(--align-left:left);
}
.align-l-sp{
text-align: var(--align-left-sp);
}

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

	.c-section__inner{
		padding:10rem 0rem;
	}
	.c-content-body{
		gap: 8rem;
	}
	.c-content-body-inner{
		gap: 4rem;
	}
	.c-content-block{
		gap: 3.2rem;
	}

}






#attraction{}

#attraction .text-title{
	color:var(--color-htb-enjoy);
	text-align:var(--align-center);
}

#attraction   .swiper {
	overflow: visible !important;
}

#attraction .swiper-slide{
  display: flex;
}
#attraction .swiper-slide .c-content-block {
    padding-bottom: 2rem;
        gap: 2rem;
}



#attraction .swiper-slide a{
	color:var(--color-htb-enjoy);
	text-decoration: none;
	background-color:var(--color-white);
	display: block;
	border-radius: 0 0 2rem 2rem;
}
#attraction .swiper-slide img{
  aspect-ratio: 3 / 2;
}

#attraction .swiper-slide .text-name{
	text-align: center;
}

#attraction .swiper-button-next, .swiper-button-prev {
	bottom: 50%;
	top: 50%;
	height: 40px;
	width: 40px;
	border-radius: 9999px;
	padding: 5px;
	background: var(--color-htb-enjoy);;
	  opacity: 0.8;
}
#attraction .swiper-button-prev {
  left:-1.6rem;
}
#attraction .swiper-button-next {
  right:-1.6rem;
}

#attraction .swiper-button-next:after,
#attraction .swiper-button-prev:after {
  font-size: 16px;
  color: #fff;
}


#attraction .c-content-body{
  background-color:var(--color-htb-background);
  border: 6px var(--color-htb-enjoy) solid;
  border-radius: 0 80px 0 0;
  border-left: 0;
  border-bottom: 0;
  padding:4.8rem 2.4rem;
}

#attraction:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 1;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
 

@media screen and (min-width: 1025px) {
	#attraction .c-content-body{
	  padding:8rem 0rem;
	}
	#attraction .swiper-button-prev,
	#attraction .swiper-button-next {
	  right: 8rem;
	  left: auto;
	  bottom:-6rem;
	  top: auto;
	}
	#attraction .swiper-button-next {
	  right: 2%;
	}
}




#information {}
#information:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 1;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

#information.active:before{
	opacity: 1;
}

#information .txt {
  align-content: center;
  justify-content: center;
}

#information h3 {
}

#information h3:before {
  content: "";
  width: 50px;
  height: 3px;
   background: linear-gradient(135deg, #00f0ff, #8a2be2, #ff0080, #f5ff00);
  display: block;
  margin: 0 auto 10px;
}

#information ul{
max-width: 800px;
}


#ticket {
}

#ticket:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 120%;
	background: #429be4;
	opacity: 1;
	transition: opacity 0.8s ease;
	pointer-events: none;
	clip-path: polygon(0 0, 75% 3%, 100% 0, 100% 100%, 21% 98%, 0 100%);
}
#ticket.active:before{
	opacity: 1;
}

#ticket .text-heading,
#ticket .text-big{
	font-family: var( --font-family-Zen-Mi);
}
#ticket .text-big{
line-height: 100%;
}

#ticket small{
	font-size: 60%;
}


#ticket h3:before {
	content: "";
	width: 100%;
	height: 60px;
	background: url(../img/index/ticket/logo.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	display: block;
	margin: 0 auto 10px;
}


.box-list {
  display: grid;
  gap: 2.4rem;
}

.box {
  position: relative;
  border: 1px solid #fff;
  padding: 2rem 3.4rem 3.4rem;
  margin: 2em 0 0;
  background: #429be4;
}

/* 見出しを上線の中央に重ねる */
.box-heading {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 1.6rem;
  background: inherit; /* ←背景を継承 or 個別指定もOK */
  white-space: nowrap;
}

.box-content {
	display: grid;
	gap:2.4rem;
	margin:2.4rem auto ;
	justify-items: center;
}

.box-content  .c-content-block{
grid-template-columns: 1fr 1fr 1fr;

}


.box-content  .c-content-block > div{
	font-size: 12px;
	line-height: 120%;
	text-align: center;
	display: grid;
	gap: 1rem;
}

.box-content  .c-content-block > div img{
  aspect-ratio: 1 / 1;
  border-radius: 1rem;
}
.box-content  .c-content-block.gourmet{
	grid-template-columns:100%;
	  gap: 0;
}

.box-content  button {
  border-bottom: 1px #fff solid;
}

.box-content .plus{
  text-align: center;
  font-size: 42;
  line-height: 100%;
  font-weight: 900;
}

.box-content  .c-content-block.gourmet > div .block-img{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0rem;
}
.box-content  .c-content-block.gourmet > div img{
  aspect-ratio: 4 / 2;
  border-radius: 0rem;
}
.box-content  .c-content-block.gourmet > div img:first-child{
  border-radius: 1rem 0 0 1rem;
}
.box-content  .c-content-block.gourmet > div img:last-child{
  border-radius: 0 1rem 1rem 0 ;
}


.box-content .mark {
  background: #000000;
  position: absolute;
  width: 65px;
  height: 65px;
  border-radius: 9999px;
  top: -30px;
  right:10px;
}
.box-content .mark span {
	font-size: 14px;
	line-height: 1.1;
	font-weight: bold;
	text-align: center;
	display: block;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	right: 0;
}


@media screen and (min-width: 1025px) {
	.box-list {
	gap: 4.4rem;
	align-items: start;
	grid-template-columns: 1.2fr 1fr;
	}
	.box-content .mark {
	  width: 80px;
	  height:80px;
	}
	.box-content .mark span {
		font-size:18px;
	}
}



.hidden-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.hidden-content.show {
  opacity: 1;
  max-height: max-content;
}


/* もっと見るボタンのスタイル */
.more-button {
	color: #fff;
	border: none;
	padding: 1.6rem 0 0;
	border-bottom: 1px #fff solid;
	cursor: pointer;
	transition: background-color 0.3s;
	margin: 0 auto;
	text-align: center;
	display: table;
	margin: 0 auto;
}
.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: 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;
  transform: rotate(90deg);
}

.more-button.is-open:after {
  transform: rotate(-90deg);
}



#notice {
	color:#fff;
}
#notice:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 1;
  transition: opacity 0.8s ease;
  pointer-events: none;
}






/* --- ローディング画面全体 --- */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  background: transparent;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.5s ease;
}

/* フェードアウト時 */
.loading-screen.fadeout {
  opacity: 0;
  pointer-events: none;
}

/* --- ローディング中央配置 --- */
.loading-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 300px;
  height: auto;
  z-index: 3;
  transition: opacity 0.3s ease;
}

/* --- SVG ローディングインジケーター --- */
.loading-indicator {
  position: relative;
  width: 100px;
  height: 100px;
  z-index: 3;
  transition: opacity 0.3s ease;
  margin: 0 auto;
}
.loading-indicator svg {
  width: 100%;
  height: 100%;
  animation: rotate 2s linear infinite;
}
.loading-indicator .ring {
  stroke: rgba(255, 255, 255, 0.1);
}
.loading-indicator .loader {
  stroke-dasharray: 90, 150;
  stroke-dashoffset: 0;
  animation: dash 1.5s ease-in-out infinite;
}

/* ローダー停止＋透明化 */
.loading-screen.loader-stop .loading-indicator,
.loading-screen.loader-stop #loading-logo {
  opacity: 0;
}
.loading-screen.loader-stop .loading-indicator svg,
.loading-screen.loader-stop .loading-indicator .loader {
  animation-play-state: paused !important;
}

/* --- カウント数表示 --- */
#loading-count {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  z-index: 4;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#loading-logo img {
  margin: 0 auto 15px;
  width: 200px;
}

/* ローダー停止時にカウントも非表示に */
.loading-screen.loader-stop #loading-count {
  opacity: 0;
}

.logo-fade {
  animation: fadeBlink 2.5s ease-in-out infinite;
  opacity: 1;
}

@keyframes fadeBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}






/* ズームアニメーション */
@keyframes zoomUpAnimation {
	0% {
	    transform: scale(1);
	}
	100% {
	    transform: scale(1.15);
	}
}




@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

/* --- 動画・画像のラッパー --- */
#firstview .movie {
  position: relative;
  width: 100vw;
  height: 100vh;
   height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
}

#myVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover; /* アスペクト比を保って拡大 */
  z-index: 0;
}

/* --- 動画背景 --- */
.videobg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  overflow: hidden;

  opacity: 0;
  filter: blur(10px);
  transition: opacity 1s ease, filter 2s ease;


}
.videobg.show {
  opacity: 1;
  filter: blur(0);
}

.videobg.fadeout-start {
  animation-name: fadeOutAnimation;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}


/* --- 初期ビューポート表示設定 --- */
article#firstview {
  width: 100%;
  max-width: 100vw;
  height: 100vh;
   height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.8s ease;
}
article#firstview.visible {
  opacity: 1;
}

/* --- アニメーション定義 --- */
@keyframes zoomUpAnimation {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.4);
  }
}
@keyframes fadeOutAnimation {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.1;
  }
}


/* --- 地上画像 --- */


#firstview .img-outer {
	position:absolute;
	position: fixed;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	z-index:0;
}

#firstview .img-outer img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  transform: scale(1);
}

#firstview .img-outer.zoom-start img {
  animation: slowZoom 20s ease-in-out forwards;
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}





/* === ベース構造 === */
#firstview .img {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 2;
	display: grid;
	grid-template-rows: 3fr 1fr;
	grid-template-columns: 100%;
	align-items: center;
}







.fly {
	position: relative;
	height: 100%;
}


.fly-outer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

/* アニメ発火時にズームイン＋中央に表示 */
.img.animate-in .fly-outer {
	animation: fly-zoom 0.2s ease-out forwards;
	animation-delay: 0.5s;
}

@keyframes fly-zoom {
  0% {
    transform: translate(-50%, -40%) scale(1.6);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 1;
  }
}


.txt-outer {
	position: absolute;
	top: 10%;
	left: 80%;
	transform: translate(-50%, -50%) scale(8) rotate(-23deg);
	opacity: 0;
	pointer-events: none;
	max-width: 800px;
	width: 30%;
	width: 14.5vh;
}

.txt-outer.left {
  left: 30%;
  bottom: 10%;
  top: auto
}

.img.animate-in .txt-outer {
	animation: textZoomIn 0.5s ease-out forwards;
	animation-delay:0.8s;
}
.img.animate-in .txt-outer.left {
	animation-delay:1.2s;
}


@keyframes textZoomIn {
	0% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(8) rotate(-23deg);
	}
	100% {
		opacity: 1;
		transform: translate(-65%, -0%) scale(1.6) rotate(-23deg);
	}
}


.intro {
	position: relative;
	display: flex;
	align-items: end;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding-bottom: 1rem;
	height: 100%;
}

.intro:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
	pointer-events: none;
	transition: 0.6s all;
}

.scroll .intro:before {
		opacity: 0;
}

.wakuwaku-outer {
  position: relative;
  opacity: 0;
  pointer-events: none;
}
.img.animate-in .wakuwaku-outer{
	animation: wakuwakuIn 0.3s ease-out forwards;
	animation-delay: 1.2s;
}

.wakuwaku-outer img{
  width: 50%;
  margin: 0;
  object-fit: contain;
}

@keyframes wakuwakuIn {
	0% {
		opacity: 0;
 		 left: -50%;
	}
	100% {
		opacity: 1;
		  left:0%;
	}
}


.intro-wrap {
	padding: 0;
	background: transparent;
	color: #fff;
	font-family: 'Orbitron', sans-serif;
	position: relative;
	text-align: center;
	width: 100%;
	font-size: 80px;
	font-size: clamp(40px, 6vw, 100px);
	font-size: clamp(42px, calc(3.5vw + 3.5vh), 100px);
	letter-spacing: -1px;
	font-family: var(--font-family-Zen-Mi);
	font-style: italic;
	line-height: 100%;
	font-weight: 500;
	display: table;
	width: auto;
	margin: 0 auto;
}


.intro-wrap:before{
	content: "";
	background: url(../img/index/firstview/wakuwaku.png);
	width: 100%;
	height: 8vh;
	display: block;
	background-repeat: no-repeat;
	background-position: left;
	background-size: contain;
	position: relative;
	left: -1.6rem;
	top: 0.8rem;
	opacity: 0;
}

.img.animate-in .intro-wrap:before{
	animation: wakuwakuIn2 0.3s ease-out forwards;
	animation-delay: 2s;
}
@keyframes wakuwakuIn2 {
	0% {
		opacity: 0;
 		 left: -50%;
	}
	100% {
		opacity: 1;
		  left: -1.6rem;
	}
}


.img.animate-in .intro-title,
.img.animate-in .intro-date {
	opacity: 0;
	transform: translateY(80px) scale(0.8) rotateX(90deg);
	animation: appear 0.8s ease-out forwards;
	animation-delay: 1.5s;
	text-shadow: 1px 1px 5px #152130;
}

.intro-title {
  animation-delay: 0.2s;
}

.intro-date {
  font-size:80%;
  animation-delay: 1.2s;
}

@keyframes appear {
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
  }
}



@media screen and (min-width:1025px) {
	#firstview .img {
		grid-template-rows: 2fr 1fr;
		grid-template-columns: 100%;
		align-items: center;
	}

	.fly-outer{
		top: 60%;
		transform: translate(-50%, -50%);
	}
	@keyframes fly-zoom {
	  0% {
	    transform: translate(-50%, -40%) scale(0.8);
	    opacity: 0;
	  }
	  100% {
	    transform: translate(-50%, -50%) scale(0.9);
	    opacity: 1;
	  }
	}
	.txt-outer {
		width:30%;
		top: 45%;
		left: 70%;
		transform: translateY(-50%) rotate(-23deg);
	}
	.txt-outer.left {
		left:34%;
		bottom: auto;
		top:65%;
		transform: translateX(-50%);
	}
	@keyframes textZoomIn {
		0% {
			opacity: 0;
			transform: translate(-50%, -50%) scale(8) rotate(-20deg);
		}
		100% {
			opacity: 1;
			transform: translate(-50%, -50%) scale(0.7) rotate(-20deg);
		}
	}

	.wakuwaku-outer img {
	  width: 40%;
	}

	.intro-wrap:before{
		height: 10vh;
		    top: 3rem;
	}
	@keyframes wakuwakuIn2 {
		0% {
			opacity: 0;
	 		 left: -50%;
		}
		100% {
			opacity: 1;
			  left:-10%;
		}
	}
	@keyframes wakuwakuIn {
		0% {
			opacity: 0;
	 		 left: -50%;
		}
		100% {
			opacity: 1;
			  left:0%;
			  top:10%;
		}
	}
	.txt-outer img {
		height: 95vh;
		object-fit: contain;
		object-position:top
	}
	.txt-outer.left img {
		height: 95vh;
		object-position: bottom;
	}

}




.rtb {
  display: grid;
  gap:0rem;
}

.rtb .txt {
  display: grid;
  gap: 4rem;
  align-items: start;
  align-content: center;
}

.rtb h2{
	font-size: var(--rtb-font-size-heading);
	font-weight: var(--font-weight-black);
	line-height: var(--font-lineheight-120);
	font-family: var(--font-family-Noto-Sans);
	text-shadow: 1px 1px 5px #000
}
.rtb .txt .text {
	font-size: var(--rtb-font-size-read);
	line-height: var(--font-lineheight-200);
	text-shadow: 1px 1px 5px #000;
	font-weight: 500;
}


.txt-gradation {
  display: inline-block;
  background-image:linear-gradient(135deg, #427eff 0%, #f13f79 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradation 5s infinite linear;
  background-size: 150%;
}

.serif{
  font-family: var(--font-family-Noto-Serif)!important;
}

@keyframes gradation {
    0%{
        background-position: 0% 0%;
    }
    50%{
        background-position: 100% 0%;
    }
    100%{
        background-position: 0% 0%;
    }
}


.bg-gradation{
  background-image:linear-gradient(135deg, #427eff 0%, #f13f79 70%);
  background-size: 150%;
  animation: bggradation 5s infinite linear;
}

@keyframes bggradation {
    0%{
        background-position: 0% 0%;
    }
    50%{
        background-position: 100% 0%;
    }
    100%{
        background-position: 0% 0%;
    }
}


.base-set {
  display: grid;
  gap: 40px;
}

figcaption {
  position: absolute;
  bottom: 0;
  font-size: 11px;
  margin: 0 5px;
}



.fadein-target {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadein-target.active {
  opacity: 1;
  transform: translateY(0);
}


#Introduction{
	position: relative;
	transition: all 0.6s;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

#Introduction:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: opacity 0.8s ease; /* ← フェード時間とイージング追加 */
  pointer-events: none; /* ← 背景としてクリック妨害しないように（任意） */
}
#Introduction.active:before{
	opacity: 0.6;
}

#Introduction img.logo{
	max-width:520px;
}
#Introduction p.openday{
	font-size: var(--font-size-openday);
	font-family: var(--font-family-Zen-Mi);
	  line-height: 100%;
	text-align: center;
}
#Introduction p.openday small{
	font-size:60%;
}

#Introduction p.tagline{
	font-size: var(--font-size-tagline);
	text-align: center;
	line-height: 100%;
	padding:0  0  40px;
	font-family: var(--font-family-Zen-Mi);
}

#Introduction .tagline span {
  opacity: 0;
  transform: translateY(20px);
  display: block;
}

#Introduction .tagline.active span {
  animation: fadeUp 0.8s ease-out forwards;
}

#Introduction .tagline.active span:nth-of-type(1) { animation-delay: 0.2s; }
#Introduction .tagline.active span:nth-of-type(2) { animation-delay: 0.6s; }
#Introduction .tagline.active span:nth-of-type(3) { animation-delay: 1.0s; }
#Introduction .tagline.active span:nth-of-type(4) { animation-delay: 1.4s; }
#Introduction .tagline.active span:nth-of-type(5) { animation-delay: 1.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



#visual {
	position: relative;
	height: 100vh;
}

#experience {
	position: relative;
	padding-bottom: 8rem;
}
#experience:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 120%;
	background: #000;
	opacity: 0;
	transition: opacity 0.8s ease; /* ← フェード時間とイージング追加 */
	pointer-events: none; /* ← 背景としてクリック妨害しないように（任意） */
	background-image: linear-gradient(135deg, #427eff 0%, #f13f79 70%);
	background-size: 150%;
	animation: bggradation 3s infinite linear;
	clip-path: polygon(0 0, 66% 2%, 100% 0, 100% 100%, 15% 100%, 0 100%);
}

#experience.active:before{
	opacity: 1;
}



#experience  .rtb {
	display: grid;
	gap: 5rem;
}


#experience  .point-list {
  display: grid;
  gap: 4rem;
}

#experience .point {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background: #000;
  padding: 00px 00px 6rem;
  border-radius: 00px 0 80px 0;
  display: grid;
  gap: 3rem;
  align-items: start;
}

#experience .point .img{
}

#experience .point .img img{
  aspect-ratio: 16 / 10;
    aspect-ratio: 16 / 14;
}

#experience  .point-list .point:nth-child(even){
	border-radius:0px 00px 0px 80px;
}

#experience .point  .txt {
	display: grid;
	gap: 3rem;
	align-items: start;
	align-content: center;
	position: relative;
	padding: 0 2.4rem;
}

#experience .point .txt h3 {
  font-size: var(--rtb-font-size-title);
  line-height: 140%;
  font-weight: 700;
    text-align: center;
}

#experience .point  .txt .text {
  font-size: var(--rtb-font-size-text);
  line-height: var(--font-lineheight-200);
    letter-spacing: 0;
}


#experience .point  .txt .mark {
  background: #9C27B0;
  position: absolute;
  width: 65px;
  height: 65px;
  border-radius: 9999px;
  top: -50px;
  right:-10px;
}
#experience .point  .txt .mark span {
  font-size: 17px;
  line-height: 1.1;
  font-weight: bold;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
}

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


	.rtb {
		grid-template-columns: 498px 2.5fr;
		gap: 12rem;
		padding: 10rem 4rem;
		max-width: 1920px;
	}

	#experience {
		position: relative;
	}
	#experience:before {
		 clip-path: polygon(0 0, 66% 5%, 100% 0, 100% 100%, 15% 100%, 0 100%);
	}

	#experience .rtb {
	 grid-template-columns: auto 2.7fr;
	  align-items: start;
	  padding: 10rem 4rem 0;
	}

	#experience .rtb > .txt {
	position: sticky;
	top: 150px;
	}
	#experience  h2 {
	  font-size: 3.5vw;
	}
	#experience .point-list {
	    gap: 5rem;
	    max-width: 1100px;
	    margin: 0 auto;
	}
	#experience .rtb > .txt {
		position: sticky;
		  top: 150px;
	}
	#experience .point  .txt {
		padding: 4.8rem;
	}
	#experience .point .txt .mark {
	  width: 100px;
	  height: 100px;
	  top: -80px;
	  right: -20px;
	}
	#experience .point .txt .mark span {
	  font-size: 22px;
	}
	#experience .point {
	  border-radius: 00px 0px 80px 0px;
	}

	#experience .point {
		align-items: center;
		grid-template-columns: 1fr 1fr;
		padding: 0rem;
	}
	#experience .point .img {
	    height: 100%;
	    padding-top: 80%;
	}

	#experience .point .img img {
	    aspect-ratio: auto;
	    position: absolute;
	    top: 0;
	    height: 100%;
	    bottom: 0;
	}
	#experience .point > div  {
	}

	#experience  .point-list .point:nth-child(even){
		border-radius:0px 00px 0px 80px;
	}

	#experience  .point-list .point:nth-child(even) .img{
	  order: 2;
}

}




