@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  position: relative;
  background-color: #000;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  font-family: yu-gothic-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0;
}

@media screen and (max-width: 600px) {
  body {
    font-size: 1.4rem;
  }
}

ul,
ol,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a:active {
  opacity: 0.8;
}

a:focus {
  outline: none;
}

.of-ct {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

.of-cv {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 600px) {
  .pc-only {
    display: none;
  }
}

@media screen and (min-width: 601px) {
  .sp-only {
    display: none;
  }
}

@media screen and (min-width: 601px) {
  .tel {
    pointer-events: none;
  }
}

/* ==== font =============================== */
.shipporiMinchoB1 {
  font-family: 'Shippori Mincho B1', sans-serif;
}

.kosugi {
  font-family: 'Kosugi', sans-serif;
}

/* ==== common layout =============================== */
.loading {
  opacity: 0 !important;
}

#main {
  overflow-x: hidden;
}

.emphasis {
  color: #DD0D75;
}

.sec-inner {
  padding-top: clamp( 40px, 6.8%, 100px );
  padding-right: 0;
  padding-bottom: clamp( 40px, 6.8%, 100px );
  padding-left: 0;
}

.sec-ttl-box .sec-sub-ttl {
  color: #DD0D75;
  text-align: center;
  font-weight: 500;
  font-size: clamp( 1.4rem, 1.4vw, 1.6rem );
  line-height: 1.25;
  letter-spacing: 0;
}

.sec-ttl-box .sec-ttl {
  text-align: center;
  font-weight: 400;
  font-size: clamp( 2rem, 2vw, 3.2rem );
  line-height: 1.44;
  letter-spacing: -0.05em;
  margin: 0;
}

@media screen and (max-width: 960px) {
  .sec-ttl-box .sec-ttl {
    margin: .5em 0 0;
  }
}

.content-width {
  border: 1px solid #FFFF00;
  background-color: rgba(0, 0, 0, 0.6);
  width: calc( 100% * 1160 / 1480);
  max-width: 1480px;
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  .content-width {
    width: 89.3%;
  }
}

/* ==== common parts =============================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.h-inner {
  width: 100%;
  height: 90px;
  margin: 0 auto;
  padding: 0 8%;
}

@media screen and (max-width: 600px) {
  .h-inner {
    height: 60px;
    margin: 0;
  }
}

.h-menu-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 0 0;
}

@media screen and (max-width: 600px) {
  .h-menu-list {
    padding: 20px 0 0;
  }
}

.h-menu-item:nth-child(n+2) {
  margin-left: 30px;
}

@media screen and (max-width: 600px) {
  .h-menu-item:nth-child(n+2) {
    margin-left: 1em;
  }
}

.h-menu-item a {
  position: relative;
  display: block;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.57;
  letter-spacing: 0;
  padding-left: 1.2em;
  white-space: nowrap;
}

@media screen and (max-width: 600px) {
  .h-menu-item a {
    font-size: 1.2rem;
  }
}

.h-menu-item a::before {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50%;
  background-color: #DD0D75;
  top: calc( 50% - .3em);
  left: 0;
  width: .6em;
  height: .6em;
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
}

.h-menu-item a:hover::before {
  top: calc( 50% - .4em);
  width: .8em;
  height: .8em;
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
}

@media screen and (max-width: 600px) {
  .h-menu-item a {
    font-size: 1.2rem;
  }
}

.anim-underline {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.anim-underline span {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow-x: hidden;
}

.anim-underline span::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #fff;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
}

.anim-underline span::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #fff;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  -webkit-transform: translateX(-100%) rotate(0.0001deg);
          transform: translateX(-100%) rotate(0.0001deg);
}

.anim-underline:hover span::before {
  -webkit-transform: translate3d(100%, 0, 0) rotate(0.0001deg);
          transform: translate3d(100%, 0, 0) rotate(0.0001deg);
  -webkit-transition: -webkit-transform 0.425s cubic-bezier(0.415, 0.02, 0.175, 1);
  transition: -webkit-transform 0.425s cubic-bezier(0.415, 0.02, 0.175, 1);
  transition: transform 0.425s cubic-bezier(0.415, 0.02, 0.175, 1);
  transition: transform 0.425s cubic-bezier(0.415, 0.02, 0.175, 1), -webkit-transform 0.425s cubic-bezier(0.415, 0.02, 0.175, 1);
}

.anim-underline:hover span::after {
  -webkit-transform: translateZ(0) rotate(0.0001deg);
          transform: translateZ(0) rotate(0.0001deg);
  -webkit-transition: -webkit-transform 0.425s cubic-bezier(0.415, 0.02, 0.175, 1) 0.25s;
  transition: -webkit-transform 0.425s cubic-bezier(0.415, 0.02, 0.175, 1) 0.25s;
  transition: transform 0.425s cubic-bezier(0.415, 0.02, 0.175, 1) 0.25s;
  transition: transform 0.425s cubic-bezier(0.415, 0.02, 0.175, 1) 0.25s, -webkit-transform 0.425s cubic-bezier(0.415, 0.02, 0.175, 1) 0.25s;
}

#c-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -10;
}

#c-box .c-back {
  display: block;
  position: absolute;
  top: 0;
  opacity: 0.6;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -100;
}

#mv {
  width: 100vw;
  height: 100vh;
  min-height: 764px;
}

#mv .mv-inner {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}

#mv .site-logo {
  width: 67.6%;
  max-width: 1600px;
  margin: 0 auto;
  mix-blend-mode: plus-lighter;
}

@media screen and (max-width: 960px) {
  #mv .site-logo {
    width: 89.3%;
  }
}

#mv .schedule {
  margin: 100px 0 0;
}

@media screen and (max-width: 600px) {
  #mv .schedule {
    width: 89.3%;
  }
}

#mv .schedule .left {
  font-weight: 700;
  font-size: clamp( 1.8rem, 1.8vw, 2.4rem );
  letter-spacing: 0;
  line-height: 1;
}

#mv .schedule .right {
  margin-left: 7px;
}

@media screen and (max-width: 960px) {
  #mv .schedule .right {
    margin: .8em auto 0;
  }
}

#mv .schedule .large {
  font-weight: 500;
  font-size: clamp( 2.2rem, 2.2vw, 4.2rem );
  line-height: 1;
  letter-spacing: 0;
}

#mv .schedule .small {
  font-weight: 500;
  font-size: clamp( 1.4rem, 1.4vw, 2.8rem );
  line-height: 1;
  letter-spacing: 0;
}

#mv .schedule .date-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 960px) {
  #mv .schedule .date-box {
    display: block;
  }
}

#mv .schedule .time-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 14px 0 0;
}

@media screen and (max-width: 960px) {
  #mv .schedule .time-box {
    display: block;
    margin: 1.5em 0 0;
  }
}

#mv .schedule .time-box .right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

#mv .schedule .time-box .time {
  font-weight: 500;
  font-size: clamp( 2.2rem, 2.2vw, 4.2rem );
  letter-spacing: 0;
  line-height: 1;
}

#mv .schedule .time-box .notice {
  font-weight: 700;
  font-size: clamp( 1.2rem, 1.2vw, 1.4rem );
  letter-spacing: 0;
  line-height: 1.43;
  padding-left: 1.1em;
}

#mv .schedule .not-show {
  text-align: center;
  font-weight: 700;
  font-size: 1.4rem;
  width: 100%;
  margin-top: 1em;
}

#notice {
  margin-top: -17vh;
}

#notice .sec-inner {
  position: relative;
  width: 100%;
}

#notice .sec-inner .btn-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#notice .sec-inner .btn-box .btn {
  border: 1px solid #FFFF00;
  border-radius: 100px;
  background-color: rgba(0, 0, 0, 0.6);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1.57;
  padding: 1.8em 0;
  width: 440px;
}

@media screen and (max-width: 600px) {
  #notice .sec-inner .btn-box .btn {
    font-size: 1.2rem;
    width: 89.3%;
  }
}

#notice .sec-inner .btn-box .btn span {
  position: relative;
  display: block;
  width: 310px;
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  #notice .sec-inner .btn-box .btn span {
    width: 285px;
    margin: 0 auto;
  }
}

#notice .sec-inner .btn-box .btn span::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../imgs/icon_youtube_01.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: calc( 50% - 13px);
  right: 0;
  width: 28px;
  height: 25px;
}

@media screen and (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  #notice .sec-inner .btn-box .btn span::before {
    background-image: url(../imgs/icon_youtube_01@2x.png);
  }
}

#notice .sec-inner .btn-box .btn span::after {
  content: '';
  position: absolute;
  background: #fff;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
}

#notice .sec-inner .btn-box .btn:hover span::after {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

#notice .content-width {
  padding: 54px 2.7%;
  margin-top: 100px;
}

@media screen and (max-width: 960px) {
  #notice .content-width {
    padding: 54px 5.4%;
  }
}

#notice .content-width > .horiz {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 960px) {
  #notice .content-width > .horiz {
    display: block;
  }
}

#notice .content-width > .horiz .left {
  width: 48.2%;
}

@media screen and (max-width: 960px) {
  #notice .content-width > .horiz .left {
    width: 100%;
  }
}

#notice .content-width > .horiz .right {
  width: 48.2%;
}

@media screen and (max-width: 960px) {
  #notice .content-width > .horiz .right {
    width: 100%;
    margin: 60px 0 0;
  }
}

#notice .sec-ttl-box .sec-sub-ttl {
  text-align: left;
}

#notice .sec-ttl-box .sec-ttl {
  text-align: left;
}

#notice .news .content-body {
  margin: 40px 0 0;
}

#notice .news .news-body .reading-txt {
  font-weight: 700;
  font-size: clamp( 1.4rem, 1.1vw, 1.6rem );
  letter-spacing: 0;
  line-height: 2;
  margin: 0;
}

#notice .news .news-body .reading-txt a {
  color: #DD0D75;
  text-decoration: underline;
}

#notice .news .news-time {
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 2;
  margin: 20px 0 0;
}

#notice .notice .content-body {
  margin: 35px 0 0;
}

#notice .notice .notice-list .notice-item {
  position: relative;
  font-weight: 700;
  font-size: clamp( 1.4rem, 1.1vw, 1.6rem );
  letter-spacing: 0;
  line-height: 2.625;
  padding-left: 1em;
}

#notice .notice .notice-list .notice-item::before {
  content: "・";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

#message .content-width {
  padding: 100px 8.1% 126px;
}

@media screen and (max-width: 600px) {
  #message .content-width {
    padding: 50px 5.4% 60px;
  }
}

#message .content-body {
  margin: 55px 0 0;
}

#message .content-body .reading-txt {
  font-weight: 700;
  font-size: clamp( 1.4rem, 1.3vw, 1.8rem );
  letter-spacing: 0;
  line-height: 2;
  margin: 0;
}

#program .content-width {
  padding: 60px 2.7% 45px;
}

@media screen and (max-width: 600px) {
  #program .content-width {
    padding: 60px 5.4% 45px;
  }
}

#program .content-body {
  margin: 40px 0 0;
}

#program .content-body > .horiz {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 600px) {
  #program .content-body > .horiz {
    display: block;
  }
}

#program .content-body > .horiz .left {
  width: 48.2%;
}

@media screen and (max-width: 600px) {
  #program .content-body > .horiz .left {
    width: 100%;
  }
}

#program .content-body > .horiz .right {
  width: 48.2%;
}

@media screen and (max-width: 600px) {
  #program .content-body > .horiz .right {
    width: 100%;
    margin: 2.5em 0 0;
  }
}

#program .content-body .title {
  font-weight: 700;
  font-size: clamp( 1.2rem, 1.2vw, 1.8rem );
  letter-spacing: 0;
  line-height: 1.56;
  margin: 40px 0 0;
}

@media screen and (max-width: 600px) {
  #program .content-body .title {
    margin: 1em 0 0;
  }
}

#program .content-body .notice {
  text-align: right;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0;
  margin: 50px 0 0;
}

@media screen and (max-width: 600px) {
  #program .content-body .notice {
    font-size: 1rem;
  }
}

#access .content-width {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
}

@media screen and (max-width: 960px) {
  #access .content-width {
    display: block;
  }
}

#access .content-width .left {
  padding: 60px 6.9% 88px 6.9%;
  width: 50%;
}

@media screen and (max-width: 960px) {
  #access .content-width .left {
    width: 100%;
  }
}

#access .content-width .right {
  width: 50%;
}

@media screen and (max-width: 960px) {
  #access .content-width .right {
    width: 100%;
  }
}

#access .sec-sub-ttl {
  text-align: left;
}

#access .sec-ttl {
  text-align: left;
}

#access .content-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 40px 0 0;
}

#access .content-body .reading-head {
  font-weight: 700;
  font-size: clamp( 1.6rem, 1.7vw, 2.4rem );
  letter-spacing: 0;
  line-height: 2.2;
}

@media screen and (max-width: 960px) {
  #access .content-body .reading-head {
    font-size: clamp( 1.7rem, 2.4vw, 2.4rem );
  }
}

#access .content-body .address {
  font-weight: 700;
  font-size: clamp( 1.2rem, 1.2vw, 1.6rem );
  letter-spacing: 0;
  line-height: 1.5;
  margin: 40px 0 0;
}

#access .content-body .link-googlemap {
  position: relative;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0;
  margin: 1em 0 0;
  padding-left: 1.1em;
}

#access .content-body .link-googlemap::before {
  content: "→";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

#access .content-body .link-minatopia {
  font-weight: 700;
  font-size: clamp( 1.2rem, 1.2vw, 1.6rem );
  letter-spacing: 0;
  line-height: 1;
  margin: 20px 0 0;
}

#access .map {
  width: 100%;
}

#access .map {
  position: relative;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 960px) {
  #access .map::before {
    content: "";
    display: block;
    padding: 50%;
  }
}

#access .map iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 960px) {
  #access .map iframe {
    position: absolute;
    top: 0;
    left: 0;
  }
}

#contact .content-width {
  padding: 50px 0;
}

#contact .content-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 15px 0 0;
}

#contact .content-body .mail {
  text-align: center;
  font-size: 2rem;
}

@media screen and (max-width: 600px) {
  #contact .content-body .mail {
    font-size: 1.6rem;
  }
}

#contact .content-body .mail.anim-underline span::before {
  bottom: 11px;
}

#contact .content-body .mail.anim-underline span::after {
  bottom: 11px;
}

@media screen and (max-width: 600px) {
  #contact .content-body .mail.anim-underline span::before {
    bottom: 9px;
  }
  #contact .content-body .mail.anim-underline span::after {
    bottom: 9px;
  }
}

#contact .committe-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px 0 0;
}

#contact .committe-box .committe {
  font-size: clamp( 1.2rem, 1.2vw, 2.2rem );
  letter-spacing: 0;
  line-height: 1.45;
}

#contact .committe-box .address {
  font-weight: 400;
  font-size: 1.6rem;
  font-size: clamp( 1.2rem, 1.2vw, 1.6rem );
  letter-spacing: 0;
  line-height: 1.56;
}

@media screen and (max-width: 960px) {
  #contact .committe-box .address {
    text-align: center;
    margin: .5em 0 0;
  }
}
/*# sourceMappingURL=common.css.map */