@charset "UTF-8";
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 960px) {
  html {
    font-size: 1.6vw;
  }
}
@media (min-width: 1000px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #000000;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (min-width: 960px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.6;
}

/* PC版Chromeで拡縮画像ぼやけ対策 */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (-webkit-min-device-pixel-ratio: 0), screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
/* iPhoneSafariで画像ジャギ対策 */
img {
  image-rendering: auto;
}

/* コンテンツ量が少なく短いページでもフッターを最下部に表示する ---- */
.content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* コンテンツ量が少なく短いページでもフッターを最下部に表示する ここまで ---- */
/* FOUT対策 ----------------- */
html {
  visibility: hidden;
}

html.wf-active,
html.loading-delay {
  visibility: visible;
}

/* FOUT対策 ここまで ----------------- */
/* YouTubeのframeborder属性の変わり(HTML5の標準仕様で廃止されているため) */
iframe {
  border: none;
}

/* ハンバガーメニューオープン時、YouTubeモーダル発火時、body要素をスクロールさせない ここから -------------------------- */
body.is-scroll {
  overflow: hidden;
}

/* ハンバガーメニューオープン時、YouTubeモーダル発火時、body要素をスクロールさせない ここまで -------------------------- */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

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

body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

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

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

input,
button,
select,
textarea {
  font: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: none;
}

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

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

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

.accordion__title {
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 1.125rem;
  color: #fff;
  font-weight: bold;
  padding: 0.9375rem;
  text-align: center;
  background-image: -webkit-gradient(linear, left top, right top, from(#907b35), to(#776529));
  background-image: linear-gradient(90deg, #907b35, #776529);
}
@media screen and (min-width: 960px) {
  .accordion__title {
    font-size: 1.5rem;
  }
}

.accordion__btn {
  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: 50%;
  right: 5%;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #fff;
  border-radius: 100vh;
  margin-top: -1.25rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.accordion__btn-icon {
  position: relative;
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.accordion__title.open .accordion__btn {
  -webkit-transform: rotate(-360deg);
          transform: rotate(-360deg);
}

.accordion__btn-icon:before,
.accordion__btn-icon:after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  content: "";
  background-color: #fff;
  border-radius: 0.625rem;
  width: 1.125rem;
  height: 0.25rem;
  position: absolute;
  top: 0.4375rem;
  left: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.accordion__btn-icon:before {
  width: 0.25rem;
  height: 1.125rem;
  top: 0;
  left: 0.4375rem;
}

.accordion__title.open .accordion__btn-icon:before {
  content: none;
}

.accordion__title.open .accordion__btn-icon:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.accordion__contents {
  display: none;
  padding: 1.25rem 1.25rem;
  border-left: 2px solid #776529;
  border-right: 2px solid #776529;
  border-bottom: 2px solid #776529;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (min-width: 960px) {
  .accordion__contents {
    padding: 1.875rem 1.875rem;
    font-size: 1.5rem;
  }
}

.audio {
  position: relative;
  max-width: 16.5625rem;
  width: 100%;
  background: transparent -webkit-gradient(linear, left top, right top, from(#5c4b94), to(#64bdd9));
  background: transparent linear-gradient(90deg, #5c4b94 0%, #64bdd9 100%);
  padding: 0.75rem 1rem 0.75rem 1.25rem;
  border-radius: 100vh;
  margin: auto;
}
@media screen and (min-width: 960px) {
  .audio {
    max-width: 23.625rem;
    padding: 1rem 1rem 1rem 1.75rem;
  }
}

.audio__btn-items {
  position: relative;
  cursor: pointer;
  width: 1.75rem;
  height: 1.75rem;
}
@media screen and (min-width: 960px) {
  .audio__btn-items {
    width: 2.5625rem;
    height: 2.5625rem;
  }
}

.audio__btn-item {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 100%;
}

.audio__btn-item.is-hide {
  opacity: 0;
  pointer-events: none;
}

.audio__seekbar {
  position: absolute;
  top: 50%;
  right: 6.04%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 72.1%;
  height: 4px;
  background-color: #000000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 960px) {
  .audio__seekbar {
    right: 5.82%;
    height: 5px;
  }
}

.audio__seekbar-now {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #000000;
  width: 0%;
  height: 100%;
  pointer-events: none;
}

.audio__seekbar input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  margin: 0;
  background-color: #fff;
  width: 100%;
  height: 100%;
}

.audio__play-time {
  position: absolute;
  top: 0.375rem;
  right: 7.55%;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
@media screen and (min-width: 960px) {
  .audio__play-time {
    top: 0.625rem;
    font-size: 0.875rem;
  }
}

.audio__play-time span {
  vertical-align: baseline;
}

/* ベーススタイル */
input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  width: 100%;
}

/* Track: Chrome, Safari, Opera, Edge Chromium */
input[type=range]::-webkit-slider-runnable-track {
  background: #fff;
  height: 4px;
}
@media screen and (min-width: 960px) {
  input[type=range]::-webkit-slider-runnable-track {
    height: 5px;
  }
}

/* Thumb: Chrome, Safari, Opera, Edge Chromium */
input[type=range]::-webkit-slider-thumb {
  position: relative;
  -webkit-appearance: none;
  appearance: none;
  height: 0.9375rem;
  width: 0.9375rem;
  margin-top: -0.3125rem; /* 位置の調整が必要 */
  background-color: #000000;
  border-radius: 50%;
  z-index: 20;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 960px) {
  input[type=range]::-webkit-slider-thumb {
    height: 1.25rem;
    width: 1.25rem;
    margin-top: -0.5625rem; /* 位置の調整が必要 */
  }
}

.audio__seekbar:hover input[type=range]::-webkit-slider-thumb {
  opacity: 1;
}

/* Track: Firefox */
input[type=range]::-moz-range-track {
  background: #fff;
  height: 4px;
}
@media screen and (min-width: 960px) {
  input[type=range]::-moz-range-track {
    height: 5px;
  }
}

/* Thumb: Firefox */
input[type=range]::-moz-range-thumb {
  position: relative;
  border: none;
  height: 0.9375rem;
  width: 0.9375rem;
  background-color: #000000;
  border-radius: 50%;
  z-index: 20;
  opacity: 0;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 960px) {
  input[type=range]::-moz-range-thumb {
    height: 1.25rem;
    width: 1.25rem;
  }
}

.audio__seekbar:hover input[type=range]::-moz-range-thumb {
  opacity: 1;
}

.bd-dvd__anchor-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  margin-top: 2.0625rem;
}
@media screen and (min-width: 960px) {
  .bd-dvd__anchor-link {
    gap: 0.75rem;
  }
}

.bd-dvd__container {
  background-color: #fff;
  border-top: 2px solid #000000;
  margin-top: 6.875rem;
  position: relative;
}
@media screen and (min-width: 960px) {
  .bd-dvd__container {
    margin-top: 7rem;
  }
}

.bd-dvd__container.bd-dvd__container--top {
  margin-top: 1.875rem;
  position: relative;
}
@media screen and (min-width: 960px) {
  .bd-dvd__container.bd-dvd__container--top {
    margin-top: 3.125rem;
  }
}

.bd-dvd__container::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5rem;
  width: 100%;
  background-image: url(../../assets/images/common/pattern.png);
  background-size: 10.625rem 1.5rem;
  background-repeat: repeat;
}

.bd-dvd__wrapper {
  padding: 2.5rem 0.625rem 4.25rem;
}
@media screen and (min-width: 414px) {
  .bd-dvd__wrapper {
    padding: 2.5rem 1.25rem 4.25rem;
  }
}
@media screen and (min-width: 960px) {
  .bd-dvd__wrapper {
    padding: 4.5rem 4.5rem 6rem;
  }
}

.bd-dvd__container-title {
  color: #3ba9fb;
  font-size: 1.125rem;
  line-height: 1.3;
  letter-spacing: 0.05em;
  padding-bottom: 0.625rem;
  font-weight: 700;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 414px) {
  .bd-dvd__container-title {
    text-align: center;
  }
}
@media screen and (min-width: 960px) {
  .bd-dvd__container-title {
    font-size: 1.4375rem;
    line-height: 1.3043478261;
    padding-bottom: 0.75rem;
  }
}

.bd-dvd__container-title.bd-dvd__container-title--left {
  text-align: left;
}

.bd-dvd__sub-title {
  text-align: center;
  font-size: 1rem;
  line-height: 1.1875;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (min-width: 960px) {
  .bd-dvd__sub-title {
    font-size: 1.3125rem;
    line-height: 1.1052631579;
  }
}

.bd-dvd__image-wrap-medium {
  margin: 1.6875rem auto 0;
  width: 100%;
  max-width: 32.1875rem;
}

.bd-dvd__image-wrap-large {
  margin-top: 1.6875rem;
  width: 100%;
}

.bd-dvd__image-wrap {
  margin: 1.6875rem auto 0;
  width: 100%;
}

.bd-dvd__image {
  width: 100%;
}

.bd-dvd__table-wrapper {
  max-width: 22.5rem;
  width: 100%;
  margin: 1.5rem auto 0;
}

.bd-dvd-table__table.bd-dvd-table:nth-of-type(2) {
  margin-top: 0.875rem;
}
@media screen and (min-width: 960px) {
  .bd-dvd-table__table.bd-dvd-table:nth-of-type(2) {
    margin-top: 1rem;
  }
}

.bd-dvd__head {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.3529411765;
  letter-spacing: 0.05em;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width: 960px) {
  .bd-dvd__head {
    font-size: 1.125rem;
    line-height: 1.4444444444;
    letter-spacing: 0.05em;
  }
}

.bd-dvd__text-wrap {
  margin-top: 1.5rem;
}

.bd-dvd__text,
.bd-dvd__list {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.9285714286;
  letter-spacing: 0.075em;
}
@media screen and (min-width: 960px) {
  .bd-dvd__text,
  .bd-dvd__list {
    font-size: 0.9375rem;
    line-height: 1.9333333333;
    letter-spacing: 0.075em;
  }
}

.bd-dvd__list {
  padding-left: 1em;
  text-indent: -1em;
}

.bd-dvd__comment {
  font-size: 0.75rem;
  letter-spacing: 0.075em;
  line-height: 1.75;
  padding-left: 1em;
  text-indent: -1em;
}

.bd-dvd__comment.bd-dvd__comment--indent {
  padding-left: 2em;
}

.bd-dvd__link {
  color: #907b35;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.9285714286;
  letter-spacing: 0.075em;
}
@media screen and (min-width: 960px) {
  .bd-dvd__link {
    font-size: 0.9375rem;
    line-height: 1.9333333333;
  }
}

.bd-dvd__cards {
  margin: 1.25rem auto 0;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  row-gap: 1.25rem;
  width: 100%;
  max-width: 31.25rem;
}
@media (min-width: 768px) {
  .bd-dvd__cards {
    margin: 1.375rem auto 0;
    row-gap: 1.375rem;
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }
}

.bd-dvd-card {
  background-color: #f7f7f7;
  padding: 1.25rem 0.3125rem;
  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;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.bd-dvd-card__title {
  color: #328ed6;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3571428571;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 960px) {
  .bd-dvd-card__title {
    font-size: 0.9375rem;
    line-height: 1.2666666667;
  }
}

.bd-dvd-card__image-wrap {
  margin: 0.8125rem auto 0;
  width: 100%;
  max-width: 15.625rem;
  height: 15.625rem;
  background-color: #fff;
}

.bd-dvd-card__image-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.bd-dvd-card__head {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3571428571;
  letter-spacing: 0.05em;
  margin-top: 0.6875rem;
}

.bd-dvd-card__head.bd-dvd-card__head--first {
  margin-top: 0.4375rem;
}

.bd-dvd-card__text {
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.5833333333;
  letter-spacing: 0.075em;
  margin-top: 0.5rem;
}
@media screen and (min-width: 375px) {
  .bd-dvd-card__text {
    font-size: 0.75rem;
  }
}

.bd-dvd-card__btn {
  margin-top: 0.75rem;
}
@media screen and (min-width: 960px) {
  .bd-dvd-card__btn {
    margin-top: 0.8125rem;
  }
}

.bd-dvd-table {
  font-size: 0.75rem;
  line-height: 1;
  text-align: center;
  width: 100%;
  border-collapse: collapse;
}
@media screen and (min-width: 960px) {
  .bd-dvd-table {
    font-size: 0.8125rem;
  }
}

.bd-dvd-table__line {
  border-top: 0.1875rem solid #fff;
}

.bd-dvd-table__head {
  background-color: #dedede;
}

.bd-dvd-table__title {
  padding: 0.40625rem 0.625rem;
}

.bd-dvd-table__left {
  padding: 0.5625rem 0.625rem;
  width: 29.25%;
  background-color: #dedede;
}
@media screen and (min-width: 960px) {
  .bd-dvd-table__left {
    width: 37.2%;
  }
}

.bd-dvd-table__right {
  padding: 0.5625rem 0.625rem;
  width: 70.75%;
  background-color: #f4f4f4;
}
@media screen and (min-width: 960px) {
  .bd-dvd-table__right {
    width: 62.77%;
  }
}

.bg-parallax {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  background: url(../../assets/images/common/bg-repeat.jpg) repeat center top;
  background-size: 10.375rem;
  z-index: -10;
}
@media screen and (min-width: 960px) {
  .bg-parallax {
    background-size: 18.75rem;
  }
}

.bg-parallax.bg-parallax--character-voice {
  background: url(../../assets/images/character-voice/character-voice-bg.jpg) repeat center top;
  background-size: 8.75rem;
}
@media screen and (min-width: 960px) {
  .bg-parallax.bg-parallax--character-voice {
    background-size: 14.0625rem;
  }
}

.books__inner {
  width: 81.5%;
  max-width: 55rem;
  padding: 0;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .books__inner {
    padding: 0 1.875rem;
    width: 100%;
    max-width: 58.75rem;
  }
}

.books__conteiner {
  background-color: #fff;
  border-top: 2px solid #000000;
  margin-top: 1.5625rem;
  position: relative;
}
@media screen and (min-width: 960px) {
  .books__conteiner {
    margin-top: 2.5rem;
  }
}

.books__conteiner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5rem;
  width: 100%;
  background-image: url(../../assets/images/common/pattern.png);
  background-size: 10.625rem 1.5rem;
  background-repeat: repeat;
}

.books__wrapper {
  padding: 2.6875rem 1.875rem 3.75rem;
}
@media screen and (min-width: 960px) {
  .books__wrapper {
    padding: 5.4375rem 2.5rem;
  }
}

.books__new {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .books__new {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 85%;
  }
}

.books__new-description {
  width: 100%;
  letter-spacing: 0.05em;
  color: #000000;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .books__new-description {
    width: 57%;
  }
}

.books__description-text {
  font-size: clamp(0.6875rem, 3.86vw, 1.25rem);
  line-height: 1.8;
  font-weight: 700;
}

.books__description-text-top {
  font-weight: 500;
  font-size: clamp(0.75rem, 4.35vw, 1.3125rem);
}

.books__description-text small {
  font-size: 1.25rem;
}

.books__description-text span {
  color: #328ed6;
  font-size: clamp(0.75rem, 4.35vw, 1.3125rem);
}

.books__description-text-large {
  font-size: clamp(0.8125rem, 5.07vw, 1.8125rem);
  font-weight: 500;
}

.books__new-comic {
  width: 100%;
  max-width: 31.25rem;
  margin-top: 1.4375rem;
}
@media screen and (min-width: 960px) {
  .books__new-comic {
    width: 43%;
    margin-top: 0;
  }
}

.books__new-comic-img {
  margin: 0 auto;
  padding-top: 142.12%;
  position: relative;
  width: 100%;
  display: block;
  height: inherit;
}

.books__new-comic-img img {
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
}

.books__new-comic-text {
  margin-top: 0.3125rem;
  text-align: center;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.books__comic-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 1rem;
  -webkit-column-gap: 5%;
     -moz-column-gap: 5%;
          column-gap: 5%;
  margin-top: 1.4375rem;
}
@media screen and (min-width: 960px) {
  .books__comic-items {
    row-gap: 1.625rem;
    -webkit-column-gap: 3.5%;
       -moz-column-gap: 3.5%;
            column-gap: 3.5%;
    margin-top: 2.1875rem;
  }
}

.books__comic-item {
  width: 47%;
}
@media screen and (min-width: 960px) {
  .books__comic-item {
    width: 22.25%;
  }
}

.books__comic-image {
  margin: 0 auto;
  padding-top: 142.28%;
  position: relative;
  width: 100%;
}

.books__comic-image img {
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
}

.books__comic-text {
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
  margin-top: 0.4375rem;
}

.books__trial-reading {
  display: block;
  margin: 1.875rem auto 0;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .books__trial-reading {
    width: 61.25%;
    margin: 3.75rem auto 0;
  }
}

.books__trial-reading-img {
  margin: 0 auto;
  margin: 0 auto;
  padding-top: 26.53%;
  position: relative;
  width: 100%;
}

.books__trial-reading-img img {
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
}

.btn {
  padding: 0.625rem 0.4375rem;
  color: #fff;
  background-color: #907b35;
  display: inline-block;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-transform: capitalize;
}
@media screen and (min-width: 375px) {
  .btn {
    padding: 0.625rem 0.625rem;
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 960px) {
  .btn {
    padding: 0.875rem 1.875rem;
  }
}

.btn.btn--common {
  padding: 0.875rem 1.5625rem;
}
@media screen and (min-width: 960px) {
  .btn.btn--common {
    padding: 0.875rem 1.875rem;
  }
}

.btn.btn--long {
  padding: 0.9375rem 0.3125rem;
  width: 100%;
  max-width: 27.125rem;
  font-size: 1.125rem;
  letter-spacing: 0.09em;
  line-height: 1.2777777778;
  border-radius: 0.3125rem;
  font-family: "EB Garamond", serif;
  position: relative;
}

.btn.btn--large,
.btn.btn--goods-modal {
  padding: 0.625rem 2.8125rem;
  font-size: 1.125rem;
  letter-spacing: 0.09em;
  line-height: 1.2777777778;
  border-radius: 0.3125rem;
  font-family: "EB Garamond", serif;
  font-style: italic;
  position: relative;
  overflow: hidden;
  will-change: transform;
}
@media screen and (min-width: 960px) {
  .btn.btn--large,
  .btn.btn--goods-modal {
    font-size: 1.4375rem;
    padding: 0.8125rem 4.375rem;
    line-height: 1.3043478261;
  }
}

.btn.btn--large::before {
  position: absolute;
  content: "↼";
  top: 50%;
  left: 0.4375rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}

.btn.btn--large::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  border: 1px solid #776529;
  border-radius: 0.3125rem;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: top;
          transform-origin: top;
}

.btn.btn--large.btn--next::before {
  position: absolute;
  content: "⇀";
  top: 50%;
  left: auto;
  right: 0.4375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}

.btn__text {
  position: relative;
  display: inline-block;
  z-index: 10;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn__text-preposition {
  text-transform: initial;
}

.btn.btn--music {
  padding: 0.6875rem 0.3125rem;
  width: 100%;
  max-width: 16.375rem;
  text-transform: none;
}
@media screen and (min-width: 960px) {
  .btn.btn--music {
    padding: 0.953125rem 0.3125rem;
    max-width: 29.875rem;
  }
}
@media screen and (max-width: 400px) {
  .btn.btn--music {
    word-break: break-all;
  }
}

.btn.btn--music.text-uppercase {
  text-transform: uppercase;
}

.btn.btn--summercard {
  width: 95%;
  margin: 0 auto;
  border-radius: 0.3125rem;
}
@media screen and (min-width: 960px) {
  .btn.btn--summercard {
    width: 100%;
    max-width: 434px;
  }
}

.btn.btn--anchor-link {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.btn.btn--special-week {
  width: 100%;
  max-width: 12.5rem;
}

.btn.btn--link {
  width: 100%;
  height: 2.9375rem;
  font-size: 0.875rem;
  padding: 0.1875rem 0.3125rem;
  line-height: 1;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: none;
}
@media screen and (min-width: 960px) {
  .btn.btn--link {
    height: 3.125rem;
    font-size: clamp(0.813rem, -0.521rem + 2.22vw, 0.938rem); /* 13px ~ 15px / 960px ~ 1050px */
  }
}

.btn.btn--link span {
  font-size: 0.625rem;
  line-height: 1.2;
}

/* GOODSページボタン */
.btn.btn--goods-modal {
  font-style: normal;
}

/* ダウンロードボタン ------------- */
.btn-download {
  display: inline-block;
  font-size: 1rem;
  font-family: "EB Garamond", serif;
  font-style: italic;
  color: #343434;
  background-color: #fff;
  border: 1px solid #343434;
  padding: 0.5rem 0.9375rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-download:hover {
  background-color: #204d97;
  color: #fff;
  opacity: 1;
}

/* ダウンロードボタン ここまで ------------- */
/* 箇条書きリストの共通パーツ ----------------------- */
.bluray_text.bullet-point.bullet-point--mt {
  margin-top: 1.25rem;
}

.bullet-point,
.asterisk,
.bullet-point-number,
.rhombus,
.bullet-point-square,
.bullet-point-circle,
.bullet-point-triangle {
  position: relative;
  padding-left: 1em;
  margin-top: 0.1875rem;
}

.asterisk-number {
  position: relative;
  padding-left: 2.2em;
  margin-top: 0.1875rem;
}

.step {
  position: relative;
  padding-left: 3.4em;
}

.bullet-point:first-child,
.asterisk:first-child,
.bullet-point-number,
.asterisk-number,
.rhombus,
.bullet-point-square,
.bullet-point-circle,
.bullet-point-triangle {
  margin-top: 0;
}

.bullet-point::before {
  content: "・";
  display: inline-block;
  position: absolute;
  top: 1em;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.875rem;
  color: #000000;
  line-height: 1.9285714286;
}
@media screen and (min-width: 960px) {
  .bullet-point::before {
    font-size: 0.9375rem;
    line-height: 1.9333333333;
  }
}

.bullet-point.bullet-point--notes::before {
  content: "・";
  display: inline-block;
  position: absolute;
  top: 1.2em;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.75rem;
  color: #000000;
  line-height: 1.929;
}

.rhombus::before {
  content: "◆";
  display: inline-block;
  position: absolute;
  top: 1em;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.875rem;
  color: #000000;
  line-height: 1.9285714286;
}
@media screen and (min-width: 960px) {
  .rhombus::before {
    font-size: 0.9375rem;
    line-height: 1.9333333333;
  }
}

.bullet-point-circle::before {
  content: "●";
  display: inline-block;
  position: absolute;
  top: 1em;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.875rem;
  color: #000000;
  line-height: 1.9285714286;
}
@media screen and (min-width: 960px) {
  .bullet-point-circle::before {
    font-size: 0.9375rem;
    line-height: 1.9333333333;
  }
}

.bullet-point-triangle::before {
  content: "▼";
  display: inline-block;
  position: absolute;
  top: 1em;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.875rem;
  color: #000000;
  line-height: 1.9285714286;
}
@media screen and (min-width: 960px) {
  .bullet-point-triangle::before {
    font-size: 0.9375rem;
    line-height: 1.9333333333;
  }
}

.bullet-point-triangle::before {
  content: "▼";
  display: inline-block;
  position: absolute;
  top: 1em;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.875rem;
  color: #000000;
  line-height: 1.9285714286;
}
@media screen and (min-width: 960px) {
  .bullet-point-triangle::before {
    font-size: 0.9375rem;
    line-height: 1.9333333333;
  }
}

.bullet-point-square.bullet-point-square--notes::before {
  content: "■";
  display: inline-block;
  position: absolute;
  top: 1em;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.75rem;
  color: #000000;
  line-height: 1.929;
}

.asterisk::before {
  content: "※";
  display: inline-block;
  position: absolute;
  top: 1em;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.75rem;
  color: #000000;
  line-height: 2.25;
}
@media screen and (min-width: 960px) {
  .asterisk::before {
    top: 1em;
    font-size: 0.9375rem;
    line-height: 2.4166666667;
  }
}

.asterisk.asterisk--font-small::before {
  top: 0.75em;
  font-size: 0.75rem;
  line-height: 2.25;
}
@media screen and (min-width: 960px) {
  .asterisk.asterisk--font-small::before {
    top: 0.8em;
    font-size: 0.8125rem;
    line-height: 2.2307692308;
  }
}

.bullet-point-number::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0.95em;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.875rem;
  color: #000000;
  line-height: 1.9285714286;
}
@media screen and (min-width: 960px) {
  .bullet-point-number::before {
    font-size: 0.9375rem;
    line-height: 1.9333333333;
  }
}

.bullet-point-number.number01::before {
  content: "①";
}

.bullet-point-number.number02::before {
  content: "②";
}

.bullet-point-number.number03::before {
  content: "③";
}

.bullet-point-number.number04::before {
  content: "④";
}

.bullet-point-number.number04::before {
  content: "④";
}

.asterisk-number::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0.9em;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.75rem;
  color: #000000;
}

.asterisk-number.asterisk-number01::before {
  content: "※1：";
}

.asterisk-number.asterisk-number02::before {
  content: "※2：";
}

.step::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  color: #328ed6;
  text-transform: capitalize;
}
@media screen and (min-width: 960px) {
  .step::before {
    font-size: 1.4375rem;
  }
}

.step.step01::before {
  content: "step.1";
}

.step.step02::before {
  content: "step.2";
}

.step.step03::before {
  content: "step.3";
}

.step.step04::before {
  content: "step.4";
}

.step.step05::before {
  content: "step.5";
}

/*  箇条書きリストの共通パーツ ここまで---------------- */
.bullet-point.bullet-point--modal.bullet-point::before {
  top: 0.7em;
}

/* トップページのキャラクターセクションサムネイル */
.character-thumb-items.thumb-items {
  display: grid;
  grid-template-columns: repeat(6, 2fr);
  row-gap: 0.40625rem; /* 上下の余白 */
  -webkit-column-gap: 0.40625rem;
     -moz-column-gap: 0.40625rem;
          column-gap: 0.40625rem; /* 左右の余白 */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 31.875rem;
  width: 100%;
  margin: auto;
  padding: 0 0.625rem;
}
@media screen and (min-width: 960px) {
  .character-thumb-items.thumb-items {
    grid-template-columns: repeat(8, 1fr);
    row-gap: 0.75rem; /* 上下の余白 */
    -webkit-column-gap: 0.75rem;
       -moz-column-gap: 0.75rem;
            column-gap: 0.75rem; /* 左右の余白 */
    max-width: 45.3125rem;
    padding: 0 1.5625rem;
  }
}

.character-thumb-item.thumb-item {
  position: relative;
  opacity: 1; /* 画像の透過を無くす */
  border: 1px solid #907b35;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.character-thumb-item.thumb-item.character-thumb-item-active::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(#907b35), to(#776529));
  background-image: linear-gradient(90deg, #907b35, #776529);
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.character-thumb-item.thumb-item:not(.character-thumb-item-active):hover,
.character-thumb-item.thumb-item:hover.character-thumb-item-active::before {
  opacity: 0.6;
}

.character-thumb-item.thumb-item img {
  display: block;
  width: 100%;
}

.character-voice__image-wrapper {
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 57.2%);
  width: 100vw;
}
@media screen and (min-width: 600px) {
  .character-voice__image-wrapper {
    max-width: 31.25rem;
    width: 100%;
    margin: auto;
    padding: 0;
  }
}
@media screen and (min-width: 960px) {
  .character-voice__image-wrapper {
    max-width: 35rem;
  }
}

.character-voice__image {
  width: 100%;
}

.character-voice__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.character-voice__audio-wrapper {
  padding: 4.0625rem 0;
  border-bottom: 1px solid #000000;
}
@media screen and (min-width: 960px) {
  .character-voice__audio-wrapper {
    padding: 5rem 0;
  }
}

.character-voice__description {
  margin: 1.875rem auto 0;
}
@media screen and (min-width: 414px) {
  .character-voice__description {
    max-width: 15.625rem;
    width: 100%;
  }
}
@media screen and (min-width: 960px) {
  .character-voice__description {
    max-width: none;
  }
}

.character-voice__description-text {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (min-width: 960px) {
  .character-voice__description-text {
    font-size: 1.4375rem;
  }
}

.character-voice__notes {
  font-size: 0.75rem;
  line-height: 1.5;
  margin-top: 3.75rem;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width: 414px) {
  .character-voice__notes {
    font-size: 1rem;
    text-align: center;
  }
}

.character-voice__streaming-period {
  margin: 2.5rem auto 0;
  text-align: center;
}

.character-voice__streaming-period-text {
  display: inline-block;
  font-size: clamp(0.75rem, -0.275rem + 4.69vw, 0.938rem);
  padding: 0.9375rem 0.5rem;
  border: 1px solid #000000;
}
@media screen and (min-width: 414px) {
  .character-voice__streaming-period-text {
    font-size: 0.9375rem;
    padding: 1.15625rem 0.625rem;
  }
}
@media screen and (min-width: 960px) {
  .character-voice__streaming-period-text {
    font-size: 1.4375rem;
    padding: 1rem 0.5625rem;
  }
}

.character-voice__banner {
  margin: 2.9375rem calc(50% - 50vw) 0;
  padding: 0 calc(50vw - 57.2%);
  width: 100vw;
}
@media screen and (min-width: 600px) {
  .character-voice__banner {
    max-width: 30.625rem;
    width: 100%;
    margin: 2.9375rem auto 0;
    padding: 0;
  }
}

.character-voice__jump-plus {
  margin: 2.125rem auto 0;
  width: 38.2%;
  max-width: 11.9375rem;
}

.character__container {
  position: relative;
  margin-top: 2.1875rem;
}
@media screen and (min-width: 960px) {
  .character__container {
    margin-top: 3.75rem;
  }
}

.character__swiper.swiper {
  top: 0.3125rem;
}
@media screen and (min-width: 960px) {
  .character__swiper.swiper {
    top: 1.875rem;
  }
}

@media screen and (min-width: 960px) {
  .character__swiper::before {
    content: "";
    position: absolute;
    top: 11.5625rem;
    display: block;
    width: 100%;
    height: 21.25rem;
    border-top: 2px solid #000000;
    background: url(../../assets/images/common/pattern.png) repeat-x left bottom #fff;
    background-size: auto 1.5rem;
  }
}

@media screen and (min-width: 960px) {
  .character-item-wrapper {
    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;
    width: 100%;
    padding: 1.875rem 0;
  }
}

.character-img {
  position: relative;
  top: 2.5rem;
  width: 69.73%;
  max-width: 18.75rem;
  margin: auto;
}
@media screen and (min-width: 960px) {
  .character-img {
    top: 0rem;
    max-width: 22.875rem;
    width: 100%;
    margin: 0;
  }
}

.character-img::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 181.9444444444%;
}

.character-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.character-info-container {
  padding: 3.5625rem 2.5rem 4.5rem;
  border-top: 2px solid #000000;
  background: url(../../assets/images/common/pattern.png) repeat-x left bottom #fff;
  background-size: auto 1.5rem;
}
@media screen and (min-width: 960px) {
  .character-info-container {
    padding: 2.1875rem 1.25rem 3.4375rem 0;
    max-width: 32.1875rem;
    border-top: none;
    background: none;
    margin-left: 0.9375rem;
  }
}

.character-info-wrapper {
  position: relative;
  padding-left: 1.5625rem;
  max-width: 37.5rem;
  margin: auto;
}

.character-info-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0.625rem;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(92%, #000), color-stop(92%, #328ed6));
  background-image: linear-gradient(180deg, #000 92%, #328ed6 92%);
}

.character-name {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 960px) {
  .character-name {
    font-size: 2.9375rem;
  }
}

.character-name::first-letter {
  color: #328ed6;
}

.character-cv {
  font-size: 1.1875rem;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-top: 1.125rem;
}
@media screen and (min-width: 960px) {
  .character-cv {
    font-size: 1.625rem;
    margin-top: 1.125rem;
  }
}

.character-info {
  font-size: 0.875rem;
  line-height: 1.929;
  letter-spacing: 0.075em;
  margin-top: 1.25rem;
}
@media screen and (min-width: 960px) {
  .character-info {
    font-size: 0.9375rem;
    margin-top: 1.5625rem;
  }
}

#cboxLoadingOverlay,
#cboxLoadedContent,
#cboxContent {
  background: transparent;
}

#cboxOverlay {
  background: #000000;
  opacity: 0.85;
}

/* モーダル閉じるボタン */
#cboxClose {
  background: url(../../assets/images/common/btn-close.png) no-repeat right top;
  background-size: contain;
  width: 1.875rem;
  height: 1.875rem;
  top: -1.875rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 960px) {
  #cboxClose {
    width: 4.25rem;
    height: 4.25rem;
    top: -4.25rem;
  }
}

#cboxClose:hover {
  background-position: 0;
  opacity: 0.6;
}

#cboxContent {
  margin-top: 1.875rem;
}
@media screen and (min-width: 960px) {
  #cboxContent {
    margin-top: 4.25rem;
  }
}

.comment {
  display: inline-block;
  width: 1.25rem;
  margin-left: -0.3125rem;
  vertical-align: bottom;
}
@media screen and (min-width: 414px) {
  .comment {
    width: 1.5625rem;
    margin-left: -0.25rem;
  }
}
@media screen and (min-width: 960px) {
  .comment {
    width: 2rem;
    margin-left: -0.4375rem;
    margin-bottom: 0.125rem;
  }
}

.comment-icon {
  width: 100%;
  height: auto;
}

.comment.comment--music {
  width: 1.6875rem;
  margin-left: 0.125rem;
}
@media screen and (min-width: 414px) {
  .comment.comment--music {
    width: 2rem;
    margin-left: 0.25rem;
  }
}
@media screen and (min-width: 960px) {
  .comment.comment--music {
    width: 2rem;
  }
}

.exclusive-page__container {
  background-color: #fff;
  border-top: 2px solid #000000;
  position: relative;
}

.exclusive-page__container::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5rem;
  width: 100%;
  background-image: url(../../assets/images/common/pattern.png);
  background-size: 10.625rem 1.5rem;
  background-repeat: repeat;
}

.exclusive-page__wrapper {
  padding: 0 1.25rem 4rem;
}
@media screen and (min-width: 960px) {
  .exclusive-page__wrapper {
    padding: 0 4.5rem 6rem;
  }
}

.exclusive-page__title-text {
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.3333333333;
  color: #3ba9fb;
  text-align: center;
  padding: 1.5625rem 0;
  border-bottom: 1px solid #000000;
}
@media screen and (min-width: 960px) {
  .exclusive-page__title-text {
    font-size: clamp(1.25rem, -0.036rem + 2.14vw, 1.438rem); /* 20px ~ 23px｜960px ~ 1100px */
    line-height: 1.3043478261;
  }
}
@media screen and (min-width: 1100px) {
  .exclusive-page__title-text {
    font-size: 1.4375rem;
  }
}

.exclusive-page__notes-wrapper {
  margin: 2.5rem auto 0;
}
@media screen and (min-width: 414px) {
  .exclusive-page__notes-wrapper {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}

.exclusive-page__notes-list-item {
  font-size: 0.875rem;
  line-height: 1.428;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width: 960px) {
  .exclusive-page__notes-list-item {
    font-size: 1rem;
  }
}

.exclusive-page__link {
  color: #64bdd9;
  font-weight: 700;
}

.footer {
  position: relative;
  text-align: center;
  padding: 6.25rem 0 8.125rem;
}
@media screen and (min-width: 960px) {
  .footer {
    padding: 10.625rem 0 8.125rem;
  }
}

.footer.footer-top-page {
  padding: 3.125rem 0 8.125rem;
}
@media screen and (min-width: 960px) {
  .footer.footer-top-page {
    padding: 5rem 0 8.125rem;
  }
}

footer:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent -webkit-gradient(linear, right top, left top, from(#343434), to(#000000)) 0% 0%;
  background: transparent linear-gradient(270deg, #343434 0%, #000000 100%) 0% 0%;
  background-size: 200%;
  width: 100%;
  height: 3.75rem;
}

.footer__inner.footer__inner-top-page {
  padding-top: 5.625rem;
}
@media screen and (min-width: 960px) {
  .footer__inner.footer__inner-top-page {
    padding-top: 8.75rem;
  }
}

.footer__share-text {
  font-size: 1.5rem;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: capitalize;
}
@media screen and (min-width: 960px) {
  .footer__share-text {
    font-size: 1.75rem;
  }
}

.footer__share-btn-wrapper {
  width: 100%;
  margin: 12px auto 0;
  font-size: 0;
}

.footer__share-btn-wrapper a {
  display: inline-block;
  width: 2.5625rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 960px) {
  .footer__share-btn-wrapper a {
    width: 2.625rem;
  }
}

.footer__share-btn-wrapper a:nth-child(n+2) {
  margin-left: 0.75rem;
}
@media screen and (min-width: 960px) {
  .footer__share-btn-wrapper a:nth-child(n+2) {
    margin-left: 0.8125rem;
  }
}

.footer__share-btn-wrapper a img {
  width: 100%;
  height: auto;
}

.footer__share-btn-wrapper a:hover {
  opacity: 0.6;
}

.footer__copyright {
  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;
  margin-top: 3.4375rem;
}

.footer__copyright-mark {
  font-size: 0.9375rem;
  line-height: 1;
}

.footer__copyright-text {
  font-size: 0.75rem;
  line-height: 1;
}

.footer__banner-stage {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  width: 76.7%;
  max-width: 33.75rem;
  margin: auto;
}
@media screen and (min-width: 960px) {
  .footer__banner-stage {
    width: 100%;
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
    max-width: 33.75rem;
  }
}

.footer__banner-stage a {
  display: block;
  width: 100%;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.goods-card {
  background-color: #f7f7f7;
  padding: 1.875rem 1.25rem;
  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;
}
@media screen and (min-width: 960px) {
  .goods-card {
    padding: 1.875rem 1.25rem;
  }
}

.goods-card__title {
  color: #328ed6;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3571428571;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 960px) {
  .goods-card__title {
    font-size: 0.9375rem;
    line-height: 1.2666666667;
  }
}

.goods-card__image-wrap {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 15.625rem;
  height: 15.625rem;
  background-color: #fff;
}
@media screen and (min-width: 960px) {
  .goods-card__image-wrap {
    max-width: 12.5rem;
    height: 12.5rem;
  }
}

.goods-card__image-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.goods-card__head {
  color: #328ed6;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3571428571;
  letter-spacing: 0.05em;
  margin-top: 0.6875rem;
}
@media screen and (min-width: 960px) {
  .goods-card__head {
    font-size: 0.9375rem;
    line-height: 1.2666666667;
  }
}

.goods-card__head {
  margin-top: 1.875rem;
}

.goods-card__text {
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.5833333333;
  letter-spacing: 0.075em;
  margin-top: 0.5rem;
}
@media screen and (min-width: 375px) {
  .goods-card__text {
    font-size: 0.75rem;
  }
}

.goods-card__btn {
  padding-top: 1.875rem;
  margin-top: auto;
}

.goods-modal__container {
  position: relative;
  background-color: #fff;
}

.goods-modal__container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5rem;
  width: 100%;
  background-image: url(../../assets/images/common/pattern.png);
  background-size: auto 1.5rem;
  background-repeat: repeat;
}

.goods-modal__inner {
  width: 100%;
  padding: 2.5rem 1.25rem 3.5rem;
}
@media screen and (min-width: 960px) {
  .goods-modal__inner {
    padding: 4.5rem 4.5rem 4rem;
  }
}

.goods-modal__image {
  width: 100%;
  margin: auto;
}
@media screen and (min-width: 414px) {
  .goods-modal__image {
    width: 80%;
  }
}
.goods-modal__info-items {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid #000000;
}
@media screen and (min-width: 960px) {
  .goods-modal__info-items {
    margin-top: 3.125rem;
    padding-top: 3.125rem;
  }
}

.goods-modal__info-item:nth-child(n+2) {
  margin-top: 1.875rem;
}
@media screen and (min-width: 960px) {
  .goods-modal__info-item:nth-child(n+2) {
    margin-top: 3.125rem;
  }
}

.goods-modal__info-head {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 960px) {
  .goods-modal__info-head {
    font-size: 1.125rem;
  }
}

.goods-modal__info-text {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 0.625rem;
}
@media screen and (min-width: 960px) {
  .goods-modal__info-text {
    font-size: 1rem;
  }
}

.goods-modal__info-notes {
  font-size: 0.75rem;
  line-height: 1.5;
  margin-top: 0.625rem;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width: 960px) {
  .goods-modal__info-notes {
    font-size: 0.875rem;
  }
}

.goods-modal__goods-page-btn {
  text-align: center;
  margin-top: 2.5rem;
}
@media screen and (min-width: 960px) {
  .goods-modal__goods-page-btn {
    margin-top: 3.125rem;
  }
}

.goods-modal__notes-list-items {
  margin-top: 1.25rem;
}
@media screen and (min-width: 960px) {
  .goods-modal__notes-list-items {
    margin-top: 1.875rem;
  }
}

.goods-modal__notes-list-item {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 0.625rem;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width: 960px) {
  .goods-modal__notes-list-item {
    font-size: 1rem;
  }
}

.goods-modal__copyright {
  font-size: 0.75rem;
  line-height: 1.5;
  margin-top: 1.875rem;
}
@media screen and (min-width: 960px) {
  .goods-modal__copyright {
    font-size: 0.875rem;
  }
}

.goods__anchor-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  margin-top: 2.0625rem;
}
@media screen and (min-width: 960px) {
  .goods__anchor-link {
    gap: 0.75rem;
  }
}

.goods-subpage__inner {
  max-width: 1920px;
  width: 100%;
  margin: auto;
  padding: 0 1.25rem;
}

.goods__container {
  background-color: #fff;
  border-top: 2px solid #000000;
  margin-top: 6.875rem;
  position: relative;
}
@media screen and (min-width: 960px) {
  .goods__container {
    margin-top: 7rem;
  }
}

.goods__container.goods__container--top {
  margin-top: 1.875rem;
  position: relative;
}
@media screen and (min-width: 960px) {
  .goods__container.goods__container--top {
    margin-top: 3.125rem;
  }
}

.goods__container::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5rem;
  width: 100%;
  background-image: url(../../assets/images/common/pattern.png);
  background-size: 10.625rem 1.5rem;
  background-repeat: repeat;
}

.goods__wrapper {
  padding: 2.5rem 0.625rem 4.25rem;
}
@media screen and (min-width: 414px) {
  .goods__wrapper {
    padding: 2.5rem 1.25rem 4.25rem;
  }
}
@media screen and (min-width: 960px) {
  .goods__wrapper {
    padding: 4.5rem 4.5rem 6rem;
  }
}

.goods__container-title {
  color: #3ba9fb;
  font-size: 1.125rem;
  line-height: 1.3;
  letter-spacing: 0.05em;
  padding-bottom: 0.625rem;
  font-weight: 700;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 414px) {
  .goods__container-title {
    text-align: center;
  }
}
@media screen and (min-width: 960px) {
  .goods__container-title {
    font-size: 1.4375rem;
    line-height: 1.3043478261;
    padding-bottom: 0.75rem;
  }
}

.goods__container-title.goods__container-title--left {
  text-align: left;
}

.goods__sub-title {
  text-align: center;
  font-size: 1rem;
  line-height: 1.1875;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (min-width: 960px) {
  .goods__sub-title {
    font-size: 1.3125rem;
    line-height: 1.1052631579;
  }
}

.goods__image-wrap-medium {
  margin: 1.6875rem auto 0;
  width: 100%;
  max-width: 32.1875rem;
}

.goods__image-wrap {
  margin: 1.6875rem auto 0;
  width: 100%;
}

.goods__image {
  width: 100%;
}

.goods__table-wrapper {
  max-width: 22.5rem;
  width: 100%;
  margin: 1.5rem auto 0;
}

.goods-table__table.goods-table:nth-of-type(2) {
  margin-top: 0.875rem;
}
@media screen and (min-width: 960px) {
  .goods-table__table.goods-table:nth-of-type(2) {
    margin-top: 1rem;
  }
}

.goods__head {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.3529411765;
  letter-spacing: 0.05em;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width: 960px) {
  .goods__head {
    font-size: 1.125rem;
    line-height: 1.4444444444;
    letter-spacing: 0.05em;
  }
}

.goods__text-wrap {
  margin-top: 1.5rem;
}

.goods__text,
.goods__list {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.9285714286;
  letter-spacing: 0.075em;
}
@media screen and (min-width: 960px) {
  .goods__text,
  .goods__list {
    font-size: 0.9375rem;
    line-height: 1.9333333333;
    letter-spacing: 0.075em;
  }
}

.goods__list {
  padding-left: 1em;
  text-indent: -1em;
}

.goods__comment {
  font-size: 0.75rem;
  letter-spacing: 0.075em;
  line-height: 1.75;
  padding-left: 1em;
  text-indent: -1em;
}

.goods__comment.goods__comment--indent {
  padding-left: 2em;
}

.goods__link {
  color: #907b35;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.9285714286;
  letter-spacing: 0.075em;
}
@media screen and (min-width: 960px) {
  .goods__link {
    font-size: 0.9375rem;
    line-height: 1.9333333333;
  }
}

.goods__cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 1.875rem;
  width: 100%;
  max-width: 25rem;
  margin: auto;
}
@media (min-width: 768px) {
  .goods__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.1875rem 1.25rem;
    max-width: none;
  }
}
@media (min-width: 1024px) {
  .goods__cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.grid-style {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 10px;
  width: 83.6%;
  margin: 0 auto;
}

.grid-style.grid-style--smartphone-wallpaper {
  grid-gap: 10px;
}
@media screen and (min-width: 960px) {
  .grid-style.grid-style--smartphone-wallpaper {
    grid-gap: 30px;
  }
}

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

.induction-banner__inner {
  width: 84.7826086957%;
  max-width: 37.5rem;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .induction-banner__inner {
    max-width: none;
    width: 100%;
  }
}

.induction-banner__container {
  position: relative;
}

.induction-banner__link {
  display: block;
  width: 100%;
}

.induction-banner__swiper-slide-img {
  position: relative;
  width: 99.9%;
  margin: auto;
}

.induction-banner__swiper-slide-img::before {
  content: "";
  display: block;
  padding-top: 56.2515337423%;
}

.induction-banner__swiper-slide-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.induction-banner__text {
  font-size: 3.6231884058vw;
  font-weight: 700;
  line-height: 1.5333333333;
  letter-spacing: 0.05em;
  color: #907b35;
  margin-top: 1.690821256vw;
}
@media screen and (min-width: 762px) {
  .induction-banner__text {
    font-size: 1.725rem;
    margin-top: 0.80625rem;
  }
}
@media screen and (min-width: 960px) {
  .induction-banner__text {
    font-size: 0.78125vw;
    margin-top: 0.625vw;
  }
}

.introduction {
  position: relative;
  padding: 8.75rem 0;
}
@media screen and (min-width: 960px) {
  .introduction {
    padding: 10.9375rem 0;
  }
}

.introduction__image-top {
  position: absolute;
  width: 7.4375rem;
  right: 2.9%;
  height: auto;
  top: -6.5625rem;
}
@media screen and (min-width: 960px) {
  .introduction__image-top {
    width: 15.6%;
    right: 6.5%;
    top: -6.25rem;
    max-width: 21.875rem;
  }
}
@media screen and (min-width: 1440px) {
  .introduction__image-top {
    top: -16.0625rem;
  }
}

.introduction__image-bottom {
  position: absolute;
  width: 6.625rem;
  left: 4.4%;
  bottom: -4.6875rem;
}
@media screen and (min-width: 960px) {
  .introduction__image-bottom {
    width: 16.3%;
    max-width: 21.875rem;
    left: 5.5%;
    bottom: -17.375rem;
  }
}
@media screen and (min-width: 1440px) {
  .introduction__image-bottom {
    bottom: -23.5rem;
  }
}

.introduction::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.25);
}

.introduction__inner {
  width: 80%;
  max-width: 55rem;
  padding: 0;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .introduction__inner {
    max-width: 71.25rem;
    padding: 0 1.875rem;
    width: 100%;
  }
}

.introduction__conteiner {
  background-color: #fff;
  border-top: 2px solid #000000;
  margin-top: 1.5625rem;
  position: relative;
}
@media screen and (min-width: 960px) {
  .introduction__conteiner {
    margin-top: 2.5rem;
  }
}

.introduction__conteiner::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5rem;
  width: 100%;
  background-image: url(../../assets/images/common/pattern.png);
  background-size: 10.625rem 1.5rem;
  background-repeat: repeat;
}

.introduction__wrapper {
  padding: 0.9375rem 0.9375rem 2.1875rem;
}
@media screen and (min-width: 960px) {
  .introduction__wrapper {
    padding: 5rem 1.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .introduction__wrapper {
    padding: 5rem 2.5rem;
  }
}

.introduction__text {
  font-size: 0.75rem;
  line-height: 2.2142857143;
  text-align: center;
}
@media screen and (min-width: 414px) {
  .introduction__text {
    font-size: 0.875rem;
    font-size: clamp(0.813rem, 0.512rem + 1.16vw, 0.875rem);
  }
}
@media screen and (min-width: 960px) {
  .introduction__text {
    font-size: 0.875rem; /* 15px ~ 17px / 960px ~ 1175px */
    line-height: 2.4117647059;
    letter-spacing: 0.03em;
  }
}
@media screen and (min-width: 1175px) {
  .introduction__text {
    font-size: 1.0625rem;
  }
}

.introduction__text span {
  color: #328ed6;
  font-size: 0.8125rem;
}
@media screen and (min-width: 414px) {
  .introduction__text span {
    font-size: 1rem;
    font-size: clamp(0.938rem, 0.637rem + 1.16vw, 1rem);
  }
}
@media screen and (min-width: 960px) {
  .introduction__text span {
    font-size: 1rem; /* 17px ~ 20px / 960px ~ 1175px */
  }
}
@media screen and (min-width: 1175px) {
  .introduction__text span {
    font-size: 1.25rem;
  }
}

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 960px) {
  .inner {
    max-width: 1050px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.link-tug {
  font-size: 0.9375rem;
  padding: 0.4375rem 0.9375rem;
  letter-spacing: 0.05em;
  border: solid 1px #907b35;
  color: #907b35;
  background-color: #fff;
  position: relative;
  display: inline-block;
}
@media screen and (min-width: 960px) {
  .link-tug {
    padding-top: 0.40625rem;
    padding-bottom: 0.40625rem;
  }
}

.link-tug span {
  width: 0.875rem;
  height: 0.75rem;
  display: inline-block;
}

.loading-white-bg,
.loading-white-bg-subpage {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  overflow: hidden;
  z-index: 500;
  background-color: #fff;
}

.loading,
.loading-subpage {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  overflow: hidden;
  z-index: 500;
}

.loading-image {
  position: absolute;
  width: 145vw;
  left: 0; /* シーズン2②のキービジュアル */
  right: 0; /* シーズン2②のキービジュアル */
  bottom: 0;
  opacity: 0;
  z-index: 600;
}
@media screen and (min-width: 960px) {
  .loading-image {
    width: 100vw;
  }
}

.is_open .loading,
.is_open .loading-white-bg {
  opacity: 0;
  visibility: hidden;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transition: all 2s cubic-bezier(0.5, 1, 0.89, 1) 3.4s;
  transition: all 2s cubic-bezier(0.5, 1, 0.89, 1) 3.4s;
}

.is_open .loading-white-bg-subpage,
.is_open .loading-white-bg {
  opacity: 0;
  visibility: hidden;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transition: all 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.5s;
  transition: all 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.5s;
}

.is_open .loading-image {
  opacity: 1;
  -webkit-transition: opacity 0.5s cubic-bezier(0.11, 0, 0.5, 0), -webkit-transform 2.4s cubic-bezier(0.45, 0, 0.55, 1) 0.6s;
  transition: opacity 0.5s cubic-bezier(0.11, 0, 0.5, 0), -webkit-transform 2.4s cubic-bezier(0.45, 0, 0.55, 1) 0.6s;
  transition: transform 2.4s cubic-bezier(0.45, 0, 0.55, 1) 0.6s, opacity 0.5s cubic-bezier(0.11, 0, 0.5, 0);
  transition: transform 2.4s cubic-bezier(0.45, 0, 0.55, 1) 0.6s, opacity 0.5s cubic-bezier(0.11, 0, 0.5, 0), -webkit-transform 2.4s cubic-bezier(0.45, 0, 0.55, 1) 0.6s;
}

@-webkit-keyframes remove_catch {
  0% {
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
  100% {
    opacity: 0;
    -webkit-filter: blur(8px);
            filter: blur(8px);
  }
}

@keyframes remove_catch {
  0% {
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
  100% {
    opacity: 0;
    -webkit-filter: blur(8px);
            filter: blur(8px);
  }
}
#wrapper {
  opacity: 0;
}

#wrapper::before {
  display: none;
}

#wrapper.is_start {
  opacity: 1;
}

.visual_wrap {
  opacity: 0;
  overflow: hidden;
}

.image-mv {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

.is_start .visual_wrap {
  opacity: 1;
  -webkit-transition: opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1) 0.2s;
  transition: opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1) 0.2s;
}

.is_start .image-mv {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 8s cubic-bezier(0.33, 1, 0.68, 1);
  transition: -webkit-transform 8s cubic-bezier(0.33, 1, 0.68, 1);
  transition: transform 8s cubic-bezier(0.33, 1, 0.68, 1);
  transition: transform 8s cubic-bezier(0.33, 1, 0.68, 1), -webkit-transform 8s cubic-bezier(0.33, 1, 0.68, 1);
}

#wrapper.in_start {
  opacity: 1;
  -webkit-transition: opacity 0.6s ease-out 0s;
  transition: opacity 0.6s ease-out 0s;
}

/* MVロゴ、ハンバーガーメニュ、タブのアップアニメーション -------------------------- */
.fadein01 {
  -webkit-filter: blur(100px);
          filter: blur(100px);
  opacity: 0;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  -webkit-transform: translate(0, 150px);
          transform: translate(0, 150px);
}

.fadein01.load-active {
  -webkit-filter: blur(0);
          filter: blur(0);
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fadein02 {
  -webkit-filter: blur(100px);
          filter: blur(100px);
  opacity: 0;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  -webkit-transform: translate(0, 150px);
          transform: translate(0, 150px);
}

.fadein02.load-active {
  -webkit-filter: blur(0);
          filter: blur(0);
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fadein05 {
  -webkit-filter: blur(100px);
          filter: blur(100px);
  opacity: 0;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  -webkit-transform: translate(0, 150px);
          transform: translate(0, 150px);
}
@media screen and (min-width: 960px) {
  .fadein05 {
    -webkit-transform: translate(-50%, 150px);
            transform: translate(-50%, 150px);
  }
}

.fadein05.load-active {
  -webkit-filter: blur(0);
          filter: blur(0);
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media screen and (min-width: 960px) {
  .fadein05.load-active {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

.fadein03 {
  -webkit-filter: blur(100px);
          filter: blur(100px);
  opacity: 0;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  pointer-events: none;
  -webkit-transform: translate(0, 150px);
          transform: translate(0, 150px);
}

.fadein03.load-active {
  -webkit-filter: blur(0);
          filter: blur(0);
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fadein04 {
  -webkit-filter: blur(100px);
          filter: blur(100px);
  opacity: 0;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  pointer-events: none;
  -webkit-transform: translate(-50%, 150px);
          transform: translate(-50%, 150px);
}
@media screen and (min-width: 960px) {
  .fadein04 {
    -webkit-transform: translate(0, 150px);
            transform: translate(0, 150px);
  }
}

.fadein04.load-active {
  -webkit-filter: blur(0);
          filter: blur(0);
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@media screen and (min-width: 960px) {
  .fadein04.load-active {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.modal__container {
  position: relative;
  background-color: #fff;
}

.modal__container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5rem;
  width: 100%;
  background-image: url(../../assets/images/common/pattern.png);
  background-size: auto 1.5rem;
  background-repeat: repeat;
}

.modal__inner {
  width: 100%;
  padding: 2.5rem 1.25rem 3.5rem;
}
@media screen and (min-width: 375px) {
  .modal__inner {
    padding: 2.5rem 6% 3.5rem;
  }
}
@media screen and (min-width: 960px) {
  .modal__inner {
    padding: 4.5rem 4.5rem 4rem;
  }
}

.modal__mage {
  max-width: clamp(13.25rem, 8.806rem + 17.22vw, 19.125rem); /* 212px ~ 306px | ~960px */
  width: 100%;
  position: relative;
  margin: 0 auto 0.5625rem;
}
@media screen and (min-width: 960px) {
  .modal__mage {
    max-width: 306px;
    margin: 0 auto 0.75rem;
  }
}

.modal__mage::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%; /* H / W  */
}

.modal__mage img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.modal__role-name {
  text-align: center;
}

.modal__role {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #328ed6;
}
@media screen and (min-width: 960px) {
  .modal__role {
    font-size: 1.25rem;
  }
}

.modal__name {
  font-size: 1.4375rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3043478261;
  color: #000000;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 960px) {
  .modal__name {
    font-size: 1.8125rem;
    line-height: 1.3448275862;
    margin-top: 1.25rem;
  }
}

.modal__message {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.9285714286;
  margin-top: 0.75rem;
}
@media screen and (min-width: 960px) {
  .modal__message {
    font-size: 0.9375rem;
    line-height: 1.9333333333;
    margin-top: 1.5rem;
  }
}

/* 音楽情報 商品情報 */
.modal__table-wrapper:nth-child(n+2) {
  margin-top: 0.8125rem;
}
@media screen and (min-width: 960px) {
  .modal__table-wrapper:nth-child(n+2) {
    margin-top: 1rem;
  }
}

.modal__table-wrapper:nth-child(n+2) {
  margin-top: 2.5rem;
}
@media screen and (min-width: 960px) {
  .modal__table-wrapper:nth-child(n+2) {
    margin-top: 3.125rem;
  }
}

.modal__table-wrapper.modal__table-wrapper--mt-none {
  margin-top: 0;
}

.modal__table {
  font-size: 0.75rem;
  line-height: 1;
  text-align: center;
  width: 100%;
  border-collapse: collapse;
}
@media screen and (min-width: 960px) {
  .modal__table {
    font-size: 0.8125rem;
  }
}

.modal__line {
  border-top: 0.1875rem solid #fff;
}

.modal__head {
  background-color: #dedede;
}

.modal__title {
  padding: 0.40625rem 0.625rem;
}

.modal__left {
  padding: 0.5625rem 0.625rem;
  width: 29.25%;
  background-color: #dedede;
}

.modal__right {
  padding: 0.5625rem 0.625rem;
  width: 70.75%;
  background-color: #f4f4f4;
}

.modal__table-data {
  line-height: 1.6666666667;
  padding: 0.5625rem 0.625rem;
  width: 100%;
  background-color: #f4f4f4;
  text-align: left;
  padding: 0.875rem 1rem;
}
@media screen and (min-width: 960px) {
  .modal__table-data {
    padding: 0.875rem 1.3125rem;
  }
}

.modal__small-text {
  font-size: 0.6875rem;
}
@media screen and (min-width: 960px) {
  .modal__small-text {
    font-size: 0.75rem;
  }
}

.modal__text-wrapper {
  padding-bottom: 0.625rem;
}

.modal__songーtitle {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  padding-bottom: 0.1875rem;
  border-bottom: 1px solid #000000;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
}
@media screen and (min-width: 960px) {
  .modal__songーtitle {
    font-size: 0.9375rem;
  }
}

.modal__songーtitle:nth-child(n+2) {
  margin-top: 0.625rem;
}

.modal__text {
  font-size: 0.75rem;
  line-height: 1;
  width: 100%;
  text-align: center;
  margin-top: 0.625rem;
}
@media screen and (min-width: 960px) {
  .modal__text {
    font-size: 0.8125rem;
  }
}

.modal__jacket-wrapper {
  margin-top: 3.125rem;
  padding-top: 1.25rem;
  border-top: 1px solid #000000;
}

.modal__heading {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .modal__heading {
    font-size: 0.8125rem;
  }
}

.modal__image-wrapper {
  width: 100%;
}

.modal__image-wrapper.modal__image-wrapper--bt {
  margin-bottom: 0.75rem;
}

/* スペシャルページ モーダル */
.modal__special-container {
  width: 100%;
  height: 100%;
}

.modal__special-image {
  position: relative;
  width: 100%;
}

.modal__special-image::before {
  content: "";
  display: block;
  padding-top: 149.8892215569%;
}

.modal__special-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 画像の比率管理なしver */
.modal__special-image-free {
  width: 100%;
}

.modal__special-image-free img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 画像の比率管理なし、縦向きver */
.modal__special-image-vertical {
  height: 100%;
}

.modal__special-image-vertical img {
  height: 100%;
  width: auto;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/* スペシャルページ モーダル 画像サイズフリー */
.modal__image-free {
  width: 100%;
  display: block;
}

.modal__image-free img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.movie-subpage__container {
  background-color: #fff;
  border-top: 2px solid #000000;
  margin-top: 1.875rem;
  position: relative;
}
@media screen and (min-width: 960px) {
  .movie-subpage__container {
    margin-top: 3.125rem;
  }
}

.movie-subpage__container::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5rem;
  width: 100%;
  background-image: url(../../assets/images/common/pattern.png);
  background-size: 10.625rem 1.5rem;
  background-repeat: repeat;
}

.movie-subpage__wrapper {
  padding: 2.5rem 1.25rem 4rem;
}
@media screen and (min-width: 960px) {
  .movie-subpage__wrapper {
    padding: 4.5rem 4.5rem 6rem;
  }
}

.movie-subpage__group {
  margin-top: 3.125rem;
}
@media screen and (min-width: 960px) {
  .movie-subpage__group {
    margin-top: 4.375rem;
  }
}

.movie-subpage__group:first-of-type {
  margin-top: 0;
}

.movie-subpage__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 960px) {
  .movie-subpage__images {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.movie-subpage__image-wrap {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .movie-subpage__image-wrap {
    width: calc(50% - 0.75rem);
  }
}

.movie-subpage__image {
  position: relative;
  width: 100%;
  display: block;
}

.movie-subpage__image::before {
  content: "";
  display: block;
  padding-top: 56.2517006803%;
}

.movie-subpage__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.movie-subpage__image-text {
  color: #907b35;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.075em;
  margin-top: 0.625rem;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .movie-subpage__image-text {
    font-size: 0.9375rem;
    line-height: 1.5333333333;
    letter-spacing: 0.05em;
  }
}

.movie-subpage__large-btn {
  text-align: center;
  margin-top: 5rem;
}
@media screen and (min-width: 960px) {
  .movie-subpage__large-btn {
    margin-top: 5.625rem;
  }
}

.movie {
  position: relative;
  padding: 7.3550724638% 0;
  background: transparent -webkit-gradient(linear, right top, left top, from(#343434), to(#000000)) 0% 0%;
  background: transparent linear-gradient(270deg, #343434 0%, #000000 100%) 0% 0%;
  background-size: 200%;
}
@media screen and (min-width: 762px) {
  .movie {
    padding: 3.51875rem 0;
  }
}
@media screen and (min-width: 960px) {
  .movie {
    padding: 3.28125% 0;
  }
}

.movie::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5rem;
  width: 100%;
  background-image: url(../../assets/images/common/pattern.png);
  background-size: 10.625rem 1.5rem;
  background-repeat: repeat;
}

.movie__inner {
  width: 78.7439613527%;
  max-width: 37.5rem;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .movie__inner {
    max-width: none;
    width: 100%;
  }
}

.movie__container {
  position: relative;
}

.movie__title {
  position: absolute;
  top: -0.7246376812vw;
  left: -2.8985507246vw;
  font-size: 7.0048309179vw;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-transform: capitalize;
  z-index: 9;
}
@media screen and (min-width: 762px) {
  .movie__title {
    font-size: 3.3375rem;
  }
}
@media screen and (min-width: 960px) {
  .movie__title {
    font-size: 4.4791666667vw;
    left: 2.03125vw;
    left: 21.7708333333vw;
  }
}

.movie__wrapper {
  position: relative;
  width: 100%;
}

.movie__wrapper::before {
  content: "";
  display: block;
  padding-top: 56.2515337423%;
}

.movie__wrapper .movie__thumbnail {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.music {
  position: relative;
}

.music__image {
  position: absolute;
  content: "";
  width: 25.6%;
  left: 4.4%;
  top: -13.75rem;
}
@media screen and (min-width: 960px) {
  .music__image {
    left: 5.5%;
    width: 16.3%;
    top: -20.625rem;
    max-width: 21.875rem;
  }
}

.music__inner {
  width: 80%;
  max-width: 55rem;
  padding: 0;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .music__inner {
    max-width: 87.5rem;
    padding: 0 1.875rem;
    width: 100%;
  }
}

.music__conteiner {
  background-color: #fff;
  border-top: 2px solid #000000;
  margin-top: 1.5625rem;
  position: relative;
}
@media screen and (min-width: 960px) {
  .music__conteiner {
    margin-top: 2.5rem;
  }
}

.music__conteiner::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5rem;
  width: 100%;
  background-image: url(../../assets/images/common/pattern.png);
  background-size: 10.625rem 1.5rem;
  background-repeat: repeat;
}

.music__items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 4.375rem 4.375rem;
  text-align: center;
  padding: 2.5rem 1.25rem 4.375rem;
}
@media screen and (min-width: 960px) {
  .music__items {
    grid-template-columns: repeat(2, 1fr);
    padding: 4.375rem 5.625rem 6.25rem;
    gap: 6.25rem 3.75rem;
  }
}

.music__item {
  width: 100%;
}
.music__opening {
  font-size: clamp(0.938rem, 0.582rem + 1.58vw, 1.125rem); /* 15 ~ 18 / 360 ~ 550 */
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (min-width: 960px) {
  .music__opening {
    font-size: clamp(0.938rem, 0.188rem + 1.25vw, 1.313rem); /* 15 ~ 21 / 960 ~ 1440 */
  }
}

.music__song-title {
  font-size: clamp(1.063rem, 0.527rem + 2.29vw, 1.313rem); /* 18 ~ 21 / 360 ~ 550 */
  color: #328ed6;
  letter-spacing: 0.05em;
  line-height: 1.4761904762;
  font-weight: 700;
  margin-top: 0.4375rem;
}
@media screen and (min-width: 960px) {
  .music__song-title {
    font-size: clamp(1.125rem, -0.25rem + 2.29vw, 1.813rem); /* 18 ~ 29 / 960 ~ 1440 */
    line-height: 1.1724137931;
  }
}

.music__singer {
  font-size: clamp(0.75rem, -0.101rem + 4.26vw, 1rem);
  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;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 700;
  margin-top: 0.4375rem;
}
@media screen and (min-width: 414px) {
  .music__singer {
    font-size: 1rem;
  }
}
@media screen and (min-width: 960px) {
  .music__singer {
    font-size: clamp(1rem, 0.455rem + 0.91vw, 1.25rem);
  }
}

.music__company {
  font-weight: 500;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: 0.9375rem;
}

.music__date {
  font-size: 1rem;
  color: #328ed6;
  letter-spacing: 0.05em;
  margin-top: 1.125rem;
}
@media screen and (min-width: 960px) {
  .music__date {
    font-size: 1.3125rem;
    margin-top: 0.9375rem;
  }
}

.music__artist-photo-wrapper {
  max-width: 31.25rem;
  width: 100%;
  margin: 1.4375rem auto 0;
}
@media screen and (min-width: 960px) {
  .music__artist-photo-wrapper {
    max-width: none;
    margin: 2.1875rem auto 0;
  }
}

@media screen and (min-width: 960px) {
  .music__artist-photo-wrapper.music__artist-photo-wrapper--mt {
    margin: 5.09375rem auto 0;
  }
}

.music__artist-photo {
  width: 100%;
}
.music__link {
  margin-top: 1rem;
}
.music__btn-box {
  margin-top: 1rem;
}

.music__btn + .music__btn {
  margin-top: 0.875rem;
}
@media screen and (min-width: 960px) {
  .music__btn + .music__btn {
    margin-top: 0.6875rem;
  }
}

.mv-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 2000;
}

.mv-modal.is-active {
  opacity: 1;
  visibility: visible;
  height: 100vh;
}

/* 縦長のポップアップ画像（高さを基準に揃える） */
.mv-modal-container-img {
  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;
  position: fixed;
}
@media (orientation: portrait) {
  .mv-modal-container-img {
    width: 80%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media (orientation: landscape) {
  .mv-modal-container-img {
    top: 5.5%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: auto;
    max-width: 89%;
    height: 89vh;
  }
}

.mv-modal-content-img:hover a {
  opacity: 1;
  -webkit-filter: brightness(110%);
          filter: brightness(110%); /* hoverすると透過で暗くなるのでfilterで明るく指定 */
}

.mv-modal-close {
  position: absolute;
  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;
  cursor: pointer;
  background: url(../../assets/images/common/btn-close.png) no-repeat right top;
  background-size: contain;
  width: 2.5rem;
  height: 2.5rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  top: -2.5rem;
  right: 0;
}

.mv-modal-close:hover {
  -webkit-filter: brightness(150%);
          filter: brightness(150%); /* hoverすると透過で暗くなるのでfilterで明るく指定 */
}

@media (orientation: landscape) {
  .mv-modal-content-img {
    width: inherit;
    height: inherit;
  }
}

.mv-modal-content-img a {
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (orientation: portrait) {
  .mv-modal-content-img a {
    width: 100%;
  }
}
@media (orientation: landscape) {
  .mv-modal-content-img a {
    width: inherit;
    height: inherit;
  }
}

@media (orientation: portrait) {
  .mv-modal-content-img a img {
    width: 100%;
    height: auto;
  }
}
@media (orientation: landscape) {
  .mv-modal-content-img a img {
    max-height: 100%; /* 親要素に対して最大高さ100% */
    max-width: 100%; /* 親要素に対して最大幅100% */
    height: auto; /* 高さは自動調整 */
    width: auto; /* 幅は自動調整 */
  }
}

/* ---------- ポップアップのYouTube ここから ---------- */
.mv-modal-container-youtube {
  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;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 95%;
}
@media screen and (min-width: 960px) {
  .mv-modal-container-youtube {
    max-width: 75rem;
  }
}

.mv-modal-content-youtube {
  width: 100%;
}

.mv-modal-content-youtube iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

/* ---------- ポップアップのYouTube ここまで ---------- */
.mv {
  position: relative;
}

.mv__img-item {
  display: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.mv__img-items {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding-bottom: 0;
}

.mv__img-item.active {
  display: block;
  -webkit-animation: fade 0.5s ease-out both;
          animation: fade 0.5s ease-out both;
}

@media screen and (min-width: 960px) {
  .mv__img-item.mv__img-item-04 {
    margin-top: -10rem;
  }
}

/* タブ */
.mv__tab-wrapper {
  position: absolute;
  bottom: -21.4975845411vw;
  left: 50%;
}
@media screen and (min-width: 960px) {
  .mv__tab-wrapper {
    left: auto;
    right: 1.3541666667vw;
    bottom: 23px;
  }
}

.mv__title {
  position: absolute;
  top: 4.8309178744vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 71.7391304348vw;
}
@media screen and (min-width: 960px) {
  .mv__title {
    top: 5.2083333333vw;
    width: 40.0520833333vw;
  }
}

/* 『2nd Season ティザービジュアル』ver */
.mv__title.mv__title--season2-01 {
  display: none;
  position: absolute;
  bottom: 2.4154589372vw;
  left: 3.6231884058vw;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  width: 17.9951690821vw;
}
@media screen and (min-width: 960px) {
  .mv__title.mv__title--season2-01 {
    bottom: 13.0208333333vw;
    left: 3.5416666667vw;
    width: 18.0208333333vw;
  }
}

.mv__broadcast {
  position: absolute;
  bottom: 1.2077294686vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 76.5700483092vw;
}
@media screen and (min-width: 960px) {
  .mv__broadcast {
    bottom: auto;
    top: 25.5208333333vw;
    width: 56.1979166667vw;
  }
}

/* 『2nd Season ティザービジュアル』ver */
.mv__broadcast.mv__broadcast--season2-01 {
  display: none;
  position: absolute;
  top: auto;
  bottom: 24.154589372vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 72.4637681159vw;
}
@media screen and (min-width: 960px) {
  .mv__broadcast.mv__broadcast--season2-01 {
    bottom: 20.8333333333vw;
    width: 78.125vw;
  }
}

.mv__official-twitter {
  position: absolute;
  width: 18.5990338164vw;
  bottom: 9.6618357488vw;
  left: 1.9323671498vw;
}
@media screen and (min-width: 960px) {
  .mv__official-twitter {
    top: 36.71875vw;
    width: 6.25vw; /* シーズン2 */
    left: 50%;
  }
}

/* 『2nd Season ティザービジュアル』ver */
.mv__official-twitter.mv__official-twitter--season2-01 {
  display: none;
  position: absolute;
  left: 2.4154589372vw;
  bottom: 2.4154589372vw;
  top: auto;
  width: 16.9082125604vw;
}
@media screen and (min-width: 960px) {
  .mv__official-twitter.mv__official-twitter--season2-01 {
    left: 50%;
    top: auto;
    bottom: 13.0208333333vw;
    width: 6.7708333333vw;
  }
}

.mv__official-twitter__link {
  display: block;
  width: 100%;
}

/*メニューボタン*/
.nav-btn {
  display: block;
  z-index: 1000;
  position: fixed;
  top: 0.625rem;
  right: 0.625rem;
  cursor: pointer;
  pointer-events: auto;
  width: 2.75rem;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media screen and (min-width: 960px) {
  .nav-btn {
    width: 4rem;
  }
}

.nav-btn:hover {
  opacity: 0.6;
}

.nav-btn__open {
  display: inline-block;
}

.nav-btn__close {
  display: none;
}

.nav-btn.active .nav-btn__open {
  display: none;
}

.nav-btn.active .nav-btn__close {
  display: inline-block;
}

.header__logo {
  display: block;
  max-width: 13.625rem;
  width: 100%;
  margin: 1.6875rem auto 0;
}
@media screen and (min-width: 960px) {
  .header__logo {
    max-width: 19rem;
    margin: 1.9375rem auto 0;
  }
}

.news-article__container {
  background-color: #fff;
  border-top: 2px solid #000000;
  margin-top: 1.875rem;
  position: relative;
}
@media screen and (min-width: 960px) {
  .news-article__container {
    margin-top: 4.0625rem;
  }
}

.news-article__container::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5rem;
  width: 100%;
  background-image: url(../../assets/images/common/pattern.png);
  background-size: 10.625rem 1.5rem;
  background-repeat: repeat;
}

.news-article__wrapper {
  padding: 2.5rem 1.25rem 4rem;
}
@media screen and (min-width: 960px) {
  .news-article__wrapper {
    padding: 4.5rem 4.5rem 6rem;
  }
}

.news-article__date {
  color: #3ba9fb;
  font-family: "EB Garamond", serif;
  font-style: italic;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.news-article__title-text {
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.3333333333;
}
@media screen and (min-width: 960px) {
  .news-article__title-text {
    font-size: 1.4375rem;
    line-height: 1.3043478261;
  }
}

.news-article__text,
.news-article__list-item {
  font-size: 0.875rem;
  letter-spacing: 0.075em;
  line-height: 1.9285714286;
}
@media screen and (min-width: 960px) {
  .news-article__text,
  .news-article__list-item {
    font-size: 0.9375rem;
    line-height: 1.9333333333;
  }
}

.news-article__text.two-column__text {
  text-align: center;
}

.news-article__text.two-column__text-type2 {
  font-size: 0.9375rem;
  letter-spacing: 0.075em;
  line-height: 2.0769230769;
}
@media screen and (min-width: 414px) {
  .news-article__text.two-column__text-type2 {
    font-size: clamp(0.75rem, 0.531rem + 0.85vw, 0.938rem);
  }
}
@media screen and (min-width: 960px) {
  .news-article__text.two-column__text-type2 {
    font-size: 0.9375rem;
    line-height: 1.9333333333;
  }
}

.news-article__in-title {
  font-weight: 800;
  font-size: 1.25rem;
}
@media screen and (min-width: 375px) {
  .news-article__in-title {
    font-size: 1.4375rem;
  }
}

.news-article__image {
  width: 100%;
}

.news-article__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-article__image-notes {
  font-size: 0.75rem;
  text-align: center;
  margin-top: 0.625rem;
}
@media screen and (min-width: 960px) {
  .news-article__image-notes {
    font-size: 0.8125rem;
  }
}

.news-article__image-wrap-large {
  width: 100%;
  margin: 0 auto;
}

.news-article__image-wrap-medium {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .news-article__image-wrap-medium {
    width: 70%;
  }
}

.news-article__image-wrap-small {
  width: 80%;
  max-width: 25rem;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .news-article__image-wrap-small {
    width: 40%;
  }
}

.news-article__image-wrap-small figcaption {
  font-size: 0.875rem;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .news-article__image-wrap-small figcaption {
    font-size: 0.9375rem;
  }
}

.news-article__head {
  font-size: 1.0625rem;
  line-height: 1.3529411765;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 960px) {
  .news-article__head {
    font-size: 1.1875rem;
    line-height: 1.3684210526;
  }
}

.news-article__comment {
  font-size: 0.75rem;
  letter-spacing: 0.075em;
  line-height: 1.75;
}

.news-article__video {
  margin: 0 auto;
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}

.news-article__video iframe {
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
}

.news-article__btn {
  text-align: center;
}

.news-article__large-btn {
  text-align: center;
  margin-top: 5.625rem;
}

.nav-menu {
  position: fixed;
  right: 0;
  top: 0;
  display: block;
  z-index: 999;
  background: #fff;
  width: 100%;
  max-width: 25.875rem;
  height: 100%;
  overflow-x: hidden;
  -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1607843137);
  opacity: 0;
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  padding-bottom: 3.4375rem;
}
@media screen and (min-width: 960px) {
  .nav-menu {
    max-width: 31.875rem;
    padding-bottom: 2.3125rem;
  }
}

.nav-items {
  position: relative;
  margin-left: 2.375rem;
}
@media screen and (min-width: 960px) {
  .nav-items {
    margin-left: 4.375rem;
  }
}

.nav-item {
  display: block;
  width: 100%;
  overflow: hidden;
}

.nav-item:nth-child(n+2) {
  margin-top: 1.25rem;
}

.nav-item__text-en {
  position: relative;
  display: block;
}

@media screen and (min-width: 960px) {
  .nav-item__text-en::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 1.625rem;
    background: #d8d8d8;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    opacity: 0;
    z-index: -1;
  }
}

.nav-item__link {
  display: block;
  width: 100%;
}

.nav-item__link:hover {
  opacity: 1;
}

@media screen and (min-width: 960px) {
  .nav-item__text-en:hover,
  .nav-item__text-en:active {
    opacity: 1;
  }
}

@media screen and (min-width: 960px) {
  .nav-item:hover .nav-item__text-en::before,
  .nav-item:active .nav-item__text-en::before {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.nav-item__text-en {
  display: block;
  width: 100%;
  font-size: 1.4375rem;
  font-family: "EB Garamond", serif;
  color: #907b35;
  line-height: 1;
  padding-bottom: 0.2em;
  border-bottom: 1px solid #000000;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 960px) {
  .nav-item__text-en {
    font-size: 1.625rem;
  }
}

.nav-item__text-en .text-initial {
  display: inline-block;
  width: 1em;
  background-color: #907b35;
  margin-right: 0.125rem;
  text-align: center;
  color: #fff;
  line-height: 0.85;
  line-height: 1;
  font-weight: initial;
}

.nav-item__text-ja {
  font-size: 0.6875rem;
  letter-spacing: 0.075em;
  line-height: 1;
  color: #000000;
  margin-top: 0.4375rem;
}

.nav-menu__official-twitter {
  margin-top: 1.25rem;
  margin-left: 2.375rem;
  width: 11.6875rem;
}
@media screen and (min-width: 960px) {
  .nav-menu__official-twitter {
    margin-top: 1.25rem;
    margin-left: 4.375rem;
    width: 14.3125rem;
  }
}

.nav-menu.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
}

.nav-menu.close {
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}

.news__inner {
  width: 94%;
  max-width: 55rem;
  padding: 0;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .news__inner {
    max-width: 58.125rem;
    padding: 0 1.875rem;
    padding-right: 6.25rem;
    padding-left: 1.875rem;
  }
}

.news__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem;
  background-color: #fff;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 960px) {
  .news__container {
    margin-top: 0.625rem;
    padding-bottom: 4.375rem;
  }
}

.news__container::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5rem;
  width: 100%;
  background-image: url(../../assets/images/common/pattern.png);
  background-size: 10.625rem 1.5rem;
  background-repeat: repeat;
}

.news__title {
  font-size: 1.6875rem;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  width: calc(6.375% + 0.125rem);
  text-transform: capitalize;
}
@media screen and (min-width: 960px) {
  .news__title {
    font-size: 2.4375rem;
    line-height: 1.3076923077;
    width: calc(6.375% + 0.3125rem);
  }
}

.news__wrapper {
  width: calc(92.37% + 0.125rem);
}
@media screen and (min-width: 960px) {
  .news__wrapper {
    width: calc(92.37% + 0.3125rem);
  }
}

.news__scrool {
  overflow-y: scroll;
  height: 16.5625rem;
}
@media screen and (min-width: 960px) {
  .news__scrool {
    height: 13.375rem;
  }
}

.news__scrool a {
  margin-top: 15px;
  display: block;
}

.news__scrool::-webkit-scrollbar {
  width: 0.625rem;
}

.news__scrool::-webkit-scrollbar-thumb {
  background-color: #000000;
}

.news__date {
  font-family: "EB Garamond", serif;
  font-style: italic;
  color: #328ed6;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.news__article {
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #000000;
  margin-top: 0.4375rem;
}
@media screen and (min-width: 960px) {
  .news__article {
    margin-top: 0.1875rem;
  }
}

.on-air-subpage__sub-title {
  font-size: clamp(0.875rem, 0.042rem + 3.7vw, 1rem); /* 14px ~ 16px / 360px ~414px */
  line-height: 1.375;
  letter-spacing: 0.075em;
  font-weight: 700;
}
@media screen and (min-width: 414px) {
  .on-air-subpage__sub-title {
    font-size: clamp(0.938rem, -0.1rem + 4vw, 1rem); /* 15px ~ 16px / 415px ~440px */
  }
}
@media screen and (min-width: 960px) {
  .on-air-subpage__sub-title {
    font-size: 1.125rem;
    line-height: 1.4444444444;
  }
}

.on-air-subpage__info-container-pc {
  display: none;
}
@media screen and (min-width: 960px) {
  .on-air-subpage__info-container-pc {
    display: block;
    margin: auto;
    width: 100%;
  }
}

.on-air-subpage__info-wrap-pc {
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.25rem;
}

.on-air-subpage__info-wrap-pc:nth-child(n+2) {
  /*2番目以降*/
  margin-top: 0.9375rem;
}

.on-air-subpage__info-container-sp {
  display: block;
}
@media screen and (min-width: 960px) {
  .on-air-subpage__info-container-sp {
    display: none;
  }
}

.on-air-subpage__info-wrap-sp {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 960px) {
  .on-air-subpage__info-wrap-sp {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
}

@media screen and (min-width: 960px) {
  .on-air-subpage__info-wrap-sp.on-air-subpage__info-wrap-sp--delivery {
    -webkit-column-gap: 2.1875rem;
       -moz-column-gap: 2.1875rem;
            column-gap: 2.1875rem;
  }
}

@media screen and (min-width: 960px) {
  .on-air-subpage__info-pc {
    color: #3ba9fb;
    font-size: 1.25rem;
    line-height: 1.0526315789;
    font-weight: 700;
    letter-spacing: 0.08em;
    width: 10.625rem;
    text-align: left;
  }
}

@media screen and (min-width: 960px) {
  .on-air-subpage__info-pc.on-air-subpage__info-pc--link {
    width: 11.875rem;
  }
}

@media screen and (min-width: 960px) {
  .on-air-subpage__time-pc {
    text-align: left;
  }
}

@media screen and (min-width: 960px) {
  .on-air-subpage__time-pc-row02 {
    width: 8.125rem;
  }
}

@media screen and (min-width: 960px) {
  .on-air-subpage__time-pc-row03 {
    width: 6.875rem;
  }
}

@media screen and (min-width: 960px) {
  .on-air-subpage__time-pc-row04 {
    width: 6.25rem;
  }
}

.on-air-subpage__info-sp {
  color: #3ba9fb;
  font-size: 1.125rem;
  line-height: 1.0555555556;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.on-air-subpage__info-sp.on-air-subpage__info-sp--broadcast,
.on-air-subpage__info-link.on-air-subpage__info-link--delivery {
  color: #907b35;
  position: relative;
}

.on-air-subpage__info-sp.on-air-subpage__info-sp--broadcast span,
.on-air-subpage__info-link.on-air-subpage__info-link--delivery span {
  position: absolute;
  content: "";
  top: 50%;
  right: -1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-mask-image: url(/assets/images/common/btn-icon-blank.svg);
          mask-image: url(/assets/images/common/btn-icon-blank.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #907b35;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  width: 0.875rem;
  height: 0.875rem;
}
@media screen and (min-width: 960px) {
  .on-air-subpage__info-sp.on-air-subpage__info-sp--broadcast span,
  .on-air-subpage__info-link.on-air-subpage__info-link--delivery span {
    right: -1.0625rem;
    width: 1.0625rem;
    height: 1.0625rem;
  }
}

@media screen and (min-width: 960px) {
  .on-air-subpage__time-pc {
    font-size: 1.375rem;
    line-height: 1.3181818182;
    letter-spacing: 0.075em;
  }
}

.on-air-subpage__time-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.25rem;
  line-height: 1.45;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
}

@media screen and (min-width: 960px) {
  .on-air-subpage__time-pc span {
    font-size: 0.9375rem;
    line-height: 1.9333333333;
  }
}

.on-air-subpage__time-sp span {
  font-size: 0.8125rem;
  line-height: 2.2307692308;
}

.on-air-subpage__comment {
  text-align: left;
}

@media screen and (min-width: 960px) {
  .on-air-subpage__comment.on-air-subpage__comment--center {
    text-align: center;
  }
}

.on-air-subpage__comment-notes {
  font-size: clamp(0.688rem, -0.646rem + 2.22vw, 0.813rem);
  line-height: 1.5833333333;
}
@media screen and (min-width: 960px) {
  .on-air-subpage__comment-notes {
    line-height: 1.4615384615;
    display: inline-block;
  }
}

.on-air-subpage__comment-notes.on-air-subpage__comment-notes--single {
  text-align: left;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width: 768px) {
  .on-air-subpage__comment-notes.on-air-subpage__comment-notes--single {
    text-align: center;
  }
}

/* ON Airページ固有の改行処置 */
.on-air-subpage__br {
  display: block;
  padding-left: 1em;
}
@media screen and (min-width: 414px) {
  .on-air-subpage__br {
    display: inline-block;
    padding-left: 0;
  }
}

@media screen and (min-width: 414px) {
  .on-air-subpage__comment.on-air-subpage__comment--max-content {
    margin: auto;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
@media screen and (min-width: 960px) {
  .on-air-subpage__comment.on-air-subpage__comment--max-content {
    width: auto;
  }
}

.on-air-subpage__container {
  background-color: #fff;
  border-top: 2px solid #000000;
  margin-top: 1.875rem;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .on-air-subpage__container {
    margin-top: 4.1875rem;
  }
}

.on-air-subpage__container::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5rem;
  width: 100%;
  background-image: url(../../assets/images/common/pattern.png);
  background-size: 10.625rem 1.5rem;
  background-repeat: repeat;
}

.on-air-subpage__wrapper {
  padding: 2.5rem 1.25rem 4rem;
}
@media screen and (min-width: 960px) {
  .on-air-subpage__wrapper {
    padding: 4.5rem 4.5rem 6rem;
  }
}

.on-air-subpage__group {
  margin-top: 3.125rem;
}
@media screen and (min-width: 960px) {
  .on-air-subpage__group {
    margin-top: 5rem;
  }
}

.on-air-subpage__group:first-of-type {
  margin-top: 0;
}

.on-air-subpage__container-title {
  text-align: center;
  color: #3ba9fb;
  font-size: 1.125rem;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  padding-bottom: 0.625rem;
  font-weight: 700;
}
@media screen and (min-width: 960px) {
  .on-air-subpage__container-title {
    font-size: 1.4375rem;
    line-height: 1.3043478261;
    padding-bottom: 0.75rem;
  }
}

.on-air-subpage__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 960px) {
  .on-air-subpage__images {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.on-air-subpage__image-wrap {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .on-air-subpage__image-wrap {
    width: calc(50% - 0.75rem);
  }
}

.on-air-subpage__contents-link {
  width: 100%;
}

.on-air-subpage__link {
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  row-gap: 0.5rem;
  margin-top: 0.625rem;
}
@media (min-width: 768px) and (max-width: 959px) {
  .on-air-subpage__link {
    -webkit-column-gap: 2%;
       -moz-column-gap: 2%;
            column-gap: 2%;
    row-gap: 0.9375rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 960px) {
  .on-air-subpage__link {
    -webkit-column-gap: 2%;
       -moz-column-gap: 2%;
            column-gap: 2%;
    row-gap: 0.9375rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.on-air-subpage__btn {
  width: 100%;
  max-width: 21.875rem;
}

.on-air-subpage__text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.375;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 960px) {
  .on-air-subpage__text {
    line-height: 1.5;
  }
}

.on-air-subpage__large-btn {
  text-align: center;
  margin-top: 5.9375rem;
}
@media screen and (min-width: 960px) {
  .on-air-subpage__large-btn {
    margin-top: 6.5625rem;
  }
}

/* 放送時間変更 */
.on-air-subpage__reschedule {
  text-align: left;
  margin-top: 3.125rem;
}

.on-air-subpage__reschedule-title {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.075em;
  font-weight: 700;
}
@media screen and (min-width: 414px) {
  .on-air-subpage__reschedule-title {
    font-size: clamp(0.938rem, -0.1rem + 4vw, 1rem); /* 15px ~ 16px / 415px ~440px */
  }
}
@media screen and (min-width: 960px) {
  .on-air-subpage__reschedule-title {
    font-size: 1.125rem;
  }
}

.pagetop-btn {
  position: fixed;
  width: 2.5rem;
  bottom: 3.125rem;
  right: 0.625rem;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 9;
}
@media screen and (min-width: 960px) {
  .pagetop-btn {
    width: 3.4375rem;
    bottom: 4.375rem;
    right: 0.625rem;
  }
}

.pagetop-btn a {
  display: block;
}
.pagetop-btn:hover {
  opacity: 0.6;
}

.pagetop-btn a img {
  width: 100%;
  height: auto;
}

.rule-line {
  background-color: #000000;
  height: 1px;
  margin-top: 1.875rem;
  margin-bottom: 0;
  border: 0 none;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .rule-line {
    margin-top: 1.875rem;
  }
}

.script-present__description {
  font-size: 1rem;
  line-height: 1.5;
}

.script-present__wrapper {
  margin-top: 3.125rem;
}

.script-present__tab-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem 0.5rem;
}
@media screen and (min-width: 414px) {
  .script-present__tab-items {
    grid-template-columns: repeat(6, 1fr);
    gap: 0.375rem 0.375rem;
  }
}
@media screen and (min-width: 960px) {
  .script-present__tab-items {
    grid-template-columns: repeat(13, 1fr);
    gap: 0.3125rem 0.3125rem;
  }
}

.script-present__tab-item {
  display: block;
  padding: 0.4375rem 0;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #907b35;
  color: #907b35;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.script-present__tab-item:hover {
  opacity: 0.6;
}

.script-present__tab-item-text {
  display: block;
  width: 100%;
  font-family: "EB Garamond", serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.script-present__items {
  margin-top: 3.125rem;
  padding-bottom: 3.125rem;
}

.script-present__episode-number {
  font-size: 1.25rem;
  font-weight: 700;
  background-color: rgba(59, 169, 251, 0.3);
  padding: 0.3125rem 0.625rem;
}

.script-present__info {
  margin-top: 1.25rem;
}

.script-present__info-text {
  font-size: 1rem;
  line-height: 1.5;
}

.script-present__img {
  max-width: 34.375rem;
  margin: 3.125rem auto 0;
}
@media screen and (min-width: 960px) {
  .script-present__img {
    max-width: none;
    width: 85%;
  }
}

/* ---------- タブ切り替え | ここから ---------- */
.script-present__item {
  visibility: hidden;
  height: 0;
}

.script-present__item.is-show {
  visibility: visible;
  height: auto;
  -webkit-animation: fade 0.3s ease-out;
          animation: fade 0.3s ease-out;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.script-present__tab-item.is-active {
  background-image: -webkit-gradient(linear, left top, right top, from(#907b35), to(#776529));
  background-image: linear-gradient(90deg, #907b35, #776529);
  border: none;
}

.script-present__tab-item.is-active .script-present__tab-item-text {
  color: #fff;
}

/* ---------- タブ切り替え | ここまで ---------- */
.section-title {
  color: #000000;
}

.section-title__en {
  font-family: "EB Garamond", serif;
  font-weight: 500;
  font-size: 2.375rem;
  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;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  line-height: 1;
}
@media screen and (min-width: 960px) {
  .section-title__en {
    font-size: 4.3125rem;
  }
}

.section-title__initial {
  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;
  text-transform: uppercase;
  color: #fff;
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#343434), to(#000000)) 0% 0%;
  background: transparent linear-gradient(180deg, #343434 0%, #000000 100%) 0% 0%;
  background-size: 200%;
  width: 3rem;
  height: 3.0625rem;
}
@media screen and (min-width: 960px) {
  .section-title__initial {
    font-size: 4.0625rem;
    width: 4.125rem;
    height: 4.1875rem;
  }
}

.section-title__ja {
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.3333333333;
  margin-top: 0.3125rem;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 960px) {
  .section-title__ja {
    font-size: 1.0625rem;
    line-height: 1.4705882353;
    margin-top: 0.625rem;
  }
}

.section-title.section-title--white {
  color: #fff;
}

.section-title__en.section-title__en--white {
  color: #fff;
}

.section-title__initial.section-title__initial--white {
  color: #000000;
  background: #fff;
}

.section-title__ja.section-title__ja--white {
  color: #fff;
}

.staff-cast__small-text {
  font-size: 1.4375rem;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  color: #fff;
  margin-top: 0.75rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 960px) {
  .staff-cast__small-text {
    font-size: 2.3125rem;
    margin-top: 1.125rem;
  }
}

.smartphone-wallpaper__image-wrap-medium {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .smartphone-wallpaper__image-wrap-medium {
    width: 70%;
  }
}

.smartphone-wallpaper__image {
  position: relative;
  width: 100%;
  display: block;
}

.smartphone-wallpaper__image::before {
  content: "";
  display: block;
  padding-top: 216.4102564103%;
}

.smartphone-wallpaper__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.solving-the-riddle-flyer__wrapper {
  margin-top: 5rem;
}
@media screen and (min-width: 960px) {
  .solving-the-riddle-flyer__wrapper {
    margin-top: 6.25rem;
  }
}

.solving-the-riddle-flyer__tab-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem 0.625rem;
}
@media screen and (min-width: 960px) {
  .solving-the-riddle-flyer__tab-items {
    gap: 1.25rem 1.25rem;
  }
}

.solving-the-riddle-flyer__tab-items li {
  display: block;
  padding: 0.625rem 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}

.solving-the-riddle-flyer__tab-items li:hover {
  opacity: 0.6;
}

.solving-the-riddle-flyer__tab-item {
  background-color: #fff;
  border: 1px solid #907b35;
  color: #907b35;
}

.solving-the-riddle-flyer__tab-items li p {
  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: 100%;
  margin: auto;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 960px) {
  .solving-the-riddle-flyer__tab-items li p {
    font-size: 1.25rem;
  }
}

.solving-the-riddle-flyer__tab-item.is-active {
  background-image: -webkit-gradient(linear, left top, right top, from(#907b35), to(#776529));
  background-image: linear-gradient(90deg, #907b35, #776529);
  border: none;
}

.solving-the-riddle-flyer__tab-item.is-active p {
  color: #fff;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.solving-the-riddle-flyer__items {
  height: auto;
  -webkit-animation: fade 0.3s ease-out both;
          animation: fade 0.3s ease-out both;
  margin-top: 2.5rem;
}
@media screen and (min-width: 960px) {
  .solving-the-riddle-flyer__items {
    margin-top: 3.125rem;
  }
}

.solving-the-riddle-flyer__item-wrapper {
  visibility: hidden;
  height: 0;
}

.solving-the-riddle-flyer__item-wrapper.is-show {
  visibility: visible;
  height: auto;
  -webkit-animation: fade 0.3s ease-out both;
          animation: fade 0.3s ease-out both;
}

/* アコーディオン */
.solving-the-riddle-flyer__accordion {
  margin: 6.25rem auto 0;
  max-width: 33.75rem;
  width: 100%;
}

.special-subpage__anchor-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin-top: 2.0625rem;
}
@media screen and (min-width: 375px) {
  .special-subpage__anchor-link {
    gap: 0.75rem;
  }
}
@media screen and (min-width: 960px) {
  .special-subpage__anchor-link {
    margin-top: 4.1875rem;
  }
}

.special-subpage__anchor-link.special-subpage__anchor-link--special-week {
  gap: 1.25rem;
}

.special-subpage__btn.special-subpage__btn--special-week {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 650px) {
  .special-subpage__btn.special-subpage__btn--special-week {
    width: auto;
  }
}

.special-subpage__container {
  background-color: #fff;
  border-top: 2px solid #000000;
  margin-top: 1.875rem;
  position: relative;
}
@media screen and (min-width: 960px) {
  .special-subpage__container {
    margin-top: 3.125rem;
  }
}

.special-subpage__container::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5rem;
  width: 100%;
  background-image: url(../../assets/images/common/pattern.png);
  background-size: 10.625rem 1.5rem;
  background-repeat: repeat;
}

.special-subpage__wrapper {
  padding: 2.5rem 1.25rem 4rem;
}
@media screen and (min-width: 960px) {
  .special-subpage__wrapper {
    padding: 4.5rem 4.5rem 6rem;
  }
}

.special-subpage__group {
  margin-top: 3.125rem;
}
@media screen and (min-width: 960px) {
  .special-subpage__group {
    margin-top: 4.375rem;
  }
}

.special-subpage__group:first-of-type {
  margin-top: 0;
}

.special-subpage__container-title {
  text-align: center;
  color: #3ba9fb;
  font-family: "EB Garamond", serif;
  font-size: 1.125rem;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-transform: capitalize;
}
@media screen and (min-width: 960px) {
  .special-subpage__container-title {
    font-size: 1.4375rem;
    line-height: 1.3043478261;
  }
}

.special-subpage__container-title.special-subpage__container-title--script-present {
  font-size: 1.0625rem;
}
@media screen and (min-width: 960px) {
  .special-subpage__container-title.special-subpage__container-title--script-present {
    font-size: 1.4375rem;
  }
}

.special-subpage__images {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 1.5rem; /* 上下の余白 */
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem; /* 左右の余白 */
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .special-subpage__images {
    grid-template-columns: repeat(2, 1fr);
  }
}

.special-subpage__images.special-subpage__images--50mt {
  margin-top: 3.125rem;
}

.special-subpage__images.special-subpage__images--cat-visual {
  row-gap: 3.75rem; /* 上下の余白 */
}
@media screen and (min-width: 960px) {
  .special-subpage__images.special-subpage__images--cat-visual {
    row-gap: 3.125rem; /* 上下の余白 */
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem; /* 左右の余白 */
  }
}

.special-subpage__contents-link {
  width: 100%;
}

.special-subpage__image {
  position: relative;
  width: 100%;
  display: block;
}

.special-subpage__image.special-subpage__image--border {
  border: 2px solid #328ed6;
}

.special-subpage__image::before {
  content: "";
  display: block;
  padding-top: 56.2517006803%;
}

/* アスペクト比 1:1 */
.special-subpage__image.special-subpage__image--aspect-one-to-one::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.special-subpage__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.special-subpage__image-text {
  color: #907b35;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.075em;
  margin-top: 0.625rem;
}
@media screen and (min-width: 960px) {
  .special-subpage__image-text {
    font-size: 0.9375rem;
    line-height: 1.5333333333;
    letter-spacing: 0.05em;
  }
}

.special-subpage__image-text.special-subpage__image-text--center {
  text-align: center;
}

.special-subpage__large-btn {
  text-align: center;
  margin-top: 5rem;
}
@media screen and (min-width: 960px) {
  .special-subpage__large-btn {
    margin-top: 5.625rem;
  }
}

/* 下層ページMV */
.special-subpage__mv {
  margin-top: 3.125rem;
}

.special-subpage__introduction {
  margin-top: 3.125rem;
}

.special-subpage__introduction-text {
  font-size: 0.875rem;
  letter-spacing: 0.075em;
  line-height: 1.9285714286;
}
@media screen and (min-width: 960px) {
  .special-subpage__introduction-text {
    font-size: 0.9375rem;
    line-height: 1.9333333333;
  }
}

/* スペシャル下層ページ内ボタン */
.special-subpage__btn {
  margin-top: 1.25rem;
  text-align: center;
}

.special-week__description {
  margin-top: 1.25rem;
}

.special-week__description-text {
  font-size: 0.875rem;
  letter-spacing: 0.075em;
  line-height: 1.9285714286;
}
@media screen and (min-width: 960px) {
  .special-week__description-text {
    font-size: 0.9375rem;
    line-height: 1.9333333333;
  }
}

.staff-cast {
  position: relative;
  color: #fff;
  /* background: url(../images/commons/pattern.png) repeat-x left bottom #000; */
  background: transparent -webkit-gradient(linear, right top, left top, from(#343434), to(#000000)) 0% 0%;
  background: transparent linear-gradient(270deg, #343434 0%, #000000 100%) 0% 0%;
  background-size: 200%;
  padding: 8.75rem 0 10.625rem;
}

.staff-cast::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 1.5rem;
  background-image: url(../../assets/images/common/pattern.png);
  background-repeat: repeat;
  background-size: auto 1.5rem;
}

.staff-cast__inner {
  padding: 0 0.9375rem;
  width: 100%;
  margin: auto;
}
@media screen and (min-width: 375px) {
  .staff-cast__inner {
    width: 86.96%;
    max-width: 55rem;
    padding: 0;
  }
}
@media screen and (min-width: 960px) {
  .staff-cast__inner {
    padding: 0 1.875rem;
    width: 100%;
    max-width: 78.75rem;
  }
}

.staff-cast__image-top {
  position: absolute;
  width: 7.4375rem;
  top: -6.875rem;
  right: 3%;
}
@media screen and (min-width: 960px) {
  .staff-cast__image-top {
    width: 15.6770833333vw;
    top: -7.5rem;
    right: 6.2%;
  }
}
@media screen and (min-width: 1440px) {
  .staff-cast__image-top {
    top: -20.625rem;
  }
}
@media screen and (min-width: 1920px) {
  .staff-cast__image-top {
    top: -20.625rem;
    width: 18.8125rem;
  }
}

.staff-cast__image-bottom {
  position: absolute;
  width: 6.625rem;
  bottom: -1.875rem;
  left: 4%;
}
@media screen and (min-width: 960px) {
  .staff-cast__image-bottom {
    width: 16.3020833333vw;
    bottom: -15.625rem;
    left: 5.6%;
  }
}
@media screen and (min-width: 1440px) {
  .staff-cast__image-bottom {
    width: 15.625rem;
    bottom: -19.375rem;
  }
}
@media screen and (min-width: 1920px) {
  .staff-cast__image-bottom {
    width: 19.5625rem;
    bottom: -20.625rem;
  }
}

.staff-cast__container {
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  text-align: center;
  letter-spacing: 0.15em;
  margin-top: 1.5625rem;
  padding-bottom: 2.8125rem;
}
@media screen and (min-width: 960px) {
  .staff-cast__container {
    width: 100%;
    margin-top: 2.3125rem;
    padding-bottom: 4.0625rem;
  }
}

.staff-cast__staff-wrapper {
  margin: 3.625rem auto 0;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .staff-cast__staff-wrapper {
    max-width: 59.625rem;
    margin: 2.5rem auto 0;
  }
}

.staff-cast__cast-wrapper {
  margin: 1.875rem auto 0;
  max-width: 37.5rem;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .staff-cast__cast-wrapper {
    margin: 3.75rem auto 0;
    max-width: 59.625rem;
  }
}

.staff-cast__sub-title {
  font-size: 1.5625rem;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  color: #328ed6;
  margin: auto;
  text-transform: capitalize;
}
@media screen and (min-width: 960px) {
  .staff-cast__sub-title {
    font-size: 2.5rem;
    color: #328ed6;
    margin: auto;
  }
}

.staff-cast__sub-title:nth-child(n+2) {
  margin-top: 2.5rem;
}
@media screen and (min-width: 960px) {
  .staff-cast__sub-title:nth-child(n+2) {
    margin-top: 2.6875rem;
  }
}

.staff-cast__row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 0.625rem;
  max-width: 37.5rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .staff-cast__row-2 {
    gap: 2.8125rem 1.25rem;
    max-width: 75rem;
  }
}

.staff-cast__row-2-sp {
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 960px) {
  .staff-cast__row-2-sp {
    grid-template-columns: repeat(2, 1fr);
  }
}

.staff-cast__row-3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 0.625rem;
  max-width: 37.5rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .staff-cast__row-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.8125rem 1.25rem;
    max-width: 59.625rem;
  }
}

.staff-cast__row-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 0.625rem;
  max-width: 37.5rem;
  width: 100%;
  margin: 1rem auto 0;
}
@media screen and (min-width: 960px) {
  .staff-cast__row-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.8125rem 1.25rem;
    max-width: 75rem;
    margin: 1.875rem auto 0;
  }
}

.staff-cast__row-mt {
  margin-top: 1.5rem;
}
@media screen and (min-width: 960px) {
  .staff-cast__row-mt {
    margin-top: 2.8125rem;
  }
}

.staff-cast__row-2 .staff-cast__name-box-width {
  width: 12.5rem;
}
@media screen and (min-width: 515px) {
  .staff-cast__row-2 .staff-cast__name-box-width {
    width: auto;
  }
}
@media screen and (min-width: 960px) {
  .staff-cast__row-2 .staff-cast__name-box-width {
    width: 31.25rem;
  }
}

@media screen and (min-width: 960px) {
  .staff-cast__name-box-width {
    width: 31.25rem;
  }
}

.staff_cast-visual-name {
  font-size: 14px;
  letter-spacing: 0.05em; /* 0.7px ÷ 14px = 0.05em */
  color: #fff;
  font-family: "paganini", serif;
  font-weight: 400;
  text-align: center;
  margin-top: 8px;
}
@media screen and (min-width: 960px) {
  .staff_cast-visual-name {
    margin-top: 15px;
  }
}

.staff-cast__name-box {
  display: inline-block;
}

.staff-cast__name-box-sp {
  display: block;
}
@media screen and (min-width: 960px) {
  .staff-cast__name-box-sp {
    display: none;
  }
}

.staff-cast__name-box-pc {
  display: none;
}
@media screen and (min-width: 960px) {
  .staff-cast__name-box-pc {
    display: block;
  }
}

.staff-cast__role {
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
}
@media screen and (min-width: 414px) {
  .staff-cast__role {
    font-size: 0.8125rem;
  }
}
@media screen and (min-width: 960px) {
  .staff-cast__role {
    font-size: 1.0625rem;
  }
}

.staff-cast__name {
  font-size: 0.875rem;
  line-height: 1.0555555556;
  letter-spacing: 0.1em;
  color: #fff;
  margin-top: 0.25rem;
}
@media screen and (min-width: 414px) {
  .staff-cast__name {
    font-size: clamp(0.938rem, 0.52rem + 1.61vw, 1.125rem); /* 15px ~ 18px｜414px ~ 600px */
  }
}
@media screen and (min-width: 960px) {
  .staff-cast__name {
    font-size: 1.6875rem;
    margin-top: 0.5rem;
  }
}

.staff-cast__text-initial {
  color: #328ed6;
}

.staff-cast__company {
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 960px) {
  .staff-cast__company {
    font-size: 0.875rem;
    margin-top: 0.5rem;
  }
}

.story__container {
  background-color: #fff;
  border-top: 2px solid #000000;
  margin-top: 1.875rem;
  position: relative;
}
@media screen and (min-width: 960px) {
  .story__container {
    margin-top: 4.1875rem;
  }
}

.story__container::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5rem;
  width: 100%;
  background-image: url(../../assets/images/common/pattern.png);
  background-size: 10.625rem 1.5rem;
  background-repeat: repeat;
}

.story__wrapper {
  padding: 2.5rem 0.625rem 4rem;
}
@media screen and (min-width: 375px) {
  .story__wrapper {
    padding: 2.5rem 0.9375rem 4rem;
  }
}
@media screen and (min-width: 960px) {
  .story__wrapper {
    padding: 4.5rem 3.75rem 6rem;
  }
}

.story__swiper-container {
  margin-top: 1rem;
}
.story__tab-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem 0.5rem;
}
@media screen and (min-width: 414px) {
  .story__tab-items {
    grid-template-columns: repeat(6, 1fr);
    gap: 0.375rem 0.375rem;
  }
}
@media screen and (min-width: 960px) {
  .story__tab-items {
    grid-template-columns: repeat(13, 1fr);
    gap: 0.3125rem 0.3125rem;
  }
}

.story__tab-item {
  display: block;
  padding: 0.4375rem 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #907b35;
  color: #907b35;
}

.story__tab-item:hover {
  opacity: 0.6;
}

.story__tab-item.story__tab-item-introduction {
  display: inline-block;
  font-size: 1.375rem;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  width: 100%;
  max-width: 12.5rem;
  padding: 0.75rem 0.5rem;
  background-color: #fff;
  border: 1px solid #907b35;
  color: #907b35;
  cursor: pointer;
  text-transform: uppercase;
}
.story__tab-item-text {
  display: block;
  width: 100%;
  font-family: "EB Garamond", serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.story__tab-item.is-active {
  background-image: -webkit-gradient(linear, left top, right top, from(#907b35), to(#776529));
  background-image: linear-gradient(90deg, #907b35, #776529);
  border: none;
}

.story__tab-item.is-active .story__tab-item-text {
  color: #fff;
}

.story__tab-item-wrapper {
  margin-top: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .story__tab-item-wrapper {
    margin-top: 1.875rem;
  }
}

.story__items {
  height: auto;
  margin-top: 1.875rem;
}

/* ---------- ストーリータブ切り替え | ここから ---------- */
.story__item {
  visibility: hidden;
  height: 0;
}

.story__item.is-show {
  visibility: visible;
  height: auto;
  -webkit-animation: fade 0.3s ease-out;
          animation: fade 0.3s ease-out;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ---------- ストーリータブ切り替え | ここまで ---------- */
.story__title-wrapper {
  text-align: center;
}

.story__episode-number {
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.075em;
}
@media screen and (min-width: 960px) {
  .story__episode-number {
    font-size: 0.9375rem;
  }
}

.story__episode-title {
  font-size: clamp(0.875rem, -0.15rem + 4.69vw, 1.063rem); /* 14px ~ 17px / 350px ~ 414px */
  line-height: 1;
  font-weight: 700;
  color: #328ed6;
  letter-spacing: 0.05em;
  margin-top: 0.75rem;
}
@media screen and (min-width: 414px) {
  .story__episode-title {
    font-size: 1.0625rem;
  }
}
@media screen and (min-width: 960px) {
  .story__episode-title {
    font-size: 1.4375rem;
    margin-top: 0.75rem;
  }
}

.story__summary {
  font-size: 0.875rem;
  line-height: 1.9285714286;
  letter-spacing: 0.075em;
  margin-top: 1rem;
  text-align: left;
}
@media screen and (min-width: 960px) {
  .story__summary {
    font-size: 0.9375rem;
    line-height: 1.9333333333;
    margin-top: 0.9375rem;
  }
}

.story__staff {
  font-size: 0.75rem;
  line-height: 1.75;
  letter-spacing: 0.075em;
  margin-top: 1rem;
  text-align: center;
}
.story-swiper01,
.story-swiper02,
.story-swiper03,
.story-swiper04,
.story-swiper05,
.story-swiper06,
.story-swiper07,
.story-swiper08,
.story-swiper09,
.story-swiper10,
.story-swiper11,
.story-swiper12 {
  overflow: hidden;
}

.story__swiper-slide,
.story__thumb-item {
  position: relative;
  width: 100%;
}

.story__swiper-slide::before,
.story__thumb-item::before {
  content: "";
  display: block;
  padding-top: 55.7871621622%;
}

.story__swiper-slide img,
.story__thumb-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.subpage-content__container {
  background-color: #fff;
  border-top: 2px solid #000000;
  margin-top: 1.875rem;
  position: relative;
}
@media screen and (min-width: 960px) {
  .subpage-content__container {
    margin-top: 4.0625rem;
  }
}

.subpage-content__container::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5rem;
  width: 100%;
  background-image: url(../../assets/images/common/pattern.png);
  background-size: 10.625rem 1.5rem;
  background-repeat: repeat;
}

.subpage-content__wrapper {
  padding: 2.5rem 1.25rem 4rem;
}
@media screen and (min-width: 960px) {
  .subpage-content__wrapper {
    padding: 4.5rem 4.5rem 6rem;
  }
}

.subpage-content__title-text {
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.3333333333;
  color: #3ba9fb;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .subpage-content__title-text {
    font-size: clamp(1.25rem, -0.036rem + 2.14vw, 1.438rem); /* 20px ~ 23px｜960px ~ 1100px */
    line-height: 1.3043478261;
  }
}
@media screen and (min-width: 1100px) {
  .subpage-content__title-text {
    font-size: 1.4375rem;
  }
}

.subpage-head {
  border-top: 10px solid #000000;
}

.subpage-logo {
  display: inline-block;
  width: 10.8125rem;
  height: auto;
}
@media screen and (min-width: 960px) {
  .subpage-logo {
    width: 17.25rem;
  }
}

.subpage__large-btn {
  text-align: center;
  margin-top: 5rem;
}
@media screen and (min-width: 960px) {
  .subpage__large-btn {
    margin-top: 5.625rem;
  }
}

/* トップページにストーリー遷移ボタンを設置する場合 */
/* 前へ次への矢印カスタマイズ 共通部分------------- */
.swiper-button-prev,
.swiper-button-next {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 0.6;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  margin: auto;
  width: 100%;
  height: 100%;
}

/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  background-image: url(../../assets/images/common/btn-arrow-l.png);
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  background-image: url(../../assets/images/common/btn-arrow-r.png);
}

/* 画像サイズ調整 */
/* 前へ次への矢印カスタマイズ 共通部分 ここまで------------- */
/* 前へ次への矢印カスタマイズ 誘導バナースライド------------- */
.swiper-button-prev-induction-banner,
.swiper-button-next-induction-banner {
  top: 40%;
  width: 4.8260869565vw;
  height: 8.6739130435vw;
}
@media screen and (min-width: 762px) {
  .swiper-button-prev-induction-banner,
  .swiper-button-next-induction-banner {
    width: 2.298125rem;
    height: 2.75rem;
  }
}
@media screen and (min-width: 960px) {
  .swiper-button-prev-induction-banner,
  .swiper-button-next-induction-banner {
    top: 31%;
    width: 3.3041666667vw;
    height: 5.9375vw;
  }
}

.swiper-button-prev-induction-banner {
  left: -7.2463768116vw;
}
@media screen and (min-width: 960px) {
  .swiper-button-prev-induction-banner {
    left: 9.21875vw;
  }
}

.swiper-button-next-induction-banner {
  right: -7.2463768116vw;
}
@media screen and (min-width: 960px) {
  .swiper-button-next-induction-banner {
    right: 9.21875vw;
  }
}

/* 前へ次への矢印カスタマイズ 誘導バナースライド ここまで------------- */
/* 前へ次への矢印カスタマイズ ムービースライド------------- */
.swiper-button-prev-movie,
.swiper-button-next-movie {
  top: 50%;
  width: 4.8260869565vw;
  height: 8.6739130435vw;
}
@media screen and (min-width: 762px) {
  .swiper-button-prev-movie,
  .swiper-button-next-movie {
    width: 2.298125rem;
    height: 2.75rem;
  }
}
@media screen and (min-width: 960px) {
  .swiper-button-prev-movie,
  .swiper-button-next-movie {
    width: 3.3041666667vw;
    height: 5.9375vw;
  }
}

.swiper-button-prev-movie {
  left: -7.2463768116vw;
}
@media screen and (min-width: 960px) {
  .swiper-button-prev-movie {
    left: 9.21875vw;
  }
}

.swiper-button-next-movie {
  right: -7.2463768116vw;
}
@media screen and (min-width: 960px) {
  .swiper-button-next-movie {
    right: 9.21875vw;
  }
}

/* 前へ次への矢印カスタマイズ ムービースライド ここまで------------- */
/* キャラクタースライド------------- */
.swiper-button-prev-character,
.swiper-button-next-character {
  top: 50%;
  width: 2.1875rem;
  height: 4rem;
}
@media screen and (min-width: 960px) {
  .swiper-button-prev-character,
  .swiper-button-next-character {
    width: 2.1875rem;
    height: 4rem;
  }
}

.swiper-button-prev-character {
  left: 9.6618357488vw;
}
@media screen and (min-width: 960px) {
  .swiper-button-prev-character {
    left: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .swiper-button-prev-character {
    left: calc(50% - 34.375rem);
  }
}

.swiper-button-next-character {
  right: 9.6618357488vw;
}
@media screen and (min-width: 960px) {
  .swiper-button-next-character {
    right: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .swiper-button-next-character {
    right: calc(50% - 34.375rem);
  }
}

/* スライドカスタマイズ ムービースライド ------------- */
.movie__swiper-slide {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 960px) {
  .movie__swiper-slide {
    padding: 1.9270833333vw 0;
  }
}

.movie__swiper-slide.swiper-slide-active {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 960px) {
  .movie__swiper-slide.swiper-slide-active {
    -webkit-transform: scale(1.1, 1.1);
            transform: scale(1.1, 1.1);
  }
}

.movie__swiper-slide.swiper-slide-active:hover .youtube-modal {
  opacity: 0.6;
}

.movie__swiper-slide.swiper-slide-active .movie__wrapper {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.movie__swiper-slide.swiper-slide-active:hover .movie__wrapper {
  background-color: rgba(255, 255, 255, 0.8);
}

.movie__swiper-slide:not(.swiper-slide-active) .youtube-modal {
  pointer-events: none;
}

/* スライドカスタマイズ ムービースライド ここまで------------- */
.tab-items {
  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;
}

.tab-item {
  display: block;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  width: 18.3574879227vw;
}
@media screen and (min-width: 960px) {
  .tab-item {
    width: 6.9270833333vw;
  }
}

.tab-item.active {
  display: block;
  -webkit-animation: fade 0.5s ease-out both;
          animation: fade 0.5s ease-out both;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.tab-item:nth-child(n+2) {
  margin-left: 2.8985507246vw;
}
@media screen and (min-width: 960px) {
  .tab-item:nth-child(n+2) {
    margin-left: 0.78125vw;
  }
}

.tab-item a {
  display: block;
  width: 100%;
}

.tab-season {
  margin-top: 1.875rem;
}
@media screen and (min-width: 960px) {
  .tab-season {
    margin-top: 4.0625rem;
  }
}

.tab-season__menus {
  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;
}

.tab-season__menu {
  display: inline-block;
  font-size: 1.375rem;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  width: 100%;
  max-width: 8.25rem;
  padding: 0.5rem 0.3125rem;
  background-color: #fff;
  border: 1px solid #907b35;
  color: #907b35;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  .tab-season__menu {
    max-width: 12.625rem;
  }
}

.tab-season__menu-link {
  display: block;
  width: 100%;
  color: inherit;
}

.tab-season__menu.tab-season__menu-music {
  font-size: 0.9375rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  text-transform: capitalize;
  max-width: 11.25rem;
  padding: 0.5rem 0.3125rem;
  border: none;
  background-color: #a3a3a3;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 960px) {
  .tab-season__menu.tab-season__menu-music {
    font-size: 1.25rem;
    max-width: 16.875rem;
    padding: 1.25rem 0.3125rem;
  }
}

.tab-season__menu.tab-season__menu-music:hover {
  opacity: 0.6;
}

.tab-season__menu.solving-the-riddle-flyer__tab-season__menu {
  font-size: 0.9375rem;
  max-width: 11.25rem;
}
@media screen and (min-width: 414px) {
  .tab-season__menu.solving-the-riddle-flyer__tab-season__menu {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 960px) {
  .tab-season__menu.solving-the-riddle-flyer__tab-season__menu {
    font-size: 1.25rem;
    max-width: 16.875rem;
  }
}

.tab-season__menu:not(.tab-season__menu.tab-season__menu--introduction):nth-child(n+2) {
  margin-left: 0.5625rem;
}
@media screen and (min-width: 960px) {
  .tab-season__menu:not(.tab-season__menu.tab-season__menu--introduction):nth-child(n+2) {
    margin-left: 1.25rem;
  }
}

.tab-season__menu.tab-season__menu-music:nth-child(n+2) {
  margin-left: 0.625rem;
}
@media screen and (min-width: 960px) {
  .tab-season__menu.tab-season__menu-music:nth-child(n+2) {
    margin-left: 3.125rem;
  }
}

.tab-season__menu.current {
  background-color: #907b35;
  color: #fff;
}

.tab-season__menu.tab-season__menu-music.current-music {
  background-color: #204d97;
  pointer-events: none;
}

.tab-season__content-box {
  display: none;
}

.tab-season__content-box {
  visibility: visible;
  height: auto;
}

.tab-season__content-box.hide {
  visibility: hidden;
  height: 0;
}

.tab-season__menu.onair__tab-season-menu {
  text-transform: capitalize;
}

/* ストーリー ------------- */
.thumb-item {
  position: relative;
  overflow: hidden;
}

.thumb-items {
  margin-top: 5px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.375rem 0.5625rem;
}
@media screen and (min-width: 960px) {
  .thumb-items {
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem 0.5rem;
  }
}

.thumb-item {
  cursor: pointer;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.thumb-item-active {
  opacity: 0.6;
}

/* ストーリー ここまで------------- */
.two-column__items {
  width: 100%;
  max-width: 31.25rem;
  margin: 3.125rem auto 0;
}
@media screen and (min-width: 960px) {
  .two-column__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: none;
    margin: 6.25rem auto 0;
  }
}

.two-column__items + .two-column__items {
  margin-top: 3.125rem;
  padding-top: 3.125rem;
  border-top: 1px solid #000000;
}
@media screen and (min-width: 960px) {
  .two-column__items + .two-column__items {
    margin-top: 5rem;
    padding-top: 5rem;
  }
}

.two-column__item {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .two-column__item {
    width: 50%;
  }
}

.two-column__item:nth-child(n+2) {
  margin-top: 2.5rem;
}
@media screen and (min-width: 960px) {
  .two-column__item:nth-child(n+2) {
    margin-top: 0;
  }
}

.two-column__text-type2 {
  margin-top: 0.625rem;
  text-align: center;
}

.two-column__image {
  width: 100%;
}

.two-column__items-type2 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3.125rem 0rem;
}
@media screen and (min-width: 414px) {
  .two-column__items-type2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.25rem;
  }
}
@media screen and (min-width: 960px) {
  .two-column__items-type2 {
    gap: 3.75rem 2.5rem;
  }
}

.two-column__images {
  width: 100%;
  max-width: 31.25rem;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .two-column__images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: none;
  }
}

.two-column__images-large {
  width: 100%;
  margin: 0 auto;
}

.two-column__images-medium {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .two-column__images-medium {
    width: 70%;
  }
}

.article-top__mt10px {
  margin-top: 0.625rem;
}

.article-top__mt20px {
  margin-top: 1.25rem;
}

.article-top__mt25px {
  margin-top: 1.5625rem;
}

.article-top__mt30px {
  margin-top: 1.875rem;
}

.article-top__mt40px {
  margin-top: 2.5rem;
}

.article-top__mt50px {
  margin-top: 3.125rem;
}

.article-top__mt60px {
  margin-top: 3.75rem;
}

.article-top__mt80px {
  margin-top: 5rem;
}

.article-top__mt100px {
  margin-top: 6.25rem;
}

/* ------------------------ */
/* 改行用、SP・PC非表示用の設定 */
/* ------------------------ */
/* ---------- 改行 〜 more：以上、less：以下 | ここから ---------- */
/* 414px以下で改行 */
@media screen and (min-width: 414px) {
  .br-414-less {
    display: none;
  }
}

/* 500px以下で改行 */
@media screen and (min-width: 500px) {
  .br-500-less {
    display: none;
  }
}

/* 550px以下で改行 */
@media screen and (min-width: 550px) {
  .br-550-less {
    display: none;
  }
}

/* 768px以下で改行 */
@media screen and (min-width: 768px) {
  .br-768-less {
    display: none;
  }
}

/* 768px以上で改行 */
.br-768-more {
  display: none;
}
@media screen and (min-width: 768px) {
  .br-768-more {
    display: block;
  }
}

/* 960px以下で改行 */
@media screen and (min-width: 960px) {
  .br-960-less {
    display: none;
  }
}

/* 960px以上で改行 */
.br-960-more {
  display: none;
}
@media screen and (min-width: 960px) {
  .br-960-more {
    display: block;
  }
}

/* 1000px以下で改行 */
@media screen and (min-width: 1000px) {
  .br-1000-less {
    display: none;
  }
}

/* 1000px以上で改行 */
.br-1000-more {
  display: none;
}
@media screen and (min-width: 1000px) {
  .br-1000-more {
    display: block;
  }
}

/* 1200px以下で改行 */
@media screen and (min-width: 1200px) {
  .br-1200-less {
    display: none;
  }
}

/* 1200px以上で改行 */
.br-1200-more {
  display: none;
}
@media screen and (min-width: 1200px) {
  .br-1200-more {
    display: block;
  }
}

/* 1480px以上で改行 */
.br-1480-more {
  display: none;
}
@media screen and (min-width: 1480px) {
  .br-1480-more {
    display: block;
  }
}

/* 1920px以上で改行 */
.br-1920-more {
  display: none;
}
@media screen and (min-width: 1920px) {
  .br-1920-more {
    display: block;
  }
}

/* ---------- 改行 | ここまで ---------- */
/* ---------- 表示・非表示 〜 more：以上、less：以下 | ここから ---------- */
/* PCのとき非表示 */
/* ---------- 表示・非表示 〜 more：以上、less：以下 | ここまで ---------- */
/* ニュース記事用 */
.txt-blue {
  color: #3ba9fb;
}

.font-strong,
.font-bold {
  font-weight: 700;
}

.link {
  word-break: break-all;
  color: #907b35;
}

.font-small {
  font-size: 0.75rem;
}
@media screen and (min-width: 960px) {
  .font-small {
    font-size: 0.8125rem;
  }
}

.text-wrap {
  padding-left: 1em;
  text-indent: -1em;
}

.name-initial {
  color: #328ed6;
}

.underline {
  background-image: -webkit-gradient(linear, left top, right top, from(#000000), to(#000000));
  background-image: linear-gradient(90deg, #000000, #000000); /* 線の色 */
  background-repeat: no-repeat;
  background-position: left bottom; /* 線の起点を左・下に設定 */
  background-size: 100% 2px; /* 線の横幅を0、縦幅を2pxに */
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  padding-bottom: 0.1875rem;
}

/* 全ての文字を大文字にする */
.text-uppercase {
  text-transform: uppercase;
}

/* 先頭文字を大文字にする */
.text-capitalize {
  text-transform: capitalize;
}

/* 項目非表示用 */
.hidden {
  visibility: hidden;
}

.subpage-inner {
  width: 80%;
  max-width: 55rem;
  padding: 0;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .subpage-inner {
    max-width: 58.75rem;
    padding: 0 1.875rem;
  }
}

.top-books {
  margin-top: 8.625rem;
}
@media screen and (min-width: 960px) {
  .top-books {
    margin-top: 11.4375rem;
  }
}

.top-character {
  margin-top: 8.75rem;
}
@media screen and (min-width: 960px) {
  .top-character {
    margin-top: 10rem;
  }
}

.top-exclusive-page {
  margin-top: 1.875rem;
}

.top-footer {
  margin-top: 2.5rem;
}
@media screen and (min-width: 960px) {
  .top-footer {
    margin-top: 3.75rem;
  }
}

.top-induction-banner {
  margin-top: 30.3888888889vw;
}
@media screen and (min-width: 960px) {
  .top-induction-banner {
    margin-top: 4.0625vw;
  }
}

.top-movie {
  margin-top: 10.2777777778vw;
}
@media screen and (min-width: 762px) {
  .top-movie {
    margin-top: 4.89375rem;
  }
}
@media screen and (min-width: 960px) {
  .top-movie {
    margin-top: 3.2291666667vw;
  }
}

.top-music {
  margin-top: 8.625rem;
}
@media screen and (min-width: 960px) {
  .top-music {
    margin-top: 11.4375rem;
  }
}

.top-news {
  margin-top: 4.6875rem;
}
@media screen and (min-width: 960px) {
  .top-news {
    margin-top: 4.6875rem;
  }
}

.top-staff-cast {
  margin-top: 7.5rem;
}
@media screen and (min-width: 960px) {
  .top-staff-cast {
    margin-top: 11.5625rem;
  }
}

/* トップページにストーリー遷移ボタンを設置する場合 */
.top-subpage-logo {
  margin-top: 0.8125rem;
  margin-left: 0.8125rem;
}
@media screen and (min-width: 960px) {
  .top-subpage-logo {
    margin-top: 1.625rem;
    margin-left: 1.4375rem;
  }
}

.top-subpage-section {
  margin-top: 1.875rem;
}
@media screen and (min-width: 960px) {
  .top-subpage-section {
    margin-top: -3.125rem;
  }
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 960px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 960px) {
  .u-mobile {
    display: none;
  }
}

@media (min-width: 414px) {
  .u-sm {
    display: none;
  }
}

@media (min-width: 550px) {
  .u-sm550px {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */