@charset "UTF-8";
/*----------------------------------------------------
setting
----------------------------------------------------*/
.font-zool {
  font-family: "M PLUS 1p", sans-serif;
}

/*----------------------------------------------------
color
----------------------------------------------------*/
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: bottom;
  background: 0 0;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

li,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

a,
em,
i,
small,
span,
strong {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

html {
  font-size: 62.5%;
  overflow-x: hidden !important;
}

body {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  color: #000;
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 400;
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  -moz-font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.3rem;
  }
}

a {
  text-decoration: underline;
  color: #0000FF;
  transition: all 0.2s;
}
@media screen and (max-width: 768px) {
  a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
}

a:hover {
  text-decoration: none;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  a:hover {
    opacity: 1;
  }
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  pointer-events: none;
}

strong {
  font-weight: 700;
}

input {
  padding: 0;
  border: none;
  background: 0 0;
}

* {
  box-sizing: border-box;
  transition: font-size 0.1s linear;
  backface-visibility: hidden;
}

sup {
  vertical-align: super;
}

sub {
  vertical-align: sub;
}

.u-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp {
    display: block;
  }
}

/*--------------------------------------------------------------------------------------------------------
	animation
--------------------------------------------------------------------------------------------------------*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*--------------------------------------------------------------------------------------------------------
	common
--------------------------------------------------------------------------------------------------------*/
.link-tell {
  pointer-events: none;
  color: #000;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .link-tell {
    pointer-events: inherit;
    color: #0000FF;
    text-decoration: underline;
  }
}

/**------------header------------**/
.gHeader {
  width: 100%;
}
.gHeader .gNav {
  position: relative;
}
.gHeader .gNav .btn--menu-wrap {
  border: none;
  padding: 0;
  background: transparent;
  border-radius: 0;
  color: inherit;
  display: none;
}
@media screen and (max-width: 768px) {
  .gHeader .gNav .btn--menu-wrap {
    width: 100%;
    display: flex;
    justify-content: end;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    background-color: #fff;
  }
}
.gHeader .gNav .btn--menu {
  border: none;
  padding: 0;
  background: transparent;
  border-radius: 0;
  color: inherit;
  display: none;
}
@media screen and (max-width: 768px) {
  .gHeader .gNav .btn--menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 57px;
    height: 44px;
    position: relative;
  }
}
.gHeader .gNav .btn--menu .bar {
  position: relative;
  width: 30px;
  height: 20px;
}
.gHeader .gNav .btn--menu .bar::before, .gHeader .gNav .btn--menu .bar::after,
.gHeader .gNav .btn--menu .bar span {
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  background: #0181B2;
  border-radius: 2px;
  transition: 0.2s;
  height: 3px;
}
.gHeader .gNav .btn--menu .bar::before, .gHeader .gNav .btn--menu .bar::after {
  content: "";
  transition-property: transform;
}
.gHeader .gNav .btn--menu .bar::before {
  top: 50%;
  transform: translate3D(0, -11px, 0);
}
.gHeader .gNav .btn--menu .bar::after {
  bottom: 50%;
  transform: translate3D(0, 11px, 0);
}
.gHeader .gNav .btn--menu .bar span {
  top: 50%;
  transform: translate(0, -50%);
  transition-property: opacity;
}
@media screen and (max-width: 768px) {
  .gHeader .gNav.ready .bg {
    transition: opacity 0.8s;
  }
  .gHeader .gNav.ready .navigation {
    transition: transform 0.8s;
  }
}
@media screen and (max-width: 768px) {
  .gHeader .gNav.active .btn--menu-wrap {
    background-color: transparent !important;
  }
  .gHeader .gNav.active .btn--menu .bar::before {
    transform: translate3D(0, -50%, 0) rotate(135deg);
  }
  .gHeader .gNav.active .btn--menu .bar::after {
    transform: translate3D(0, 50%, 0) rotate(45deg);
  }
  .gHeader .gNav.active .btn--menu .bar span {
    opacity: 0;
  }
  .gHeader .gNav.active .navigation {
    transform: translate3d(0, 0, 0);
  }
}
.gHeader .gNav .bg {
  display: none;
}
@media screen and (max-width: 768px) {
  .gHeader .gNav .bg {
    display: block;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    pointer-events: none;
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {
  .gHeader .gNav .navigation {
    z-index: 100;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate3d(0, -200%, 0);
    background: url(../img/common/bg-hbg.jpg) no-repeat;
    background-position: top left;
    background-size: 100% 100%;
    overflow-y: scroll;
  }
}
.gHeader .gNav .navigation .nav-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  box-sizing: border-box;
  width: min(1150px, 98vw);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .gHeader .gNav .navigation .nav-list {
    display: block;
    width: auto;
    padding-top: 80px;
    width: 90vw;
  }
}
.gHeader .gNav .navigation .nav-list .nav-list-item {
  box-sizing: border-box;
  width: calc((100% - 45px) / 5);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .gHeader .gNav .navigation .nav-list .nav-list-item {
    width: 90vw;
    margin: 0 auto;
    border-bottom: #0181B2 1px solid;
    padding: 25px 0;
  }
  .gHeader .gNav .navigation .nav-list .nav-list-item img {
    height: 30px;
    width: auto;
  }
}
.gHeader .gNav .navigation .nav-list .nav-list-item.no-link a {
  pointer-events: none;
  cursor: inherit;
}
@media screen and (max-width: 768px) {
  .gHeader .gNav .navigation .nav-list .nav-list-item.no-link a img {
    height: 56px;
  }
}
.gHeader .gNav .navigation .nav-list .nav-list-item.no-link:hover {
  cursor: default;
}
.gHeader .gNav .navigation .nav-list .nav-list-item.no-link:hover img {
  transform: inherit;
}
.gHeader .gNav .navigation .nav-list a {
  display: block;
  position: relative;
}

.lower-page .navigation {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
  z-index: 10;
}
.lower-page .navigation.change-color {
  width: 100%;
  top: 0;
  padding: 10px 0;
  background-color: #fff;
  transition: 0.3s;
}

/**------------footer------------**/
.gFooter .btn-x {
  display: block;
  width: min(253px, 25.3vw);
  margin: 0 auto 10px;
}
@media screen and (max-width: 768px) {
  .gFooter .btn-x {
    width: 33.73vw;
  }
}
.gFooter .wrap {
  background-color: #91CEE7;
  color: #fff;
  text-align: center;
  margin-top: 100px;
  padding: 25px 0;
}
@media screen and (max-width: 768px) {
  .gFooter .wrap {
    margin-top: 50px;
    padding: 15px 0;
  }
}
.gFooter .copyright {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .gFooter .copyright {
    font-size: 13px;
  }
}
.gFooter .pagetop {
  display: block;
  width: min(116px, 11.6vw);
  position: fixed;
  right: 3%;
  bottom: 4%;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .gFooter .pagetop {
    width: 15.46vw;
    height: auto;
    right: 3%;
    bottom: 3%;
  }
}

/*--------------------------------------------------------------------------------------------------------
	top-page
--------------------------------------------------------------------------------------------------------*/
.header-logo {
  width: min(1480px, 92vw);
  margin: 10px auto;
}
@media screen and (max-width: 768px) {
  .header-logo {
    margin: 0;
    position: fixed;
    z-index: 1000;
    top: 13px;
    left: 5px;
    width: 55%;
  }
}
.header-logo a {
  display: inline-block;
}
.header-logo img {
  width: min(580px, 40vw);
}
@media screen and (max-width: 768px) {
  .header-logo img {
    width: 55vw;
    height: auto;
  }
}

.top-page {
  animation: fadeIn 1.5s 0s backwards;
}
.top-page .main-visual {
  width: min(1480px, 92vw);
  margin: 0 auto 50px;
}
@media screen and (max-width: 768px) {
  .top-page .main-visual {
    width: 100%;
    margin-top: 44px;
    margin-bottom: 0;
  }
}
.top-page .main-visual img {
  width: 100%;
  height: auto;
}
.top-page .info-wrap {
  background: url(../img/top/bg-info.jpg) no-repeat;
  background-position: top center;
  background-size: 100% 100%;
  margin-top: 70px;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .top-page .info-wrap {
    margin-top: 30px;
    padding-bottom: 30px;
  }
}
.top-page .info-wrap .info-date {
  width: min(885px, 88.5vw);
  margin: 0 auto 10px;
}
@media screen and (max-width: 768px) {
  .top-page .info-wrap .info-date {
    margin-bottom: 15px;
  }
}
.top-page .info-wrap .info-txt-wrap {
  width: min(900px, 90vw);
  margin: 35px auto 0;
  text-align: center;
  line-height: 2;
  color: #0181B2;
  background: url(../img/top/bg-info-txt.png) no-repeat;
  background-position: top center;
  background-size: 100% 100%;
  font-size: clamp(18px, 2.34vw, 22px);
  padding: 35px 0;
}
@media screen and (max-width: 768px) {
  .top-page .info-wrap .info-txt-wrap {
    width: 90vw;
    background: url(../img/top/bg-info-txt_sp.png) no-repeat;
    background-position: top left;
    background-size: 100% 100%;
    font-size: 12px;
    text-align: left;
    padding: 20px 4%;
    margin-top: 25px;
  }
}
.top-page .info-data-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: min(885px, 88.5vw);
  margin: 0 auto 15px;
}
@media screen and (max-width: 768px) {
  .top-page .info-data-wrap {
    align-items: flex-start;
    margin-bottom: 10px;
  }
}
.top-page .info-data-wrap .data-left {
  width: min(135px, 13.5vw);
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .top-page .info-data-wrap .data-left {
    width: 18vw;
  }
}
.top-page .info-data-wrap .data-left span {
  font-size: clamp(20px, 2.6vw, 25px);
  line-height: 1;
  display: block;
  width: 100%;
  text-align: center;
  color: #0181B2;
  border: #0181B2 1px solid;
  padding: 8px 0;
}
@media screen and (max-width: 768px) {
  .top-page .info-data-wrap .data-left span {
    font-size: 13px;
    padding: 5px 0;
  }
}
.top-page .info-data-wrap .data-right {
  margin-left: 15px;
}
@media screen and (max-width: 768px) {
  .top-page .info-data-wrap .data-right {
    margin-left: 10px;
  }
}
.top-page .info-data-wrap .data-right img {
  height: 40px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .top-page .info-data-wrap .data-right img {
    height: 22px;
    width: auto;
    vertical-align: top;
  }
}
@media screen and (max-width: 768px) {
  .top-page .info-data-wrap .data-right picture + img {
    margin-top: 5px;
  }
}
.top-page .info-data-wrap .data-right span {
  font-size: clamp(13px, 1.69vw, 18px);
  display: inline-block;
  margin-left: 5px;
}
@media screen and (max-width: 768px) {
  .top-page .info-data-wrap .data-right span {
    font-size: 11px;
    display: block;
    line-height: 1;
    margin-top: 5px;
    margin-left: 0;
  }
}
.top-page .info-data-wrap:last-child {
  margin-bottom: 0;
}
.top-page .news-wrap {
  margin: 60px auto;
}
@media screen and (max-width: 768px) {
  .top-page .news-wrap {
    margin: 30px auto;
  }
}
.top-page .news-wrap .news-ttl {
  margin-bottom: 30px;
  text-align: center;
}
.top-page .news-wrap .news-ttl img {
  height: 35px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .top-page .news-wrap .news-ttl img {
    height: 28px;
  }
}
.top-page .news-wrap .news-inner {
  width: min(900px, 90vw);
  height: 349px;
  margin: 0 auto;
  background: url(../img/top/bg-news-wrap.jpg) no-repeat;
  background-position: top center;
  background-size: 100% 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-page .news-wrap .news-inner {
    width: 90vw;
    background: url(../img/top/bg-news-wrap_sp.jpg) no-repeat;
    background-position: top center;
    background-size: 100% 100%;
    height: 219px;
  }
}
.top-page .news-wrap .news-inner .news-scroll-box {
  overflow-y: scroll;
  width: min(790px, 79vw);
  height: 267px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .top-page .news-wrap .news-inner .news-scroll-box {
    height: 160px;
  }
}
.top-page .news-wrap .news-inner .news-scroll-box::-webkit-scrollbar {
  width: 6px;
}
.top-page .news-wrap .news-inner .news-scroll-box::-webkit-scrollbar-track {
  background-color: transparent;
}
.top-page .news-wrap .news-inner .news-scroll-box::-webkit-scrollbar-thumb {
  background-color: #91CEE7;
}
.top-page .news-wrap .news-item {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .top-page .news-wrap .news-item {
    margin-bottom: 25px;
  }
}
.top-page .news-wrap .news-item:last-child {
  margin-bottom: 0;
}
.top-page .news-wrap .news-item .news-item-inner {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
}
.top-page .news-wrap .news-item .news-item-inner .news-date {
  width: 106px;
  flex-shrink: 0;
  font-size: 15px;
  background-color: #A7D8EC;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-page .news-wrap .news-item .news-item-inner .news-date {
    font-size: 13px;
    width: 22vw;
  }
}
.top-page .news-wrap .news-item .news-item-inner .news-txt {
  margin-left: 15px;
}
@media screen and (max-width: 768px) {
  .top-page .news-wrap .news-item .news-item-inner .news-txt {
    margin-left: 10px;
    font-size: 13px;
  }
}
.top-page .top-bnr {
  width: min(800px, 80vw);
  margin: 0 auto 60px;
}
@media screen and (max-width: 768px) {
  .top-page .top-bnr {
    width: 90vw;
    margin-bottom: 30px;
  }
}
.top-page .top-bnr a {
  display: block;
  width: 100%;
}
.top-page .top-bnr a img {
  border: 1px solid #808080;
}
.top-page .top-bnr .bnr-txt {
  color: #0181B2;
  font-size: clamp(26px, 3.38vw, 32px);
  font-weight: bold;
  text-align: center;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .top-page .top-bnr .bnr-txt {
    font-size: 20px;
    line-height: 1.3;
  }
}

/*--------------------------------------------------------------------------------------------------------
	下層ページ
--------------------------------------------------------------------------------------------------------*/
.lower-page {
  animation: fadeIn 1.5s 0s backwards;
}
.lower-page .lower-page-head {
  width: 100%;
  background: url(../img/common/bg-ttl-main.jpg) no-repeat;
  background-position: top;
  background-size: 100% 100%;
  padding-top: 92px;
  margin-bottom: 92px;
}
@media screen and (max-width: 768px) {
  .lower-page .lower-page-head {
    background: url(../img/common/bg-ttl-main_sp.jpg) no-repeat;
    background-position: top;
    background-size: 100% 100%;
    margin-top: 44px;
    margin-bottom: 44px;
    padding: 0;
  }
}
.lower-page .lower-page-head .ttl-h2 {
  text-align: center;
  margin: 0 auto;
  padding: 75px 0;
}
@media screen and (max-width: 768px) {
  .lower-page .lower-page-head .ttl-h2 {
    padding: 30px 0;
  }
}
.lower-page .lower-page-head .ttl-h2 img {
  height: 52px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .lower-page .lower-page-head .ttl-h2 img {
    height: 29px;
  }
}
.lower-page .lower-content {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .lower-page .lower-content {
    margin-bottom: 60px;
  }
}
.lower-page .lower-content .ttl-h3 {
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .lower-page .lower-content .ttl-h3 {
    margin-bottom: 15px;
  }
}
.lower-page .lower-content .ttl-h3 img {
  height: 35px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .lower-page .lower-content .ttl-h3 img {
    height: 28px;
  }
}
.lower-page .lower-content .notice-list {
  width: min(900px, 90vw);
  margin: 0 auto;
}
.lower-page .lower-content .notice-list .notice-list-item {
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.8;
}
.lower-page .lower-content .notice-list .notice-list-item::before {
  content: "・";
  font-feature-settings: normal;
  -webkit-font-feature-settings: normal;
  -moz-font-feature-settings: normal;
}
.lower-page .lower-content .notice-list.kome .notice-list-item::before {
  content: "※";
  font-feature-settings: normal;
  -webkit-font-feature-settings: normal;
  -moz-font-feature-settings: normal;
}
.lower-page .about-page .content-inner {
  width: min(750px, 75vw);
  margin: 0 auto 15px;
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .lower-page .about-page .content-inner {
    width: 90vw;
  }
}
.lower-page .about-page .content-inner .content-left {
  width: 96px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .lower-page .about-page .content-inner .content-left {
    width: 18vw;
  }
}
.lower-page .about-page .content-inner .content-left span {
  display: block;
  width: 100%;
  font-size: 18px;
  color: #0181B2;
  border: #0181B2 1px solid;
  padding: 0 5px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lower-page .about-page .content-inner .content-left span {
    font-size: 13px;
    padding: 0;
  }
}
.lower-page .about-page .content-inner .content-right {
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .lower-page .about-page .content-inner .content-right {
    font-size: 13px;
  }
}
.lower-page .about-page .content-inner .content-right span {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .lower-page .about-page .content-inner .content-right span {
    font-size: 11px;
    display: block;
  }
}
.lower-page .about-page .content-inner .content-right .date-time {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .lower-page .about-page .content-inner .content-right .date-time {
    font-size: 11px;
    display: inline;
  }
}
.lower-page .about-page .content-inner:last-child {
  margin-bottom: 0;
}
.lower-page .about-page .content-inner.content-long {
  width: min(900px, 90vw);
}
@media screen and (max-width: 768px) {
  .lower-page .about-page .content-inner.content-long {
    width: 90vw;
  }
}
.lower-page .about-page .content-inner.content-long .content-left {
  width: 139px;
}
@media screen and (max-width: 768px) {
  .lower-page .about-page .content-inner.content-long .content-left {
    width: 28vw;
  }
}
.lower-page .about-page .txt-center {
  text-align: center;
}
.lower-page .about-page .img-map {
  width: min(900px, 90vw);
  margin: 0 auto;
}
.lower-page .ticket-page .lower-content {
  width: min(960px, 96vw);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .lower-content {
    width: 90vw;
    margin-bottom: 30px;
  }
}
.lower-page .ticket-page .lower-content .content-inner {
  width: min(920px, 88vw);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .lower-content .content-inner {
    width: 90vw;
  }
}
.lower-page .ticket-page .lower-content.bg-01, .lower-page .ticket-page .lower-content.bg-02 {
  padding: 0 0 30px;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .lower-content.bg-01, .lower-page .ticket-page .lower-content.bg-02 {
    padding: 0 0 15px;
    margin-bottom: 20px;
  }
}
.lower-page .ticket-page .lower-content.bg-01 .content-inner, .lower-page .ticket-page .lower-content.bg-02 .content-inner {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .lower-content.bg-01 .content-inner, .lower-page .ticket-page .lower-content.bg-02 .content-inner {
    width: 100%;
  }
}
.lower-page .ticket-page .lower-content.bg-01 {
  border: 2px solid #97DCF0;
}
.lower-page .ticket-page .lower-content.bg-02 {
  border: 2px solid #A4D3EA;
}
.lower-page .ticket-page .btn-entry a {
  display: block;
  width: min(383px, 38vw);
  margin: 40px auto;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .btn-entry a {
    width: 76.53vw;
    margin: 20px auto;
  }
}
.lower-page .ticket-page .ttl-h4 {
  color: #fff;
  font-size: clamp(20px, 2.6vw, 24px);
  font-weight: bold;
  margin-bottom: 15px;
  padding: 11px 15px;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .ttl-h4 {
    font-size: 15px;
    margin-bottom: 10px;
    padding: 10px;
  }
}
.lower-page .ticket-page .ttl-h4 + p {
  margin: 20px 0;
}
.lower-page .ticket-page .ttl-h5 {
  color: #0181B2;
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .ttl-h5 {
    font-size: 13px;
    margin: 0 0 5px;
  }
}
.lower-page .ticket-page .ttl-h5::after {
  content: "";
  width: calc(100% - 150px);
  border-top: 1px #0181B2 dashed;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .ttl-h5::after {
    width: calc(100% - 105px);
  }
}
.lower-page .ticket-page .ttl-h5.ttl-h5-long::after {
  content: "";
  width: calc(100% - 150px);
  border-top: 1px #0181B2 dashed;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .ttl-h5.ttl-h5-long::after {
    width: calc(100% - 100px);
  }
}
.lower-page .ticket-page .bg-01 .ttl-h4 {
  background-color: #97DCF0;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .bg-01 .ttl-h4 {
    text-align: center;
  }
}
.lower-page .ticket-page .bg-01 .ttl-h5 {
  color: #00B4D2;
}
.lower-page .ticket-page .bg-01 .ttl-h5::after {
  border-top: 1px #00B4D2 dashed;
}
.lower-page .ticket-page .bg-02 .ttl-h4 {
  background-color: #A4D3EA;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .bg-02 .ttl-h4 {
    text-align: center;
  }
}
.lower-page .ticket-page .bg-02 .ttl-h5 {
  color: #239DD0;
}
.lower-page .ticket-page .bg-02 .ttl-h5::after {
  border-top: 1px #239DD0 dashed;
}
.lower-page .ticket-page .bg-02 .star {
  color: #239DD0 !important;
}
.lower-page .ticket-page p + .ttl-h5 {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page p + .ttl-h5 {
    margin-top: 20px;
  }
}
.lower-page .ticket-page .content-box {
  display: flex;
  justify-content: flex-start;
}
.lower-page .ticket-page .content-box .content-left {
  width: 96px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .content-box .content-left {
    width: 18vw;
  }
}
.lower-page .ticket-page .content-box .content-left span {
  display: block;
  width: 100%;
  font-size: 18px;
  color: #0181B2;
  border: #0181B2 1px solid;
  padding: 0 5px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .content-box .content-left span {
    font-size: 13px;
    padding: 0;
  }
}
.lower-page .ticket-page .content-box .content-right {
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .content-box .content-right {
    font-size: 13px;
  }
}
.lower-page .ticket-page .content-box .content-right span {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .content-box .content-right span {
    font-size: 11px;
    display: block;
  }
}
.lower-page .ticket-page .content-box.content-long .content-left {
  width: 123px;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .content-box.content-long .content-left {
    width: 23.06vw;
  }
}
.lower-page .ticket-page .content-box + .content-box {
  margin-top: 10px;
}
.lower-page .ticket-page .bg-01 .content-box .content-left span {
  color: #00B4D2;
  border: #00B4D2 1px solid;
}
.lower-page .ticket-page .bg-02 .content-box .content-left span {
  color: #239DD0;
  border: #239DD0 1px solid;
}
.lower-page .ticket-page .notice {
  font-size: 14px;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .notice {
    font-size: 11px;
  }
}
.lower-page .ticket-page .notice + .ttl-h5 {
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .notice + .ttl-h5 {
    margin-top: 20px;
  }
}
.lower-page .ticket-page p + .notice {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page p + .notice {
    margin-top: 5px;
  }
}
.lower-page .ticket-page .entry-date-wrap {
  margin: 25px 0 0;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .entry-date-wrap {
    margin: 15px 0 0;
  }
}
.lower-page .ticket-page .entry-date-wrap .info-txt {
  margin-bottom: 5px;
}
.lower-page .ticket-page .entry-date-wrap .info-txt .star {
  color: #00B4D2;
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .entry-date-wrap .info-txt .star {
    font-size: 16px;
    display: inline;
  }
}
.lower-page .ticket-page .entry-date-wrap .img {
  max-width: 892px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .entry-date-wrap .img {
    width: 100%;
  }
}
.lower-page .ticket-page .h4-bottom-inner {
  margin: 0 2%;
}
.lower-page .ticket-page .include-accordion {
  width: 100%;
  padding: 0;
  margin-bottom: 30px;
}
.lower-page .ticket-page .include-accordion:last-child {
  margin-bottom: 0;
}
.lower-page .ticket-page .include-accordion .include-accordion__inner:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .include-accordion .include-accordion__inner:not(:last-child) {
    margin-bottom: 20px;
  }
}
.lower-page .ticket-page .include-accordion .accordion_box {
  height: 0;
  padding: 0;
  overflow: hidden;
  margin: 0;
  transition: 0.8s;
}
.lower-page .ticket-page .include-accordion .accordion_box__inner {
  padding: 20px 50px 20px 10px;
  margin-left: 15px;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .include-accordion .accordion_box__inner {
    padding: 20px 10px 20px 0;
  }
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .include-accordion .accordion_box__inner .notice-list {
    width: 100%;
  }
}
.lower-page .ticket-page .include-accordion .accordionBtn {
  position: relative;
  border: none;
  width: 100%;
  color: #fff;
  cursor: pointer;
  text-align: left;
  padding: 12px 0 12px 20px;
  font-size: 1em;
  background-color: #65BADE;
}
.lower-page .ticket-page .include-accordion .accordionBtn::before, .lower-page .ticket-page .include-accordion .accordionBtn::after {
  content: "";
  position: absolute;
  top: 24px;
  width: 1.5px;
  height: 8px;
  background-color: #fff;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .include-accordion .accordionBtn::before, .lower-page .ticket-page .include-accordion .accordionBtn::after {
    top: 17px;
  }
}
.lower-page .ticket-page .include-accordion .accordionBtn::before {
  transform: rotate(-45deg);
  right: 35px;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .include-accordion .accordionBtn::before {
    transform: rotate(-45deg);
    right: 25px;
  }
}
.lower-page .ticket-page .include-accordion .accordionBtn::after {
  transform: rotate(45deg);
  right: 30px;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .include-accordion .accordionBtn::after {
    transform: rotate(45deg);
    right: 20px;
  }
}
.lower-page .ticket-page .include-accordion .accordionBtn .accordionBtn__inner {
  font-size: clamp(20px, 2.6vw, 24px);
  font-weight: bold;
  padding-right: 50px;
  display: block;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .include-accordion .accordionBtn .accordionBtn__inner {
    font-size: 14px;
    padding-right: 40px;
  }
}
.lower-page .ticket-page .include-accordion button.is-active::before {
  transform: rotate(-135deg);
  transition: 0.5s;
}
.lower-page .ticket-page .include-accordion button.is-active::after {
  transform: rotate(135deg);
  transition: 0.5s;
}
.lower-page .ticket-page .include-accordion .ttl-h3 {
  text-align: left;
  margin: 35px 0 10px 0;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .include-accordion .ttl-h3 {
    margin: 15px 0 5px 0;
  }
}
.lower-page .ticket-page .include-accordion .ttl-h3:first-child {
  margin-top: 0;
}
.lower-page .ticket-page .bg-gray {
  background-color: #E6E6E6;
  padding: 1%;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .bg-gray {
    padding: 2%;
    margin-bottom: 20px;
  }
}
.lower-page .ticket-page .line-through {
  text-decoration: line-through;
  margin-right: 0.5em;
}
.lower-page .ticket-page .txt-red {
  color: #ff0000;
}
.lower-page .ticket-page .attention-wrap {
  max-width: 892px;
  margin: 20px auto 0;
  background-color: #40C7DD;
  border-radius: 5px;
  padding: 15px;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .attention-wrap {
    padding: 10px;
  }
}
.lower-page .ticket-page .attention-wrap .attentino-ttl {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 15px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .attention-wrap .attentino-ttl {
    font-size: 13px;
    text-indent: -1.5em;
    padding-left: 1.5em;
    padding-bottom: 10px;
    line-height: 1.5;
    text-align: center;
  }
}
.lower-page .ticket-page .attention-wrap .attentino-ttl::before {
  content: "";
  background: url(../img/ticket/icon-attention.svg) no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 0.5em;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .attention-wrap .attentino-ttl::before {
    width: 13px;
    height: 13px;
    vertical-align: baseline;
  }
}
.lower-page .ticket-page .attention-wrap .attention-inner {
  background-color: #fff;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .attention-wrap .attention-inner {
    padding: 15px;
  }
}
.lower-page .ticket-page .attention-wrap p + .content-box {
  margin: 35px 0 0;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .attention-wrap p + .content-box {
    margin-top: 20px;
  }
}
.lower-page .ticket-page .attention-wrap .ttl-h6 {
  color: #00B4D2;
  font-size: 20px;
  font-weight: bold;
  margin: 35px 0 5px;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .attention-wrap .ttl-h6 {
    margin-top: 20px;
    font-size: 13px;
  }
}
.lower-page .ticket-page .attention-wrap .notice-list {
  width: 100%;
}
.lower-page .ticket-page .attention-wrap .btn-entry a {
  width: min(300px, 30vw);
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .attention-wrap .btn-entry a {
    width: 80%;
  }
}
.lower-page .ticket-page .div-date-wrap {
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .lower-page .ticket-page .div-date-wrap {
    margin-top: 25px;
  }
}
.lower-page .ticket-page .div-date-wrap .ttl-h5.long::after {
  width: calc(100% - 535px);
}
.lower-page .goods-page .ttl-h2 {
  width: min(177px, 17.7vw);
  height: auto;
  margin: 0 auto;
  padding: 75px 0;
}
@media screen and (max-width: 768px) {
  .lower-page .goods-page .ttl-h2 {
    padding: 30px 0;
    width: 18.93vw;
  }
}
.lower-page .goods-page .content-01 {
  width: min(892px, 89.2vw);
  margin-left: auto;
  margin-right: auto;
}
.lower-page .goods-page .content-01 p {
  font-size: 30px;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .lower-page .goods-page .content-01 p {
    font-size: 13px;
    margin-bottom: 20px;
  }
}
.lower-page .goods-page .tokuten-cont {
  position: relative;
}
.lower-page .goods-page .tokuten-cont .icon {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 92px;
  height: 93px;
}
@media screen and (max-width: 768px) {
  .lower-page .goods-page .tokuten-cont .icon {
    width: 14.66vw;
    height: auto;
    top: -20px;
    left: -15px;
  }
}
.lower-page .goods-page .tokuten-cont + .tokuten-cont {
  margin-top: 50px;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .lower-page .goods-page .tokuten-cont + .tokuten-cont {
    margin-top: 30px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .lower-page .goods-page .tokuten-cont + .notice-list .notice-list-item {
    font-size: 11px;
  }
}
.lower-page .goods-page .goods-item-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: min(961px, 96.1vw);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .lower-page .goods-page .goods-item-wrap {
    flex-direction: column;
    width: 88vw;
  }
}
.lower-page .goods-page .goods-item-wrap .goods-item-list {
  width: calc((100% - 30px) / 2);
  border: #59CDE9 1px solid;
  border-radius: 10px;
  padding: 18px 28px 28px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .lower-page .goods-page .goods-item-wrap .goods-item-list {
    width: 100%;
    padding: 14px 18px 18px;
    margin-bottom: 20px;
  }
}
.lower-page .goods-page .goods-item-wrap .goods-item-list:nth-child(n+3) {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .lower-page .goods-page .goods-item-wrap .goods-item-list:nth-child(n+3) {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .lower-page .goods-page .goods-item-wrap .goods-item-list:last-child {
    margin-bottom: 0;
  }
}
.lower-page .goods-page .goods-item-wrap .goods-item-list::before, .lower-page .goods-page .goods-item-wrap .goods-item-list::after {
  content: "";
  display: block;
  width: 10px;
  height: 15px;
  background-color: #fff;
  position: absolute;
  top: -8px;
  left: 20px;
  z-index: 1;
}
.lower-page .goods-page .goods-item-wrap .goods-item-list::after {
  top: inherit;
  left: inherit;
  bottom: -8px;
  right: 20px;
}
.lower-page .goods-page .goods-item-wrap .goods-item-list .goods-img-box {
  max-width: 410px;
  margin: 0 auto;
}
.lower-page .goods-page .goods-item-wrap .goods-item-list .goods-img-notice {
  font-size: 11px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lower-page .goods-page .goods-item-wrap .goods-item-list .goods-img-notice {
    font-size: 10px;
    margin-top: 5px;
  }
}
.lower-page .goods-page .goods-item-wrap .goods-item-list .goods-data__inner {
  margin-top: 10px;
  background-color: #E0F4FA;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .lower-page .goods-page .goods-item-wrap .goods-item-list .goods-data__inner {
    margin-top: 5pxpx;
  }
}
.lower-page .goods-page .goods-item-wrap .goods-item-list .goods-data__inner .goods-data__name {
  text-align: center;
  font-size: clamp(16px, 2.08vw, 20px);
  font-weight: bold;
  line-height: 1.3;
  padding: 5px 0;
  border-radius: 5px 5px 0 0;
  background-color: #C1EAF6;
}
@media screen and (max-width: 768px) {
  .lower-page .goods-page .goods-item-wrap .goods-item-list .goods-data__inner .goods-data__name {
    font-size: 14px;
  }
}
.lower-page .goods-page .goods-item-wrap .goods-item-list .goods-data__inner .goods-data-inner__bottom {
  padding: 5px 15px 10px 15px;
}
.lower-page .goods-page .goods-item-wrap .goods-item-list .goods-data__inner .goods-data__price {
  font-size: clamp(14px, 1.82vw, 18px);
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .lower-page .goods-page .goods-item-wrap .goods-item-list .goods-data__inner .goods-data__price {
    font-size: 13px;
  }
}
.lower-page .goods-page .goods-item-wrap .goods-item-list .goods-data__inner .goods-data__price.col {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.lower-page .goods-page .goods-item-wrap .goods-item-list .goods-data__inner .goods-data__txt {
  font-size: clamp(11px, 1.43vw, 14px);
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .lower-page .goods-page .goods-item-wrap .goods-item-list .goods-data__inner .goods-data__txt {
    font-size: 11px;
  }
}
.lower-page .goods-page .goods-item-wrap .goods-item-list.sold {
  position: relative;
}
.lower-page .goods-page .goods-item-wrap .goods-item-list.sold::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 144px;
  height: 144px;
  z-index: 1;
  background: url(../img/goods/icon-sold.svg) no-repeat;
  background-position: top left;
  background-size: 100% auto;
}
@media screen and (max-width: 768px) {
  .lower-page .goods-page .goods-item-wrap .goods-item-list.sold::before {
    width: 28.8vw;
    height: 28.8vw;
  }
}
.lower-page .goods-page .goods-item-wrap .goods-item-list.sold .goods-img-list img {
  opacity: 0.3;
}
.lower-page .goods-page .goods-item-wrap + .notice {
  width: min(961px, 96.1vw);
  text-align: center;
  margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
  .lower-page .goods-page .goods-item-wrap + .notice {
    width: 88vw;
    font-size: 11px;
    margin-top: 15px;
  }
}
.lower-page .goods-page .img-payment {
  text-align: center;
}
.lower-page .goods-page .tab-wrap {
  --tab-color: #D3EBF6;
  --active-tab-color: #5AB5DC;
  display: flex;
  flex-wrap: wrap;
  gap: 0 30px;
  width: min(960px, 96vw);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .lower-page .goods-page .tab-wrap {
    flex-direction: column;
  }
}
.lower-page .goods-page .tab-label {
  display: block;
  color: white;
  background-color: var(--tab-color);
  text-align: center;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  flex: 1;
  order: -1;
  font-size: 2.2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .lower-page .goods-page .tab-label {
    width: 70%;
    margin: 0 auto 10px;
    font-size: 1.8rem;
  }
}
.lower-page .goods-page input:checked + .tab-label,
.lower-page .goods-page .tab-label:hover {
  background-color: var(--active-tab-color);
  color: #FFF;
  transition: 0.3s;
}
.lower-page .goods-page .tab-content {
  width: 100%;
  display: none;
}
.lower-page .goods-page .tab-switch:checked + .tab-label + .tab-content {
  display: block;
  padding: 70px 0 0 0;
}
@media screen and (max-width: 768px) {
  .lower-page .goods-page .tab-switch:checked + .tab-label + .tab-content {
    padding-top: 35px;
  }
}
.lower-page .goods-page .tab-wrap:after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  order: -1;
}
.lower-page .goods-page .tab-switch {
  display: none;
}
.lower-page .goods-page .goods-store {
  width: min(900px, 90vw);
  margin: 0 auto 50px;
}
@media screen and (max-width: 768px) {
  .lower-page .goods-page .goods-store {
    margin-bottom: 35px;
  }
}
.lower-page .movie-page .js-fade {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.lower-page .movie-page .js-fade.is-active {
  opacity: 1;
  visibility: visible;
}
.lower-page .movie-page .unit-box {
  max-width: 1480px;
  margin: 0 auto;
  height: min(570px, 38.51vw);
}
@media screen and (max-width: 768px) {
  .lower-page .movie-page .unit-box {
    height: 133.3333333333vw;
  }
}
.lower-page .movie-page .unit-box .unit-box-inner {
  width: min(1110px, 75vw);
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .lower-page .movie-page .unit-box .unit-box-inner {
    width: 96vw;
  }
}
@media screen and (max-width: 768px) {
  .lower-page .movie-page .unit-box .movie-box {
    width: 100% !important;
  }
}
.lower-page .movie-page .unit-box .movie-box .movie-iframe {
  position: absolute;
  z-index: 1;
  width: min(673px, 45.47vw);
  aspect-ratio: 16/9;
  top: 6px;
  left: 6px;
}
@media screen and (max-width: 768px) {
  .lower-page .movie-page .unit-box .movie-box .movie-iframe {
    width: 95% !important;
  }
}
.lower-page .movie-page .unit-box .movie-box .movie-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.lower-page .movie-page .unit-box.unit-box-01 {
  background: url(../img/movie/unit-01_bg.jpg) no-repeat;
  background-position: center top;
  background-size: 100% auto;
  margin-top: 15.2027027027vw;
}
@media screen and (max-width: 768px) {
  .lower-page .movie-page .unit-box.unit-box-01 {
    background: url(../img/movie/unit-01_bg_sp.jpg) no-repeat;
    background-position: center top;
    background-size: 100% auto;
    margin-top: 0;
  }
}
.lower-page .movie-page .unit-box.unit-box-01 .movie-box {
  width: min(694px, 46.89vw);
  position: absolute;
  top: -110px;
  left: 0;
}
@media screen and (max-width: 1200px) {
  .lower-page .movie-page .unit-box.unit-box-01 .movie-box {
    top: -80px;
  }
}
@media screen and (max-width: 768px) {
  .lower-page .movie-page .unit-box.unit-box-01 .movie-box {
    top: 70vw;
  }
}
.lower-page .movie-page .unit-box.unit-box-01 .drink-box {
  width: min(335px, 22.63vw);
  position: absolute;
  top: 20px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .lower-page .movie-page .unit-box.unit-box-01 .drink-box {
    width: 38.8vw;
  }
}
.lower-page .movie-page .unit-box.unit-box-01 .js-box-01 {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s 0.5s;
}
.lower-page .movie-page .unit-box.unit-box-01 .js-box-01.load {
  opacity: 1;
  visibility: visible;
}
.lower-page .movie-page .unit-box.unit-box-01 .js-box-02 {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s 1.1s;
}
.lower-page .movie-page .unit-box.unit-box-01 .js-box-02.load {
  opacity: 1;
  visibility: visible;
}
.lower-page .movie-page .unit-box.unit-box-02 {
  background: url(../img/movie/unit-02_bg.jpg) no-repeat;
  background-position: center top;
  background-size: 100% auto;
  margin-top: 17.9054054054vw;
}
@media screen and (max-width: 768px) {
  .lower-page .movie-page .unit-box.unit-box-02 {
    background: url(../img/movie/unit-02_bg_sp.jpg) no-repeat;
    background-position: center top;
    background-size: 100% auto;
    margin-top: 50px;
  }
}
.lower-page .movie-page .unit-box.unit-box-02 .movie-box {
  width: min(757px, 51.14vw);
  position: absolute;
  top: -160px;
  right: -2.5%;
}
@media screen and (max-width: 1200px) {
  .lower-page .movie-page .unit-box.unit-box-02 .movie-box {
    top: -120px;
  }
}
@media screen and (max-width: 900px) {
  .lower-page .movie-page .unit-box.unit-box-02 .movie-box {
    top: -90px;
  }
}
@media screen and (max-width: 768px) {
  .lower-page .movie-page .unit-box.unit-box-02 .movie-box {
    top: 70vw;
    right: inherit;
  }
}
.lower-page .movie-page .unit-box.unit-box-02 .movie-box .movie-iframe {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.lower-page .movie-page .unit-box.unit-box-02 .drink-box {
  width: min(248px, 16.75vw);
  position: absolute;
  top: 20px;
  left: 12%;
}
@media screen and (max-width: 768px) {
  .lower-page .movie-page .unit-box.unit-box-02 .drink-box {
    width: 28vw;
    top: 30px;
    left: 20px;
  }
}
.lower-page .movie-page .unit-box.unit-box-03 {
  background: url(../img/movie/unit-03_bg.jpg) no-repeat;
  background-position: center top;
  background-size: 100% auto;
  margin-top: 10.1351351351vw;
}
@media screen and (max-width: 768px) {
  .lower-page .movie-page .unit-box.unit-box-03 {
    background: url(../img/movie/unit-03_bg_sp.jpg) no-repeat;
    background-position: center top;
    background-size: 100% auto;
    margin-top: 50px;
  }
}
.lower-page .movie-page .unit-box.unit-box-03 .movie-box {
  width: min(722px, 48.78vw);
  position: absolute;
  top: min(310px, 21.2vw);
  left: 0;
}
@media screen and (max-width: 768px) {
  .lower-page .movie-page .unit-box.unit-box-03 .movie-box {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.lower-page .movie-page .unit-box.unit-box-03 .movie-box .movie-iframe {
  top: 6.5%;
  left: 4%;
}
@media screen and (max-width: 768px) {
  .lower-page .movie-page .unit-box.unit-box-03 .movie-box .movie-iframe {
    left: 50.5%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 93% !important;
  }
}
.lower-page .movie-page .unit-box.unit-box-03 .drink-box {
  width: min(170px, 11.48vw);
  position: absolute;
  top: 80px;
  right: 17.5%;
}
@media screen and (max-width: 768px) {
  .lower-page .movie-page .unit-box.unit-box-03 .drink-box {
    width: 19.33vw;
    top: 67vw;
    right: 33px;
  }
}
.lower-page .movie-page .unit-box.unit-box-04 {
  background: url(../img/movie/unit-04_bg.jpg) no-repeat;
  background-position: center top;
  background-size: 100% auto;
  margin-top: 300px;
  margin-bottom: 230px;
}
@media screen and (max-width: 768px) {
  .lower-page .movie-page .unit-box.unit-box-04 {
    background: url(../img/movie/unit-04_bg_sp.jpg) no-repeat;
    background-position: center top;
    background-size: 100% auto;
    margin-top: 50px;
    margin-bottom: 60px;
  }
}
.lower-page .movie-page .unit-box.unit-box-04 .movie-box {
  width: min(764px, 51.62vw);
  position: absolute;
  top: min(220px, 14.5vw);
  right: -40px;
}
@media screen and (max-width: 768px) {
  .lower-page .movie-page .unit-box.unit-box-04 .movie-box {
    top: 20px;
    right: inherit;
    left: 50%;
    transform: translateX(-50%);
  }
}
.lower-page .movie-page .unit-box.unit-box-04 .movie-box .movie-bg {
  mix-blend-mode: screen;
}
.lower-page .movie-page .unit-box.unit-box-04 .movie-box .movie-iframe {
  top: min(235px, 16vw);
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .lower-page .movie-page .unit-box.unit-box-04 .movie-box .movie-iframe {
    top: 28vw;
  }
}
.lower-page .movie-page .unit-box.unit-box-04 .drink-box {
  width: min(257px, 17.36vw);
  position: absolute;
  top: -20px;
  left: 10px;
}
@media screen and (max-width: 768px) {
  .lower-page .movie-page .unit-box.unit-box-04 .drink-box {
    width: 28.93vw;
    top: 66vw;
    left: 9px;
  }
}
.lower-page .movie-page .unit-box.unit-box-02 .movie-box, .lower-page .movie-page .unit-box.unit-box-03 .movie-box, .lower-page .movie-page .unit-box.unit-box-04 .movie-box {
  opacity: 0;
  transition: opacity 0.5s 0.5s;
}
.lower-page .movie-page .unit-box.unit-box-02 .drink-box, .lower-page .movie-page .unit-box.unit-box-03 .drink-box, .lower-page .movie-page .unit-box.unit-box-04 .drink-box {
  opacity: 0;
  transition: opacity 0.5s 1.1s;
}
.lower-page .movie-page .unit-box.unit-box-02.js-fade.is-active .movie-box,
.lower-page .movie-page .unit-box.unit-box-02.js-fade.is-active .drink-box, .lower-page .movie-page .unit-box.unit-box-03.js-fade.is-active .movie-box,
.lower-page .movie-page .unit-box.unit-box-03.js-fade.is-active .drink-box, .lower-page .movie-page .unit-box.unit-box-04.js-fade.is-active .movie-box,
.lower-page .movie-page .unit-box.unit-box-04.js-fade.is-active .drink-box {
  opacity: 1;
}
.lower-page .movie-page .unit-box.unit-box-02 .movie-box.js-fade.is-active,
.lower-page .movie-page .unit-box.unit-box-02 .drink-box.js-fade.is-active, .lower-page .movie-page .unit-box.unit-box-03 .movie-box.js-fade.is-active,
.lower-page .movie-page .unit-box.unit-box-03 .drink-box.js-fade.is-active, .lower-page .movie-page .unit-box.unit-box-04 .movie-box.js-fade.is-active,
.lower-page .movie-page .unit-box.unit-box-04 .drink-box.js-fade.is-active {
  opacity: 1;
}
.lower-page .movie-page .notice {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .lower-page .movie-page .notice {
    width: 90%;
    margin: 0 auto 30px;
    text-align: left;
  }
}

.video-open {
  height: auto;
  width: 800px;
  max-width: 100%;
  display: block;
}

.movie__img {
  width: 100%;
}

.modaal-video-container {
  max-width: 800px !important;
  padding-bottom: 0 !important;
  height: inherit !important;
  aspect-ratio: 16/9;
}

@media screen and (max-width: 768px) {
  .modaal-video-wrap {
    margin: auto 0 !important;
  }
}
.modaal-close:focus, .modaal-close:hover {
  outline: inherit !important;
  background: transparent !important;
}
.modaal-close:focus::after, .modaal-close:focus::before, .modaal-close:hover::after, .modaal-close:hover::before {
  background: #fff !important;
}/*# sourceMappingURL=style.css.map */