@charset "UTF-8";
:root {
  --color-red: #d83b38;
  --color-yellow: #ffff51;
  --color-blue: #131b84;
  --color-black: #0d0601;
  --gradient-red: linear-gradient(to right, #6e0000, #d83b38, #6e0000);
  --gradient-transparent-red: linear-gradient(to right, transparent 0%, #d83b38 25%, #6e0000 50%, #d83b38 75%, transparent 100%);
  --gradient-yellow: linear-gradient(to right, #ffb83e, #ffff51, #ffa547);
  --gradient-transparent-yellow: linear-gradient(to right, transparent 0%, #ffb83e 20%, #ffff51 50%, #ffa547 80%, transparent 100%);
  --gradient-blue: linear-gradient(-30deg, #131b84, #2094df);
}

html,
body {
  overscroll-behavior: none;
}

html {
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.98px) {
  html {
    font-size: 1vw;
  }
}

body {
  font-family: "Shippori Mincho", "Meiryo", "メイリオ", "平成明朝", "Lucida Grande", Verdana, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--color-black);
  background: url(../img/bg.jpg) repeat center/100%;
}
body::before {
  content: "";
  background: #fff;
  position: fixed;
  inset: 0;
  z-index: -1;
  mix-blend-mode: soft-light;
  height: 100vh;
  width: 100%;
  opacity: 0.3;
}
body::after {
  content: "";
  background: #fff;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  animation: allFadeIn 1.5s ease;
  animation-fill-mode: forwards;
  visibility: visible;
}

@keyframes allFadeIn {
  100% {
    opacity: 0;
    visibility: hidden;
    z-index: 0;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
  display: block;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

img {
  width: 100%;
  height: auto;
  display: block;
}

li {
  list-style: none;
}

.container {
  padding-block: 5rem;
}
@media screen and (min-width: 768px) {
  .container {
    padding-block: 10rem;
  }
}

.inner {
  padding-inline: 2rem;
  width: 100%;
  max-width: calc(1100px + 2rem);
  margin-inline: auto;
}

.br {
  display: inline-block;
}

.pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
.section-title {
  margin-inline: auto;
  color: #fff;
  text-shadow: 0.3rem 0.3rem 0 #402a19;
  font-size: 3rem;
  letter-spacing: 0.2em;
  font-size: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  filter: drop-shadow(0.3rem 0.3rem 0.3rem rgba(13, 6, 1, 0.5));
  position: relative;
}
@media screen and (min-width: 768px) {
  .section-title {
    font-size: min(9.2rem, 6.8vw);
    filter: drop-shadow(0.7rem 0.7rem 0.5rem rgba(13, 6, 1, 0.5));
  }
}
.section-title::after {
  content: "";
  background: url(../img/section-title_bg.png) no-repeat center/100%;
  width: 100%;
  height: 100%;
  max-width: 59.4rem;
  max-height: 14.7rem;
  position: absolute;
  z-index: -1;
  top: 59%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .section-title::after {
    width: 44vw;
    height: 15vw;
  }
}

.gradient-text--red {
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text--yellow {
  background: var(--gradient-yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text--blue {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.flash_button {
  position: relative;
  overflow: hidden;
  transition: all 0.1s linear;
}
.flash_button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 85%, rgba(255, 255, 255, 0.1) 94%, rgba(255, 255, 255, 0.5) 98%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
}
@media (hover: hover) {
  .flash_button:hover {
    opacity: 1;
  }
  .flash_button:hover::before {
    animation: shine 0.8s ease;
  }
}
.flash_button:active::before {
  animation: shine 0.8s ease;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes swaying {
  0% {
    transform: translateY(1rem);
  }
  100% {
    transform: translateY(-1rem);
  }
}
.fadeTrigger {
  opacity: 0;
}
.fadeTrigger.fade {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.programFadeTrigger .programFadeTrigger-child {
  opacity: 0;
}
.programFadeTrigger .programFadeTrigger-child.p-fade {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.firstFade {
  opacity: 0;
  animation-name: blurAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}

@keyframes blurAnime {
  from {
    opacity: 0;
    filter: blur(3rem);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}
.firstFade-text {
  opacity: 0;
  animation-name: blurAnimeText;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
}

@keyframes blurAnimeText {
  from {
    opacity: 0;
    filter: blur(3rem) drop-shadow(0px 0px 0.3rem var(--color-red)) drop-shadow(0px 0px 0.3rem var(--color-red)) drop-shadow(0px 0px 0.3rem var(--color-red));
  }
  to {
    opacity: 1;
    filter: blur(0) drop-shadow(0px 0px 0.3rem var(--color-red)) drop-shadow(0px 0px 0.3rem var(--color-red)) drop-shadow(0px 0px 0.3rem var(--color-red));
  }
}
@media screen and (min-width: 768px) {
  @keyframes blurAnimeText {
    from {
      opacity: 0;
      filter: blur(3rem) drop-shadow(0px 0px 0.5rem var(--color-red)) drop-shadow(0px 0px 0.5rem var(--color-red)) drop-shadow(0px 0px 0.5rem var(--color-red));
    }
    to {
      opacity: 1;
      filter: blur(0) drop-shadow(0px 0px 0.5rem var(--color-red)) drop-shadow(0px 0px 0.5rem var(--color-red)) drop-shadow(0px 0px 0.5rem var(--color-red));
    }
  }
}
/* ヘッダー -------------------------------------------------------------------------------------------------------- */
.header {
  position: relative;
  padding-block: 0.5rem 1rem;
}
@media screen and (min-width: 768px) {
  .header {
    padding-block: 5rem 0;
  }
}
@media screen and (min-width: 960px) {
  .header {
    min-height: 100dvh;
    padding-block: unset;
  }
}
.header .inner {
  padding-inline: 1rem;
}
@media screen and (min-width: 768px) {
  .header .inner {
    padding-inline: 2rem;
    min-height: inherit;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
}
@media screen and (min-width: 960px) {
  .header .inner {
    align-items: center;
  }
}
.header::before, .header::after {
  content: "";
  background: url(../img/header_bg-left_sp.png) no-repeat center/100%;
  position: absolute;
  left: 1%;
  bottom: -2.7%;
  width: 55%;
  height: 35%;
  z-index: -1;
  opacity: 0.4;
  mix-blend-mode: multiply;
}
@media screen and (min-width: 768px) {
  .header::before, .header::after {
    background-image: url(../img/header_bg-left_pc.png);
    bottom: -5%;
    width: 37%;
    height: 53vw;
    max-width: 69.5rem;
    max-height: 69.6rem;
    width: 55vw;
    opacity: 0.6;
    left: unset;
    right: 0.2%;
  }
}
.header::after {
  background-image: url(../img/header_bg-right_sp.png);
  left: unset;
  bottom: unset;
  top: -2.6%;
  right: 1%;
}
@media screen and (min-width: 768px) {
  .header::after {
    background-image: url(../img/header_bg-right_pc.png);
    width: 53.2vw;
    max-width: 69.5rem;
    height: 45.4vw;
    max-height: 62.4rem;
    top: -2.6%;
    right: unset;
    left: 0.2%;
  }
}
.header .inner {
  max-width: calc(1000px + 2rem);
}
.header__copy--top {
  font-size: 1.76rem;
  display: block;
  font-weight: 800;
  mix-blend-mode: normal;
  /* background: var(--gradient-blue); */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-block: 0.8rem 1.5rem;
  margin-left: 0.8rem;
  filter: drop-shadow(0px 0px 0.3rem var(--color-red)) drop-shadow(0px 0px 0.3rem var(--color-red)) drop-shadow(0px 0px 0.3rem var(--color-red));
}
@media screen and (min-width: 768px) {
  .header__copy--top {
    font-size: min(4rem, 2.3vw);
    position: absolute;
    z-index: 101;
    width: min(45rem, 37vw);
    top: 1%;
    left: 2%;
    line-height: 2.1;
    margin: unset;
    filter: drop-shadow(0px 0px 0.5rem var(--color-red)) drop-shadow(0px 0px 0.5rem var(--color-red)) drop-shadow(0px 0px 0.5rem var(--color-red));
  }
}
@media screen and (min-width: 1280px) {
  .header__copy--top {
    font-size: min(4rem, 2.3vw);
    width: min(45rem, 30vw);
    top: unset;
    bottom: 2%;
  }
}
.header h1 {
  margin-inline: auto;
}
.header__broadcast {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  line-height: 1;
  font-weight: 800;
  font-size: 2.3rem;
  filter: drop-shadow(0px 0px 0.5rem #fff) drop-shadow(0px 0px 0.5rem #fff) drop-shadow(0px 0px 0.5rem #fff);
}
@media screen and (min-width: 768px) {
  .header__broadcast {
    /* font-size: min(4rem, 3vw); */
    font-size: min(4rem, 4vw);
    gap: 1.7rem;
  }
}
.header__broadcast-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
}
@media screen and (min-width: 768px) {
  .header__broadcast-top {
    display: block;
  }
}
.header__broadcast-top .big {
  font-size: 2em;
}
.header__broadcast-top .big.month {
  margin-left: 0.07em;
}
.header__broadcast-top .week {
  position: relative;
  font-size: 0.8em;
  padding-bottom: 0.1em;
  vertical-align: 0.1em;
  margin-inline: 0.3em;
}
.header__broadcast-top .week::after {
  content: "";
  background: url(../img/hexagon.png) no-repeat center/100%;
  width: 1.3em;
  height: 1.5em;
  position: absolute;
  top: 52%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .header__broadcast-top .br {
    margin-left: -1.1rem;
  }
}
.header__wrapper {
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .header__wrapper {
    padding-bottom: 2rem;
  }
}
.header__broadcast-bottom {
  font-size: 50%;
  background: var(--gradient-transparent-red);
  width: 70%;
  display: block;
  text-align: center;
  padding-block: 0.4rem 0.4rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .header__broadcast-bottom {
    font-size: 60%;
    width: 76%;
    padding-block: 0.4rem 0.5rem;
    /* TVerボタン出現時に適用
    color: unset;
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    */
  }
}
.header__copy--bottom {
  font-size: 2rem;
  display: block;
  font-weight: 800;
  mix-blend-mode: normal;
  /* background: var(--gradient-blue); */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 3rem;
  text-align: right;
  filter: drop-shadow(0px 0px 0.3rem var(--color-red)) drop-shadow(0px 0px 0.3rem var(--color-red)) drop-shadow(0px 0px 0.3rem var(--color-red));
}
@media screen and (min-width: 768px) {
  .header__copy--bottom {
    position: absolute;
    z-index: 101;
    right: 1%;
    font-size: min(4.2rem, 2.3vw);
    line-height: 2.2;
    width: min(44rem, 31vw);
    top: 1%;
    margin: unset;
    filter: drop-shadow(0px 0px 0.5rem var(--color-red)) drop-shadow(0px 0px 0.5rem var(--color-red)) drop-shadow(0px 0px 0.5rem var(--color-red));
  }
}
@media screen and (min-width: 1280px) {
  .header__copy--bottom {
    font-size: min(4.2rem, 2.6vw);
    width: min(57rem, 38vw);
    top: 2.6%;
  }
}
@media screen and (min-width: 768px) {
  .header__copy--bottom .num {
    writing-mode: horizontal-tb;
    margin-top: -0.5rem;
    line-height: 1;
  }
}
.header__btn {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-red);
  width: 30rem;
  height: 6.2rem;
  border-radius: 10rem;
  /* box-shadow: 0.5rem 0.5rem 0.25rem rgba(11, 22, 94, 0.35); */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  margin-inline: auto;
  filter: drop-shadow(0 0 0.3rem var(--color-red));
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .header__btn {
    font-size: clamp(3rem, 3.9vw, 3.7rem);
    width: 80%;
    height: 100vw;
    max-width: 73rem;
    max-height: 8.5rem;
  }
}
.header__btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--gradient-yellow);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 10rem;
}
.header__btn span {
  transition: all 0.3s ease;
  color: var(--color-yellow);
}
.header__btn span::after {
  content: "TVerで配信中！";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transition: opacity 0.3s ease;
  width: 100%;
  text-align: center;
}
@media (hover: hover) {
  .header__btn:hover {
    opacity: 1;
    filter: drop-shadow(0 0 1rem var(--color-red));
  }
  .header__btn:hover::after {
    opacity: 1;
  }
  .header__btn:hover span {
    color: transparent;
  }
  .header__btn:hover span::after {
    opacity: 1;
  }
}
.header__btn:active {
  filter: drop-shadow(0 0 1rem var(--color-red));
}
.header__btn:active::after {
  opacity: 1;
}
.header__btn:active span {
  color: transparent;
}
.header__btn:active span::after {
  opacity: 1;
}

/* フッター -------------------------------------------------------------------------------------------------------- */
.footer {
  padding-block: 2rem;
  mix-blend-mode: multiply;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .footer {
    font-size: 1.8rem;
  }
}
.footer .pankuzu {
  display: none;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer .pankuzu {
    display: flex;
    flex-wrap: wrap;
  }
}
.footer .pankuzu__item {
  transform: rotate(0.04deg);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5em;
}
.footer .pankuzu__item:not(:last-child)::after {
  content: "";
  border-top: 0.25rem solid #6e0000;
  border-right: 0.25rem solid #6e0000;
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  transform: rotate(45deg);
  margin-right: 0.7em;
}
.footer .pankuzu__item a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.footer .sp-footer {
  display: flex;
  justify-content: center;
  -moz-column-gap: 2em;
       column-gap: 2em;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .footer .sp-footer {
    display: none;
  }
}
.footer .sp-footer a {
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  row-gap: 0.3em;
}
.footer .sp-footer a::before {
  content: "";
  width: 4.5rem;
  aspect-ratio: 1;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background: var(--gradient-red);
}
.footer .sp-footer a span {
  display: block;
  font-size: 1.3rem;
}
.footer .sp-footer .home::before {
  -webkit-mask-image: url(../img/link-home.svg);
          mask-image: url(../img/link-home.svg);
}
.footer .sp-footer .tv::before {
  -webkit-mask-image: url(../img/link-tv.svg);
          mask-image: url(../img/link-tv.svg);
}
.footer .sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-block: 1.7rem 2.1rem;
}
@media screen and (min-width: 768px) {
  .footer .sns {
    margin-block: 2.6rem 2.6rem;
  }
}
.footer .sns__item a {
  border-radius: 10rem;
  padding: 0.3rem;
}
.footer .sns__item a.btn-fb {
  background: #1877f2;
}
.footer .sns__item a.btn-tw {
  background: #000;
}
.footer .sns__item a.btn-line {
  background: #1eb900;
}
.footer .sns__item img {
  width: 5rem;
  border-radius: 10rem;
}
.footer .copyright {
  font-size: 0.6em;
  display: block;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .footer .copyright {
    font-size: 0.7em;
    line-height: inherit;
    padding-inline: unset;
  }
}

/* cm -------------------------------------------------------------------------------------------------------- */
.cm {
  padding-bottom: unset;
}
@media screen and (min-width: 768px) {
  .cm {
    padding-block: 10rem;
    padding-bottom: unset;
  }
}
.cm iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
}

/* main -------------------------------------------------------------------------------------------------------- */
/* 概要 -------------------------------------------------------------------------------------------------------- */
.about {
  padding-block: 4.5rem 5rem;
}
@media screen and (min-width: 768px) {
  .about {
    padding-block: 15rem 10rem;
  }
}
.about .inner {
  padding-inline: 1rem;
}
@media screen and (min-width: 768px) {
  .about .inner {
    max-width: calc(1500px + 2rem);
  }
}
.about__text {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .about__text {
    letter-spacing: inherit;
    font-size: 2.5rem;
    line-height: 2.6;
    gap: 1.8em;
  }
}
@media screen and (min-width: 768px) {
  .about__text .pc {
    display: inline;
  }
}
.about .strong {
  font-size: 150%;
  line-height: 1.8;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .about .strong {
    font-size: 190%;
    line-height: 1.8;
  }
}
.about .strong-under {
  display: block;
}
.about .big {
  font-size: 150%;
  line-height: 1.4;
}
.about .more-strong {
  background: var(--gradient-transparent-red);
  padding-block: 0.8rem 0.9rem;
  margin-block: 0.8rem;
  mix-blend-mode: multiply;
  padding-inline: 4rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .about .more-strong .top,
  .about .more-strong .under {
    background: unset;
  }
}
.about .more-strong .yellow {
  color: var(--color-yellow);
}
.about .paragraph {
  line-height: 2.2;
  word-break: auto-phrase;
}
@media screen and (min-width: 768px) {
  .about .paragraph {
    line-height: 2.5;
    line-height: inherit;
    margin-top: -1.5rem;
    letter-spacing: 0;
  }
}

/* 出演者 -------------------------------------------------------------------------------------------------------- */
.cast {
  position: relative;
}
@media screen and (min-width: 768px) {
  .cast {
    padding-block: 9rem 10rem;
  }
}
.cast::before {
  content: "";
  background: var(--gradient-red);
  inset: 0;
  position: absolute;
  mix-blend-mode: multiply;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .cast .inner {
    max-width: calc(1400px + 8rem);
    padding-inline: min(8rem, 6vw);
  }
}
.cast__list {
  margin-top: 8rem;
  display: flex;
  flex-direction: column;
  gap: 6rem;
  padding-inline: 2rem;
}
@media screen and (min-width: 768px) {
  .cast__list {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10%;
    margin-top: 13rem;
    display: grid;
    grid-template-columns: 1.2fr 0.97fr;
    padding-inline: unset;
  }
}
@media screen and (min-width: 1024px) {
  .cast__list {
    display: flex;
  }
}
.cast__item {
  position: relative;
}
.cast__item-role {
  position: absolute;
  z-index: 1;
  width: 9rem;
  top: -6.8rem;
  left: -1.7rem;
  filter: drop-shadow(0.3rem 0.3rem 0.3rem rgba(13, 6, 1, 0.5));
}
@media screen and (min-width: 768px) {
  .cast__item-role {
    width: 11vw;
    max-width: 15rem;
    top: max(-7.5rem, -6vw);
    left: max(-7.5rem, -5.2vw);
    filter: drop-shadow(0.7rem 0.7rem 0.5rem rgba(13, 6, 1, 0.5));
  }
}
@media screen and (min-width: 768px) {
  .cast__item-role.guest {
    left: max(-8.5rem, -6vw);
  }
}
.cast__inside-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .cast__inside-list {
    gap: min(4rem, 2.5vw);
  }
}
.cast__inside-item {
  max-width: 24rem;
}
.cast__item-name {
  display: block;
  text-align: center;
  margin-top: 0.5rem;
  font-size: 2rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .cast__item-name {
    font-size: min(3rem, 2.6vw);
  }
}

/* 番組内容 -------------------------------------------------------------------------------------------------------- */
.program .inner {
  max-width: calc(1500px + 2rem);
}
.program__list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media screen and (min-width: 768px) {
  .program__list {
    margin-top: 3rem;
    gap: 10rem;
  }
}
.program__title-top {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-1em);
}
@media screen and (min-width: 768px) {
  .program__title-top {
    padding-right: min(16rem, 10.4vw);
    align-items: flex-end;
    transform: unset;
  }
}
.program__title-top-icon {
  width: 8rem;
  filter: drop-shadow(0.3rem 0.3rem 0.3rem rgba(13, 6, 1, 0.5));
}
@media screen and (min-width: 768px) {
  .program__title-top-icon {
    width: 10.4vw;
    max-width: 16rem;
    filter: drop-shadow(0.7rem 0.7rem 0.5rem rgba(13, 6, 1, 0.5));
  }
}
.program__title-top-text {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 4.5rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .program__title-top-text {
    font-size: min(8rem, 6.5vw);
    line-height: 1;
    padding-bottom: 2rem;
  }
}
.program__title-top-text.program-3 {
  font-size: 4rem;
}
@media screen and (min-width: 768px) {
  .program__title-top-text.program-3 {
    font-size: min(8rem, 6.5vw);
  }
}
.program__title-top-text .small {
  font-size: 0.6em;
}
.program__title-bottom {
  background: var(--gradient-transparent-red);
  color: #fff;
  font-size: 1.8rem;
  display: block;
  text-align: center;
  margin-top: 0.7rem;
  mix-blend-mode: multiply;
  padding-block: 1rem;
}
@media screen and (min-width: 768px) {
  .program__title-bottom {
    margin-top: 1rem;
    font-size: min(4rem, 3.3vw);
  }
}
.program__title-bottom .br {
  display: block;
}
@media screen and (min-width: 768px) {
  .program__title-bottom .br {
    display: inline-block;
  }
}
.program__body {
  position: relative;
  display: grid;
  grid-template-rows: 1fr 30.5rem 1fr;
  margin-top: 1rem;
  padding-inline: 1rem;
}
@media screen and (min-width: 768px) {
  .program__body {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: min(41.6rem, 27.6vw) min(41.6rem, 27.6vw);
    grid-template-rows: 50% 50%;
    padding-inline: unset;
  }
}
.program__body-item {
  padding: 3rem 2.3rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .program__body-item {
    padding: 0 13%;
    gap: min(2rem, 1.1vw);
  }
}
.program__body-item.roke04 {
  padding-inline: 1.5rem;
  padding-block: 5rem;
}
@media screen and (min-width: 768px) {
  .program__body-item.roke04 {
    padding-inline: 8%;
    padding-top: 2%;
    padding-block: 0;
  }
}
.program__body-item::before {
  content: "";
  background: url(../img/program_bg.png) no-repeat center/100% 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  mix-blend-mode: multiply;
  opacity: 0.4;
}
@media screen and (min-width: 768px) {
  .program__body-item::before {
    opacity: 0.8;
  }
}
.program__body-image-box {
  position: relative;
}
.program__body-image {
  position: absolute;
  width: 25rem;
}
.program__body-image.left {
  top: 1rem;
  left: 0;
}
.program__body-image.right {
  bottom: 1rem;
  right: 0;
}
@media screen and (min-width: 768px) {
  .program__body-image {
    position: static;
    width: auto;
  }
}
.program__body-title {
  font-size: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .program__body-title {
    font-size: min(3.5rem, 2.4vw);
    margin-inline: auto;
  }
}
.program__body-title.roke03 {
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .program__body-title.roke03 {
    font-size: min(3.5rem, 2.4vw);
  }
}
.program__body-title.roke04 {
  font-size: 1.7rem;
}
@media screen and (min-width: 768px) {
  .program__body-title.roke04 {
    font-size: min(3.5rem, 2.4vw);
  }
}
.program__body-title-head {
  position: absolute;
  top: -2rem;
  left: -1rem;
  width: 7.5rem;
  height: auto;
  transform: rotate(-10deg);
}
@media screen and (min-width: 768px) {
  .program__body-title-head {
    top: -3rem;
    left: -1rem;
    width: 10vw;
    max-width: 15rem;
    filter: drop-shadow(0.2rem 0.2rem 0.5rem rgba(13, 6, 1, 0.5));
  }
}
.program__body-title-head.niue-shinjitu {
  top: -3rem;
}
.program__body-title-head.inujima-shinjitu {
  top: -5rem;
}
.program__body-title-head.shirataki-hyakubun {
  top: -3rem;
}
.program__body-title-head.shirataki-shinjitu {
  top: -3rem;
}
.program__body-title-head.danboru-hyakubun {
  top: -3rem;
}
@media screen and (min-width: 768px) {
  .program__body-title-head.danboru-hyakubun {
    top: -5rem;
  }
}
.program__body-title-head.danboru-shinjitu {
  top: -3.5rem;
}
@media screen and (min-width: 768px) {
  .program__body-title-head.danboru-shinjitu {
    top: -5rem;
    left: -4rem;
  }
}
@media screen and (min-width: 768px) {
  .program__body-title-head.niue-shinjitu, .program__body-title-head.inujima-shinjitu, .program__body-title-head.shirataki-hyakubun, .program__body-title-head.shirataki-shinjitu {
    top: -3rem;
  }
}
.program__body-text {
  font-size: 1.4rem;
  word-break: auto-phrase;
  text-align: justify;
  padding-inline: 0.5rem;
}
@media screen and (min-width: 768px) {
  .program__body-text {
    font-size: 2.6rem;
    font-size: min(2.2rem, 1.5vw);
    padding-inline: unset;
  }
}
.program__niue {
  margin-inline: auto;
  max-width: 100rem;
  margin-top: 1rem;
  padding-inline: 1rem;
}
@media screen and (min-width: 768px) {
  .program__niue {
    margin-top: 3rem;
    padding-inline: unset;
  }
}

/* キャンペーンリンク -------------------------------------------------------------------------------------------------------- */
.campaign-link {
  position: fixed;
  z-index: 9999;
  width: 20rem;
  transition: all 0.3s ease;
  animation: swingShadow 1s ease-in-out infinite alternate;
}
@media screen and (min-width: 768px) {
  .campaign-link {
    width: 45rem;
  }
}
.campaign-link img {
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .campaign-link:hover {
    opacity: 1;
    animation-play-state: paused;
  }
  .campaign-link:hover img {
    scale: 1.03;
    filter: drop-shadow(0 0 2.5rem var(--color-yellow));
  }
}
.campaign-link:active {
  scale: 1.05;
  filter: drop-shadow(0 0 3rem var(--color-yellow));
}

@keyframes swingShadow {
  0% {
    filter: drop-shadow(0 0 0.2rem var(--color-yellow));
    scale: 1;
  }
  100% {
    scale: 1.05;
    filter: drop-shadow(0 0 3rem var(--color-yellow));
  }
}
/* キャンペーン -------------------------------------------------------------------------------------------------------- */
.campaign {
  position: relative;
  padding-block: 5rem 3rem;
}
@media screen and (min-width: 768px) {
  .campaign {
    padding-block: 9rem 5rem;
  }
}
.campaign::before {
  content: "";
  background: var(--gradient-red);
  inset: 0;
  position: absolute;
  mix-blend-mode: multiply;
  z-index: -1;
}
.campaign .inner {
  max-width: 900px;
}
.campaign__title {
  margin-inline: auto;
}
.campaign__period {
  background: var(--gradient-transparent-yellow);
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-block: 1.2rem 1.1rem;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .campaign__period {
    margin-top: 4rem;
    padding-block: 2rem 1.9rem;
    gap: 2rem;
  }
}
.campaign__period-title {
  max-width: 10rem;
}
@media screen and (min-width: 768px) {
  .campaign__period-title {
    max-width: 18.4rem;
    max-width: 20rem;
  }
}
.campaign__period-date {
  max-width: 24rem;
}
@media screen and (min-width: 768px) {
  .campaign__period-date {
    max-width: 50rem;
  }
}
.campaign__image {
  margin-inline: auto;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .campaign__image {
    margin-top: 4rem;
  }
}
.campaign__about {
  text-align: center;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  margin-top: 3.4rem;
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.6;
  padding-inline: 2rem;
  color: var(--color-yellow);
}
@media screen and (min-width: 768px) {
  .campaign__about {
    font-size: 2.4rem;
    letter-spacing: inherit;
    padding-inline: unset;
    margin-top: 5.5rem;
  }
}
.campaign__topic {
  font-weight: 800;
  margin-top: 3.4rem;
  padding: 3rem;
  background: url(../img/bg.jpg) no-repeat center/cover;
}
@media screen and (min-width: 768px) {
  .campaign__topic {
    padding: 5rem;
    padding-top: 4.1rem;
    margin-top: 5.2rem;
  }
}
.campaign__topic p {
  line-height: 1.6;
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .campaign__topic p {
    font-size: 4rem;
    padding-inline: 5%;
    line-height: 1.5;
  }
}
.campaign__topic .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .campaign__topic .wrapper {
    gap: 2em;
    margin-top: 3.6rem;
  }
}
.campaign__topic img {
  margin-inline: auto;
}
.campaign__topic ol {
  line-height: 2;
  font-size: 1.4rem;
  text-indent: -1.4em;
  padding-left: 1.4em;
  word-break: auto-phrase;
}
@media screen and (min-width: 768px) {
  .campaign__topic ol {
    font-size: 2.4rem;
  }
}
.campaign__method {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .campaign__method {
    margin-top: 6rem;
  }
}
.campaign__method-title {
  max-width: 20rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .campaign__method-title {
    max-width: 40rem;
  }
}
.campaign__method-list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  flex-direction: column;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .campaign__method-list {
    flex-direction: row;
    gap: 2rem;
    margin-top: 2rem;
  }
}
.campaign__method-item {
  padding: 3rem;
  background: url(../img/bg.jpg) no-repeat center/cover;
}
@media screen and (min-width: 768px) {
  .campaign__method-item {
    padding: 3rem;
  }
}
.campaign__method-item.instagram {
  color: #c92565;
}
.campaign__method-item.x {
  color: #000;
}
.campaign__method-item-title {
  font-size: 2.6rem;
  font-weight: 700;
  border-radius: 10rem;
  position: relative;
  text-align: center;
  line-height: 2.2;
}
@media screen and (min-width: 768px) {
  .campaign__method-item-title {
    font-size: 3rem;
  }
}
.campaign__method-item-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2.5rem;
  transform: translateY(-50%);
}
.campaign__method-item-title.instagram {
  background: #c92565;
  color: #fff;
}
.campaign__method-item-title.instagram::before {
  background: url(../img/icon_sns_instagram.svg) no-repeat center/100%;
  width: 3rem;
  height: 3rem;
  margin-right: 0.6rem;
}
@media screen and (min-width: 768px) {
  .campaign__method-item-title.instagram::before {
    width: 3.7rem;
    height: 3.7rem;
  }
}
.campaign__method-item-title.x {
  background: #000;
  color: #fff;
}
.campaign__method-item-title.x::before {
  background: url(../img/icon_sns_x.svg) no-repeat center/100%;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  left: 1.5rem;
}
@media screen and (min-width: 768px) {
  .campaign__method-item-title.x::before {
    width: 6rem;
    height: 6rem;
  }
}
.campaign__method-item-title h4 {
  margin-left: 3.5rem;
}
.campaign__method .textlink {
  color: var(--color-sub);
  display: inline;
}
.campaign__method-order {
  display: flex;
  flex-direction: column;
  gap: 0.6em;
  margin-top: 1.7rem;
  padding-inline: 0.8rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .campaign__method-order {
    gap: 0.8em;
  }
}
.campaign__method-order-item {
  list-style: decimal;
  list-style-position: inside;
  text-indent: -1.2em;
  padding-left: 1.2em;
  line-height: 1.5;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .campaign__method-order-item {
    font-size: 1.8rem;
  }
}
.campaign__method-order-item .br {
  display: inline;
}
@media screen and (min-width: 768px) {
  .campaign__method-order-item .br {
    display: inline-block;
    text-indent: 0;
  }
}
.campaign__method .notes {
  font-size: 0.8em;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid;
  margin-inline: auto;
  padding: 0.9rem;
  border-radius: 1rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .campaign__method .notes {
    font-size: 1em;
    padding-top: 0.4rem;
  }
}
.campaign__method .notes.instagram {
  color: #c92565;
}
.campaign__method .notes.x {
  color: #000;
}
.campaign__method .notes .btn {
  border-radius: 10rem;
  padding: 0.3rem 3rem 0.4rem;
  color: #fff;
  min-width: 16.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
}
.campaign__method .notes .btn.instagram {
  background: #c92565;
}
.campaign__method .notes .btn.x {
  background: #000;
}
.campaign__method .notes__notes {
  font-size: 0.7em;
  font-family: sans-serif;
  font-weight: 400;
}
.campaign__btn {
  width: 90%;
  max-width: 600px;
  height: 8rem;
  background: var(--gradient-yellow);
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  border-radius: 10rem;
  margin-inline: auto;
  margin-top: 3rem;
  padding-left: 0.5em;
  filter: drop-shadow(0 0 0.2rem var(--color-yellow));
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .campaign__btn {
    margin-top: 5rem;
    width: 70%;
    font-size: 4.5rem;
    height: 11rem;
  }
}
.campaign__btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--gradient-red);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 10rem;
}
.campaign__btn-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  height: 100%;
}
@media (hover: hover) {
  .campaign__btn:hover {
    opacity: 1;
    filter: drop-shadow(0 0 1rem var(--color-yellow));
  }
  .campaign__btn:hover::after {
    opacity: 1;
  }
  .campaign__btn:hover .campaign__btn-text {
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .campaign__btn:hover .campaign__btn-text::after {
    opacity: 1;
  }
}
.campaign__btn:active {
  filter: drop-shadow(0 0 1rem var(--color-yellow));
}
.campaign__btn:active::after {
  opacity: 1;
}
.campaign__btn:active .campaign__btn-text {
  background: var(--gradient-yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.campaign__btn:active .campaign__btn-text::after {
  opacity: 1;
}
.campaign__btn-text-head {
  font-size: 50%;
  margin-bottom: 0.5rem;
  padding-right: 1em;
  color: var(--color-accent);
}
.campaign__end {
  font-size: 1.2em;
  font-weight: 800;
  text-align: center;
  margin-block: 2.3rem 2rem;
  color: #fff;
  background: rgba(128, 128, 128, 0.8);
  padding-block: 1.6rem 1.5rem;
  margin-inline: auto;
  transform: rotate(0.04deg);
}
@media screen and (min-width: 768px) {
  .campaign__end {
    font-size: 1.5em;
  }
}

/* モーダル -------------------------------------------------------------------------------------------------------- */
.mask,
.modal-content,
.modal-close {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s ease;
}

.mask.show,
.modal-content.show,
.modal-close.show {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s, visibility 0.3s ease;
}

.mask {
  background: rgba(0, 0, 0, 0.9);
  /* 画面いっぱいに表示し固定させる */
  position: fixed;
  inset: 0;
  z-index: 10000;
}

.modal-content {
  /* 画面中央に配置し固定させる */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10001;
  width: 88%;
  background: #fff;
  padding: 2em 1rem;
  height: 80%;
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--color-black);
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .modal-content {
    width: auto;
    min-width: 600px;
    max-width: 800px;
    padding: 5rem 3rem;
    height: 90%;
    font-size: 1.6rem;
  }
}
.modal-content .textlink {
  color: var(--color-red);
  display: inline;
}
.modal-content__wrapper {
  overflow-y: scroll;
  overflow-x: hidden;
  height: 100%;
  padding-inline: 1rem;
}
@media screen and (min-width: 768px) {
  .modal-content__wrapper {
    padding-inline: 3rem;
  }
}
.modal-content__wrapper::-webkit-scrollbar {
  width: 0.5rem;
}
@media screen and (min-width: 768px) {
  .modal-content__wrapper::-webkit-scrollbar {
    width: 0.8rem;
  }
}
.modal-content__wrapper::-webkit-scrollbar-thumb {
  background: var(--color-black);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.modal-content h3 {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .modal-content h3 {
    font-size: 5rem;
  }
}
.modal-content__content {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-top: 1.9em;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .modal-content__content {
    margin-top: 2.4em;
    letter-spacing: inherit;
  }
}
.modal-content__content .small {
  font-size: 0.8em;
}
@media screen and (min-width: 768px) {
  .modal-content__content .small {
    display: inline-block;
  }
}
.modal-content__list dt {
  border: 2px solid;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  height: 4rem;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .modal-content__list dt {
    font-size: inherit;
  }
}
.modal-content__list dd {
  padding-left: 0.2em;
}
.modal-content__list dd:nth-of-type(1) {
  margin-top: 1em;
}
.modal-content__list dd .present__item {
  display: flex;
  justify-content: flex-start;
  gap: 1.5em;
}
.modal-content__list dd .present__item .left {
  width: 3.3em;
}
.modal-content__list dd .present__item .right {
  width: calc(100% - 3.3em);
}
.modal-content__list dd .sns-list {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.modal-content__list dd .sns-item__text {
  font-size: 0.8em;
}
@media screen and (min-width: 768px) {
  .modal-content__list dd .sns-item__text {
    font-size: inherit;
    padding-left: 1em;
  }
}
.modal-content__list dd .summary-list {
  display: flex;
  flex-direction: column;
  gap: 2em;
}
.modal-content__list dd .summary-item .br-pc {
  display: inline;
}
@media screen and (min-width: 768px) {
  .modal-content__list dd .summary-item .br-pc {
    display: inline-block;
  }
}
.modal-content__list dd .summary-item__list1 li {
  text-indent: -1em;
  padding-left: 1em;
}
.modal-content__list dd .summary-item__list2 {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.modal-content__list dd .summary-item .list2__item-text {
  padding-inline: 0.8em;
}
@media screen and (min-width: 768px) {
  .modal-content__list dd .summary-item .list2__item-text {
    padding-inline: 0.5em;
  }
}
.modal-content__list dd .summary-item .list2__item-list {
  text-indent: -1em;
  padding-left: 1.7em;
  border: 1px dotted;
  padding-inline: 1.2em 0.4em;
  width: 93%;
  margin-left: 0.8em;
  padding-block: 0.4em;
  margin-block: 0.4em;
  font-size: 0.9em;
}
@media screen and (min-width: 768px) {
  .modal-content__list dd .summary-item .list2__item-list {
    width: 95%;
    margin-left: 0.6em;
    margin-block: 0.3em;
    padding: 0.5em 1.8em;
  }
}
.modal-content__list dd .summary-item .list2__item-list.notes {
  font-size: 0.8em;
  border: unset;
  padding-inline: 0.9em 0em;
  padding-block: 0.2em 0;
  margin-block: 0;
}
@media screen and (min-width: 768px) {
  .modal-content__list dd .summary-item .list2__item-list.notes {
    padding-left: 1.2em;
    border: unset;
    padding-block: 0.2em 0;
    margin-block: 0.3em 0;
  }
}
.modal-content__list dd .summary-item .list2__item-list.notes li {
  text-indent: -1em;
  padding-left: 0.5em;
}
@media screen and (min-width: 768px) {
  .modal-content__list dd .summary-item .list2__item-list.notes li {
    padding-left: 0.3em;
  }
}
.modal-content__list dd .summary-item__list3 {
  text-indent: -1em;
  padding-left: 1em;
}
.modal-content__list dd .summary-item__list4 {
  text-indent: -1em;
  padding-left: 1em;
  display: block;
}
.modal-content__list dd .summary-item__list4.notes {
  font-size: 0.8em;
  padding-inline: 2.2em 0;
}

.modal-close {
  cursor: pointer;
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5rem;
  position: fixed;
  z-index: 10001;
  transition: all 0.3s;
  color: #fff;
  font-size: 4rem;
  top: 0rem;
  right: 0rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .modal-close {
    font-size: 5rem;
    top: 1rem;
    right: 1rem;
  }
}
@media (hover: hover) {
  .modal-close:hover {
    opacity: 0.7;
  }
}

/* ページトップ -------------------------------------------------------------------------------------------------------- */
.pagetop {
  position: fixed;
  z-index: 9999;
  bottom: 1rem;
  right: 1rem;
  background: var(--gradient-red);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  filter: drop-shadow(0 0 0.3rem var(--color-red));
  border: 0.3rem solid var(--color-main);
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .pagetop {
    right: 3rem;
    bottom: 3rem;
  }
}
.pagetop::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--gradient-yellow);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50%;
}
@media (hover: hover) {
  .pagetop:hover {
    opacity: 1;
    filter: drop-shadow(0 0 1rem var(--color-red));
  }
  .pagetop:hover::after {
    opacity: 1;
  }
  .pagetop:hover span::after {
    border-color: var(--color-red);
  }
}
.pagetop:active {
  filter: drop-shadow(0 0 1rem var(--color-red));
}
.pagetop:active::after {
  opacity: 1;
}
.pagetop:active span::after {
  border-color: var(--color-red);
}
.pagetop span::after {
  content: "";
  position: absolute;
  top: 57%;
  left: 50%;
  transform: rotate(-45deg) translate(-50%, -50%);
  transform-origin: 0 0;
  border-top: 0.5rem solid #fff;
  border-right: 0.5rem solid #fff;
  width: 1.7rem;
  height: 1.7rem;
  transition: all 0.3s ease;
}/*# sourceMappingURL=style.css.map */