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

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

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

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* clearfix */
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/*breakpointes-------------------*/
/*-------------------------------*/
/*variable---------------------------*/
/*-------------------------------*/
/*mixin--------------------------*/
/*-------------------------------*/
/*general------------------------*/
* {
  box-sizing: border-box;
}

body {
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  word-break: break-all;
}

img, picture {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  font-size: 0;
  line-height: 0;
}

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

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

section.normal .section_inner h2 {
  margin: 0 auto 40px;
  width: -moz-fit-content;
  width: fit-content;
}
section.normal .section_inner h2 img {
  height: 32px;
  width: auto;
}
@media screen and (max-width: 768px) {
  section.normal .section_inner h2 img {
    height: 24px;
  }
}
section.normal .section_inner .section_main {
  max-width: 1000px;
  padding: 80px 50px 120px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  section.normal .section_inner .section_main {
    max-width: 500px;
    padding: 60px 30px 80px;
  }
}

/*-------------------------------*/
/*animation----------------------*/
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.fadeInUp {
  opacity: 0;
  transition: 0.8s;
  transform: translateY(5px);
}
.fadeInUp.d1 {
  transition-delay: 0.1s;
}
.fadeInUp.d2 {
  transition-delay: 0.2s;
}
.fadeInUp.d3 {
  transition-delay: 0.3s;
}
.fadeInUp.d4 {
  transition-delay: 0.4s;
}
.fadeInUp.d5 {
  transition-delay: 0.5s;
}
.fadeInUp.d6 {
  transition-delay: 0.6s;
}
.fadeInUp.d7 {
  transition-delay: 0.7s;
}
.fadeInUp.is-inview {
  transform: translateY(0);
  opacity: 1;
}

@keyframes tada {
  0% {
    transform: scale(1) rotate(0deg); /* 元の状態 */
  }
  10%, 20% {
    transform: scale(0.95) rotate(-3deg); /* 縮小して傾く */
  }
  30%, 50%, 70% {
    transform: scale(1.1) rotate(3deg); /* 拡大して逆方向に傾く */
  }
  40%, 60% {
    transform: scale(1.1) rotate(-3deg); /* 拡大して傾く */
  }
  80% {
    transform: scale(1.1) rotate(1deg); /* 少し小さめの傾き */
  }
  100% {
    transform: scale(1) rotate(0deg); /* 元に戻る */
  }
}
.tada {
  animation: tada 1s ease-in-out; /* 1秒でTadaアニメーションを実行 */
}

.pon {
  opacity: 0;
  transition-delay: 2s;
  transition: 0.5s;
  transform: scale(2) rotate(0);
}
.pon.is-inview {
  opacity: 1;
  transform: scale(1) rotate(5deg);
}

/*-------------------------------*/
.to_top {
  z-index: 100;
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 40px;
  right: 40px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: 1s;
}
@media screen and (max-width: 768px) {
  .to_top {
    bottom: 10px;
    right: 10px;
  }
}
.to_top img {
  transition: 0.3s;
}
.to_top .base {
  position: relative;
  animation: spin 40s linear infinite;
  transform-origin: center center;
}
.to_top .over {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.to_top.active {
  opacity: 1;
  pointer-events: all;
}
.to_top:hover img {
  transform: scale(1.1);
}

/*header-------------------------*/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100lvh;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #55A7D6;
}
.loading .loading_inner {
  width: 100%;
  height: 100%;
  height: 100svh;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes flicker {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.loading .loader {
  max-width: 180px;
  width: 50%;
  animation: flicker 2s infinite;
}
@media screen and (max-width: 768px) {
  .loading .loader {
    max-width: 120px;
  }
}

.fixed_bg {
  position: fixed;
  z-index: -10;
  top: 0;
  left: 0;
  height: 100lvh;
  height: 100vh;
  width: 100%;
  background-image: url(img/bg2.jpg);
  background-size: cover;
  background-position: center center;
  opacity: 0.3;
}

/*-------------------------------*/
footer .footer_links {
  padding: 60px 50px;
  background-color: rgba(213, 240, 255, 0.8);
}
@media screen and (max-width: 768px) {
  footer .footer_links {
    padding: 60px 30px;
  }
}
footer .footer_links .snss {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
footer .footer_links .snss li a {
  font-size: 0.7em;
  max-width: 300px;
  width: 300px;
  height: 50px;
  border-radius: 50px;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  footer .footer_links .snss li a {
    width: 280px;
    font-size: 0.9em;
  }
}
footer .footer_links .snss li a.link-insta {
  background-color: #D62976;
}
footer .footer_links .snss li a:hover {
  opacity: 0.8;
}
footer .footer_links .link-30 .cap {
  text-align: center;
  font-size: 0.8em;
  font-weight: 700;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  footer .footer_links .link-30 .cap {
    font-size: 0.9em;
  }
}
footer .footer_links .link-30 a {
  display: block;
  max-width: 345px;
  margin: 0 auto;
}
footer .footer_links .link-30 a img {
  border-radius: 5px;
}
footer .footer_links .link-30 a:hover {
  opacity: 0.8;
}
footer .footer {
  background-color: #55A7D6;
  padding: 60px 50px 80px;
}
footer .footer .logos {
  width: 254px;
  margin: 0 auto 30px;
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  footer .footer .logos {
    padding-left: 25px;
    width: 200px;
  }
}
footer .footer .copys {
  font-size: 10px;
  text-align: center;
}
footer .footer .copys .copy {
  line-height: 1.4;
}
footer .footer .copys .copy:first-of-type {
  margin-bottom: 10px;
}
footer .footer .copys .copy .copy-title {
  font-weight: 700;
}

#top {
  width: 100%;
  height: 49.84vw;
  background-image: url(img/bg.jpg);
  background-size: cover;
  background-position: center center;
  position: relative;
  box-shadow: -10px 0px 10px 0px rgba(0, 0, 0, 0.35), 10px 0px 10px 0px rgba(0, 0, 0, 0.35);
}
@media screen and (max-width: 768px) {
  #top {
    height: 142.56vw;
  }
}
#top .main {
  position: absolute;
  width: 45.94%;
  top: 32.08%;
  left: 27.03%;
}
@media screen and (max-width: 768px) {
  #top .main {
    width: 100%;
    top: 33.63%;
    left: 0%;
  }
}
#top .title {
  position: absolute;
  width: 31.93%;
  top: 8.67%;
  left: 34.01%;
  opacity: 0;
  transition: 1s;
  transform: translateY(10px);
}
@media screen and (max-width: 768px) {
  #top .title {
    width: 74.11%;
    top: 12.23%;
    left: 13.08%;
  }
}
#top .title.inview {
  transform: translateY(0px);
  opacity: 1;
}
#top .copy {
  position: absolute;
  width: 15.89%;
  top: 84.25%;
  left: 41.41%;
  opacity: 0;
  transition: 2s;
}
@media screen and (max-width: 768px) {
  #top .copy {
    width: 34.87%;
    top: 73.02%;
    left: 32.56%;
  }
}
#top .copy.inview {
  transform: translateY(0px);
  opacity: 1;
}
#top .logo {
  position: absolute;
  width: 9.87%;
  top: 79.21%;
  left: 2.34%;
  opacity: 0;
  transition: 1s;
}
@media screen and (max-width: 768px) {
  #top .logo {
    width: 23.75%;
    top: 82.73%;
    left: 5.64%;
  }
}
#top .logo .logo_base {
  position: relative;
}
#top .logo .logo_over {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
#top .logo.inview {
  opacity: 1;
}
#top .to_movie {
  display: block;
  position: absolute;
  bottom: 4%;
  right: 2%;
  width: 19%;
  transition: 0.4s;
  filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.5));
}
#top .to_movie img {
  transition: 0.5s;
  transform: scale(0.9);
  opacity: 0;
}
#top .to_movie img.inview {
  opacity: 1;
  transform: scale(1);
}
@media screen and (max-width: 768px) {
  #top .to_movie {
    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.5));
    width: 37%;
    bottom: 2%;
    right: 2%;
  }
}
#top .to_movie:hover {
  transform: rotate(3deg);
}

#info {
  background-color: #fff;
  padding: 20px 50px 40px;
}
@media screen and (max-width: 768px) {
  #info {
    padding: 20px 25px;
  }
}
#info .bnrs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#info .bnrs li {
  width: calc(50% - 20px);
  max-width: 210px;
}
@media screen and (max-width: 768px) {
  #info .bnrs li {
    width: calc(50% - 10px);
  }
}
#info .bnrs li a {
  margin: 0 10px 20px;
  border-radius: 10px;
  background-image: url(img/bg_cl.jpg);
  display: block;
  background-position: center bottom;
}
@media screen and (max-width: 768px) {
  #info .bnrs li a {
    margin: 0 5px 10px;
  }
}
#info .bnrs li a:hover {
  transition: 0.3s;
  transform: translateY(2px);
}
@media screen and (max-width: 768px) {
  #info .bnrs li a:hover {
    transform: translateY(0);
  }
}
#info .bnrs li:nth-of-type(2n) a {
  background-position: center center;
}
#info .bnrs li:nth-of-type(3n) a {
  background-position: right center;
}

#about {
  overflow: hidden;
}
#about .section_inner .section_main h3 {
  margin-bottom: 20px;
}
#about .section_inner .section_main h4 {
  margin-bottom: 40px;
}
#about .section_inner .section_main .text_body {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #about .section_inner .section_main .text_body {
    margin-bottom: 60px;
  }
}
#about .section_inner .section_main .text_body p {
  line-height: 2;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #about .section_inner .section_main .text_body p {
    margin-bottom: 20px;
  }
}
#about .section_inner .section_main .text_body p:last-of-type {
  margin-bottom: 0;
}
#about .section_inner .section_main .text_body p span.bold {
  font-weight: 900;
}
#about .section_inner .section_main .text_body p span.blue {
  color: #55A7D6;
  font-size: 1.1em;
}
@media screen and (max-width: 768px) {
  #about .section_inner .section_main .text_body p span.blue {
    font-size: 1.2em;
  }
}
#about .section_inner .section_main .text_body p span.red {
  color: #C37465;
}
#about .section_inner .section_main .venue-shaun {
  max-width: 180px;
  margin: 0 auto -10px;
  z-index: 3;
  position: relative;
}
@media screen and (max-width: 768px) {
  #about .section_inner .section_main .venue-shaun {
    width: 120px;
  }
}
#about .section_inner .section_main .venues {
  position: relative;
  padding: 50px;
  border-radius: 50px;
  border: solid 6px #55A7D6;
  line-height: 1.6;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #about .section_inner .section_main .venues {
    border: solid 4px #55A7D6;
    border-radius: 25px;
    padding: 40px 20px 30px;
  }
}
#about .section_inner .section_main .venues .venues_head {
  color: #55A7D6;
  font-weight: 900;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #about .section_inner .section_main .venues .venues_head {
    padding-bottom: 20px;
    border-bottom: solid 2px #55A7D6;
  }
}
#about .section_inner .section_main .venues .venues_head span {
  font-weight: inherit;
  display: block;
  text-align: center;
  font-size: 1.22em;
}
#about .section_inner .section_main .venues .venues_head span:last-of-type {
  font-size: 1.55em;
}
#about .section_inner .section_main .venues .venue_items:first-of-type {
  border-bottom: solid 3px #55A7D6;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
#about .section_inner .section_main .venues .venue_items .venue_item .venue_name {
  text-align: center;
  font-size: 1.2em;
  color: #55A7D6;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
#about .section_inner .section_main .venues .venue_items .venue_item ul li {
  display: flex;
  margin-bottom: 0.5em;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #about .section_inner .section_main .venues .venue_items .venue_item ul li {
    margin-bottom: 1em;
  }
}
#about .section_inner .section_main .venues .venue_items .venue_item ul li .label {
  color: #55A7D6;
  width: 6.5em;
  margin-right: 1em;
  background-color: #E2F5FF;
  padding-left: 0.25em;
}
@media screen and (max-width: 768px) {
  #about .section_inner .section_main .venues .venue_items .venue_item ul li .label {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.25em;
  }
}
#about .section_inner .section_main .venues .venue_items .venue_item ul li .con {
  width: calc(100% - 7.5em);
}
@media screen and (max-width: 768px) {
  #about .section_inner .section_main .venues .venue_items .venue_item ul li .con {
    width: 100%;
  }
}
#about .section_inner .section_main .venues .venue_items .venue_item ul li span.small {
  font-size: 0.8em;
}
#about .section_inner .section_main .venues .venue_items .venue_item ul li span.red {
  color: red;
}
#about .section_inner .section_main .venues .venue_items .venue_item ul li a {
  color: #0096DC;
  text-decoration: underline;
}
#about .section_inner .section_main .venues .venue_items .venue_item ul li a:hover {
  text-decoration: none;
}
#about .section_inner .section_main .venues .venue_items .venue_item ul li a.link-venue {
  font-weight: 700;
}
#about .section_inner .section_main .venues .venue_items .venue_item.now {
  background-color: #EFF9FF;
  padding: 20px 0px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #about .section_inner .section_main .venues .venue_items .venue_item.now {
    padding: 20px 10px;
  }
}
#about .section_inner .section_main .venues .venue_items .venue_item.now .stamp {
  width: 19%;
  position: absolute;
  top: 1%;
  right: 1%;
  opacity: 0.8;
  transform: rotate(5deg);
}
@media screen and (max-width: 768px) {
  #about .section_inner .section_main .venues .venue_items .venue_item.now .stamp {
    width: 32%;
    top: -2%;
    right: -4%;
    z-index: 2;
  }
}
#about .section_inner .section_main .venues .venue_items .venue_item.now .label {
  background-color: transparent;
  position: relative;
}
@media screen and (max-width: 768px) {
  #about .section_inner .section_main .venues .venue_items .venue_item.now .label {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
#about .section_inner .section_main .venues .venue_items .venue_item.now ul {
  position: relative;
}
#about .section_inner .section_main .venues .venue_items li.coming {
  text-transform: uppercase;
  text-align: center;
  color: #55A7D6;
  font-size: 1.5em;
  font-weight: 500;
  margin-bottom: 1em;
}

/*-------------------------------*//*# sourceMappingURL=style.css.map */