@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600&family=Noto+Sans+JP:wght@400;700&display=swap");
.u-desktop {
  display: none;
  visibility: hidden;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
    visibility: visible;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none !important;
    visibility: hidden;
  }
}

html {
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
  background-color: #000;
  font-family: "Noto Sans JP", sans-serif;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

/* hover */
a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  display: block;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.btn {
  background: -webkit-gradient(linear, left top, right top, color-stop(2.01%, #49C1CC), color-stop(51.01%, #5889C2), to(#AD368C));
  background: linear-gradient(90deg, #49C1CC 2.01%, #5889C2 51.01%, #AD368C 100%);
  color: #fff;
  text-align: center;
  display: block;
  width: 100%;
  line-height: 50px;
  line-height: 3.125rem;
  border-radius: 50vh;
  font-weight: 700;
  font-size: 15px;
  font-size: 0.9375rem;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .btn {
    font-size: 1rem;
  }
}
.btn:before {
  background: #4AC1CD;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  width: 100%;
  display: inline-block;
}
@media (hover: hover) and (pointer: fine) {
  .btn:before {
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  .btn:hover:before, .btn:focus-visible:before {
    opacity: 0;
  }
}
.btn span {
  position: relative;
}

.contact__container {
  background-color: #000;
  padding: 40px 16px;
  padding: 2.5rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .contact__container {
    gap: 2.5rem;
    padding-block: 5rem;
  }
}

.contact__btn {
  max-width: 335px;
  width: 100%;
}

.contents p {
  color: #EFEFEF;
}

@media screen and (min-width: 768px) {
  .contents__inner.inner {
    max-width: 930px;
  }
}

.contents__title {
  margin-bottom: 28px;
  margin-bottom: 1.75rem;
  margin-inline: auto;
}

.contents__heading {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .contents__heading {
    font-size: 1.25rem;
  }
}

.contents__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  gap: 2.5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .contents__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 1.25rem;
  }
}

.contents__gridItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
}
.contents__gridItem h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px;
  padding: 0.5rem;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .contents__gridItem h3 {
    height: 8.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .contents__gridItem h3 {
    font-size: 1.125rem;
    height: 6.4375rem;
  }
}
@media screen and (max-width: 767px) {
  .contents__gridItem h3 {
    font-size: 1.125rem;
  }
}
.contents__gridItem p {
  font-size: 14px;
  font-size: 0.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
  line-height: 1.8;
}
.contents__gridItem span {
  font-size: 12px;
  font-size: 0.75rem;
}
.contents__gridItem a {
  line-height: 32px;
  line-height: 2rem;
}

.contents__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  gap: 2.5rem;
}
.contents__content + .contents__content {
  margin-top: 80px;
  margin-top: 5rem;
}
.contents__content p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .contents__content p {
    font-size: 1rem;
  }
}

.contents__imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-inline: auto;
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents__imgs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contents__imgs--sm {
  max-width: 640px;
}
.contents__imgs--md {
  max-width: 818px;
}

.contents__img {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents__img {
    max-width: 445px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .contents__img--sm {
    max-width: 222px;
    width: 100%;
  }
}
.contents__img--md {
  max-width: 640px;
}
@media screen and (min-width: 768px) {
  .contents__img img {
    max-height: 296px;
  }
}

.contents__caption {
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
  display: block;
  margin-top: 8px;
  margin-top: 0.5rem;
  color: #EFEFEF;
}

.contents__box {
  padding: 16px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .5);
  color: #EFEFEF;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
}
.contents__box dl {
  display: grid;
  grid-template-columns: 4.375rem 1fr;
}
.contents__box ol {
  counter-reset: number 0;
}
.contents__box ol li {
  padding-left: 1em;
  text-indent: -1em;
}
.contents__box ol li:before {
  counter-increment: number 1;
  content: counter(number) ".";
}
.contents__box a {
  border-bottom: 1px solid #fff;
  word-wrap: break-word;
}
.contents__box p {
  font-size: 14px;
  font-size: 0.875rem;
}

.contents__list li {
  padding-left: 1em;
  text-indent: -1em;
}
.contents__list li:before {
  content: "・";
}

.contents__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
}
.contents__item sup {
  font-size: 10px;
  font-size: 0.625rem;
}

.contents__cast {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .contents__cast {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.contents__cast figure {
  max-width: 220px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-inline: auto;
}

.contents__castText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
}
.contents__castText p {
  font-size: 14px;
  font-size: 0.875rem;
}

.contents__castComment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
}

p.contents__castQuestion {
  color: #CECECE;
}

.faq {
  padding-top: 64px;
  padding-top: 4rem;
}
@media screen and (min-width: 768px) {
  .faq {
    padding-top: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .faq__inner.inner {
    max-width: 930px;
  }
}

.faq__title {
  margin-bottom: 32px;
  margin-bottom: 2rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .faq__title {
    margin-bottom: 2.5rem;
  }
}

.faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.faq__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
  padding-block: 20px;
  padding-block: 1.25rem;
  color: #EFEFEF;
}
@media screen and (min-width: 768px) {
  .faq__item {
    gap: 1rem;
    padding-block: 1.5rem;
  }
}
.faq__item:not(:first-child) {
  border-top: 1px solid rgba(255, 255, 255, .5);
}

.faq__question,
.faq__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
}
.faq__question:before,
.faq__answer:before {
  text-transform: uppercase;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 32px;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .faq__question:before,
  .faq__answer:before {
    font-size: 2.5rem;
  }
}

.faq__question {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .faq__question {
    font-size: 1.25rem;
  }
}
.faq__question:before {
  content: "q";
  background: -webkit-gradient(linear, left top, right top, color-stop(2.01%, #49C1CC), color-stop(51.01%, #5889C2), to(#AD368C));
  background: linear-gradient(90deg, #49C1CC 2.01%, #5889C2 51.01%, #AD368C 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq__answer {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .faq__answer {
    font-size: 1rem;
  }
}
.faq__answer:before {
  content: "a";
  color: #4AC1CD;
}

.footer {
  background-color: #fff;
}

.footer__inner {
  padding-block: 40px 24px;
  padding-block: 2.5rem 1.5rem;
}

.footer__copyright {
  color: #000;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
}

.footer__logo {
  max-width: 175px;
  max-width: 10.9375rem;
  width: 100%;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  margin-inline: auto;
}

.header {
  position: fixed;
  background-color: #000;
  z-index: 100;
  width: 100%;
  height: 47px;
  height: 2.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .header {
    height: 3.6875rem;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 16px;
  padding-inline: 1rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding-inline: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .header__nav {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000;
    top: 0;
    right: -120%;
    -webkit-transition: 0.4s ease-out;
    transition: 0.4s ease-out;
  }
  .header__nav.is-active {
    right: 0;
    -webkit-transition: 0.4s ease-out;
    transition: 0.4s ease-out;
  }
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  gap: 2.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .header__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    top: calc(50% + 23px);
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.header__item a {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
}
@media screen and (max-width: 767px) {
  .header__item a {
    line-height: 1.2;
    font-size: 2.5rem;
    background: -webkit-gradient(linear, left top, right top, color-stop(2.01%, #49C1CC), color-stop(51.01%, #5889C2), to(#AD368C));
    background: linear-gradient(90deg, #49C1CC 2.01%, #5889C2 51.01%, #AD368C 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
@media screen and (min-width: 768px) {
  .header__item a {
    font-size: 1rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header__item a {
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  .header__item a:hover, .header__item a:focus-visible {
    opacity: 0.8;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
}

.header__logo {
  max-width: 239px;
  max-width: 14.9375rem;
  width: 100%;
  position: relative;
  z-index: 90;
}

.header__hamburger {
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  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;
  position: absolute;
  top: 13px;
  top: 0.8125rem;
  right: 14px;
  right: 0.875rem;
  z-index: 90;
}
@media (hover: hover) and (pointer: fine) {
  .header__hamburger:hover, .header__hamburger:focus-visible {
    cursor: pointer;
  }
}
.header__hamburger span {
  position: absolute;
  background-color: #fff;
  height: 1px;
  height: 0.0625rem;
  width: 16px;
  width: 1rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.header__hamburger span:first-child {
  top: 5px;
  top: 0.3125rem;
}
.header__hamburger span:nth-child(2) {
  top: 9px;
  top: 0.5625rem;
}
.header__hamburger span:nth-child(3) {
  top: 13px;
  top: 0.8125rem;
}
.header__hamburger.is-active span {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.header__hamburger.is-active span:first-child {
  -webkit-transform: translateY(5px) rotate(-45deg);
          transform: translateY(5px) rotate(-45deg);
}
.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active span:nth-child(3) {
  -webkit-transform: translateY(-3px) rotate(45deg);
          transform: translateY(-3px) rotate(45deg);
}
@media screen and (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}

.inner {
  max-width: 1120px;
  width: calc(100% - 2rem);
  margin-inline: auto;
}

.intro {
  padding-block: 65px 80px;
  padding-block: 4.0625rem 5rem;
}
@media screen and (min-width: 768px) {
  .intro {
    padding-block: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .intro__inner {
    max-width: 930px;
  }
}

.intro__date {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .intro__date {
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .intro__date {
    font-size: 2rem;
  }
}
.intro__dateYear {
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .intro__dateYear {
    font-size: 1.25rem;
    margin-right: 0.1875rem;
  }
}
.intro__dateNum {
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  .intro__dateNum {
    font-size: 3rem;
    margin-inline: 0.1875rem;
  }
}
.intro__datePeriod {
  margin-inline: 4px 2px;
  margin-inline: 0.25rem 0.125rem;
}
@media screen and (min-width: 768px) {
  .intro__datePeriod {
    margin-inline: 0.625rem 0.4375rem;
  }
}
.intro__dateDay {
  background-color: #fff;
  border-radius: 50%;
  color: #000;
  font-size: 14px;
  font-size: 0.875rem;
  padding: 0 4px 2px;
  padding: 0 0.25rem 0.125rem;
  margin-left: 2px;
  margin-left: 0.125rem;
  line-height: 20px;
  line-height: 1.25rem;
  vertical-align: 0.3em;
}
@media screen and (min-width: 768px) {
  .intro__dateDay {
    font-size: 1.25rem;
    line-height: 1.8125rem;
    padding: 0 0.375rem 0.1875rem;
    margin-left: 0.375rem;
  }
}

.intro__venue {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.6;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  gap: 0.9375rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .intro__venue {
    font-size: 3rem;
  }
}
.intro__venue:before, .intro__venue:after {
  content: "";
  background-color: #fff;
  height: 1px;
  width: 100%;
  max-width: 140px;
  max-width: 8.75rem;
}
.intro__venue:before {
  margin-left: auto;
}
.intro__venue span {
  white-space: nowrap;
}

.intro__desc {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2.4;
  text-align: left;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .intro__desc {
    text-align: center;
    font-size: 1.125rem;
  }
}

.intro__box {
  border: 1px solid #fff;
  padding: 16px;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
  text-align: center;
  margin-block: 80px;
  margin-block: 5rem;
}

.intro__heading {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}

.intro__goods {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  gap: 2.5rem;
}
.intro__goods h3 {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .intro__goods h3 {
    font-size: 1.25rem;
  }
}
.intro__goods p {
  line-height: 1.8;
  text-align: center;
}
.intro__goods a {
  text-transform: none;
  color: #4AC1CD;
  line-height: 1.6;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .intro__goods a {
    font-size: 1rem;
  }
}

.intro__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
}

.main {
  padding-top: 47px;
  padding-top: 2.9375rem;
}
@media screen and (min-width: 768px) {
  .main {
    padding-top: 3.6875rem;
  }
}

@media screen and (min-width: 768px) {
  .outline__inner {
    max-width: 930px;
  }
}

.outline__title {
  margin-bottom: 32px;
  margin-bottom: 2rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .outline__title {
    margin-bottom: 2.5rem;
  }
}

.outline__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .outline__list {
    gap: 2.5rem;
  }
}

.outline__contentDetail {
  text-align: left;
  font-weight: 400;
  line-height: 1.6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .outline__contentDetail {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 768px) {
  .outline__contentDetail {
    max-width: 520px;
    width: 100%;
    margin-inline: auto;
    font-size: 1rem;
  }
}
.outline__contentDetail p:first-child {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.section {
  padding-block: 64px;
  padding-block: 4rem;
}
@media screen and (min-width: 768px) {
  .section {
    padding-block: 5rem;
  }
}
.section--bg {
  background-image: url(../img/bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.section__item {
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .section__item {
    font-size: 1.25rem;
  }
}

.section__heading {
  background: -webkit-gradient(linear, left top, right top, color-stop(2.01%, #49C1CC), color-stop(51.01%, #5889C2), to(#AD368C));
  background: linear-gradient(90deg, #49C1CC 2.01%, #5889C2 51.01%, #AD368C 100%);
  padding: 8px 16px;
  padding: 0.5rem 1rem;
  color: #fff;
}

.section__content {
  text-transform: uppercase;
  padding: 24px 16px;
  padding: 1.5rem 1rem;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
  color: #000;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .section__content {
    padding: 2.5rem;
    gap: 1rem;
  }
}
.section__content a {
  text-transform: none;
  color: #4AC1CD;
  line-height: 1.6;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .section__content a {
    font-size: 1rem;
  }
}

.sns__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .sns__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.sns__container {
  background-color: #000;
  padding: 40px 16px;
  padding: 2.5rem 1rem;
}
@media screen and (min-width: 768px) {
  .sns__container {
    padding: 2.5rem;
  }
}
.sns__container iframe {
  width: auto;
}
@media screen and (min-width: 768px) {
  .sns__container iframe {
    width: 100%;
    max-width: 470px;
  }
}

.sns__title {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.instagram__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .instagram__list {
    gap: 0.625rem;
  }
}

.instagram__profile {
  display: grid;
  grid-template-columns: 5rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
}

p.text-sm {
  font-size: 14px;
  font-size: 0.875rem;
}

.mb-10 {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}

@media screen and (min-width: 768px) {
  .ticket__inner {
    max-width: 930px;
  }
}

.ticket__title {
  margin-bottom: 28px;
  margin-bottom: 1.75rem;
  margin-inline: auto;
}

.ticket__content dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  gap: 0.625rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .ticket__content dl {
    max-width: 46.25rem;
    margin-inline: auto;
    gap: 2.5rem 1.875rem;
    display: grid;
    grid-template-columns: 5.875rem 1fr;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.ticket__content dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .ticket__content dd {
    gap: 1.5rem;
  }
}

.ticket__contentLabel {
  background-color: #000;
  color: #fff;
  line-height: 26px;
  line-height: 1.625rem;
  width: 76px;
  width: 4.75rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .ticket__contentLabel:not(:first-child) {
    margin-top: 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .ticket__contentLabel {
    line-height: 1.75rem;
    width: 100%;
    font-size: 1rem;
  }
}

.ticket__contentDetail {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
}
.ticket__contentDetail span {
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .ticket__contentDetail span {
    font-size: 1rem;
  }
}

.ticket__contentAttention {
  display: block;
}
@media screen and (min-width: 768px) {
  .ticket__contentAttention {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.ticket__contentAttention:before {
  content: "※";
}

.ticket__contentDetailLabel {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .ticket__contentDetailLabel {
    font-size: 1rem;
  }
}

.title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 40px;
  font-size: 2.5rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(2.01%, #49C1CC), color-stop(51.01%, #5889C2), to(#AD368C));
  background: linear-gradient(90deg, #49C1CC 2.01%, #5889C2 51.01%, #AD368C 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .title {
    font-size: 3rem;
  }
}
/*# sourceMappingURL=styles.css.map */
