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

header {
  width: 100%;
  height: 90px;
  position: fixed;
  z-index: 1001;
  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-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  gap: min(1.9841269841vw, 30px);
}
@media screen and (max-width: 820px) {
  header {
    height: 60px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
    gap: 10px;
    padding: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    z-index: 1000;
  }
}
header nav.header {
  width: min(76.7195767196vw, 1160px);
  height: min(3.9682539683vw, 60px);
  border-radius: min(1.9841269841vw, 30px);
  background: #FFF;
  border: 3px solid #333333;
  -webkit-box-shadow: 0 0 0 3px #FFF;
          box-shadow: 0 0 0 3px #FFF;
}
@media screen and (max-width: 820px) {
  header nav.header {
    display: none;
  }
  header nav.header.active {
    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;
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: 100dvh;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    padding: 20px;
    border: none;
    z-index: 999;
  }
}
header nav.header ul {
  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;
}
@media screen and (max-width: 820px) {
  header nav.header ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
header nav.header ul li {
  height: min(3.5714285714vw, 54px);
  line-height: min(3.5714285714vw, 54px);
  font-size: min(1.455026455vw, 22px);
  font-weight: 700;
}
@media screen and (max-width: 820px) {
  header nav.header ul li {
    font-size: 21px;
    height: auto;
    line-height: 24px;
  }
}
header nav.header ul li a {
  color: #333333;
  text-decoration: none;
  padding: 0;
  margin: 0 1em;
  position: relative;
}
header nav.header ul li a:after {
  width: 0;
  height: 4px;
  border-radius: 2px;
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: #86E0BF;
  -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;
}
header nav.header ul li a:hover {
  color: #86E0BF;
}
header nav.header ul li a:hover:after {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: #86E0BF;
}
@media screen and (max-width: 820px) {
  header nav.header ul li a {
    display: inline-block;
    padding: 0 0 10px;
  }
}
header .btn_x {
  width: min(3.9682539683vw, 60px);
  height: min(3.9682539683vw, 60px);
  border-radius: min(1.9841269841vw, 30px);
  background: #333333;
  position: relative;
  border: 3px solid #FFF;
}
@media screen and (max-width: 820px) {
  header .btn_x {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background: #333333;
    position: relative;
    border: 1px solid #FFF;
    z-index: 1000;
  }
}
header .btn_x:after {
  font-size: 24px;
  color: #FFF;
  font-family: "icomoon";
  content: "\e91b";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
}

.globalBtn {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  background: #86E0BF;
  padding: 17px 14px;
  cursor: pointer;
  display: none;
  border: 1px solid #FFF;
}
@media screen and (max-width: 820px) {
  .globalBtn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 1000;
  }
}
.globalBtn span {
  width: 100%;
  height: 2px;
  display: block;
  background: #FFF;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-radius: 5px;
}
.globalBtn span:nth-of-type(2) {
  width: 100%;
}
.globalBtn.active span {
  background-color: white;
}
.globalBtn.active span:nth-of-type(1) {
  -webkit-transform: translateY(6px) rotate(-135deg);
          transform: translateY(6px) rotate(-135deg);
}
.globalBtn.active span:nth-of-type(2) {
  opacity: 0;
}
.globalBtn.active span:nth-of-type(3) {
  -webkit-transform: translateY(-4px) rotate(135deg) scaleX(1);
          transform: translateY(-4px) rotate(135deg) scaleX(1);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.pararaxArea {
  position: relative;
  height: 100svh;
  width: 100vw;
  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;
  overflow: hidden;
}
.pararaxArea .pararaxItem {
  position: absolute;
  background: url("../images/kv_bg.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-transition: -webkit-transform 0.6s linear 0.008s;
  transition: -webkit-transform 0.6s linear 0.008s;
  transition: transform 0.6s linear 0.008s;
  transition: transform 0.6s linear 0.008s, -webkit-transform 0.6s linear 0.008s;
  width: calc(100% + 180px);
  height: calc(100% + 180px);
}
@media screen and (max-width: 820px) {
  .pararaxArea .pararaxItem {
    width: calc(100vw + 20px);
    height: 100svh;
  }
}
.pararaxArea .kv_main {
  position: absolute;
  z-index: 100;
  width: 50%;
  height: 100%;
  left: 0;
  bottom: 0;
  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;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
          align-items: flex-end;
}
@media screen and (max-width: 820px) {
  .pararaxArea .kv_main {
    width: 100%;
  }
}
.pararaxArea .kv_main img {
  height: calc(100vh - 80px);
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}
@media screen and (max-width: 820px) {
  .pararaxArea .kv_main img {
    height: 50vh;
  }
}

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: 100svh;
}
@media screen and (max-width: 820px) {
  .fv {
    min-height: 100svh;
    height: 100svh;
    padding: 0;
  }
}
.fv_wrapper {
  width: min(42.328042328vw, 640px);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(5%, -50%);
          transform: translate(5%, -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-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
          align-items: center;
  -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% - 160px);
    top: 30px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
.fv h1 {
  aspect-ratio: 6/5;
  width: min(35.7142857143vw, 540px);
  background: url(../images/elf_radio_logo.png) no-repeat;
  background-position: center;
  background-size: contain;
  text-indent: -99999px;
  max-height: 35vh;
}
@media screen and (max-width: 820px) {
  .fv h1 {
    width: calc(100% + 25px);
    max-height: 45svh;
    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;
}
@media screen and (max-width: 820px) {
  .fv p {
    display: none;
  }
}
.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;
  max-height: min(4.2989417989vw, 65px);
}
@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%;
  max-height: min(2.9761904762vw, 45px);
  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 dl.onair_time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap; /* Safari */
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-indent: 0;
  line-height: 1.5em;
  font-size: min(1.455026455vw, 22px);
  margin-top: min(1.9841269841vw, 30px);
  font-weight: 700;
  text-shadow: 2px 2px 0 #FFF, -2px -2px 0 #FFF, -2px 2px 0 #FFF, 2px -2px 0 #FFF, 0px 2px 0 #FFF, -2px 0 #FFF, -2px 0 0 #FFF, 2px 0 0 #FFF;
}
@media screen and (max-width: 820px) {
  .fv dl.onair_time {
    font-size: 18px;
    margin-top: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    display: none;
  }
}
.fv dl dt {
  width: 5em;
  color: #E73828;
}
@media screen and (max-width: 820px) {
  .fv dl dt {
    width: 80%;
    text-align: center;
    border-bottom: 2px dashed #333333;
    padding-bottom: 0.5em;
  }
}
.fv dl dd {
  width: calc(100% - 5em);
  padding-left: 1em;
  border-left: 2px solid #333333;
}
.fv dl dd br.spbr {
  display: none;
}
@media screen and (max-width: 820px) {
  .fv dl dd {
    width: 100%;
    border: none;
    padding: 0.5em 0 0 0;
    text-align: center;
  }
  .fv dl dd br.spbr {
    display: block;
  }
}
.fv dl dd .pink {
  color: #E85F9D;
}
.fv dl dd .orange {
  color: #FF5E00;
}
.fv dl dd .green {
  color: darkgreen;
}
.fv:before {
  content: "";
  display: block;
  z-index: 5;
  height: min(15.873015873vw, 240px);
  width: 100%;
  background: url("../images/kv_bottom.png") no-repeat top;
  background-size: 100% auto;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 820px) {
  .fv:before {
    height: 140px;
    bottom: 0;
  }
}
.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;
}

.onair {
  padding: min(5.291005291vw, 80px) 0 min(21.164021164vw, 320px) 0;
  position: relative;
  font-weight: 700;
  font-size: min(1.3888888889vw, 21px);
}
@media screen and (max-width: 820px) {
  .onair {
    display: none;
  }
}
.onair_wrapper {
  width: min(82.0105820106vw, 1240px);
  margin: 0 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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(2.6455026455vw, 40px);
}
@media screen and (max-width: 820px) {
  .onair_wrapper {
    width: calc(100% - 40px);
    gap: 20px;
  }
}
.onair_wrapper p {
  font-size: min(2.1164021164vw, 32px);
  text-align: center;
}
@media screen and (max-width: 820px) {
  .onair_wrapper p {
    font-size: 15px;
  }
}
.onair_time {
  font-size: min(1.3888888889vw, 21px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap; /* Safari */
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.onair_time dt {
  width: min(9.9206349206vw, 150px);
  padding: min(1.6534391534vw, 25px);
}
.onair_time dd {
  width: min(49.6031746032vw, 750px);
  padding: min(1.6534391534vw, 25px);
}
.onair:after {
  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;
}

.sp_fv {
  display: none;
}
@media screen and (max-width: 820px) {
  .sp_fv {
    display: block;
    position: relative;
    padding: 20px 0 130px;
  }
  .sp_fv:after {
    content: "";
    display: block;
    z-index: 5;
    height: 110px;
    width: 100%;
    background: url("../images/dot_green_repeat_bottom.png") repeat-x bottom;
    background-size: auto 100%;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .sp_fv p {
    text-indent: -99999px;
  }
  .sp_fv p.onair_date {
    width: calc(100% - 140px);
    margin: 0 auto 30px auto;
    aspect-ratio: 437/74;
    background: url(../images/fv_onair_date.png) no-repeat;
    background-size: contain;
  }
  .sp_fv p.onair_pg {
    width: 100%;
    background-size: contain;
    aspect-ratio: auto;
    background: none;
  }
  .sp_fv p.onair_pg .nekohita {
    display: block;
    width: calc(100% - 100px);
    aspect-ratio: 64/9;
    background: url("../images/nako_logo.png") no-repeat center;
    background-size: contain;
    text-indent: -9999px;
    margin: auto;
  }
  .sp_fv p.onair_pg .start {
    display: block;
    width: calc(100% - 100px);
    aspect-ratio: 285/40;
    background: url("../images/fv_start.png") no-repeat center;
    background-size: contain;
    text-indent: -9999px;
    margin: auto;
  }
  .sp_fv dl.onair_time {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; /* Safari */
    display: -webkit-flex;
    -webkit-flex-wrap: wrap; /* Safari */
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-indent: 0;
    line-height: 1.5em;
    font-size: 18px;
    margin: 20px 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    font-weight: 700;
    text-shadow: 2px 2px 0 #FFF, -2px -2px 0 #FFF, -2px 2px 0 #FFF, 2px -2px 0 #FFF, 0px 2px 0 #FFF, -2px 0 #FFF, -2px 0 0 #FFF, 2px 0 0 #FFF;
  }
  .sp_fv dl dt {
    width: 80%;
    text-align: center;
    border-bottom: 2px dashed #333333;
    padding-bottom: 0.5em;
    color: #E73828;
  }
  .sp_fv dl dd {
    width: 100%;
    border: none;
    padding: 0.5em 0 0 0;
    text-align: center;
  }
  .sp_fv dl dd br.spbr {
    display: block;
  }
  .sp_fv dl dd .pink {
    color: #E85F9D;
  }
  .sp_fv dl dd .orange {
    color: #FF5E00;
  }
  .sp_fv dl dd .green {
    color: darkgreen;
  }
}

.tver {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
          align-items: center;
  gap: min(1.3227513228vw, 20px);
}
@media screen and (max-width: 820px) {
  .tver {
    gap: 24px;
  }
}
.tver .bnr {
  display: block;
  border: 2px solid #EFEFEF;
  width: min(19.8412698413vw, 300px);
}
@media screen and (max-width: 820px) {
  .tver .bnr {
    width: 200px;
  }
}
.tver .bnr:hover {
  border: 2px solid #FF5E00;
}
.tver .bnr img {
  width: 100%;
}
.tver p {
  text-indent: 0 !important;
}

.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 h2.narration {
  width: min(27.7777777778vw, 420px);
  height: min(10.582010582vw, 160px);
  background: url("../images/h2_narration.png") no-repeat;
  background-size: contain;
}
@media screen and (max-width: 820px) {
  .cast h2.narration {
    width: 210px;
    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;
}
.cast_detail {
  padding: min(3.3068783069vw, 50px);
}
@media screen and (max-width: 820px) {
  .cast_detail {
    padding: 20px;
  }
}
.cast_detail figure {
  background: #FFF;
  border-radius: min(1.9841269841vw, 30px);
  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-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
          align-items: center;
  overflow: hidden;
  max-height: calc(100vh - min(6.6137566138vw, 100px));
}
@media screen and (max-width: 820px) {
  .cast_detail figure {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.cast_detail figure .image-switcher {
  width: 50%;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 820px) {
  .cast_detail figure .image-switcher {
    width: 100%;
  }
}
.cast_detail figure .main-image {
  width: 100%;
  height: 100%;
}
.cast_detail figure .main-image img {
  width: 100%;
  max-height: calc(100vh - min(6.6137566138vw, 100px));
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
@media screen and (max-width: 820px) {
  .cast_detail figure .main-image img {
    max-height: calc(50svh - 20px);
  }
}
.cast_detail figure .main-image img.fade-out {
  opacity: 0;
}
.cast_detail figure .thumb_wrap {
  width: 25%;
  position: absolute;
  right: 0;
  bottom: 0;
  border-top: 2px solid #FFF;
  border-left: 2px solid #FFF;
}
.cast_detail figure .thumb_wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cast_detail figure figcaption {
  width: 50%;
  padding: min(3.3068783069vw, 50px);
  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;
  gap: min(3.3068783069vw, 50px);
}
@media screen and (max-width: 820px) {
  .cast_detail figure figcaption {
    width: 100%;
    gap: 20px;
    padding: 20px;
  }
}
.cast_detail figure figcaption h3 {
  font-size: min(2.1164021164vw, 32px);
}
@media screen and (max-width: 820px) {
  .cast_detail figure figcaption h3 {
    font-size: 18px;
  }
}
.cast_detail figure figcaption h3 span {
  position: relative;
  display: inline-block;
}
.cast_detail figure figcaption h3 span:after {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  display: block;
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  background: #86E0BF;
  z-index: 2;
}
.cast_detail figure figcaption p {
  font-size: min(1.5873015873vw, 24px);
  line-height: 1.8em;
}
@media screen and (max-width: 820px) {
  .cast_detail figure figcaption p {
    font-size: 15px;
  }
}

#yokohama_elf .image-switcher {
  background: url("../images/bg_yokohama.gif") no-repeat;
  background-size: cover;
  background-position: bottom center;
}
#kawasaki_ningen .image-switcher {
  background: url("../images/bg_kawasaki.gif") no-repeat;
  background-size: cover;
  background-position: bottom center;
}
#yokosuka_elf .image-switcher {
  background: url("../images/bg_yokosuka.gif") no-repeat;
  background-size: cover;
  background-position: bottom center;
}
#chigasaki_elf .image-switcher {
  background: url("../images/bg_chigasaki.gif") no-repeat;
  background-size: cover;
  background-position: bottom center;
}
#sagamihara_elf .image-switcher {
  background: url("../images/bg_sagamihara.gif") no-repeat;
  background-size: cover;
  background-position: bottom center;
}
#machida_oak .image-switcher {
  background: url("../images/bg_machida.gif") no-repeat;
  background-size: cover;
  background-position: bottom center;
}

.staff_wrapper {
  width: 100%;
  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: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin: 0 auto;
}
.staff_cnt {
  width: 50%;
}
@media screen and (max-width: 820px) {
  .staff_cnt {
    width: 100%;
  }
}
.staff_cnt .cast_wrapper {
  width: 100%;
}
.staff_cnt .cast_cnt {
  width: 33.3333333333%;
}

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

.info {
  background: #86E0BF;
  min-height: 100vh;
  position: relative;
  padding: min(5.291005291vw, 80px) 0 min(15.873015873vw, 240px);
  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;
  gap: min(5.291005291vw, 80px);
}
@media screen and (max-width: 820px) {
  .info {
    padding: 50px 0 160px;
  }
}
.info h2 {
  width: min(38.6904761905vw, 585px);
  height: min(11.2433862434vw, 170px);
  text-indent: -9999px;
  background: url("../images/h2_info.png") no-repeat;
  background-size: contain;
  margin: auto;
}
@media screen and (max-width: 820px) {
  .info h2 {
    width: calc(100% - 40px);
    height: 80px;
    margin: auto;
    background-position: center;
  }
}
.info .unit {
  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;
  gap: min(5.291005291vw, 80px);
  padding: min(5.291005291vw, 80px) 0 0 0;
}
@media screen and (max-width: 820px) {
  .info .unit {
    padding: 50px 0 0;
  }
}
.info .unit h2 {
  width: min(53.2407407407vw, 805px);
  height: min(11.2433862434vw, 170px);
  text-indent: -9999px;
  background: url("../images/h2_unit.png") no-repeat;
  background-size: contain;
  margin: auto;
}
@media screen and (max-width: 820px) {
  .info .unit h2 {
    width: calc(100% - 40px);
    height: 80px;
    margin: auto;
    background-position: center;
  }
}
.info .event {
  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;
  gap: min(5.291005291vw, 80px);
  padding: min(5.291005291vw, 80px) 0 0 0;
}
@media screen and (max-width: 820px) {
  .info .event {
    padding: 50px 0 0;
  }
}
.info .event h2 {
  width: min(36.3756613757vw, 550px);
  height: min(11.2433862434vw, 170px);
  text-indent: -9999px;
  background: url("../images/h2_info.png") no-repeat;
  background-size: contain;
  margin: auto;
}
@media screen and (max-width: 820px) {
  .info .event h2 {
    width: calc(100% - 40px);
    height: 80px;
    margin: auto;
    background-position: center;
  }
}
.info_wrapper {
  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;
  gap: min(3.3068783069vw, 50px);
}
@media screen and (max-width: 820px) {
  .info_wrapper {
    gap: 30px;
  }
}
.info_cnt {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(3.3068783069vw, 50px);
  padding: min(3.3068783069vw, 50px);
  background: #FFF;
  border-radius: min(1.9841269841vw, 30px);
  border: 3px solid #333333;
  -webkit-box-shadow: 0 0 0 3px #FFF;
          box-shadow: 0 0 0 3px #FFF;
}
@media screen and (max-width: 820px) {
  .info_cnt {
    width: calc(100% - 40px);
    padding: 20px;
    border: 2px solid #333333;
    -webkit-box-shadow: 0 0 0 2px #FFF;
            box-shadow: 0 0 0 2px #FFF;
    gap: 30px;
  }
}
.info_cnt h3 {
  font-size: min(2.1164021164vw, 32px);
  position: relative;
  padding: 0 0 min(0.6613756614vw, 10px);
}
@media screen and (max-width: 820px) {
  .info_cnt h3 {
    font-size: 21px;
  }
}
.info_cnt h3:after {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  display: block;
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  background: #86E0BF;
  z-index: 2;
}
.info_cnt h4 {
  font-size: min(1.3888888889vw, 21px);
  position: relative;
  padding: 0 0 min(0.6613756614vw, 10px);
}
@media screen and (max-width: 820px) {
  .info_cnt h4 {
    font-size: 18px;
    padding: 0 0 10px;
  }
}
.info_cnt p {
  font-size: min(1.5873015873vw, 24px);
  line-height: 1.8em;
}
@media screen and (max-width: 820px) {
  .info_cnt p {
    font-size: 16px;
  }
}
.info_cnt .figure_wrap {
  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(3.3068783069vw, 50px);
}
@media screen and (max-width: 820px) {
  .info_cnt .figure_wrap {
    gap: 30px;
  }
}
.info_cnt figure {
  width: calc(50% - min(1.6534391534vw, 25px));
  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;
  gap: min(1.9841269841vw, 30px);
}
@media screen and (max-width: 820px) {
  .info_cnt figure {
    width: 100%;
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.info_cnt figure .thumb {
  width: 35%;
  width: 100%;
}
@media screen and (max-width: 820px) {
  .info_cnt figure .thumb {
    width: 100%;
  }
}
.info_cnt figure .thumb img {
  width: 100%;
  border: 2px solid #333333;
}
.info_cnt figure figcaption {
  width: calc(65% - 50px);
  width: 100%;
  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;
  gap: min(1.3227513228vw, 20px);
}
@media screen and (max-width: 820px) {
  .info_cnt figure figcaption {
    gap: 20px;
    width: 100%;
  }
}
.info_cnt figure figcaption h4 {
  font-size: min(1.5873015873vw, 24px);
  line-height: 1.4em;
}
@media screen and (max-width: 820px) {
  .info_cnt figure figcaption h4 {
    font-size: 18px;
  }
}
.info_cnt figure figcaption h4 span {
  display: inline-block;
  position: relative;
  z-index: 3;
}
.info_cnt figure figcaption h4 span:after {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  display: block;
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  background: #86E0BF;
  z-index: 2;
}
.info_cnt figure figcaption p {
  font-size: min(1.1904761905vw, 18px);
  line-height: 1.8em;
}
@media screen and (max-width: 820px) {
  .info_cnt figure figcaption p {
    font-size: 14px;
  }
}
.info_cnt dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap; /* Safari */
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-radius: 10px;
  overflow: hidden;
  font-size: min(1.1904761905vw, 18px);
}
@media screen and (max-width: 820px) {
  .info_cnt dl {
    font-size: 14px;
  }
}
.info_cnt dl dt {
  width: 25%;
  padding: 0.75em 1em;
  background: #86E0BF;
  border: 1px solid #FFF;
  line-height: 1.6em;
}
@media screen and (max-width: 820px) {
  .info_cnt dl dt {
    width: 40%;
  }
}
.info_cnt dl dd {
  width: 75%;
  padding: 0.75em 1em;
  background: #EFEFEF;
  border: 1px solid #FFF;
  line-height: 1.6em;
}
@media screen and (max-width: 820px) {
  .info_cnt dl dd {
    width: 60%;
  }
}

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=index.css.map */