@charset "UTF-8";
/*!
  Reset Stylesheet
  Author: yama-dev - https://github.com/yama-dev
  */
html, body, div, span, object, iframe, embed, main,
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, u, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, tbody, tfoot, thead, tr, th, td, caption,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, source {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: middle;
  background: transparent;
  box-sizing: border-box;
}

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

blockquote, q {
  quotes: none;
}

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

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

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;
}

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

ol, ul {
  list-style: none;
}

button, input, select, textarea, datalist {
  vertical-align: middle;
  min-height: 1.5em;
  background-color: transparent;
}

input[type=submit], input[type=reset] {
  cursor: pointer;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
}

a[href^=tel] {
  display: inline-block;
  color: inherit;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

iframe {
  border: none;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0;
}

[role=button] {
  cursor: pointer;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

body {
  line-height: 1;
}

body, button, input, select, textarea, datalist {
  font-family: YakuHanJP, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-wrap: break-word;
}

:root {
  --color-white: #fff;
  --color-black: #000;
  --color-purple: #ec47e3;
  --font-jp: YakuHanJP, "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  --font-eng: "Cal Sans", "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

.is-sp {
  display: none;
}
@media (max-width: 750px) {
  .is-sp {
    display: block;
  }
}

.is-pc {
  display: block;
}
@media (max-width: 750px) {
  .is-pc {
    display: none;
  }
}
.is-pc-small {
  display: none;
}
@media (max-width: 1200px) {
  .is-pc-small {
    display: block;
  }
}

.p-in-link {
  vertical-align: baseline;
  color: var(--color-white);
}

img {
  width: 100%;
  max-width: 100%;
  display: block;
  vertical-align: middle;
}

.l-wrapper {
  position: relative;
  background: var(--color-black);
  font-family: var(--font-jp);
  color: var(--color-white);
}

.p-visual {
  position: relative;
  background: var(--color-black);
}
.p-visual__wrapper {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.p-visual__bg {
  position: relative;
  width: 100%;
  transform: scale(1.08);
}
.on-load .p-visual__bg {
  transform: scale(1);
  transition: transform 3s cubic-bezier(0.61, 1, 0.88, 1);
}
.p-visual__bg img {
  transform: scale(1.1);
  opacity: 0;
}
.on-load .p-visual__bg img {
  transform: scale(1);
  opacity: 1;
  transition: transform 0.9s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.p-visual__logo {
  position: absolute;
  top: 3.1%;
  left: 6.25%;
  width: 15%;
  max-width: 200px;
  -webkit-mask-image: linear-gradient(to right, #000 33%, transparent 66%);
  mask-image: linear-gradient(to right, #000 33%, transparent 66%);
  -webkit-mask-position: right 0 top 0;
  mask-position: right 0 top 0;
  -webkit-mask-size: 300% 100%;
  mask-size: 300% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.on-load .p-visual__logo {
  transition: -webkit-mask-position 0.8s cubic-bezier(0.33, 1, 0.68, 1) 1.3s;
  transition: mask-position 0.8s cubic-bezier(0.33, 1, 0.68, 1) 1.3s;
  transition: mask-position 0.8s cubic-bezier(0.33, 1, 0.68, 1) 1.3s, -webkit-mask-position 0.8s cubic-bezier(0.33, 1, 0.68, 1) 1.3s;
  -webkit-mask-position: right 100% top 0;
  mask-position: right 100% top 0;
}
@media (max-width: 750px) {
  .on-load .p-visual__logo {
    transition-delay: 0.25s;
  }
}
@media (max-width: 750px) {
  .p-visual__logo {
    position: relative;
    top: 0;
    left: 0;
    width: 51%;
    max-width: none;
    margin: 0 auto;
  }
}
.p-visual__logo-link {
  display: block;
  transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (min-width: 751px) {
  .p-visual__logo-link:hover {
    opacity: 0.6;
  }
}
.p-visual__content {
  position: absolute;
  top: 46%;
  left: 0;
  transform: translateY(-100%);
  width: 100%;
}
@media (max-width: 750px) {
  .p-visual__content {
    top: 15.6%;
    transform: translateY(0);
  }
}
@media (min-width: 1800px) {
  .p-visual__content {
    top: 40%;
  }
}
@media (min-width: 2000px) {
  .p-visual__content {
    top: 35%;
  }
}
.p-visual__title {
  position: relative;
  width: 100%;
  text-align: center;
  font-family: var(--font-eng);
  font-size: 68px;
  line-height: 1.295;
  letter-spacing: 0.025em;
  -webkit-mask-image: linear-gradient(to right, #000 33%, transparent 66%);
  mask-image: linear-gradient(to right, #000 33%, transparent 66%);
  -webkit-mask-position: right 0 top 0;
  mask-position: right 0 top 0;
  -webkit-mask-size: 300% 100%;
  mask-size: 300% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.on-load .p-visual__title {
  transition: -webkit-mask-position 1.2s cubic-bezier(0.33, 1, 0.68, 1) 0.25s;
  transition: mask-position 1.2s cubic-bezier(0.33, 1, 0.68, 1) 0.25s;
  transition: mask-position 1.2s cubic-bezier(0.33, 1, 0.68, 1) 0.25s, -webkit-mask-position 1.2s cubic-bezier(0.33, 1, 0.68, 1) 0.25s;
  -webkit-mask-position: right 100% top 0;
  mask-position: right 100% top 0;
}
@media (max-width: 1200px) {
  .p-visual__title {
    font-size: 4.7222222222vw;
  }
}
@media (max-width: 750px) {
  .p-visual__title {
    margin-top: 13%;
    font-size: 6.5vw;
    line-height: 1.42;
    letter-spacing: 0.04em;
  }
}
.p-visual__catch {
  position: relative;
  width: 90%;
  margin: 0 auto;
  margin-top: 23px;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.72;
  letter-spacing: 0.02em;
  transform: translateY(10px);
  opacity: 0;
}
.on-load .p-visual__catch {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.9s cubic-bezier(0.33, 1, 0.68, 1) 0.7s, opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.7s;
}
@media (max-width: 750px) {
  .on-load .p-visual__catch {
    transition-delay: 0.9s;
  }
}
@media (max-width: 750px) {
  .p-visual__catch {
    margin: 0 auto;
    margin-top: -7.5%;
    font-size: 17px;
    line-height: 1.95;
  }
}

.l-content {
  position: relative;
  margin-top: 4.05%;
}
@media (max-width: 750px) {
  .l-content {
    margin-top: 61px;
  }
}

.l-section--ticket {
  margin-top: 133px;
}
@media (max-width: 750px) {
  .l-section--ticket {
    margin-top: 82px;
  }
}
.l-section--goods {
  margin-top: 122px;
}
@media (max-width: 750px) {
  .l-section--goods {
    margin-top: 82px;
  }
}
.l-section__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.l-section__title {
  text-align: center;
  font-family: var(--font-eng);
  color: var(--color-purple);
  font-size: 77px;
  letter-spacing: 0.09em;
  transform: translateY(12px);
  opacity: 0;
}
.l-section.is-active .l-section__title {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.7s cubic-bezier(0.61, 1, 0.88, 1), opacity 0.3s cubic-bezier(0.61, 1, 0.88, 1);
}
@media (max-width: 750px) {
  .l-section__title {
    font-size: 10.3vw;
  }
}
.p-schedule {
  margin-top: 37px;
}
@media (max-width: 750px) {
  .p-schedule {
    margin-top: 21px;
  }
}
.p-schedule__list-item {
  display: block;
  position: relative;
  transform: translateX(12px);
  opacity: 0;
}
.l-section.is-active .p-schedule__list-item {
  transform: translateX(0);
  opacity: 1;
  transition: transform 0.8s cubic-bezier(0.61, 1, 0.88, 1), opacity 0.4s cubic-bezier(0.61, 1, 0.88, 1);
}
.l-section.is-active .p-schedule__list-item:nth-child(1) {
  transition-delay: 0.15s;
}
.l-section.is-active .p-schedule__list-item:nth-child(2) {
  transition-delay: 0.3s;
}
.l-section.is-active .p-schedule__list-item:nth-child(3) {
  transition-delay: 0.45s;
}
.l-section.is-active .p-schedule__list-item:nth-child(4) {
  transition-delay: 0.6s;
}
.l-section.is-active .p-schedule__list-item:nth-child(5) {
  transition-delay: 0.75s;
}
.l-section.is-active .p-schedule__list-item:nth-child(6) {
  transition-delay: 0.9s;
}
.l-section.is-active .p-schedule__list-item:nth-child(7) {
  transition-delay: 1.05s;
}
.l-section.is-active .p-schedule__list-item:nth-child(8) {
  transition-delay: 1.2s;
}
.l-section.is-active .p-schedule__list-item:nth-child(9) {
  transition-delay: 1.35s;
}
.l-section.is-active .p-schedule__list-item:nth-child(10) {
  transition-delay: 1.5s;
}
.l-section.is-active .p-schedule__list-item:nth-child(11) {
  transition-delay: 1.65s;
}
.l-section.is-active .p-schedule__list-item:nth-child(12) {
  transition-delay: 1.8s;
}
.l-section.is-active .p-schedule__list-item:nth-child(13) {
  transition-delay: 1.95s;
}
.l-section.is-active .p-schedule__list-item:nth-child(14) {
  transition-delay: 2.1s;
}
.l-section.is-active .p-schedule__list-item:nth-child(15) {
  transition-delay: 2.25s;
}
.l-section.is-active .p-schedule__list-item:nth-child(16) {
  transition-delay: 2.4s;
}
.l-section.is-active .p-schedule__list-item:nth-child(17) {
  transition-delay: 2.55s;
}
.l-section.is-active .p-schedule__list-item:nth-child(18) {
  transition-delay: 2.7s;
}
.l-section.is-active .p-schedule__list-item:nth-child(19) {
  transition-delay: 2.85s;
}
.l-section.is-active .p-schedule__list-item:nth-child(20) {
  transition-delay: 3s;
}

.p-schedule_item {
  position: relative;
  width: 100%;
  padding-top: 25.2px;
  padding-bottom: 21px;
  border-bottom: 1px var(--color-white) solid;
}
@media (max-width: 750px) {
  .p-schedule_item {
    padding-top: 24px;
    padding-bottom: 16px;
  }
}
.p-schedule_item__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 750px) {
  .p-schedule_item__inner {
    display: block;
    width: 95%;
    margin: 0 auto;
  }
}
.p-schedule_item__date {
  width: 175px;
  font-family: var(--font-eng);
  font-size: 24px;
}
@media (max-width: 750px) {
  .p-schedule_item__date {
    width: 100%;
    text-align: center;
  }
}
.p-schedule_item__date .day {
  vertical-align: baseline;
  margin-left: 10px;
}
.p-schedule_item__date .day.holiday {
  color: var(--color-purple);
}
.p-schedule_item__info {
  flex-basis: 0;
  flex-grow: 1;
  margin: 0 3%;
  text-align: center;
}
@media (max-width: 750px) {
  .p-schedule_item__info {
    margin: 0;
    margin-top: 16px;
  }
}
.p-schedule_item__info-place {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.03em;
}
@media (max-width: 1000px) {
  .p-schedule_item__info-place {
    font-size: 17px;
  }
}
@media (max-width: 750px) {
  .p-schedule_item__info-place {
    font-size: 17px;
    line-height: 1.45;
  }
}
.p-schedule_item__info-open {
  margin-top: 4px;
  font-family: var(--font-eng);
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  .p-schedule_item__info-open {
    margin-top: 5px;
    font-size: 17px;
    line-height: 1.2;
  }
}
.p-schedule_item__contact {
  width: 238px;
  margin-bottom: 2px;
  text-align: center;
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.06em;
}
@media (max-width: 750px) {
  .p-schedule_item__contact {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 7px;
    margin-bottom: 0;
  }
}
@media (max-width: 750px) {
  .p-schedule_item__contact-name {
    margin: 0 2px;
  }
}
@media (max-width: 750px) {
  .p-schedule_item__contact-num {
    margin: 0 2px;
  }
}

.p-ticket {
  margin-top: 43px;
}
@media (max-width: 750px) {
  .p-ticket {
    margin-top: 39px;
  }
}
.p-ticket__price {
  transform: translateY(12px);
  opacity: 0;
}
.l-section.is-active .p-ticket__price {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.7s cubic-bezier(0.61, 1, 0.88, 1) 0.2s, opacity 0.3s cubic-bezier(0.61, 1, 0.88, 1) 0.2s;
}
.p-ticket__price-heading {
  text-align: center;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media (max-width: 750px) {
  .p-ticket__price-heading {
    font-size: 23px;
  }
}
.p-ticket__price-value {
  margin-top: 18px;
  padding-right: 0.5em;
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  .p-ticket__price-value {
    padding-left: 0.3em;
    font-size: 21px;
    letter-spacing: 0.08em;
  }
}
.p-ticket__price-detail {
  margin-top: 13px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
@media (max-width: 750px) {
  .p-ticket__price-detail {
    margin-top: 9px;
    font-size: 15px;
  }
}
.p-ticket__price-notes {
  margin-top: 9px;
}
@media (max-width: 750px) {
  .p-ticket__price-notes {
    margin-top: 8px;
  }
}
.p-ticket__price-notes-item {
  text-align: center;
  font-size: 14px;
  line-height: 1.78;
  font-weight: 500;
}
@media (max-width: 750px) {
  .p-ticket__price-notes-item {
    font-size: 13px;
    line-height: 1.55;
  }
}
.p-ticket__buy {
  margin-top: 41px;
  transform: translateY(12px);
  opacity: 0;
}
.l-section.is-active .p-ticket__buy {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.7s cubic-bezier(0.61, 1, 0.88, 1) 0.4s, opacity 0.3s cubic-bezier(0.61, 1, 0.88, 1) 0.4s;
}

.p-buy__list {
  border-top: 1px var(--color-white) solid;
}
.p-buy__list-item {
  border-bottom: 1px var(--color-white) solid;
}
.p-buy__list-item.--no-line {
  border-bottom: none;
}

.p-buy_item {
  padding-top: 35px;
  padding-bottom: 30px;
}
@media (max-width: 750px) {
  .p-buy_item {
    padding-top: 33px;
  }
}
.p-buy_item.--size-small {
  padding-top: 29px;
  padding-bottom: 23px;
}
@media (max-width: 750px) {
  .p-buy_item.--size-small {
    padding-top: 25px;
    padding-bottom: 21px;
  }
}
.p-buy_item__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 750px) {
  .p-buy_item__inner {
    display: block;
  }
}
.p-buy_item__info {
  flex-basis: 0;
  flex-grow: 1;
}
.p-buy_item__info-name {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
@media (max-width: 750px) {
  .p-buy_item__info-name {
    font-size: 20px;
  }
}
.--size-small .p-buy_item__info-name {
  font-size: 24px;
}
@media (max-width: 750px) {
  .--size-small .p-buy_item__info-name {
    font-size: 17px;
    letter-spacing: 0.07em;
  }
}
.p-buy_item__info-detail {
  margin-top: 28px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.82;
  letter-spacing: 0.02em;
}
@media (max-width: 750px) {
  .p-buy_item__info-detail {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
}
.--size-small .p-buy_item__info-detail {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.02em;
}
@media (max-width: 750px) {
  .--size-small .p-buy_item__info-detail {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
}
.p-buy_item__info-detail .note {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}
.p-buy_item__btn {
  width: 272px;
  margin-bottom: 5px;
}
@media (max-width: 750px) {
  .p-buy_item__btn {
    width: 100%;
    margin-bottom: 0;
    margin-top: 20px;
  }
}
@media (max-width: 750px) {
  .--size-small .p-buy_item__btn {
    margin-top: 15px;
  }
}
.p-buy_item__btn-link {
  display: block;
  padding-top: 19px;
  padding-bottom: 21px;
  background: var(--color-purple);
  border: 1px var(--color-purple) solid;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (min-width: 751px) {
  .p-buy_item__btn-link:hover {
    background-color: transparent;
  }
}
@media (max-width: 750px) {
  .p-buy_item__btn-link {
    padding-top: 14px;
    padding-bottom: 16px;
  }
}
.p-buy_item__btn-text {
  color: var(--color-black);
  font-size: 18px;
  font-weight: 600;
  transition: color 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (min-width: 751px) {
  .p-buy_item__btn-link:hover .p-buy_item__btn-text {
    color: var(--color-white);
  }
}
@media (max-width: 750px) {
  .p-buy_item__btn-text {
    font-size: 17px;
    letter-spacing: 0.06em;
  }
}

.p-goods {
  margin-top: 69px;
}
@media (max-width: 750px) {
  .p-goods {
    margin-top: 42px;
  }
}
.p-goods__lead {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.62;
  letter-spacing: 0.07em;
  transform: translateY(12px);
  opacity: 0;
}
.l-section.is-active .p-goods__lead {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.7s cubic-bezier(0.61, 1, 0.88, 1) 0.2s, opacity 0.3s cubic-bezier(0.61, 1, 0.88, 1) 0.2s;
}
@media (max-width: 750px) {
  .p-goods__lead {
    text-align: left;
    font-size: 14px;
    line-height: 1.85;
    letter-spacing: 0.02em;
  }
}
.p-goods__sample {
  width: 74.8%;
  margin: 0 auto;
  margin-top: 59px;
  transform: translateY(12px);
  opacity: 0;
}
.l-section.is-active .p-goods__sample {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.7s cubic-bezier(0.61, 1, 0.88, 1) 0.4s, opacity 0.3s cubic-bezier(0.61, 1, 0.88, 1) 0.4s;
}
@media (max-width: 750px) {
  .p-goods__sample {
    width: 100%;
    margin-top: 38px;
  }
}
.p-goods__buy {
  margin-top: 115px;
  transform: translateY(12px);
  opacity: 0;
}
.l-section.is-active .p-goods__buy {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.7s cubic-bezier(0.61, 1, 0.88, 1) 0.6s, opacity 0.3s cubic-bezier(0.61, 1, 0.88, 1) 0.6s;
}
@media (max-width: 750px) {
  .p-goods__buy {
    margin-top: 39px;
  }
}

.c-comingsoon {
  margin-top: 78px;
  transform: translateY(12px);
  opacity: 0;
}
.l-section.is-active .c-comingsoon {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.7s cubic-bezier(0.61, 1, 0.88, 1) 0.2s, opacity 0.3s cubic-bezier(0.61, 1, 0.88, 1) 0.2s;
}
@media (max-width: 750px) {
  .c-comingsoon {
    margin-top: 43px;
  }
}
.c-comingsoon__text {
  text-align: center;
  font-family: var(--font-eng);
  font-size: 42px;
}
@media (max-width: 750px) {
  .c-comingsoon__text {
    font-size: 20px;
  }
}

.l-footer {
  padding-top: 166px;
  padding-bottom: 115px;
}
@media (max-width: 750px) {
  .l-footer {
    padding-top: 92px;
    padding-bottom: 60px;
  }
}
.l-footer__inner {
  width: 89%;
  margin: 0 auto;
}
@media (max-width: 950px) {
  .l-footer__inner {
    max-width: 380px;
  }
}
.l-footer__info-text {
  text-align: center;
  font-size: 17px;
  line-height: 1.88;
}
@media (max-width: 750px) {
  .l-footer__info-text {
    font-size: 14px;
    line-height: 1.7;
  }
}
.l-footer__others {
  margin-top: 111px;
}
@media (max-width: 950px) {
  .l-footer__others {
    margin-top: 80px;
  }
}

.l-footer_others {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 950px) {
  .l-footer_others {
    display: block;
  }
}
.l-footer_others__logo {
  width: 12.8%;
}
@media (max-width: 950px) {
  .l-footer_others__logo {
    width: 59%;
    margin: 0 auto;
  }
}
.l-footer_others__logo-link {
  display: block;
  transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (min-width: 751px) {
  .l-footer_others__logo-link:hover {
    opacity: 0.6;
  }
}
.l-footer_others__block {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 950px) {
  .l-footer_others__block {
    display: block;
  }
}
.l-footer_others__sns {
  margin: 0 1.73vw;
}
@media (min-width: 1441px) {
  .l-footer_others__sns {
    margin: 0 25px;
  }
}
@media (max-width: 1200px) {
  .l-footer_others__sns {
    margin: 0 0.9vw;
  }
}
@media (max-width: 950px) {
  .l-footer_others__sns {
    margin: 0;
    margin-top: 38px;
  }
}
.l-footer_others__sns-list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-footer_others__sns-list-item {
  height: 1.45vw;
  margin: 0 1.36vw;
}
@media (min-width: 1441px) {
  .l-footer_others__sns-list-item {
    height: 21px;
    margin: 0 19.5px;
  }
}
@media (max-width: 1200px) {
  .l-footer_others__sns-list-item {
    margin: 0 0.9vw;
  }
}
@media (max-width: 950px) {
  .l-footer_others__sns-list-item {
    height: 4vw;
    margin: 0 6%;
  }
}
@media (max-width: 500px) {
  .l-footer_others__sns-list-item {
    height: 5.5vw;
  }
}
.l-footer_others__sns-list-item:first-child {
  margin-left: 0;
}
.l-footer_others__sns-list-item:last-child {
  margin-right: 0;
}
.l-footer_others__sns-list-item img {
  width: auto;
  max-width: none;
  height: 100%;
}
.l-footer_others__sns-link {
  display: block;
  transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (min-width: 751px) {
  .l-footer_others__sns-link:hover {
    opacity: 0.5;
  }
}
.l-footer_others__official {
  margin: 0 1.73vw;
}
@media (min-width: 1441px) {
  .l-footer_others__official {
    margin: 0 25px;
  }
}
@media (max-width: 1200px) {
  .l-footer_others__official {
    margin: 0 0.9vw;
  }
}
@media (max-width: 950px) {
  .l-footer_others__official {
    margin: 0;
    margin-top: 50px;
  }
}
.l-footer_others__official-list {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 950px) {
  .l-footer_others__official-list {
    display: block;
  }
}
.l-footer_others__official-list-item {
  margin: 0 0.54vw;
}
@media (min-width: 1441px) {
  .l-footer_others__official-list-item {
    margin: 0 8px;
  }
}
@media (max-width: 1200px) {
  .l-footer_others__official-list-item {
    margin: 0 0.3vw;
  }
}
@media (max-width: 950px) {
  .l-footer_others__official-list-item {
    margin: 0;
    margin-top: 20px;
  }
}
.l-footer_others__official-list-item:first-child {
  margin-left: 0;
}
@media (max-width: 950px) {
  .l-footer_others__official-list-item:first-child {
    margin-top: 0;
  }
}
.l-footer_others__official-list-item:last-child {
  margin-right: 0;
}
.l-footer_others__official-link {
  display: block;
  text-decoration: none;
  font-family: var(--font-eng);
  color: var(--color-white);
  font-size: 0.9vw;
  letter-spacing: 0.038em;
  transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (min-width: 751px) {
  .l-footer_others__official-link:hover {
    opacity: 0.5;
  }
}
@media (min-width: 1441px) {
  .l-footer_others__official-link {
    font-size: 13px;
  }
}
@media (max-width: 950px) {
  .l-footer_others__official-link {
    text-align: center;
    font-size: 13px;
  }
}
@media (max-width: 750px) {
  .l-footer_others__copyright {
    margin-top: 40px;
  }
}
.l-footer_others__copyright-text {
  text-align: right;
  font-size: 10px;
}
@media (max-width: 950px) {
  .l-footer_others__copyright-text {
    text-align: center;
  }
}