@charset "utf-8";

/* *** */

html {
  font-size: 3.125vw;
}
a[href^="tel:"],
a[href^="mailto:"] {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 390px) {
  html {
    font-size: 2.673796791vw;
  }
}
@media screen and (min-width: 576px) {
  html {
    font-size: 1.736111111vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.302083333vw;
  }
}
@media screen and (min-width: 992px) {
  html {
    font-size: 1.008064516vw;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (min-width: 1144px) {
  html {
    font-size: 10px;
  }
}

/* font */
body {
  background-color: #fff;
  color: var(--text_color);
  font-family: var(--ff-en-ja);
  font-style: normal;
  font-weight: 400;
  font-feature-settings: "palt";
  font-optical-sizing: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
  position: relative;
}
.container {
  font-size: 1.2em;
  line-height: 1.75;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 576px) {
  .container {
    font-size: 1.3em;
  }
}
@media screen and (min-width: 768px) {
  .container {
    font-size: 1.4em;
  }
}
@media screen and (min-width: 992px) {
  .container {
    font-size: 1.5em;
  }
}
@media screen and (min-width: 1144px) {
  .container {
    font-size: 1.6em;
  }
}
html,
body,
.container {
  height: 100%;
}
.container-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.footer {
  margin-top: auto;
}

/* .gutters */
.gutters {
  padding-right: 1em;
  padding-left: 1em;
}
@media screen and (min-width: 576px) {
  .gutters {
    padding-right: 1.25em;
    padding-left: 1.25em;
  }
}
@media screen and (min-width: 768px) {
  .gutters {
    padding-right: 1.5em;
    padding-left: 1.5em;
  }
}
@media screen and (min-width: 992px) {
  .gutters {
    padding-right: 1.75em;
    padding-left: 1.75em;
  }
}
@media screen and (min-width: 1144px) {
  .gutters {
    padding-right: 2em;
    padding-left: 2em;
  }
}
.gutters > [class*="-inner"] {
  width: 100%;
  max-width: var(--content_max_width);
  margin: 0 auto;
}
.gutters.document > [class*="-inner"] {
  width: 100%;
  max-width: var(--document_max_width);
  margin: 0 auto;
}

/* *** */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
  font-style: normal;
  font-weight: normal;
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
}
[class*="-heading"] > .heading-inner {
  display: inline-block;
}
p {
  margin: 0;
}
em {
  font-size: 1em;
  font-style: normal;
  font-weight: bold;
  font-weight: 600;
}
strong {
  font-size: 1em;
  font-style: normal;
  font-weight: bold;
  font-weight: 700;
}
.marker {
  background-color: transparent;
  background-image: linear-gradient(transparent 69%, rgba(var(--yellow-rgb), .5) 0%);
}
.fz-normal {
  font-size: 1em;
}
.fz-large {
  font-size: 1.07em;
}
.fz-larger {
  font-size: 1.13em;
}
.fz-small {
  font-size: .91em;
}
.fz-smaller {
  font-size: .83em;
}
.fw-thin {
  font-weight: 100;
}
.fw-light {
  font-weight: 300;
}
.fw-regular {
  font-weight: 400;
}
.fw-medium {
  font-weight: 500;
}
.fw-semibold {
  font-weight: 600;
}
.fw-bold {
  font-weight: 700;
}
.fw-extrabold {
  font-weight: 800;
}
.fw-black {
  font-weight: 900;
}
.under-line {
  background-image: linear-gradient(transparent 77%, rgba(var(--red-rgb), .67) 0%);
}
sup {
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
  margin: 0 .17em auto;
  vertical-align: middle;
  position: relative;
  top: -.47em;
}
@media screen and (min-width: 576px) {
  sup {
    font-size: 1.05rem;
  }
}
@media screen and (min-width: 992px) {
  sup {
    font-size: 1.1rem;
  }
}

/* clearfix */
[class*="-inner"]::after,
.cf::after,
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* link && pointer */
a {
  color: var(--text_link_color);
  transition: color .3s ease;
}
@media (hover: hover) {
  a:hover {
    color: var(--text_link_hover_color);
  }
}
a:focus {
  outline: 0;
  outline: none;
}
a.dec-none,
a.tel-num {
  color: var(--text_color);
  text-decoration: none;
}
.text-btn a.btn-link {
  background-color: var(--black);
  border-radius: 3em;
  color: #fff;
  line-height: 1;
  text-decoration: none;
  display: inline-block;
  padding: 1.6em 2em 1.67em;
}
.text-btn a.btn-link .link-inner {
  font-size: 1.125em;
  font-weight: bold;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .07em;
  display: block;
  padding-left: .07em;
}
/* form :focus {
  outline: 2px solid var(--outline_color);
} */
@media screen and (min-width: 992px) {
  a.tel-num-sp {
    color: var(--text_color);
    text-decoration: none;
  }
}
.pointer {
  cursor: pointer;
}

/* anchor */
.anchor {
  margin-top: -2em;
  padding-top: 2em;
}
@media screen and (min-width: 768px) {
  .anchor {
    margin-top: -3em;
    padding-top: 3em;
  }
}

/* img */
img {
  border: 0;
  border: none;
  width: 100%;
  height: auto;
  min-height: 1%;
  vertical-align: top;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;

  image-rendering: -webkit-optimize-contrast;
}
a img.transform {
  transition: transform .3s ease;
}
@media (hover: hover) {
  a:hover img.transform {
    opacity: .77;
    transform: scale(1.03);
  }
}

/* list */
::marker {
  color: rgba(var(--black-rgb), .77);
}
nav li {
  position: relative;
}
nav li::before {
  position: absolute;
}
ul.list {
  margin: 1em 0;
  padding: 0 0 0 2em;
}
.list-before + ul.list {
  margin-top: 0;
}
ul.list > li {
  margin: 0;
  padding: 0;
}
ul.list > li:nth-child(n+2),
ul.sublist > li:nth-child(n+2),
ul.subsublist > li:nth-child(n+2),
ul.general-list > li:nth-child(n+2) {
  margin-top: .3em;
}
ul.style-none,
ol.style-none,
ul.category,
ol.category,
ul.check,
ul.contact,
ul.disc,
ul.field,
ol.field,
ul.item,
ol.item,
ul.menu,
ul.nav,
ul.pkg,
ol.pkg,
ul.point,
ol.point,
ol.step {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.style-none + .style-none {
  margin: 2em 0 1em;
}
ul.style-none > li,
ol.style-none > li,
ul.category > li,
ol.category > li,
ul.check > li,
ul.contact > li,
ul.field > li,
ol.field > li,
ul.item > li,
ol.item > li,
ul.menu > li,
ul.nav > li,
ul.pkg > li,
ol.pkg > li,
ul.point > li,
ol.point > li,
ol.step > li {
  margin: 0;
  padding: 0;
}
ul.list.style-none > li:nth-child(n+2),
ul.sublist.style-none > li:nth-child(n+2),
ul.subsublist.style-none > li:nth-child(n+2),
ul.general-list.style-none > li:nth-child(n+2) {
  margin-top: 0;
}
ul.disc > li {
  padding-left: 1em;
  position: relative;
}
ul.disc > li::before {
  background-color: var(--text_color);
  border-radius: 50%;
  content: "";
  display: block;
  width: .25em;
  height: .25em;
  position: absolute;
  top: .78em;
  left: .33em;
}
li.style-none {
  list-style-type: none;
}
ul.disc > li.style-none::before {
  display: none;
}
ul > li > p,
ol > li > p {
  margin: 0;
}
ul > li > p.margin,
ol > li > p.margin {
  margin: 1em 0;
}
.style-none.type-1em > li {
  padding-left: 1em;
  position: relative;
}
.style-none.type-1em .symbol {
  text-align: center;
  display: inline-block;
  width: 1em;
  position: absolute;
  left: 0;
}
.style-none.type-1em.triangle .symbol {
  text-align: center;
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  top: .3em;
  left: 0;
}
.style-none.type-1em.triangle .symbol::before {
  background-color: var(--black);
  content: "";
  font-size: .7em;
  display: block;
  width: 1em;
  height: 1em;
  margin: .25em auto auto .3em;
  clip-path: polygon(0 0, 50% 50%, 0 100%);
}

/* ol.num */
ol.num {
  list-style-type: none;
  counter-reset: category;
  margin: 1em 0;
  padding: 0;
}
ol.num > li {
  margin: 0;
  padding: 0 0 0 2em;
  position: relative;
}
ol.num > li:nth-child(n+2) {
  margin-top: .3em;
}
ol.num > li::before {
  counter-increment: category;
  content: counter(category)".";
  font-size: 1em;
  text-align: center;
  display: block;
  width: 1.5em;
  position: absolute;
  left: 0;
}

/* ul.check */
ul.check > li {
  line-height: 1.5;
  margin: .5em 0;
  padding-left: 2em;
  position: relative;
}
ul.check > li::before,
ul.check > li::after {
  content: "";
  position: absolute;
}
ul.check > li::before {
  border: .2em solid rgba(var(--black-rgb), .77);
  display: block;
  width: .92em;
  height: .92em;
  top: .26em;
  left: 0;
  opacity: .83;
}
ul.check > li::after {
  border-bottom: .24em solid var(--black);
  border-left: .24em solid var(--black);
  display: block;
  width: 1.1em;
  height: .8em;
  top: 0;
  left: .01em;
  transform: rotate(-45deg);
}

/* .list-before | .list-after */
.list-before {
  margin-bottom: .75em;
}
.list-after {
  margin-top: .75em;
}

/* .rice */
ul.rice,
ol.rice {
  list-style-type: none;
  margin: 2em 0 1em;
  padding: 0;
}
ul.rice.attached,
ol.rice.attached {
  margin-top: .25em;
}
.rice .text-text,
.text-text.rice,
.text-note.rice,
ul.rice > li,
ol.rice > li {
  padding-left: 1em;
  position: relative;
}
.rice span.symbol {
  text-align: center;
  display: block;
  width: 1em;
  position: absolute;
  left: 0;
}
ol.rice.num-inline > .list-inner {
  padding-left: 3em;
}
ol.rice.num-inline span.rice {
  text-align: center;
  display: block;
  width: 2.5em;
  position: absolute;
  left: .15em;
}

/* dl, dt, dd */
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}
dl p {
  margin: 0;
}

/* display: none; */
@media screen and (min-width: 390px) {
  .min-w390-none {
    display: none;
  }
}
@media screen and (min-width: 576px) {
  .min-w576-none {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .min-w768-none {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .min-w992-none {
    display: none;
  }
}
@media screen and (min-width: 1144px) {
  .min-w1144-none {
    display: none;
  }
}
@media screen and (max-width: 389px) {
  .max-w389-none {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .max-w575-none {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .max-w767-none {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .max-w991-none {
    display: none;
  }
}
@media screen and (max-width: 1143px) {
  .max-w1143-none {
    display: none;
  }
}

/* others */
.margin-none {
  margin: 0;
}
.align-center {
  text-align: center;
}
.align-right {
  text-align: right;
}
.i-block,
.inline-block {
  white-space: nowrap;
  display: inline-block;
}
.d-block,
.display-block {
  display: block;
}
.d-none,
.display-none {
  display: none;
}
.nowrap {
  white-space: nowrap;
}
.narrow.before {
  display: inline-block;
  margin-left: -.5em;
}
.narrow.after {
  letter-spacing: -.5em;
}

/* .width-narrow */
.width-narrow {
  max-width: 970px;
  margin-right: auto;
  margin-left: auto;
}
.width-narrow.x {
  max-width: 870px;
}
.width-narrow.xx {
  max-width: 750px;
}
.width-narrow.xxx {
  max-width: 610px;
}

/* .centering-left */
.centering-left {
  text-align: center;
}
.centering-left > p,
.centering-left > ul,
.centering-left > dl,
.centering-left > .element,
.centering-left > .i-block,
.centering-left > .inline-block,
.centering-left > .string {
  text-align: left;
  display: inline-block;
  margin: 0;
}
.centering-left > .d-block,
.centering-left > .display-block {
  text-align: center;
  display: block;
  margin: 1em 0 1.5em;
}
.centering-left + .centering-left {
  margin-top: .5em;
}

/* .border */
.border {
  border: 1px solid rgba(var(--dark_gray-rgb), .4);
}
.border .text-text {
  margin: 0;
}

/* .lang-en */
.lang-en {
  font-size: 1.1em;
  line-height: 0;
  letter-spacing: .02em;
  position: relative;
  top: .02em;
  left: .02em;
}

/* .em-px */
.em-px {
  font-size: 1em;
  display: block;
  width: 1em;
  height: 0;
  position: absolute;
}

/* ** .loading && background ** */
/* .loading */
.loading {
  background-color: rgba(255, 255, 255, 1);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  opacity: 1;
}
.loading-inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  position: absolute;
  top: 40%;
  right: 0;
  left: 0;
  translate: 0 -50%;
}
.container-inner::before {
  background: url(../img/halo-bg-00.svg) center center no-repeat;
  background-size: cover;
  content: "";
  display: block;
  width: 175dvw;
  height: 175dvh;
  margin: auto;
  position: fixed;
  top: -223dvw;
  right: -223dvh;
  bottom: -223dvw;
  left: -223dvh;
  z-index: -9;
  animation: bg-rotate 937s linear infinite;
}
.vertical .container-inner::before {
  width: 150dvh;
  height: 150dvh;
}
.horizontal .container-inner::before {
  width: 150dvw;
  height: 150dvw;
}
.base-bg,
.dec-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -7;
}
.dec-bg {
  z-index: -5;
}
.base-bg .base:not(.halo-01) {
  width: 98.5dvw;
  max-width: 1240px;
  height: 100dvh;
  margin: auto;
  position: absolute;
  top: -70dvh;
  right: -70dvw;
  bottom: -70dvh;
  left: -70dvw;
}
.base-bg .base.halo-01 {
  width: 100dvw;
  height: 100dvh;
  margin: auto;
  position: absolute;
  top: -223dvw;
  right: -223dvh;
  bottom: -223dvw;
  left: -223dvh;
  /* animation: bg-rotate-reverse 873s linear infinite; */
}
.vertical .base.halo-01 {
  width: 150dvh;
  height: 150dvh;
}
.horizontal .base.halo-01 {
  width: 150dvw;
  height: 150dvw;
}
.base-bg .halo-01 {
  z-index: 1;
}
.base-bg .bg-01 {
  z-index: 3;
}
.base-bg .bg-02 {
  z-index: 5;
}
.base-bg .base .img {
  display: block;
  width: 100%;
  height: 100%;
}
.base-bg .halo-01 .img {
  object-fit: contain;
}
.base-bg .bg-01 .img,
.base-bg .bg-02 .img {
  object-fit: fill;
}
.dec-bg .dec {
  width: 200dvw;
  height: 200dvh;
  margin: auto;
  position: absolute;
  top: -223dvw;
  right: -223dvh;
  bottom: -223dvw;
  left: -223dvh;
}
.vertical .dec-bg .dec {
  width: 150dvh;
  height: 150dvh;
}
.horizontal .dec-bg .dec {
  width: 150dvw;
  height: 150dvw;
}
/* .dec-bg .dec {
  animation: bg-rotate 825s ease 1s infinite;
}
.dec-bg .dec.reverse {
  animation: bg-rotate-reverse 825s ease 1.5s infinite;
}
.dec-bg .dec.bg-00 {
  animation-duration: 921s;
}
.dec-bg .dec.bg-01 {
  animation-duration: 862s;
}
.dec-bg .dec.bg-02 {
  animation-duration: 837s;
}
.dec-bg .dec.bg-03 {
  animation-duration: 783s;
}
.dec-bg .dec.bg-04 {
  animation-duration: 777s;
}
.dec-bg .dec.bg-05 {
  animation-duration: 763s;
}
.dec-bg .dec.bg-06 {
  animation-duration: 759s;
}
.dec-bg .dec.bg-07 {
  animation-duration: 747s;
}
.dec-bg .dec.bg-08 {
  animation-duration: 739s;
}
.dec-bg .dec.bg-09 {
  animation-duration: 731s;
} */
.dec-bg .img {
  object-fit: contain;
  display: block;
  width: 87%;
  height: 87%;
}
.dec-bg .dec.bg-00 .img {
  width: 95%;
  height: 95%;
}
@keyframes bg-rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes bg-rotate-reverse {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}

/* .header-bg && .footer-bg */
.header-bg,
.footer-bg {
  width: 100%;
  height: 4dvh;
  max-height: 2.5em;
  margin: auto;
  position: fixed;
  right: -3em;
  left: -3em;
}
.header-bg {
  top: 0;
  z-index: 73;
}
.footer-bg {
  bottom: 0;
  z-index: 75;
  scale: 1 -1;
}
.header-bg::before,
.header-bg::after,
.footer-bg::before,
.footer-bg::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.header-bg::before,
.footer-bg::before {
  background: url(../img/wave-01.webp) left top repeat-x;
  background-size: 400% 100%;
  height: 100%;
  z-index: 1;
}
.header-bg::after,
.footer-bg::after {
  background: url(../img/wave-02.webp) left top repeat-x;
  background-size: 400% 100%;
  height: calc(100% - .5em);
  z-index: 3;
}
@media screen and (min-width: 576px) {
  .header-bg::before,
  .header-bg::after,
  .footer-bg::before,
  .footer-bg::after {
    background-size: 300% 100%;
  }
}
@media screen and (min-width: 992px) {
  .header-bg::before,
  .header-bg::after,
  .footer-bg::before,
  .footer-bg::after {
    background-size: 200% 100%;
  }
}
.header-bg::before {
  animation: bg-wave 793s linear 3s infinite;
}
.header-bg::after {
  animation: bg-wave-reverse 713s linear infinite;
}
.footer-bg::before {
  animation: bg-wave-reverse 793s linear 3s infinite;
}
.footer-bg::after {
  animation: bg-wave 713s linear infinite;
}
@keyframes bg-wave {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1200% 0;
  }
}
@keyframes bg-wave-reverse {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -1200% 0;
  }
}

/* ** .header && .footer && .main settings ** */
/* .header && .footer */
.site-header {
  width: 100%;
  max-width: calc(var(--content_max_width) - 4em);
  margin: 0 auto;
}

/* .heading-outer */
.site-header .heading-outer,
.site-header .data-outer {
  max-width: 746px;
  margin: 0 auto;
  position: relative;
}
.site-header .heading-outer {
  z-index: 77;
}

/* ill */
.site-header .heading-outer::before,
.site-header .heading-outer::after {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: none;
  width: 88px;
  height: 124px;
  margin: auto;
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 860px) {
  .site-header .heading-outer::before,
  .site-header .heading-outer::after {
    display: block;
  }
  .site-header .heading-outer::before {
    background-image: url(../img/ill/happyon-01.webp);
    top: 160px;
    right: calc(100% - 30px);
  }
  .site-header .heading-outer::after {
    background-image: url(../img/ill/happyon-00.webp);
    top: 100px;
    left: calc(100% - 70px);
  }
}
@media screen and (min-width: 992px) {
  .site-header .heading-outer::before,
  .site-header .heading-outer::after {
    width: 15dvw;
    height: 9.3em;
  }
  .site-header .heading-outer::before {
    top: 130px;
  }
  .site-header .heading-outer::after {
    top: 88px;
  }
}
@media screen and (min-width: 1144px) {
  .site-header .heading-outer::before,
  .site-header .heading-outer::after {
    width: 190px;
    height: 162px;
  }
}

/* .site-header */
.site-header .tagline-01 .img-text {
  width: 31.875dvw;
  position: absolute;
  top: 0;
  right: calc(100% - 30dvw);
  z-index: 1;
}
.site-heading > .heading-inner {
  display: block;
  width: 97%;
  margin: 0 auto;
  padding-top: 6dvw;
  position: relative;
  z-index: 5;
}
.site-heading .ttl {
  display: block;
}
.site-heading .img-01 {
  width: calc(64% + 13.25dvw);
  margin: 0 auto;
  padding-left: 13.25vw;
}
.site-heading .img-02 {
  margin-top: -4.125dvw;
}
.site-heading .img-03 {
  width: 26%;
  margin: -3.75dvw -3dvw 0 auto;
}
.site-subheading > .subheading-inner {
  display: block;
  width: 57%;
  margin: -12.75dvw auto 0;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .site-header .tagline-01 .img-text {
    width: 245px;
    right: calc(100% - 230px);
  }
  .site-heading > .heading-inner {
    padding-top: 46px;
  }
  .site-heading .img-01 {
    width: calc(64% + 110px);
    padding-left: 110px;
  }
  .site-heading .img-02 {
    margin-top: -32px;
  }
  .site-heading .img-03 {
    margin-top: -29px;
    margin-right: -23px;
  }
  .site-subheading > .subheading-inner {
    margin-top: -98px;
  }
}
@media screen and (min-width: 992px) {
  .site-header .tagline-01 .img-text {
    top: .875em;
  }
  .site-heading > .heading-inner {
    padding-top: 4em;
  }
}
/* .data-outer */
.data-outer .tagline-02 .img-text {
  width: 23.125dvw;
  position: absolute;
  top: -4.75dvw;
  left: calc(100% - 24.125dvw);
  z-index: 5;
}
.data-outer .pkg {
  padding-top: 1.2em;
}
.data-outer .dl {
  font-size: 1.1em;
  line-height: 1.25;
  padding-left: 2em;
}
.data-outer .dl-inner {
  display: flex;
  gap: 1.2em;
}
.data-outer .dl-inner:nth-child(n+2) {
  margin-top: .625em;
}
.data-outer .dt {
  text-align: center;
  width: 5em;
}
.data-outer .dt-inner {
  background-color: var(--org_navy);
  border-radius: 1.5em;
  color: #fff;
  font-weight: 600;
  letter-spacing: .85em;
  display: block;
  padding: .12em 0 .03em .85em;
}
.data-outer .venue .dt-inner {
  margin-top: .32em;
}
.data-outer .dt-inner::after {
  display: none;
}
.data-outer .dd {
  width: calc(8em * 1.5);
}
.data-outer .date {
  padding-top: .2em;
}
.data-outer .time {
  padding-top: .35em;
}
.data-outer .dd .lang-en {
  font-size: 1.7em;
  font-weight: 800;
  position: relative;
  top: .04em;
}
.data-outer .dd .delimiter {
  font-size: 1.2em;
  font-weight: 800;
  display: inline-block;
  margin-right: .08em;
  margin-left: .08em;
  position: relative;
  top: -.06em;
}
.data-outer .dd .lang-ja {
  font-weight: 600;
}
.data-outer .dd .week {
  font-size: 1.37em;
  line-height: 0;
}
.data-outer .dd .holiday {
  color: #fff;
  font-size: 1.23em;
  line-height: 0;
  display: inline-block;
  margin-left: .4em;
  position: relative;
  top: -.04em;
}
.data-outer .dd .holiday::before {
  background-color: var(--org_red);
  border-radius: 50%;
  content: "";
  display: block;
  width: 1.6em;
  height: 1.6em;
  margin: auto;
  position: absolute;
  top: -1.1em;
  right: -1em;
  bottom: -1em;
  left: -1em;
  z-index: -1;
}
.data-outer .dd .kara {
  display: inline-block;
  margin-left: .06em;
}
.data-outer .venue-name {
  margin-top: -.175em;
}
.data-outer .venue-name .string {
  font-size: 1.5em;
  font-weight: 800;
  display: block;
  padding-top: .2em;
}
@media screen and (min-width: 390px) {
  .data-outer .dl {
    font-size: 1.25em;
  }
}
@media screen and (min-width: 576px) {
  .data-outer .dl {
    font-size: 1.5em;
    width: calc(6.2em + (10em * 1.5));
    margin: 0 auto;
    padding-left: 0;
  }
}
@media screen and (min-width: 768px) {
  .data-outer .tagline-02 .img-text {
    width: 178px;
    top: -42px;
    left: calc(100% - 174px);
  }
  .data-outer .dl {
    font-size: 1.6em;
  }
}
@media screen and (min-width: 992px) {
  .data-outer .dl {
    font-size: 1.8em;
  }
}

/* .header-nav */
.header-nav .menu a {
  background-image: linear-gradient(135deg
  , rgba(var(--org_pink-rgb), .75)
  , rgba(var(--org_pink-rgb), .9)
  , rgba(var(--org_dark_pink-rgb), 1)
  );
  border-radius: 2em;
  color: #fff;
  text-align: center;
  text-decoration: none;
  display: block;
}
@media screen and (max-width: 991px) {
  .header-nav .nav-btn {
    width: 2.8em;
    height: 2.8em;
    position: fixed;
    top: 1em;
    right: .75em;
    z-index: 95;
  }
  .header-nav .nav-btn::before {
    background-color: #fff;
    border-radius: 62% 38% 52% 48% / 43% 58% 42% 57% ;
    content: "";
    display: block;
    width: 3em;
    height: 3em;
    margin: auto;
    position: absolute;
    top: -.5em;
    right: -.5em;
    bottom: -.5em;
    left: -.5em;
    z-index: -1;
  }
  .header-nav .nav-btn > .btn-inner {
    display: block;
    width: 2em;
    height: 1.2em;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
  }
  .header-nav .nav-btn::after,
  .header-nav .nav-btn > .btn-inner::before,
  .header-nav .nav-btn > .btn-inner::after {
    background-color: var(--org_dark_orange);
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    margin: auto;
    position: absolute;
    right: 0;
    left: 0;
  }
  .header-nav .nav-btn::after {
    width: 1.6em;
    top: 0;
    bottom: 0;
    z-index: -1;
    opacity: 1;
    transition: opacity .2s linear .05s;
  }
  .header-nav .nav-btn > .btn-inner::before {
    top: 0;
    bottom: calc(1.2em - 2px);
    z-index: 1;
    rotate: 0deg;
    transition: bottom .15s linear .3s, rotate .3s ease;
  }
  .header-nav .nav-btn > .btn-inner::after {
    top: calc(1.2em - 2px);
    bottom: 0;
    z-index: 3;
    rotate: 0deg;
    transition: top .15s linear .3s, rotate .3s ease;
  }
  .header-nav .nav-bg {
    background-image: linear-gradient(135deg
    , rgba(var(--org_pale_blue-rgb), .83)
    , rgba(var(--org_pale_blue-rgb), .93)
    , rgba(var(--org_dark_pale_blue-rgb), 1)
    );
    width: 100dvw;
    height: 0;
    margin: auto;
    position: fixed;
    top: -108dvh;
    right: -1em;
    left: -1em;
    z-index: 91;
    opacity: 0;
    transition: height .3s ease, top .3s ease, opacity .2s linear .1s;
  }
  .header-nav .menu {
    display: flex;
    flex-direction: column;
    width: 80%;
    max-width: 27em;
    margin: auto;
    padding: 1em;
    position: fixed;
    top: -108dvh;
    right: -3em;
    left: -3em;
    z-index: 93;
    opacity: 0;
    transition: top .3s ease, opacity .2s linear .1s;
  }
  .header-nav .menu a {
    border-width: 0 1px;
    border-style: solid;
    border-color: var(--org_red);
    line-height: 0;
    letter-spacing: .1em;
    margin: 0;
    padding: 0 1em 0 1.1em;
    transition: border .3s ease, line-height .3s ease, margin .3s ease, padding .3s ease;
  }
  .header-nav .menu .text-text {
    font-size: 1.2em;
    font-weight: 700;
  }
}

/* .sp-menu-open */
.sp-menu-open .header-nav .nav-btn::after {
  opacity: 0;
}
.sp-menu-open .header-nav .nav-btn > .btn-inner::before {
  bottom: 0;
  rotate: 210.963756532074deg;
  transition: bottom .1s linear, rotate .3s ease;
}
.sp-menu-open .header-nav .nav-btn > .btn-inner::after {
  top: 0;
  rotate: -210.963756532074deg;
  transition: top .1s linear, rotate .3s ease;
}
.sp-menu-open .header-nav .nav-bg {
  height: 100dvh;
  top: 0;
  opacity: 1;
}
.sp-menu-open .header-nav .menu {
  top: 7em;
  opacity: 1;
}
.sp-menu-open .header-nav .menu a {
  border-width: 1px;
  line-height: 1.15;
  margin-top: .3em;
  margin-bottom: .3em;
  padding-top: 1em;
  padding-bottom: 1em;
}

/* min-width: 992px */
@media screen and (min-width: 992px) {
  .header-nav .nav-btn,
  .header-nav .nav-bg {
    display: none;
  }
  .header-nav {
    width: calc(100% - 4em);
    max-width: calc(var(--content_max_width) - 4em);
    margin: auto;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 95;
  }
  .header-nav .menu {
    display: flex;
    justify-content: center;
    gap: .2em;
  }
  .header-nav .menu a {
    border: 1px solid var(--org_red);
    border-radius: 1.4em;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    line-height: 1.15;
    letter-spacing: .1em;
    padding: .4em 1em .5em 1.1em;
    transition: padding .3s ease;
  }
  .header-nav .menu a .text-text {
    font-weight: 800;
  }
}
@media (hover: hover) {
  .header-nav .menu a:hover {
    padding-top: .6em;
    padding-bottom: 1.2em;
  }
}

/* .header-performer */
.header-performer .stage .pkg {
  display: flex;
  flex-direction: row-reverse;
  max-width: 1000px;
  margin: 6.75dvw auto 9.5dvw;
  position: relative;
}
.header-performer .stage .pkg-inner {
  width: calc(100% / 3);
  height: 42dvw;
  position: relative;
}
.header-performer .stage .pkg-heading {
  line-height: 1.15;
  text-align: center;
  width: 96%;
  margin: 0 auto;
  padding: .2em;
  position: absolute;
  right: 0;
  left: 0;
  z-index: 5;
}
.header-performer .comedy-outer .pkg-heading {
  bottom: 6dvw;
}
.header-performer .science-outer .pkg-heading {
  bottom: 2dvw;
}
.header-performer .host-outer .pkg-heading {
  bottom: -2dvw;
}
.header-performer .stage .pkg-heading::before {
  border-radius: .3em;
  box-shadow: .25em .25em .425em -.2em rgba(var(--dark_gray-rgb), .7);
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: -1em;
  right: -1em;
  bottom: -1em;
  left: -1em;
  z-index: -1;
  transform: skewX(-6deg);
}
.header-performer .comedy-outer .pkg-heading::before {
  background-color: var(--org_pink);
}
.header-performer .science-outer .pkg-heading::before {
  background-color: var(--org_purple);
}
.header-performer .host-outer .pkg-heading::before {
  background-color: var(--org_orange);
}
.header-performer .pkg-heading > .heading-inner {
  display: block;
}
.header-performer .pkg-heading .line-1st {
  color: #fff;
  font-style: italic;
  font-weight: 600;
  display: block;
}
.header-performer .stage .pkg-heading .line-2nd {
  background-color: #fff;
  border-radius: 2em;
  display: block;
  width: 100%;
  margin-top: .15em;
  padding: .2em .2em .1em;
}
.header-performer .stage .pkg-heading .fz-large {
  font-size: 1.2em;
  font-weight: 800;
}
.header-performer .stage .img-img {
  position: absolute;
  z-index: 3;
  overflow: hidden;
}
.header-performer .comedy-outer .img-img {
  width: 52.5dvw;
  height: 64.375dvw;
  top: -11dvw;
  left: -5dvw;
}
.header-performer .comedy-outer .img {
  object-fit: cover;
  object-position: center top;
  display: block;
  width: 100%;
  height: 100%;
}
.header-performer .science-outer .img-img {
  background-color: rgba(var(--org_purple-rgb), .9);
  aspect-ratio: 2;
  border: .4em solid var(--org_purple);
  border-radius: 50%;
  width: 38dvw;
  height: 38dvw;
  top: -2dvw;
  left: -2dvw;
}
.header-performer .science-outer .img {
  object-fit: cover;
  object-position: 20% top;
  display: block;
  width: 100%;
  height: 100%;
}
.header-performer .host-outer .img-img {
  background-color: rgba(var(--org_orange-rgb), .9);
  aspect-ratio: 2;
  border: .4em solid var(--org_orange);
  border-radius: 50%;
  width: 35dvw;
  height: 35dvw;
  top: 2dvw;
  left: -1dvw;
}
.header-performer .host-outer .img {
  object-fit: contain;
  object-position: 30% top;
  display: block;
  width: 134%;
  height: 134%;
}
@media screen and (min-width: 390px) {
  .header-performer .stage .pkg-heading > .heading-inner {
    font-size: 1.2em;
  }
}
@media screen and (min-width: 576px) {
  .header-performer .comedy-outer .pkg-heading {
    bottom: 12dvw;
  }
  .header-performer .science-outer .pkg-heading {
    bottom: 5dvw;
  }
  .header-performer .host-outer .pkg-heading {
    bottom: -2dvw;
  }
  .header-performer .stage .pkg-heading > .heading-inner {
    font-size: 1.5em;
  }
  .header-performer .comedy-outer .img-img {
    width: 60dvw;
    height: 72dvw;
    top: -20.5dvw;
  }
  .header-performer .science-outer .img-img {
    top: -3dvw;
  }
  .header-performer .host-outer .img-img {
    top: 3dvw;
  }
}
@media screen and (min-width: 768px) {
  .header-performer .stage .pkg-heading {
    width: 92%;
  }
  .header-performer .stage .pkg-heading > .heading-inner {
    font-size: 2em;
  }
  .header-performer .comedy-outer .img-img {
    left: -9dvw;
  }
}
@media screen and (min-width: 992px) {
  .header-performer .stage .pkg {
    margin: 67px auto 80px;
  }
  .header-performer .stage .pkg-inner {
    height: 416px;
  }
  .header-performer .comedy-outer .pkg-heading {
    bottom: 128px;
  }
  .header-performer .science-outer .pkg-heading {
    bottom: 58px;
  }
  .header-performer .host-outer .pkg-heading {
    bottom: 12px;
  }
  .header-performer .comedy-outer .img-img {
    width: 560px;
    height: 672px;
    top: -184px;
    left: -90px;
  }
  .header-performer .science-outer .img-img {
    width: 366px;
    height: 366px;
    top: -12px;
    left: -18px;
  }
  .header-performer .host-outer .img-img {
    width: 336px;
    height: 336px;
    top: 36px;
    left: -5px;
  }
}

/* .character-outer */
.header-performer .stage .character-outer {
  width: 100%;
  height: 0;
  position: absolute;
  top: 51dvw;
  left: 0;
}
.header-performer .character-outer .pkg-body {
  width: 28dvw;
  position: relative;
}
.header-performer .character-outer .img-img {
  width: 98%;
  margin: 0 auto;
  position: static;
}
.header-performer .character-outer .pkg-body.fukkun {
  position: absolute;
  top: 65.5dvw;
}
.header-performer .character-outer .fukkun .img-img {
  width: 87%;
}
.header-performer .character-outer .text-text {
  line-height: 1.15;
  text-align: center;
  width: 100%;
  height: 1em;
  position: absolute;
  top: 50%;
  z-index: 3;
}
.header-performer .character-outer .text-text .string {
  background-color: #fff;
  border-radius: 2em;
  font-size: 1.125em;
  font-weight: 600;
  display: inline-block;
  padding: .3em .6em .2em;
}
.header-performer .character-outer .fukkun .text-text {
  top: calc(100% + .25em);
}
@media screen and (min-width: 576px) {
  .header-performer .character-outer .nebaru .img-img {
    width: 94%;
  }
  .header-performer .character-outer .pkg-body.fukkun {
    top: 63dvw;
  }
  .header-performer .character-outer .text-text .string {
    font-size: 1.35em;
  }
}
@media screen and (min-width: 768px) {
  .header-performer .stage .character-outer {
    top: -42dvw;
  }
  .header-performer .character-outer .pkg-body {
    width: 18.5dvw;
    position: relative;
  }
  .header-performer .character-outer .nebaru .img-img {
    width: 72%;
    margin-left: .5em;
  }
  .header-performer .character-outer .pkg-body.fukkun {
    top: 23.5dvw;
  }
  .header-performer .character-outer .fukkun .img-img {
    width: 59.76%;
    margin-right: .5em;
  }
  .header-performer .character-outer .text-text .string {
    font-size: 1.35em;
  }
  .header-performer .character-outer .nebaru .text-text {
    left: -6%;
  }
  .header-performer .character-outer .fukkun .text-text {
    top: calc(100% + .15em);
    left: 15%;
  }
}
@media screen and (min-width: 992px) {
  .header-performer .stage .character-outer {
    top: -418px;
    left: calc(50% - 32.4em);
  }
  .header-performer .character-outer .pkg-body {
    width: 216px;
    position: relative;
  }
  .header-performer .character-outer .nebaru .text-text {
    top: 48%;
    left: -12%;
  }
  .header-performer .character-outer .pkg-body.fukkun {
    top: 248px;
  }
  .header-performer .character-outer .fukkun .img-img {
    width: 61%;
    margin-right: 1.5em;
  }
  .header-performer .character-outer .fukkun .text-text {
    top: calc(100% + 2px);
    left: 9%;
  }
}

/* .workshop */
.header-performer .workshop {
  background-color: var(--org_light_pale_blue);
  background-color: #ebf5ec;
  border: .5em solid var(--org_green_1);
  border-radius: 1em;
  width: calc(100% / 3 * 2.1);
  margin: 0 .5em 6.75dvw auto;
  padding: 0 .5em .5em;
  position: relative;
  z-index: 7;
}
.header-performer .workshop .pkg-header {
  height: 4dvw;
  margin-bottom: 5dvw;
}
.header-performer .workshop .pkg-heading {
  width: 96%;
  margin-left: auto;
  position: relative;
  top: -7.5dvw;
  right: -1.5dvw;
  z-index: 11;
  rotate: 6deg;
}
.header-performer .pkg-heading > .heading-inner {
  display: block;
}
.header-performer .workshop .cell {
  display: flex;
  flex-wrap: wrap;
}
.header-performer .workshop .cell-inner:not(:last-child) {
  width: 50%;
}
.header-performer .workshop .cell-inner:not(:last-child) .img-img {
  margin: .5em auto .25em;
}
.header-performer .lantern-outer .img-img {
  width: 92%;
}
.header-performer .uchiwa-outer .img-img {
  width: calc(92% * .75);
}

.header-performer .present-outer {
  width: 100%;
}
.header-performer .present-outer .img-img {
  width: 50%;
  margin: 0 auto;
}
.header-performer .workshop .text-note {
  background-color: rgba(var(--org_green_1-rgb), .25);
  border-bottom-right-radius: .5em;
  border-bottom-left-radius: .5em;
  line-height: 1.15;
  text-align: center;
  margin-top: .15em;
  padding: .2em;
}
.header-performer .workshop .text-note .string {
  color: rgba(var(--dark_gray-rgb), 1);
  font-size: .975em;
  font-weight: 500;
}
@media screen and (min-width: 576px) {
  .header-performer .workshop .pkg-header {
    margin-bottom: 4dvw;
  }
  .header-performer .workshop .pkg-heading {
    width: 87%;
    margin-right: auto;
  }
  .header-performer .cell-heading > .heading-inner {
    font-size: 1.8em;
  }
  .header-performer .present-outer {
    margin-top: .25em;
  }
  .header-performer .workshop .text-note {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .header-performer .workshop {
    width: calc(100% - 4em);
    max-width: 920px;
    margin: 0 auto 3em;
    padding-top: .5em;
  }
  .header-performer .workshop .pkg-header {
    height: calc(122px - (3.645vw * 3));
    margin-bottom: 0;
  }
  .header-performer .workshop .pkg-heading {
    width: 440px;
    margin-right: 3em;
  }
  .header-performer .workshop .cell {
    padding-right: 1em;
  }
  .header-performer .workshop .cell-inner:not(:last-child) {
    width: 35%;
  }
  .header-performer .workshop .cell-inner:last-child {
    width: 30%;
  }
  .header-performer .present-outer {
    display: flex;
    flex-direction: column;
  }
  .header-performer .present-outer .img-img {
    width: 100%;
    margin-top: auto;
    padding-bottom: 20%;
  }
  .header-performer .workshop .text-note {
    margin-top: .5em;
  }
}
@media screen and (min-width: 992px) {
  .header-performer .workshop .pkg-header {
    height: 1.5em;
  }
  .header-performer .workshop .pkg-heading {
    top: -74px;
    right: -15px;
  }
  .header-performer .cell-heading > .heading-inner {
    font-size: 2.25em;
  }
  .header-performer .present-outer .cell-heading > .heading-inner {
    font-size: 1.8em;
  }
  .header-performer .cell-heading br {
    display: none;
  }
  .header-performer .lantern-outer .img-img,
  .header-performer .uchiwa-outer .img-img {
    margin-bottom: 1.2em;
  }
  .header-performer .workshop .text-text .string {
    font-size: 1.5em;
    display: inline-block;
  }
}

/* .main */
.article > .article-inner {
  position: relative;
  z-index: 11;
}
.text-btn {
  line-height: 1.15;
}
.text-btn > .btn-inner {
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
.text-btn .string {
  background-color: var(--org_light_pink);
  background-image: linear-gradient(135deg
  , rgba(var(--org_light_pink-rgb), .7) 16.67%
  , rgba(var(--org_pink-rgb), .7) 33.33%
  , rgba(var(--org_dark_pink-rgb), .7) 75%
  , rgba(var(--org_light_pink-rgb), .7) 83.33%
  );
  background-position: 0 center;
  background-repeat: repeat-x;
  background-size: 300% 100%;
  border: 1px solid rgba(var(--gray-rgb), .6);
  border-top-color: rgba(var(--gray-rgb), .3);
  border-left-color: rgba(var(--gray-rgb), .3);
  border-radius: 2.5em;
  color: #fff;
  font-size: 1em;
  font-weight: 800;
  white-space: nowrap;
  display: block;
  padding: .8em 1em .7em;
  /* animation: gradient-color 15s linear infinite; */
}
@media (hover: hover) {
  .text-btn > .btn-inner:hover .string {
    opacity: .77;
    transition: opacity .3s ease;
  }
}

/* #id-date */
#id-date .pkg::before {
  background-image: linear-gradient(135deg
  , rgba(var(--org_light_blue_0-rgb), .25)
  , rgba(var(--org_light_blue_0-rgb), .67)
  );
  border-radius: 34% 66% 63% 37% / 62% 44% 56% 38%;
  content: "";
  display: block;
  width: calc(100% - 2em);
  height: calc(100% + 2em);
  margin: auto;
  position: absolute;
  top: -3em;
  right: -3em;
  bottom: -3em;
  left: -3em;
  z-index: -1;
}
#id-date .dec-img {
  width: 5.5em;
  margin: 0 auto 1em;
}
#id-date .data-outer {
  max-width: 746px;
  margin: 0 auto 7em;
}
#id-date .cell .item {
  display: flex;
  flex-direction: column;
  gap: .6em;
  width: calc(6.75em * 1.5);
  margin: .8em 0 0;
}
#id-date .text-btn > .btn-inner {
  width: 100%;
}
#id-date .text-btn .string {
  font-size: .78em;
  text-align: center;
}
/* #id-date .item-inner:nth-child(2) .text-btn .string {
  animation: gradient-color 15s linear infinite 3s;
} */
.g-map {
  width: 100%;
  height: 0;
  margin: 0;
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: height .3s ease, margin .3s ease, opacity .2s linear .1s, visibility .2s linear .1s;
}
.open-element .g-map {
  height: 20em;
  min-height: 340px;
  /* max-height: 520px; */
  margin: .7em 0 1em;
  opacity: 1;
  visibility: visible;
  transition: height .3s ease, margin .3s ease, opacity .2s linear .1s, visibility .2s linear .1s;
}
.g-map .map-inner {
  width: calc(100dvw - 4em);
  height: 100%;
  position: absolute;
  top: 0;
  left: -6.2em;
  z-index: 1;
}
.g-map iframe {
  border-radius: .6em;
  box-shadow: .2em .2em .4em -.2em rgba(var(--dark_gray-rgb), .7);
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media screen and (min-width: 576px) {
  .g-map .map-inner {
    width: calc(6.2em + (10em * 1.5));
  }
  .g-map iframe {
    width: calc(100dvw - 4em);
    max-width: 1080px;
    margin: auto;
    position: absolute;
    top: 0;
    right: -50dvw;
    left: -50dvw;
  }
}

/* #id-timeschedule */
#id-timeschedule .pkg {
  width: calc(100% - 3em);
  max-width: calc(var(--content_max_width) - 7em);
  margin: 0 auto;
}
#id-timeschedule .main-stage,
#id-timeschedule .workshop {
  max-width: 35em;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #id-timeschedule .pkg {
    display: flex;
    gap: 1.5em;
    width: calc(100% - 4em);
  }
  #id-timeschedule .main-stage {
    width: calc(55% - .5em);
  }
  #id-timeschedule .workshop {
    width: calc(44% - 1em);
    margin-top: -1em;
  }
}
@media screen and (min-width: 992px) {
  #id-timeschedule .pkg {
    width: calc(100% - 5em);
  }
  #id-timeschedule .main-stage {
    width: calc(100% - 27em);
    max-width: none;
  }
  #id-timeschedule .workshop {
    width: 25.5em;
  }
}
@media screen and (min-width: 1144px) {
  #id-timeschedule .pkg {
    gap: 2.5em;
    width: calc(100% - 7em);
  }
  #id-timeschedule .main-stage {
    width: calc(100% - 30em);
    max-width: none;
  }
  #id-timeschedule .workshop {
    width: 27.5em;
  }
}

/* .main-stage */
.toggle-btn {
  cursor: pointer;
}
#id-timeschedule .main-stage .pkg-heading {
  background-color: var(--org_navy);
  border-top-left-radius: 1em;
  border-top-right-radius: 1em;
  color: var(--org_yellow_0);
  text-align: center;
  padding: .8em 1.5em .7em;
}
#id-timeschedule .main-stage .pkg-heading > .heading-inner {
  font-size: 1.2em;
  font-weight: 600;
}
#id-timeschedule .main-stage .pkg-heading .fz-large {
  font-size: 1.3em;
  display: block;
}
#id-timeschedule .table-table {
  padding: 2em 0 4em;
  position: relative;
  z-index: 3;
}
#id-timeschedule .table-table::before {
  background-image: linear-gradient(135deg
  , rgba(var(--org_navy-rgb), .05)
  , rgba(var(--org_navy-rgb), .2)
  );
  border-radius: 57% 43% 54% 46% / 64% 61% 39% 36%;
  content: "";
  display: block;
  width: calc(100% - 2em);
  height: calc(100% - 2em);
  margin: auto;
  position: absolute;
  top: -7em;
  right: -1em;
  bottom: -1em;
  left: -1em;
  z-index: -1;
}
#id-timeschedule .table {
  line-height: 1.5;
  position: relative;
}
#id-timeschedule .table::before {
  background-color: rgba(var(--dark_gray-rgb), .7);
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 4.3em;
}
#id-timeschedule .td {
  vertical-align: top;
}
#id-timeschedule .time {
  width: 4.3em;
  position: relative;
}
#id-timeschedule .time::before {
  background-color: rgba(var(--black-rgb), 1);
  border-radius: 50%;
  content: "";
  display: block;
  width: calc(.5em + 1px);
  height: calc(.5em + 1px);
  margin: auto;
  position: absolute;
  top: .61em;
  right: calc(-.25em - 1px);
}
#id-timeschedule .time .td-inner {
  font-size: 1.175em;
}
#id-timeschedule .time .lang-en {
  font-weight: 800;
}
#id-timeschedule .time .delimiter {
  font-weight: 600;
  display: inline-block;
  margin: 0 .1em;
  position: relative;
  top: -.07em;
}
#id-timeschedule .event {
  padding: .8em 0 .4em 1em;
  transition: padding .3s ease;
}
#id-timeschedule .td-inner {
  position: relative;
}
#id-timeschedule .td-header {
  position: relative;
  z-index: 5;
}
#id-timeschedule .td-header .icon-icon {
  font-size: 1.2em;
  text-align: center;
  display: block;
  width: 1em;
  height: 1.2em;
  margin: auto;
  position: absolute;
  top: 0;
  right: -.45em;
  bottom: 0;
  z-index: 3;
  rotate: 0deg;
  transition: rotate .3s ease;
}
#id-timeschedule .td-header .icon-icon::before {
  background-color: #fff;
  border-width: .2em;
  border-style: solid;
  border-radius: 50%;
  content: "";
  display: block;
  width: 1.6em;
  height: 1.6em;
  margin: auto;
  position: absolute;
  top: -.5em;
  right: -.5em;
  bottom: -.5em;
  left: -.5em;
  z-index: -1;
}
#id-timeschedule .host .td-header .icon-icon::before {
  border-color: var(--org_blue_1);
}
#id-timeschedule .science .td-header .icon-icon::before {
  border-color: var(--org_purple);
}
#id-timeschedule .comedy .td-header .icon-icon::before {
  border-color: var(--org_pink);
}
#id-timeschedule .greeting .td-header .icon-icon::before {
  border-color: var(--org_yellow_0);
}
#id-timeschedule .quiz .td-header .icon-icon::before {
  border-color: var(--org_green_0);
}
#id-timeschedule .td-heading {
  border-radius: .3em;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  padding: .9em 1em .8em 1em;
  position: relative;
  z-index: 1;
}
#id-timeschedule .host .td-heading {
  background-color: var(--org_blue_1);
  color: #fff;
}
#id-timeschedule .science .td-heading {
  background-color: var(--org_purple);
}
#id-timeschedule .comedy .td-heading {
  background-color: var(--org_pink);
}
#id-timeschedule .greeting .td-heading {
  background-color: var(--org_yellow_0);
  color: var(--text_color);
}
#id-timeschedule .quiz .td-heading {
  background-color: var(--org_green_0);
}
#id-timeschedule .td-heading > .heading-inner {
  font-size: 1.3em;
  font-weight: 700;
  line-height: 1.25;
}
#id-timeschedule .td-heading .fz-small {
  font-size: .833em;
  font-weight: 400;
}
#id-timeschedule .td-body {
  line-height: 0;
  opacity: 0;
  transition: line-height .3s ease, opacity .1s linear;
}
#id-timeschedule .td-inner.greeting .cell {
  display: flex;
  gap: .6em;
}
#id-timeschedule .td-inner.greeting .cell-inner {
  text-align: center;
  width: calc((100% - .6em) / 2);
}
#id-timeschedule .td-inner .cell-heading {
  line-height: 0;
  text-align: center;
  height: 0;
  margin: 0;
  transition: line-height .3s ease, margin .3s ease;
}
#id-timeschedule .td-inner.host .cell-heading {
  color: var(--org_blue_1);
}
#id-timeschedule .td-inner.science .cell-heading {
  color: var(--org_purple);
}
#id-timeschedule .td-inner.comedy .cell-heading {
  color: var(--org_pink);
}
#id-timeschedule .td-inner.quiz .cell-heading {
  color: var(--org_green_0);
}
#id-timeschedule .td-inner .cell-heading > .heading-inner {
  font-size: 1.75em;
  font-weight: 800;
}
#id-timeschedule .td-inner.greeting .cell-heading > .heading-inner {
  font-size: 1.25em;
  font-weight: 600;
}
#id-timeschedule .td-inner.greeting .cell-heading .text-note {
  color: var(--dark_gray);
  font-size: .875em;
  font-weight: 400;
  display: block;
  margin-top: 0;
  opacity: 0;
  transition: margin .3s ease, opacity .1s linear;
}
#id-timeschedule .td-inner .img-img {
  border-radius: 1em;
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: margin .3s ease, padding .3s ease;
}
#id-timeschedule .td-inner:not(.greeting) .img-img::before {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: -3em;
  right: -3em;
  bottom: -3em;
  left: -3em;
  z-index: -1;
}
#id-timeschedule .td-inner.host .img-img::before {
  background-image: url(../img/performer/bg-kikuchi-01.webp);
}
#id-timeschedule .td-inner.science .img-img::before {
  background-image: url(../img/performer/bg-zenchan-01.webp);
}
#id-timeschedule .td-inner.comedy .img-img::before {
  background-image: url(../img/performer/bg-kojima-01.webp);
}
#id-timeschedule .td-inner.greeting .cell::before {
  background: url(../img/performer/bg-character-01.webp) center center no-repeat;
  background-size: cover;
  border-radius: .6em;
  content: "";
  display: block;
  width: 100%;
  height: 45%;
  margin: auto;
  position: absolute;
  right: -3em;
  bottom: -.5em;
  left: -3em;
  z-index: -1;
}
#id-timeschedule .td-inner .img {
  object-fit: contain;
  object-position: center top;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#id-timeschedule .td-inner.host .img {
  width: 122%;
  height: 122%;
  top: 3%;
  left: -5%;
}
#id-timeschedule .td-inner.science .img {
  width: 120%;
  height: 120%;
  left: -5%;
}
#id-timeschedule .td-inner.comedy .img {
  width: 200%;
  height: 200%;
  left: -50%;
}
#id-timeschedule .td-inner.greeting .fukkun .img-img {
  left: 3%;
}
#id-timeschedule .td-inner.greeting .happyon .img-img {
  left: 0;
}
#id-timeschedule .subbox {
  background-color: #fff;
  border-radius: .7em;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 3;
  transition: margin .3s ease, padding .3s ease;
}
#id-timeschedule .subbox-heading {
  line-height: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  position: relative;
  transition: line-height .3s ease, margin .3s ease, padding .3s ease;
}
#id-timeschedule .subbox-heading > .heading-inner {
  color: var(--org_yellow_0);
  font-size: 1.3em;
  font-weight: 700;
}
#id-timeschedule .subbox .text-text {
  color: var(--org_pink);
  font-size: 1.03em;
  font-weight: 700;
  text-align: center;
  transition: margin .3s ease;
}
#id-timeschedule .subbox .text-text .delimiter {
  display: inline-block;
  margin: 0 .1em;
  position: relative;
}
#id-timeschedule .border .rice {
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 390px) {
  #id-timeschedule .main-stage .pkg-heading > .heading-inner {
    font-size: 1.25em;
  }
  #id-timeschedule .td-heading > .heading-inner {
    font-size: 1.35em;
  }
  #id-timeschedule .td-inner .cell {
    padding-right: 1em;
    padding-left: 1em;
  }
  #id-timeschedule .td-inner.greeting .cell::before {
    height: 47.72%;
  }
  #id-timeschedule .td-inner .cell-heading > .heading-inner {
    font-size: 2em;
  }
  #id-timeschedule .td-inner.greeting .cell-heading > .heading-inner {
    font-size: 1.5em;
  }
  #id-timeschedule .td-inner.greeting .cell-heading .text-note {
    font-size: .825em;
  }
  #id-timeschedule .subbox-heading > .heading-inner {
    font-size: 1.4em;
  }
  #id-timeschedule .subbox .text-text {
    font-size: 1.13em;
  }
}
@media screen and (min-width: 576px) {
  #id-timeschedule .main-stage .pkg-heading > .heading-inner {
    font-size: 1.4em;
  }
  #id-timeschedule .td-heading > .heading-inner {
    font-size: 1.5em;
  }
  #id-timeschedule .td-inner .cell {
    padding-right: 1.25em;
    padding-left: 1.25em;
  }
  #id-timeschedule .td-inner.greeting .cell::before {
    height: 59.9%;
  }
  #id-timeschedule .td-inner .cell-heading > .heading-inner {
    font-size: 2.25em;
  }
  #id-timeschedule .td-inner.greeting .cell-heading .text-note br:last-child {
    display: none;
  }
  #id-timeschedule .subbox-heading > .heading-inner {
    font-size: 1.65em;
  }
  #id-timeschedule .subbox .text-text {
    font-size: 1.2em;
  }
}
@media screen and (min-width: 768px) {
  #id-timeschedule .main-stage .pkg-heading > .heading-inner {
    font-size: 1.2em;
  }
  #id-timeschedule .td-heading > .heading-inner {
    font-size: 1.3em;
  }
  #id-timeschedule .td-inner .cell {
    padding-right: 1.5em;
    padding-left: 1.5em;
  }
  #id-timeschedule .td-inner.greeting .cell::before {
    height: 45.798%;
  }
  #id-timeschedule .td-inner .cell-heading > .heading-inner {
    font-size: 2em;
  }
  #id-timeschedule .td-inner.greeting .cell-heading .text-note br:last-child {
    display: inline;
  }
  #id-timeschedule .subbox-heading > .heading-inner {
    font-size: 1.3em;
  }
  #id-timeschedule .subbox .text-text {
    font-size: 1.05em;
  }
}
@media screen and (min-width: 992px) {
  #id-timeschedule .td-inner .cell {
    padding-right: 1.75em;
    padding-left: 1.75em;
  }
  #id-timeschedule .td-inner.greeting .cell::before {
    height: 59.798%;
  }
  #id-timeschedule .td-inner .cell-heading > .heading-inner {
    font-size: 2.3em;
  }
  #id-timeschedule .td-inner.greeting .cell-heading .text-note br:last-child {
    display: none;
  }
  #id-timeschedule .subbox-heading > .heading-inner {
    font-size: 1.5em;
  }
  #id-timeschedule .subbox .text-text {
    font-size: 1.2em;
  }
}
@media screen and (min-width: 1144px) {
  #id-timeschedule .td-inner .cell {
    padding-right: 2em;
    padding-left: 2em;
  }
  #id-timeschedule .td-inner.greeting .cell::before {
    height: calc(100% - 9.25em);
  }
}
@media (hover: hover) {
  #id-timeschedule .box a {
    transition: color .3s ease;
  }
  #id-timeschedule .box a:hover {
    color: var(--org_pink);
  }
}

/* .open-element */
#id-timeschedule .open-element .event {
  padding-bottom: 2em;
}
#id-timeschedule .btn-outer.open-element .icon-icon {
  rotate: 540deg;
}
#id-timeschedule .open-element .td-body {
  line-height: 1.5;
  opacity: 1;
  transition: line-height .3s ease, opacity .15s linear .15s;
}
#id-timeschedule .open-element .td-inner:not(.greeting) .img-img {
  margin-bottom: 1.5em;
  padding-top: 75%;
}
#id-timeschedule .open-element .td-inner .fukkun {
  display: flex;
  flex-direction: column;
}
#id-timeschedule .open-element .td-inner .fukkun .box {
  margin-top: auto;
}
#id-timeschedule .open-element .td-inner .fukkun .img-img {
  margin-bottom: 0;
  padding-top: 84%;
}
#id-timeschedule .open-element .td-inner .happyon .img-img {
  margin-bottom: 0;
  padding-top: 100%;
}
#id-timeschedule .open-element .td-inner.greeting .cell-heading .text-note {
  margin-top: .3em;
  opacity: 1;
  transition: margin .3s ease, opacity .15s linear .15s;
}
#id-timeschedule .open-element .td-inner.quiz .img-img {
  padding-top: 54%;
}
#id-timeschedule .open-element .cell-heading {
  line-height: 1.25;
  height: auto;
  margin: .6em 0 .75em;
}
#id-timeschedule .open-element .subbox {
  box-shadow: .25em .25em .425em -.2em rgba(var(--dark_gray-rgb), .7);
  margin-top: 1em;
  padding: 0 1em 1em;
}
#id-timeschedule .open-element .subbox-heading {
  line-height: 1.25;
  margin-bottom: 1.75em;
  padding-top: 1em;
}
#id-timeschedule .open-element .subbox-heading::before {
  background-color: var(--org_pink);
  border-top-left-radius: .7em;
  border-top-right-radius: .7em;
  content: "";
  display: block;
  width: calc(100% + 2em);
  height: calc(100% + .8em);
  margin: auto;
  position: absolute;
  top: 0;
  right: -3em;
  left: -3em;
  z-index: -1;
}
#id-timeschedule .open-element .subbox .text-text {
  margin-bottom: .3em;
}
#id-timeschedule .open-element .subbox .text-text .delimiter {
  top: -.07em;
}

/* .note */
#id-timeschedule .note {
  text-align: center;
}
#id-timeschedule .table + .note {
  margin: 2.5em 0 2em;
  padding-left: 5.3em;
}
#id-timeschedule .table + .note .text-note {
  background-color: rgba(var(--white-rgb), .5);
  border: 1px solid rgba(var(--black-rgb), .5);
  color: rgba(var(--black-rgb), .75);
  line-height: 1.25;
  text-align: left;
  display: inline-block;
  padding: .4em .7em .3em 1.7em;
}
#id-timeschedule .table + .note .text-note .symbol {
  left: .7em;
}

/* .workshop */
#id-timeschedule .craft {
  position: relative;
}
#id-timeschedule .craft::before {
  background-image: linear-gradient(135deg
  , rgba(var(--org_yellow_0-rgb), .1)
  , rgba(var(--org_yellow_0-rgb), .3)
  );
  border-radius: 38% 62% 35% 65% / 77% 62% 38% 23%;
  content: "";
  display: block;
  width: calc(100% - 2em);
  height: calc(100% + 1em);
  margin: auto;
  position: absolute;
  top: -1em;
  right: -1em;
  bottom: -1em;
  left: -1em;
  z-index: -1;
}
#id-timeschedule .workshop .pkg-header {
  margin-bottom: .5em;
  position: relative;
}
#id-timeschedule .workshop .pkg-header .text-img {
  display: block;
  width: 29%;
  position: absolute;
  top: -25%;
  right: calc(50% + 22%);
  z-index: 1;
}
#id-timeschedule .workshop .pkg-heading .heading-inner {
  display: block;
  width: 70%;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
#id-timeschedule .workshop .craft .cell {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  margin-bottom: 3em;
}
#id-timeschedule .workshop .cell-heading {
  width: 100%;
  position: relative;
}
#id-timeschedule .workshop .cell-body > .body-inner {
  display: flex;
  gap: 1em;
  padding: 1em .75em 0;
}
#id-timeschedule .workshop .cell-body > .body-inner::after {
  display: none;
}
#id-timeschedule .workshop .img-img {
  width: 34%;
}
#id-timeschedule .workshop .text-text {
  width: calc(66% - 1em);
}
#id-timeschedule .tsukuba,
#id-timeschedule .consultation {
  position: relative;
}
#id-timeschedule .tsukuba::before,
#id-timeschedule .consultation::before {
  content: "";
  display: block;
  width: calc(100% - 2em);
  height: calc(100% + 1em);
  margin: auto;
  position: absolute;
  top: -1em;
  right: -1em;
  bottom: -1em;
  left: -1em;
  z-index: -1;
}
#id-timeschedule .tsukuba::before {
  background-image: linear-gradient(135deg
  , rgba(var(--org_red-rgb), .05)
  , rgba(var(--org_red-rgb), .2)
  );
  border-radius: 53% 47% 47% 53% / 49% 24% 76% 51%;
}
#id-timeschedule .consultation::before {
  background-image: linear-gradient(135deg
  , rgba(var(--org_bluegreen-rgb), .05)
  , rgba(var(--org_bluegreen-rgb), .2)
  );
  border-radius: 68% 32% 54% 46% / 63% 45% 55% 37%;
}
#id-timeschedule .workshop .tsukuba .cell {
  margin-bottom: 3em;
}
#id-timeschedule .workshop .consultation .cell {
  margin-bottom: 5em;
}
#id-timeschedule .workshop .consultation .img-img img {
  display: block;
  width: 67%;
  margin: 0 auto;
  position: relative;
  top: -1em;
}
#id-timeschedule .workshop .note {
  margin: 2em 0 1em;
}
#id-timeschedule .workshop .note .list-note {
  background-color: rgba(var(--white-rgb), .5);
  border: 1px solid rgba(var(--black-rgb), .5);
  color: rgba(var(--black-rgb), .75);
  line-height: 1.25;
  text-align: left;
  display: inline-block;
  padding: .4em .7em .3em;
}
#id-timeschedule .workshop .list-note .text-note {
  padding-left: 1em;
}
#id-timeschedule .workshop .rice span.symbol {
  left: 0;
}
@media screen and (min-width: 768px) {
  #id-timeschedule .workshop .pkg-header .text-img {
    top: -9%;
    right: auto;
    left: calc(50% + 23%);
  }
  #id-timeschedule .workshop .pkg-header .text-img .img {
    rotate: 35deg;
  }
}

/* .ticket  */
#id-timeschedule .ticket {
  width: calc(100% - 3em);
  max-width: var(--content_max_width);
  margin: 0 auto 7em;
}
#id-timeschedule .ticket > .ticket-inner {
  position: relative;
  z-index: 7;
}
#id-timeschedule .ticket > .ticket-inner::before {
  background-color: rgba(var(--white-rgb), .3);
  border-radius: 23% 47% 54% 24% / 37% 30% 45% 39%;
  content: "";
  display: block;
  width: calc(100% - 5em);
  height: calc(100% + 3em);
  margin: auto;
  position: absolute;
  top: -5em;
  right: -5em;
  bottom: -5em;
  left: -5em;
  z-index: -1;
}
#id-timeschedule .ticket .pkg {
  display: flex;
  flex-direction: column;
  gap: 3.5em;
}
#id-timeschedule .ticket .pkg-inner {
  position: relative;
  z-index: 5;
}
#id-timeschedule .ticket .pkg-inner::before {
  background-color: rgba(var(--white-rgb), .7);
  border-radius: .7em;
  box-shadow: .25em .25em .425em -.2em rgba(var(--dark_gray-rgb), .5);
  content: "";
  display: block;
  width: calc(100% + 2.5em);
  height: calc(100% + .6em);
  margin: auto;
  position: absolute;
  right: -3em;
  bottom: -1.5em;
  left: -3em;
  z-index: -1;
}
#id-timeschedule .ticket .pkg-heading {
  color: var(--org_orange);
  line-height: 1.4;
  margin-bottom: .7em;
}
#id-timeschedule .ticket .pkg-heading > .heading-inner {
  font-size: 1.3em;
  font-weight: 600;
  text-align: center;
  display: block;
  width: 14em;
  margin: 0 auto;
}
#id-timeschedule .ticket .heading-inner .string {
  text-align: left;
  display: block;
}
#id-timeschedule .ticket .heading-inner .string:last-child {
  text-align: right;
}
#id-timeschedule .ticket .note-inner {
  margin-top: .4em;
}
@media screen and (min-width: 390px) {
  #id-timeschedule .ticket .pkg-inner::before {
    width: calc(100% + 1em);
  }
  #id-timeschedule .ticket .pkg-heading > .heading-inner {
    font-size: 1.4em;
  }
  #id-timeschedule .ticket .list-note {
    padding-right: 1em;
    padding-left: 1em;
  }
}
@media screen and (min-width: 576px) {
  #id-timeschedule .ticket .pkg-heading > .heading-inner {
    width: auto;
  }
  #id-timeschedule .ticket .heading-inner .string,
  #id-timeschedule .ticket .heading-inner .string:last-child {
    display: inline;
  }
}
@media screen and (min-width: 768px) {
  #id-timeschedule .ticket .pkg {
    flex-direction: row;
    gap: 2.5em;
  }
  #id-timeschedule .ticket .pkg-inner {
    width: calc((100% - 2.5em) / 2);
  }
  #id-timeschedule .ticket .pkg-inner::after {
    display: none;
  }
  #id-timeschedule .ticket .pkg-heading > .heading-inner {
    width: 14em;
    height: 3em;
  }
  #id-timeschedule .ticket .heading-inner .string,
  #id-timeschedule .ticket .heading-inner .string:last-child {
    display: block;
  }
}
@media screen and (min-width: 1288px) {
  #id-timeschedule .ticket .pkg-heading > .heading-inner {
    width: auto;
    height: auto;
  }
  #id-timeschedule .ticket .heading-inner .string,
  #id-timeschedule .ticket .heading-inner .string:last-child {
    display: inline;
  }
}

/* .common-header */
.common-header {
  text-align: center;
  margin: 0 0 2em;
}
.common-header .article-heading > .heading-inner {
  color: #fff;
  font-size: 2em;
  font-weight: 900;
  letter-spacing: .1em;
  padding: .3em 1em .3em 1.1em;
  position: relative;
  z-index: 7;
}
.common-header .article-heading > .heading-inner::before {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 47% 39% 55% 36% / 41% 40% 52% 50%;
  content: "";
  display: block;
  width: calc(100% + .4em);
  height: calc(100% + .8em);
  margin: auto;
  position: absolute;
  top: -3em;
  right: -3em;
  bottom: -3em;
  left: -3em;
  z-index: -3;
  overflow: hidden;
}
#id-reservation .common-header .article-heading > .heading-inner::before {
  background-image: url(../img/common-header-bg-01.webp);
}
#id-movies .common-header .article-heading > .heading-inner::before {
  background-image: url(../img/common-header-bg-02.webp);
}
#id-benrishi .common-header .article-heading > .heading-inner::before {
  background-image: url(../img/common-header-bg-03.webp);
}

/* #id-reservation */
#id-reservation .article-body {
  width: calc(100% - 3em);
  max-width: var(--content_max_width);
  margin: 0 auto 5.5em;
}
#id-reservation .pkg-inner {
  text-align: center;
  margin: 0 auto;
  position: relative;
}
#id-reservation .pkg-inner:nth-child(n+2) {
  margin-top: 1.6em;
}
#id-reservation .pkg-inner::before {
  background-image: linear-gradient(135deg
  , rgba(var(--org_light_green_1-rgb), .15)
  , rgba(var(--org_light_green_1-rgb), .33)
  );
  border-radius: 25% 18% 27% 25% / 24% 15% 31% 21%;
  content: "";
  display: block;
  width: calc(100% + 1em);
  max-width: 63em;
  margin: auto;
  position: absolute;
  top: -5em;
  right: -1em;
  bottom: -3em;
  left: -1em;
  z-index: -1;
}
#id-reservation .pkg-inner:first-child::before {
  background-image: linear-gradient(135deg
  , rgba(var(--org_light_purple-rgb), .15)
  , rgba(var(--org_light_purple-rgb), .33)
  );
  height: calc(100% - 1em);
}
#id-reservation .pkg-inner:last-child::before {
  background-image: linear-gradient(135deg
  , rgba(var(--org_dark_yellow_0-rgb), .15)
  , rgba(var(--org_dark_yellow_0-rgb), .33)
  );
  height: calc(100% - 4em);
}
#id-reservation .pkg-header {
  margin-bottom: 0;
}
#id-reservation .pkg-heading {
  width: 70%;
  max-width: 370px;
  margin: 0 auto .7em;
}
#id-reservation .fz-small {
  background-color: rgba(var(--white-rgb), .5);
  border: 1px solid rgba(var(--black-rgb), .5);
  color: rgba(var(--black-rgb), .75);
  font-size: .925em;
  line-height: 1.25;
  text-align: center;
  display: block;
  width: 12em;
  margin: 1em auto 0;
  padding: .3em 0 .2em;
}
#id-reservation .cell {
  display: flex;
  flex-direction: column;
  max-width: 1000px;
  margin: 0 auto;
}
#id-reservation .cell-heading {
  margin: 1.5em 0 0;
}
#id-reservation .text-outer {
  padding: .6em 1.5em 1.5em;
}
#id-reservation .text-outer .text-text {
  font-size: 1.25em;
  text-align: left;
  display: inline-block;
}
#id-reservation .text-outer .text-text > .string {
  text-align: left;
  display: block;
}
#id-reservation .btn-outer {
  padding-bottom: 2.5em;
}
#id-reservation .text-btn {
  font-size: 1.3em;
}
#id-reservation .text-btn .string {
  letter-spacing: .1em;
  padding-left: 1.1em;
}
#id-reservation .img-img {
  width: 5.5em;
  margin: 1em auto 0;
}
@media screen and (min-width: 390px) {
  #id-reservation .pkg-inner::before {
    width: calc(100% - .5em);
  }
}
@media screen and (min-width: 576px) {
  #id-reservation .pkg-inner {
    width: calc(100% - 3em);
  }
  #id-reservation .cell {
    flex-direction: row;
    gap: 1.5em;
  }
  #id-reservation .cell-inner {
    width: calc((100% - 1.5em) / 2);
  }
}
@media screen and (min-width: 992px) {
  #id-reservation .text-btn .max-w575-none {
    display: none;
  }
}

/* #id-movies */
#id-movies .pkg {
  width: calc(100% - 3em);
  max-width: var(--content_max_width);
  margin: 0 auto 5.5em;
}
#id-movies .pkg > .pkg-inner {
  max-width: 35em;
  margin: 0 auto;
}
#id-movies .item {
  display: flex;
  flex-direction: column;
  gap: 2.5em;
}
#id-movies .movie-heading {
  margin: 0 0 .6em;
}
#id-movies .movie-heading > .heading-inner {
  font-size: 1.25em;
  font-weight: 800;
  position: relative;
  z-index: 3;
}
#id-movies .movie-heading > .heading-inner::before {
  background-color: rgba(var(--org_light_orange-rgb), .6);
  border-radius: 53% 47% 59% 41% / 42% 59% 41% 58%;
  content: "";
  display: block;
  width: 2.5em;
  height: 2.5em;
  position: absolute;
  top: -.7em;
  left: -.7em;
  z-index: -1;
}
#id-movies .movie-body > .body-inner {
  aspect-ratio: 16 / 9;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
#id-movies .movie-movie {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 3;
}
#id-movies .movie-movie iframe {
  border-radius: .6em;
  box-shadow: .25em .25em .425em -.2em rgba(var(--dark_gray-rgb), .7);
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  #id-movies .pkg > .pkg-inner {
    width: calc(100% - 4em);
    max-width: 63em;
  }
  #id-movies .item {
    flex-direction: row;
    flex-wrap: wrap;
  }
  #id-movies .item-inner {
    width: calc((100% - 2.5em) / 2);
  }
  #id-movies .movie-heading {
    display: flex;
    align-items: center;
    height: 3.3em;
  }
}

/* #id-benrishi */
#id-benrishi .article-body {
  width: calc(100% - 3em);
  max-width: var(--content_max_width);
  margin: 0 auto 5.5em;
  position: relative;
  z-index: 3;
}
#id-benrishi .article-body::before {
  background-image: linear-gradient(135deg
  , rgba(var(--white-rgb), .25)
  , rgba(var(--white-rgb), .47)
  );
  border-radius: 18% 40% 18% 32% / 18% 15% 18% 15%;
  content: "";
  display: block;
  width: calc(100% + 1em);
  max-width: 63em;
  height: calc(100% + 1em);
  margin: auto;
  position: absolute;
  top: -1em;
  right: -1em;
  bottom: -1em;
  left: -1em;
  z-index: -1;
}
#id-benrishi .article-body > .body-inner {
  max-width: 35em;
  margin: 0 auto;
  padding: 1em;
}
@media screen and (min-width: 390px) {
  #id-benrishi .article-body::before {
    width: calc(100% - .5em);
  }
}
@media screen and (min-width: 576px) {
  #id-benrishi .article-body::before {
    width: calc(100% - 2em);
  }
}
@media screen and (min-width: 768px) {
  #id-benrishi .article-body::before {
    width: calc(100% - 4em);
  }
  #id-benrishi .article-body > .body-inner {
    text-align: center;
    max-width: 63em;
  }
  #id-benrishi .article-body .text-text {
    text-align: left;
    display: inline-block;
  }
}

/* .go-to-top */
.go-to-top {
  width: calc(100% - 1em);
  max-width: calc(var(--content_max_width) - 4em);
  height: 0;
  margin: auto;
  position: fixed;
  right: 0;
  bottom: 1em;
  left: 0;
  z-index: 97;
}
.go-to-top a {
  background-color: #fff;
  border-radius: 62% 38% 52% 48% / 43% 58% 42% 57%;
  line-height: 3em;
  text-align: center;
  display: block;
  width: 3em;
  height: 3em;
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity .5s ease .5s;
}
.fadein .go-to-top a {
  opacity: 1;
}
.go-to-top .icon-icon {
  color: var(--org_dark_orange);
  font-size: 2.5em;
  display: block;
}

/* .footer */
.footer .article {
  width: calc(100% - 3em);
  max-width: var(--content_max_width);
  margin: 0 auto 3em;
}
.footer .article-inner {
  margin: 0 auto;
  padding: .75em;
  position: relative;
  z-index: 3;
}
.footer .note {
  text-align: center;
  margin: -1.5em 0 3em;
}
.footer .note .text-text {
  font-weight: 500;
  line-height: 1.25;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
.footer .note .box {
  display: block;
}
.footer .note .string {
  display: block;
  margin-top: .45em;
}
.footer .note .link {
  display: block;
  margin-top: .35em;
}
.footer .note .box-inner {
  background-color: var(--org_navy);
  border-radius: 1.2em;
  color: #fff;
  display: inline-block;
  padding: .4em 1.2em .3em;
}
.footer .note .fz-large {
  font-size: 1.5em;
  font-weight: 700;
}
.footer .note .fz-small {
  font-size: .9em;
}
.footer .note .lang-en {
  font-size: 1.125em;
  font-weight: 700;
}
a[href^="#mailgo"] {
  color: inherit;
  text-decoration: none;
}
#m-outlook,
#m-yahoo,
.mail-text {
  display: none;
}
@media screen and (min-width: 390px) {
  .footer .note {
    font-size: 1.1em;
  }
}
@media screen and (min-width: 576px) {
  .footer .note .text-text {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0 .7em;
  }
  .footer .note .box {
    width: 100%;
  }
  .footer .note .string {
    width: 100%;
  }
  .footer .note .link.tel {
    margin-left: auto;
  }
  .footer .note .link.mail {
    margin-right: auto;
  }
}
.footer .article-inner:not(.note)::before {
  background-image: linear-gradient(135deg
  , rgba(var(--org_light_blue_0-rgb), .25)
  , rgba(var(--org_light_blue_0-rgb), .67)
  );
  border-radius: 13% 39% 6% 22% / 24% 22% 18% 11%;
  content: "";
  display: block;
  width: calc(100% + 1em);
  max-width: 63em;
  height: 100%;
  margin: auto;
  position: absolute;
  top: -1em;
  right: -1em;
  bottom: -1.5em;
  left: -1em;
  z-index: -1;
}
.footer .article-heading {
  max-width: 35em;
  margin: 0 auto 1.5em;
  padding: .5em 1.5em;
}
.footer .dl {
  text-align: center;
  max-width: 52.2em;
  margin: 0 auto;
}
.footer .dl-inner {
  display: inline-block;
  padding-left: 3em;
  position: relative;
}
.footer .dt {
  width: 3em;
  position: absolute;
  left: 0;
}
.footer .dt .delimiter {
  text-align: center;
  display: inline-block;
  width: .99em;
}
.footer .dd {
  text-align: left;
  width: 18.2em;
}
.footer .dd .text-text {
  display: inline-block;
}
.footer .dd .string {
  font-feature-settings: normal;
  white-space: nowrap;
}
@media screen and (min-width: 390px) {
  .footer .article-inner::before {
    width: calc(100% - .5em);
  }
}
@media screen and (min-width: 576px) {
  .footer .article-inner::before {
    width: calc(100% - 2em);
  }
  .footer .dl-inner {
    padding-left: 4em;
  }
  .footer .dt {
    left: 1em;
  }
  .footer .dd {
    width: 29.7em;
  }
}
@media screen and (min-width: 768px) {
  .footer .article-inner::before {
    width: calc(100% - 4em);
  }
  .footer .dd {
    width: 40.2em;
  }
}
@media screen and (min-width: 992px) {
  .footer .dd {
    width: 48.2em;
  }
}

/* .copyright */
.footer .copyright {
  line-height: 1.25;
  text-align: center;
  width: calc(100% - 4em);
  margin: 0 auto;
  padding: 0 0 5dvh;
}
.footer .copyright small {
  font-size: .87em;
}


/* *** */
