@charset "UTF-8";
.horizontal {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.horizontal-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.panel {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100vw;
      -ms-flex: 0 0 100vw;
          flex: 0 0 100vw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.panel img {
  max-width: 80%;
  height: auto;
}

/* 初期状態は非表示＆下に少しずらす */
.fade-target {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}

/* 表示状態 */
.fade-in {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* 遅延アニメーション用 */
.fade-in.delay-0 {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.fade-in.delay-1 {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.fade-in.delay-2 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.fade-in.delay-3 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.fade-in.delay-4 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.fade-in.delay-5 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.fade-in.delay-6 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

:root {
  --font-size-base:15px;
  --font-size-large:calc(var(--font-size-base) * 1.25);
  --font-size-small:calc(var(--font-size-base) * 0.875);
  --border-radius-common:5px;
}

body {
  font-size: var(--font-size-base);
  font-family: "Zen Maru Gothic", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  overflow-x: hidden;
}

.load {
  overflow: hidden;
}

.loading {
  position: fixed;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #86E0BF;
  -webkit-transition: all 1s;
  transition: all 1s;
}
@-webkit-keyframes ball-scale-ripple-multiple {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 1;
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ball-scale-ripple-multiple {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 1;
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    opacity: 0;
  }
}
.loading .ball-scale-ripple-multiple {
  position: relative;
  -webkit-transform: translateY(-25px);
  transform: translateY(-25px);
}
.loading .ball-scale-ripple-multiple > div:nth-child(0) {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.loading .ball-scale-ripple-multiple > div:nth-child(1) {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
.loading .ball-scale-ripple-multiple > div:nth-child(2) {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
.loading .ball-scale-ripple-multiple > div:nth-child(3) {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
.loading .ball-scale-ripple-multiple > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  top: -2px;
  left: -26px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 2px solid #fff;
  -webkit-animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
  animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
}

.allloaded {
  opacity: 0;
  visibility: hidden;
}

h2 .tit_en {
  font-family: "DIN Condensed";
  font-size: min(5.9523809524vw, 90px);
  font-style: normal;
  font-weight: 700;
  line-height: 1em; /* 100% */
  display: block;
}
@media screen and (max-width: 820px) {
  h2 .tit_en {
    font-size: 64px;
  }
}
h2 .tit_jp {
  font-family: inter;
  font-size: min(2.1164021164vw, 32px);
  font-style: normal;
  font-weight: 700;
  display: block;
  margin-top: -0.4em;
}
@media screen and (max-width: 820px) {
  h2 .tit_jp {
    font-size: 20px;
  }
}

section {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 820px) {
  section {
    padding: 50px 0;
  }
}

.fv {
  width: 100vw;
  min-height: calc(100vh + min(15.873015873vw, 240px));
}
@media screen and (max-width: 820px) {
  .fv {
    min-height: 100vh;
    height: 100vh;
  }
}
.fv_wrapper {
  width: min(42.328042328vw, 640px);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap; /* Safari */
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 10;
}
@media screen and (max-width: 820px) {
  .fv_wrapper {
    width: calc(100% - 100px);
  }
}
.fv h1 {
  aspect-ratio: 6/5;
  width: min(42.328042328vw, 640px);
  background: url(../images/elf_radio_logo.png) no-repeat;
  background-size: contain;
  text-indent: -99999px;
  margin-left: max(-1.9841269841vw, -30px);
}
@media screen and (max-width: 820px) {
  .fv h1 {
    width: calc(100% + 25px);
    margin-left: -25px;
  }
}
.fv .Anm1 {
  -webkit-animation-name: H-beat1;
          animation-name: H-beat1;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s; /*総時間*/
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease; /*動き*/
  -webkit-animation-delay: 2s;
          animation-delay: 2s; /*遅延時間*/
  -webkit-animation-iteration-count: 2;
          animation-iteration-count: 2; /*ループ回数*/
  -webkit-animation-direction: normal;
          animation-direction: normal; /*動きの方向(一方方向)*/
  /*animation-direction: alternate;/*動きの方向(交互反転)*/
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; /*キーフレームの適用*/
  /*animation-play-state: running;/*再生か一時停止*/
}
@-webkit-keyframes H-beat1 {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  3% {
    -webkit-transform: scale(0.9, 0.9);
            transform: scale(0.9, 0.9);
  }
  7% {
    -webkit-transform: scale(1.1, 1.1);
            transform: scale(1.1, 1.1);
  }
  22% {
    -webkit-transform: scale(1.025, 1.025);
            transform: scale(1.025, 1.025);
  }
  42% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@keyframes H-beat1 {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  3% {
    -webkit-transform: scale(0.9, 0.9);
            transform: scale(0.9, 0.9);
  }
  7% {
    -webkit-transform: scale(1.1, 1.1);
            transform: scale(1.1, 1.1);
  }
  22% {
    -webkit-transform: scale(1.025, 1.025);
            transform: scale(1.025, 1.025);
  }
  42% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.fv p {
  text-indent: -99999px;
}
.fv p.onair_date {
  aspect-ratio: 437/74;
  width: min(29.1005291005vw, 440px);
  background: url(../images/fv_onair_date.png) no-repeat;
  background-size: contain;
  margin: min(3.3068783069vw, 50px) auto min(1.9841269841vw, 30px) auto;
}
@media screen and (max-width: 820px) {
  .fv p.onair_date {
    width: calc(100% - 50px);
    margin: 60px 25px 30px 25px;
  }
}
.fv p.onair_pg {
  aspect-ratio: 103/8;
  width: 100%;
  background: url(../images/fv_onair.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 820px) {
  .fv p.onair_pg {
    aspect-ratio: auto;
    background: none;
  }
  .fv p.onair_pg .nekohita {
    display: block;
    width: calc(100% - 40px);
    aspect-ratio: 64/9;
    background: url("../images/nako_logo.png") no-repeat center;
    background-size: contain;
    text-indent: -9999px;
    margin: auto;
  }
  .fv p.onair_pg .start {
    display: block;
    width: calc(100% - 40px);
    aspect-ratio: 285/40;
    background: url("../images/fv_start.png") no-repeat center;
    background-size: contain;
    text-indent: -9999px;
    margin: auto;
  }
}
.fv:before {
  content: "";
  display: block;
  z-index: 5;
  height: min(15.873015873vw, 240px);
  width: 100%;
  background: url("../images/dot_green_repeat_bottom.png") repeat-x bottom;
  background-size: auto 100%;
  position: absolute;
  bottom: max(-15.873015873vw, -240px);
  left: 0;
}
@media screen and (max-width: 820px) {
  .fv:before {
    height: 110px;
    bottom: -110px;
  }
}
.fv:after {
  content: "";
  background: #86E0BF;
  mix-blend-mode: screen;
  width: 100vw;
  height: calc(100vh + min(15.873015873vw, 240px));
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
}
@media screen and (max-width: 820px) {
  .fv:after {
    height: 100vh;
  }
}
.fv svg {
  width: 100vw;
  height: calc(100vh + min(15.873015873vw, 240px));
  mix-blend-mode: screen;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 820px) {
  .fv svg {
    height: 100vh;
  }
}
.fv .swiper {
  width: 100vw;
  height: calc(100vh + min(15.873015873vw, 240px));
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
@media screen and (max-width: 820px) {
  .fv .swiper {
    height: 100vh;
  }
}
.fv .swiper-wrapper {
  height: 100%;
}
.fv .swiper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cast {
  background: #86E0BF;
  min-height: 100vh;
  position: relative;
  z-index: 10;
  padding: min(5.291005291vw, 80px) 0 min(15.873015873vw, 240px);
}
.cast:before {
  content: "";
  display: block;
  z-index: 5;
  height: min(15.873015873vw, 240px);
  width: 100%;
  background: url("../images/dot_white_repeat_bottom.png") repeat-x bottom;
  background-size: auto 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 820px) {
  .cast:before {
    height: 110px;
  }
}
.cast h2 {
  width: min(18.8492063492vw, 285px);
  height: min(10.582010582vw, 160px);
  text-indent: -9999px;
  background: url("../images/h2_cast.png") no-repeat;
  background-size: contain;
  display: block;
  margin: auto;
}
@media screen and (max-width: 820px) {
  .cast h2 {
    width: 142px;
    height: 80px;
  }
}
.cast h2.director {
  width: min(28.4391534392vw, 430px);
  height: min(10.582010582vw, 160px);
  background: url("../images/h2_director.png") no-repeat;
  background-size: contain;
}
@media screen and (max-width: 820px) {
  .cast h2.director {
    width: 213px;
    height: 80px;
  }
}
.cast_wrapper {
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap; /* Safari */
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  padding: min(5.291005291vw, 80px) 0;
}
.cast_cnt {
  width: 16.6666666667%;
}
@media screen and (max-width: 820px) {
  .cast_cnt {
    width: 33.3333333333%;
  }
}
.cast_cnt a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap; /* Safari */
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 820px) {
  .cast_cnt a {
    gap: 10px;
    padding-bottom: 10px;
  }
}
.cast_cnt a figure {
  width: 100%;
  aspect-ratio: 6/9;
  overflow: hidden;
  padding: 2px 1px;
  background: #333333;
  border: 1px solid #333333;
  border-top: 2px solid #333333;
  border-bottom: 2px solid #333333;
  position: relative;
}
.cast_cnt a figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: cubic-bezier(0.075, 0.82, 0.165, 1) all 0.3s;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) all 0.3s;
}
.cast_cnt a figure.director {
  border: 2px solid #333333;
}
.cast_cnt a:hover figure img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: cubic-bezier(0.075, 0.82, 0.165, 1) all 0.3s;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) all 0.3s;
}
.cast_cnt a span {
  display: block;
  text-align: center;
}
.cast_cnt a .name_wrap {
  display: inline-block;
  background: #FFF;
  border-radius: 10px;
  border: 2.5px solid #333333;
  padding: 10px;
  width: 80%;
  margin: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-shadow: 0 0 0 2px #FFF;
          box-shadow: 0 0 0 2px #FFF;
}
@media screen and (max-width: 820px) {
  .cast_cnt a .name_wrap {
    width: 90%;
  }
}
.cast_cnt a .charactor {
  font-size: min(1.5873015873vw, 24px);
  color: #333333;
  border-bottom: 4px solid #86E0BF;
  display: inline-block;
  margin-bottom: 5px;
}
@media screen and (max-width: 820px) {
  .cast_cnt a .charactor {
    font-size: 14px;
  }
}
.cast_cnt a .actor {
  color: #FF5E00;
}
@media screen and (max-width: 820px) {
  .cast_cnt a .actor {
    font-size: 14px;
  }
}
.cast_cnt a .actor em {
  font-size: 10px;
  font-style: normal;
}

.intro {
  padding: min(5.291005291vw, 80px) 0 min(21.164021164vw, 320px);
  position: relative;
  background: #FFF;
}
@media screen and (max-width: 820px) {
  .intro {
    padding: 50px 0 160px;
  }
}
.intro_wrapper {
  width: min(82.0105820106vw, 1240px);
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap; /* Safari */
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: min(5.291005291vw, 80px);
}
@media screen and (max-width: 820px) {
  .intro_wrapper {
    width: calc(100% - 40px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.intro h2 {
  width: min(20.5026455026vw, 310px);
  height: min(11.2433862434vw, 170px);
  text-indent: -9999px;
  background: url("../images/h2_intro.png") no-repeat;
  background-size: contain;
}
@media screen and (max-width: 820px) {
  .intro h2 {
    width: 155px;
    height: 80px;
    margin: auto;
  }
}
.intro_txt {
  width: min(56.2169312169vw, 850px);
}
@media screen and (max-width: 820px) {
  .intro_txt {
    width: 100%;
  }
}
.intro_txt p {
  font-size: min(1.5873015873vw, 24px);
  line-height: 200%;
}
@media screen and (max-width: 820px) {
  .intro_txt p {
    font-size: 13px;
  }
}
.intro_txt:before, .intro_txt:after {
  width: 100%;
  height: min(4.9603174603vw, 75px);
  position: relative;
  content: "";
  display: block;
  -webkit-animation: fall 4.5s infinite linear;
          animation: fall 4.5s infinite linear;
}
@media screen and (max-width: 820px) {
  .intro_txt:before, .intro_txt:after {
    height: 30px;
  }
}
.intro_txt:before {
  background: url("../images/denpa_01.svg") repeat-x;
  background-size: contain;
  margin-bottom: min(3.3068783069vw, 50px);
}
@media screen and (max-width: 820px) {
  .intro_txt:before {
    margin-bottom: 30px;
  }
}
.intro_txt:after {
  background: url("../images/denpa_02.svg") repeat-x;
  background-size: contain;
  margin-top: min(3.3068783069vw, 50px);
}
@media screen and (max-width: 820px) {
  .intro_txt:after {
    margin-top: 30px;
  }
}
.intro:before {
  content: "";
  display: block;
  z-index: 5;
  height: min(15.873015873vw, 240px);
  width: 100%;
  background: url("../images/dot_green_repeat_bottom.png") repeat-x bottom;
  background-size: auto 100%;
  position: absolute;
  bottom: -1px;
  left: 0;
}
@media screen and (max-width: 820px) {
  .intro:before {
    height: 110px;
  }
}

@-webkit-keyframes fall {
  0% {
    background-position: 0 0;
  } /* 背景画像の位置を左上に設定 */
  100% {
    background-position: min(97.8835978836vw, 1480px) 0;
  } /* 背景画像の位置を左上から700px右下に設定 */
}

@keyframes fall {
  0% {
    background-position: 0 0;
  } /* 背景画像の位置を左上に設定 */
  100% {
    background-position: min(97.8835978836vw, 1480px) 0;
  } /* 背景画像の位置を左上から700px右下に設定 */
}
.about {
  background: #86E0BF;
  min-height: 100vh;
  position: relative;
  padding: min(5.291005291vw, 80px) 0 min(15.873015873vw, 240px);
}
@media screen and (max-width: 820px) {
  .about {
    padding: 50px 0 160px;
  }
}
.about h2 {
  width: min(52.9100529101vw, 800px);
  height: min(11.2433862434vw, 170px);
  text-indent: -9999px;
  background: url("../images/h2_about.png") no-repeat;
  background-size: contain;
  margin: auto;
}
@media screen and (max-width: 820px) {
  .about h2 {
    width: calc(100% - 40px);
    height: 80px;
    margin: auto;
    background-position: center;
  }
}
.about_wrapper {
  width: min(82.0105820106vw, 1240px);
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap; /* Safari */
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: min(5.291005291vw, 80px);
  padding: min(5.291005291vw, 80px) 0;
}
@media screen and (max-width: 820px) {
  .about_wrapper {
    width: calc(100% - 40px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
    padding: 50px 0;
  }
}
.about_wrapper figure {
  width: min(20.5026455026vw, 310px);
}
@media screen and (max-width: 820px) {
  .about_wrapper figure {
    width: calc(100% - 100px);
    margin: auto;
  }
}
.about_wrapper figure img {
  width: 100%;
  margin-bottom: min(3.3068783069vw, 50px);
}
.about_wrapper figure figcaption {
  text-align: center;
  font-size: min(0.8597883598vw, 13px);
}
@media screen and (max-width: 820px) {
  .about_wrapper figure figcaption {
    font-size: 13px;
  }
}
.about_txt {
  width: min(56.2169312169vw, 850px);
}
@media screen and (max-width: 820px) {
  .about_txt {
    width: 100%;
  }
}
.about_txt h3 {
  font-size: min(2.1164021164vw, 32px);
  font-weight: 700;
  line-height: 150%;
  color: #FF5E00;
  margin-bottom: min(3.3068783069vw, 50px);
}
@media screen and (max-width: 820px) {
  .about_txt h3 {
    font-size: 17px;
    margin-bottom: 40px;
  }
}
.about_txt p {
  font-size: min(1.5873015873vw, 24px);
  line-height: 200%;
}
@media screen and (max-width: 820px) {
  .about_txt p {
    font-size: 14px;
  }
}
.about_txt:before, .about_txt:after {
  width: 100%;
  height: min(4.9603174603vw, 75px);
  position: relative;
  content: "";
  display: block;
  -webkit-animation: fall 4.5s infinite linear;
          animation: fall 4.5s infinite linear;
}
@media screen and (max-width: 820px) {
  .about_txt:before, .about_txt:after {
    height: 30px;
  }
}
.about_txt:before {
  background: url("../images/denpa_01.svg") repeat-x;
  background-size: contain;
  margin-bottom: min(3.3068783069vw, 50px);
}
.about_txt:after {
  background: url("../images/denpa_02.svg") repeat-x;
  background-size: contain;
  margin-top: min(3.3068783069vw, 50px);
}
.about:before {
  content: "";
  display: block;
  z-index: 5;
  height: min(15.873015873vw, 240px);
  width: 100%;
  background: url("../images/dot_white_repeat_bottom.png") repeat-x bottom;
  background-size: auto 100%;
  position: absolute;
  bottom: -1px;
  left: 0;
}
@media screen and (max-width: 820px) {
  .about:before {
    height: 110px;
  }
}

.extra {
  padding: min(5.291005291vw, 80px) 0 min(3.3068783069vw, 50px);
}
@media screen and (max-width: 820px) {
  .extra {
    padding: 50px 0 30px;
  }
}
.extra h2 {
  text-align: center;
  font-size: min(2.1164021164vw, 32px);
}
.extra .official_bnr {
  width: min(67.4603174603vw, 1020px);
  margin: min(1.9841269841vw, 30px) auto;
}
.extra .official_bnr a {
  width: 100%;
  background: #888;
  display: block;
  padding: 0;
}
.extra .official_bnr a img {
  width: inherit;
  -webkit-transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s all;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s all;
  vertical-align: top;
}
.extra .official_bnr a:hover img {
  mix-blend-mode: overlay;
  -webkit-transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s all;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s all;
}

footer {
  padding: min(1.9841269841vw, 30px) 0;
}
@media screen and (max-width: 820px) {
  footer {
    padding: 20px 0;
  }
}
footer p {
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 820px) {
  footer p {
    font-size: 13px;
  }
}

.pink {
  color: #E85F9D;
}

.red {
  color: #E73828;
}

.orange {
  color: #FF5E00;
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
  -webkit-animation: zoomUp 7s linear 0s normal both;
          animation: zoomUp 7s linear 0s normal both;
}

.swiper-slide {
  height: 100%;
}

.swiper-img {
  height: 100%;
}

.swiper-slide img {
  height: 100%;
  width: 100%;
}/*# sourceMappingURL=teaser.css.map */