<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@import url("reset.css");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500&amp;display=swap");
/* -- FOUNDATION -- */
html {
  font-size: 7.8125%;
}
@media (max-width: 2000px) {
  html {
    font-size: calc(1 / 1600 * 100vw);
  }
}
@media (max-width: 1000px) {
  html {
    font-size: calc(1 / 900 * 100vw);
  }
}

body {
  font: 1.3rem/1 sans-serif;
  color: #183360;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: #183360;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
a:hover {
  opacity: 0.7;
}

main {
  display: block;
  position: relative;
}

.inner {
  max-width: 974px;
  padding: 0 20px;
  margin-inline: auto;
}

.deco {
  position: relative;
}
.deco::before {
  position: absolute;
  top: -15px;
  left: 0;
  width: 78px;
  height: 115px;
  background: transparent url(../../img/ribbon.png) no-repeat center center/contain;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1000px) {
  .deco::before {
    top: -20rem;
    width: 114rem;
    height: 169rem;
    font-size: 26rem;
  }
}

/* -- LAYOUT -- */
/*////////////////
.ham
////////////////*/
.ham {
  position: absolute;
  right: 0;
  top: 0;
  width: 64rem;
  height: 64rem;
  background-color: #183360;
  cursor: pointer;
  overflow: hidden;
  z-index: 5;
}
.ham:hover .ham-line {
  opacity: 0.7;
}
.ham-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 33rem;
  height: 2px;
  background-color: #ffffff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.ham-line::before {
  position: absolute;
  content: "";
  right: 0;
  top: 10px;
  width: 33rem;
  height: 2px;
  background-color: #ffffff;
}
.ham-line::after {
  position: absolute;
  content: "";
  right: 0;
  top: -10px;
  width: 33rem;
  height: 2px;
  background-color: #ffffff;
}
.ham.is-active {
  background-color: #ffffff;
}
.ham.is-active .ham-line {
  background-color: #183360;
  left: 25%;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}
.ham.is-active .ham-line::before {
  -webkit-transform: scale(0);
          transform: scale(0);
}
.ham.is-active .ham-line::after {
  background-color: #183360;
  top: 0;
  -webkit-transform: rotate(-90deg) translateY(-50%);
          transform: rotate(-90deg) translateY(-50%);
}
.ham-modal {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #183360;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translateY(-110%);
          transform: translateY(-110%);
  overflow-y: scroll;
  z-index: 4;
}
.ham-modal.is-active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.ham-modal .line {
  width: 2px;
  height: 100%;
  background-color: #ffffff;
}
.ham-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 65px;
          column-gap: 65px;
}
.ham-logo {
  width: 425px;
}
.ham-nav {
  font-size: 22px;
}
.ham-nav a {
  color: #ffffff;
}
.ham-nav li:not(:first-child) {
  margin-top: 25px;
}
@media (max-width: 1000px) {
  .ham {
    width: 120rem;
    height: 120rem;
  }
  .ham-line {
    width: 80rem;
  }
  .ham-line::before {
    top: 20rem;
    width: 80rem;
  }
  .ham-line::after {
    top: -20rem;
    width: 80rem;
  }
  .ham-modal .line {
    display: none;
  }
  .ham-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 120rem;
  }
  .ham-logo {
    width: 590rem;
  }
  .ham-nav {
    font-size: 32rem;
    text-align: center;
  }
  .ham-nav li:not(:first-child) {
    margin-top: 60rem;
  }
}

/*////////////////
.kv
////////////////*/
.kv {
  position: relative;
}
.kv-bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 746px;
  background: transparent url(../../img/kv_bg_pc.jpg) no-repeat center top/cover;
}
.kv-ttl {
  width: 734px;
  padding-bottom: 120px;
}
.kv-band {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 89px;
  background: transparent url(../../img/band_bg.png) no-repeat center top/cover;
  margin-top: 20px;
}
.kv-band div {
  width: 825px;
}
.kv-person {
  position: absolute;
  bottom: 110px;
  right: calc(230 / 1600 * 100%);
  width: 238px;
}
.kv .logo-wrapper {
  position: absolute;
  left: 20px;
  top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.kv .logo-tfm {
  width: 108px;
}
.kv .logo-jfn {
  width: 45px;
  margin-left: 15px;
}
@media (max-width: 1000px) {
  .kv-person {
    bottom: 160rem;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    width: 282rem;
  }
  .kv-bg {
    height: 906rem;
    background: transparent url(../../img/kv_bg_sp.jpg) no-repeat center top/cover;
  }
  .kv-ttl {
    width: 734rem;
    padding-bottom: 150rem;
  }
  .kv-band {
    height: 105rem;
    margin-top: 6rem;
  }
  .kv-band div {
    width: 772rem;
  }
  .kv .logo-wrapper {
    left: 20rem;
    top: 25rem;
  }
  .kv .logo-tfm {
    width: 180rem;
  }
  .kv .logo-jfn {
    width: 75rem;
    margin-left: 25rem;
  }
}

/*////////////////////////////////
.message
////////////////////////////////*/
.message {
  text-align: center;
  margin-top: 30px;
}
.message-wrapper {
  border: 1px dotted #183360;
  padding: 50px 25px;
}
.message-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 15px;
          column-gap: 15px;
}
.message-txt {
  font-size: 22px;
  line-height: 40px;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #000;
}
.message-txt strong {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.message-txt strong::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 16px;
  background-color: #ffe062;
  z-index: -1;
}
.message-goods {
  width: 180px;
}
.message-btn {
  display: block;
  width: 660px;
  margin-inline: auto;
  margin-top: 35px;
}
@media (max-width: 1000px) {
  .message {
    margin-top: 35rem;
  }
  .message-wrapper {
    padding: 50rem 0;
  }
  .message-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 40rem;
  }
  .message-txt {
    font-size: 28rem;
    line-height: 50rem;
  }
  .message-txt strong::before {
    height: 24rem;
  }
  .message-goods {
    max-width: 290px;
    width: 290rem;
  }
  .message-btn {
    width: 700rem;
    margin-top: 40rem;
  }
}

/*////////////////////////////////
.about
////////////////////////////////*/
.about {
  text-align: center;
  margin-top: 30px;
}
.about-ttl {
  width: 166px;
  margin-inline: auto;
}
.about-txt {
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  margin-top: 40px;
}
@media (max-width: 1000px) {
  .about {
    margin-top: 65rem;
  }
  .about-ttl {
    width: 273rem;
  }
  .about-txt {
    font-size: 28rem;
    line-height: 52rem;
    margin-top: 70rem;
    text-align: left;
  }
}

/*////////////////////////////////
.person
////////////////////////////////*/
.person {
  background: transparent url(../../img/bg.png) no-repeat center top/cover;
  text-align: center;
  padding-bottom: 30px;
  margin-top: 60px;
}
.person .deco::before {
  left: 20px;
  content: "出演";
}
.person-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
          column-gap: 40px;
}
.person-body {
  text-align: right;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 70px;
}
.person-name {
  font-size: 35px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
}
.person-name-en {
  width: 257px;
  margin-inline: auto;
  margin-top: 25px;
}
.person-txt {
  text-align: left;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  margin-top: 40px;
}
.person-btn {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: 3px solid #183360;
  padding: 12px 25px;
  border-radius: 23.5px;
  margin-top: 25px;
}
.person-img {
  width: 429px;
  margin-inline: auto;
  margin-top: 30px;
}
@media (max-width: 1000px) {
  .person {
    padding-bottom: 70rem;
    margin-top: 100rem;
  }
  .person .deco::before {
    left: 20px;
  }
  .person-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    row-gap: 60rem;
  }
  .person-body {
    margin-top: 0;
  }
  .person-name {
    font-size: 38rem;
    margin-top: 90rem;
  }
  .person-name-en {
    width: 330rem;
    margin-top: 20rem;
  }
  .person-txt {
    font-size: 28rem;
    line-height: 52rem;
    margin-top: 0;
  }
  .person-btn {
    font-size: 26rem;
    padding: 24rem 65rem;
    border-radius: 40.5rem;
    margin-top: 25rem;
  }
  .person-img {
    width: 550rem;
    margin-top: 0;
  }
}

/*////////////////////////////////
.guest
////////////////////////////////*/
.guest {
  position: relative;
  text-align: center;
  margin-top: 80px;
}
.guest::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 420px;
  background: transparent url(../../img/bg.png) no-repeat center top/cover;
}
.guest-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 80px;
          column-gap: 80px;
}
.guest-content {
  width: 424px;
  padding-top: 70px;
}
.guest-content:nth-child(1).deco::before {
  content: "進行";
}
.guest-name {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.guest-name-en {
  width: 215px;
  margin-inline: auto;
  margin-top: 18px;
}
.guest-img {
  display: block;
  border-radius: 30px;
  border: 1px solid #183360;
  margin-top: 30px;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .guest {
    margin-top: 70rem;
    padding-bottom: 55rem;
  }
  .guest::before {
    height: 100%;
  }
  .guest-box {
    -webkit-column-gap: 40rem;
            column-gap: 40rem;
  }
  .guest-content {
    width: 410rem;
    padding-top: 195rem;
  }
  .guest-name {
    font-size: 38rem;
  }
  .guest-name-en {
    width: 286rem;
    margin-inline: auto;
    margin-top: 18rem;
  }
  .guest-img {
    border-radius: 30rem;
    margin-top: 30rem;
  }
}

/*////////////////////////////////
.present
////////////////////////////////*/
.present {
  text-align: center;
  background: transparent url(../../img/present_bg.png) no-repeat center top/cover;
  padding-bottom: 115px;
}
.present-ttl {
  width: 212px;
  margin-inline: auto;
  margin-top: 140px;
}
.present-txt-wrapper {
  padding: 8px;
  background-color: #ffffff;
  margin-top: 50px;
}
.present-txt-inner {
  padding: 50px 30px;
  border: 1px solid #183360;
}
.present-txt {
  font-size: 20px;
  font-weight: 500;
  line-height: 46px;
  letter-spacing: 0.02em;
}
.present-txt p {
  border: 1px dotted #183360;
  font-size: 22.73px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  padding: 15px 0 20px;
  margin: 60px 0 30px;
}
.present-txt p img {
  width: 208px;
  margin-top: 40px;
}
.present-txt strong {
  display: inline-block;
  position: relative;
  color: #000;
  z-index: 1;
}
.present-txt strong::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 16px;
  background-color: #ffe062;
  z-index: -1;
}
.present-txt strong:not(:first-child) {
  margin-top: 20px;
}
.present-txt span {
  font-size: 33px;
}
.present-btn {
  display: block;
  width: 660px;
  margin-inline: auto;
  margin-top: 60px;
}
@media (max-width: 1000px) {
  .present {
    background: transparent url(../../img/present_bg_sp.png) no-repeat center bottom/contain;
    padding-bottom: 115px;
  }
  .present-ttl {
    width: 321rem;
    margin-top: 90rem;
  }
  .present-txt-wrapper {
    padding: 15rem;
    border: 2px solid #000;
    margin-top: 60rem;
  }
  .present-txt-inner {
    padding: 40rem 16rem;
  }
  .present-txt {
    font-size: 26rem;
    line-height: 48rem;
  }
  .present-txt p {
    font-size: 26rem;
    padding: 40rem 0 60rem;
    margin: 30rem 0 30rem;
  }
  .present-txt p img {
    max-width: 290px;
    width: 290rem;
    margin-top: 40rem;
  }
  .present-txt strong {
    font-size: 26rem;
  }
  .present-txt strong::before {
    height: 24rem;
  }
  .present-txt strong:not(:first-child) {
    margin-top: 15rem;
  }
  .present-txt span {
    font-size: 26rem;
  }
  .present-btn {
    width: 700rem;
    margin-top: 25rem;
  }
}

/*////////////////////////////////
.special
////////////////////////////////*/
.special {
  text-align: center;
  margin-top: 30px;
}
.special-img {
  width: 178px;
  margin-inline: auto;
}
.special p {
  font-size: 18px;
  font-weight: 700;
  color: #010101;
  letter-spacing: 0.02em;
  margin-top: 30px;
}
@media (max-width: 1000px) {
  .special {
    margin-top: 65rem;
  }
  .special-img {
    width: 258rem;
  }
  .special p {
    font-size: 26rem;
    margin-top: 45rem;
  }
}

/*////////////////////////////////
.bnr
////////////////////////////////*/
.bnr {
  border-top: 1px solid #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 35px;
          column-gap: 35px;
  padding-top: 50px;
  margin-top: 60px;
}
.bnr a {
  display: block;
  width: 336px;
}
@media (max-width: 1000px) {
  .bnr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 50rem;
    padding-top: 50rem;
    margin-inline: auto;
    margin: 60rem 0;
  }
  .bnr a {
    width: 574rem;
  }
}

/*////////////////////////////////
.totop
////////////////////////////////*/
.totop {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 63px;
}
.totop:hover {
  opacity: 0.7;
}
.totop.is-active {
  display: block;
}
.totop.is-absolute {
  position: absolute;
}
.totop.is-none {
  display: none !important;
}
@media (max-width: 1000px) {
  .totop {
    right: 20rem;
    bottom: 20rem;
    width: 110rem;
  }
}

/*////////////////////////////////
footer
////////////////////////////////*/
.footer {
  position: relative;
  background: transparent url(../../img/band_bg.png) no-repeat center top/cover;
  padding: 30px 0;
}
.footer_share {
  padding-left: 20px;
}
.footer_share ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
          column-gap: 10px;
}
.footer_share li {
  width: 38px;
  height: 38px;
}
.footer .copy {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
}
@media (max-width: 1000px) {
  .footer {
    padding: 25rem 0;
  }
  .footer_share {
    padding-left: 0;
  }
  .footer_share ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 16rem;
            column-gap: 16rem;
  }
  .footer_share li {
    width: 88rem;
    height: 88rem;
  }
  .footer .copy {
    position: static;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    text-align: center;
    font-size: 26rem;
    margin-top: 50rem;
  }
}

/* -- UTILITY -- */
/* 共通フッター用 もしくはブレイクポイントごとの表示指定 */
@media (min-width: 1001px) {
  .pc {
    display: block;
  }

  .sp {
    display: none !important;
  }
}
@media (max-width: 1000px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block;
  }
}
@media (max-width: 1000px) {
  .spDetail {
    display: block;
  }

  .pcDetail {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */</pre></body></html>