@charset "UTF-8";
/* CSS INFORMATION =====================================================
File name : base.css
Description : 共通
===================================================================== */
/* ========================================================
    base
======================================================== */
* {
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: 1.8;
  box-sizing: border-box;
}

img {
  width: 100%;
  vertical-align: bottom;
  border: none;
}

a {
  text-decoration: none;
  word-break: break-all;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.7;
  }
}

dt {
  font-weight: 400;
}

em {
  font-style: normal;
}

.sp {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: inline-block;
  }
}

.color_blue {
  color: #005fcc;
}
.color_yellow {
  color: #ffff32;
}

.text_align_left {
  text-align: left;
}
.text_align_center {
  text-align: center;
}
.text_align_right {
  text-align: right;
}
.text_indent {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}

.btn01 {
  width: 60rem;
  aspect-ratio: 600/112;
}
@media screen and (min-width: 768px) {
  .btn01 {
    width: 40rem;
    aspect-ratio: 400/72;
  }
}
.btn01 > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  border-radius: 5.6rem;
  background-color: #005fcc;
}
@media screen and (min-width: 768px) {
  .btn01 > a {
    border-radius: 3.6rem;
  }
}
@media screen and (min-width: 768px) {
  .btn01 > a:hover {
    background-color: #ffff32;
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .btn01 > a:hover::before {
    background-color: #005fcc;
  }
}
@media screen and (min-width: 768px) {
  .btn01 > a:hover > span {
    color: #005fcc;
  }
}
.btn01 > a::before {
  content: "";
  position: absolute;
  right: 4rem;
  top: 50%;
  display: block;
  width: 4rem;
  aspect-ratio: 40/34;
  -webkit-mask-image: url(../assets/images/common/icon_arrow.svg);
          mask-image: url(../assets/images/common/icon_arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  background-color: #ffffff;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .btn01 > a::before {
    width: 3rem;
  }
}
.btn01 > a > span {
  display: inline-block;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 3.6rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .btn01 > a > span {
    font-size: 2.4rem;
  }
}

/* ========================================================
    layout
======================================================== */
html {
  font-size: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 10px;
  }
}

body {
  width: 100%;
  color: #2a2b2e;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 2rem;
  }
}

.wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.main {
  position: relative;
  width: 100%;
  padding-bottom: 85.3333333333%;
}
@media screen and (min-width: 768px) {
  .main {
    padding-bottom: 53.125%;
  }
}
.main::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(245, 237, 237, 0.18) 0%, rgba(255, 217, 172, 0.18) 32%, rgba(254, 189, 185, 0.18) 55%, rgba(197, 172, 255, 0.18) 81%, rgba(150, 204, 255, 0.18) 97%, rgba(150, 204, 255, 0.18) 100%);
  z-index: -5;
}
.main::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  aspect-ratio: 750/700;
  background-image: url(../assets/images/common/common_bg01_sp.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 100%;
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .main::after {
    aspect-ratio: 1920/1200;
    background-image: url(../assets/images/common/common_bg01_pc.png);
  }
}
.main .common_bg02 {
  content: "";
  position: absolute;
  right: 0;
  top: 120rem;
  display: block;
  width: 63rem;
  aspect-ratio: 1025/445;
  background-image: url(../assets/images/common/common_bg02.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  z-index: -3;
}
@media screen and (min-width: 768px) {
  .main .common_bg02 {
    top: 80rem;
    width: 102.5rem;
  }
}
.main .common_bg03 {
  content: "";
  position: absolute;
  left: 0;
  top: 340rem;
  display: block;
  width: 35.8rem;
  aspect-ratio: 358/234;
  background-image: url(../assets/images/common/common_bg03.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  z-index: -3;
}
@media screen and (min-width: 768px) {
  .main .common_bg03 {
    top: 160rem;
  }
}
.main .common_bg04 {
  content: "";
  position: absolute;
  right: 0;
  top: 560rem;
  display: block;
  width: 43rem;
  aspect-ratio: 506/157;
  background-image: url(../assets/images/common/common_bg04.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  z-index: -3;
}
@media screen and (min-width: 768px) {
  .main .common_bg04 {
    top: 220rem;
    width: 50.6rem;
  }
}
.main .common_bg05 {
  content: "";
  position: absolute;
  left: 0;
  top: 680rem;
  display: block;
  width: 47rem;
  aspect-ratio: 949/383;
  background-image: url(../assets/images/common/common_bg05.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  z-index: -3;
}
@media screen and (min-width: 768px) {
  .main .common_bg05 {
    top: 260rem;
    width: 94.9rem;
  }
}

.inner {
  position: relative;
  width: 100%;
  max-width: 1740px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* ========================================================
    header
======================================================== */
.header {
  position: relative;
  width: 100%;
}
.header .mv {
  position: relative;
  width: 100%;
}
.header .mv::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../assets/images/common/mv_bg01_sp.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .header .mv::before {
    background-image: url(../assets/images/common/mv_bg01_pc.jpg);
    background-size: auto 100%;
  }
}
@media screen and (min-width: 1920px) {
  .header .mv::before {
    background-size: 100% 100%;
  }
}
.header .mv_ttl {
  position: relative;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
}
.header .mv_ttl > a {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header .mv_ttl > a:hover {
    opacity: 1;
  }
}
.header .sns {
  position: relative;
  width: 100%;
  height: auto;
  padding: 1.6rem 0;
}
@media screen and (min-width: 768px) {
  .header .sns {
    position: absolute;
    right: 0;
    top: 0;
    width: 6.3492063492vw;
    height: 100%;
    padding: 0;
    border-left: 1px solid #ffffff;
  }
}
@media screen and (min-width: 1260px) {
  .header .sns {
    width: 8rem;
  }
}
.header .sns::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #005fcc;
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .header .sns::before {
    content: none;
  }
}
.header .sns_list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .header .sns_list {
    flex-direction: column;
  }
}
.header .sns_list > dt {
  width: auto;
}
.header .sns_list > dt > span {
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .header .sns_list > dt > span {
    font-size: 1.2698412698vw;
    writing-mode: vertical-rl;
  }
}
@media screen and (min-width: 1260px) {
  .header .sns_list > dt > span {
    font-size: 1.6rem;
  }
}
.header .sns_list > dd {
  width: auto;
  margin: 0 0 0 4rem;
}
@media screen and (min-width: 768px) {
  .header .sns_list > dd {
    margin: 0;
  }
}
.header .sns_list > dd > ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  width: auto;
}
@media screen and (min-width: 768px) {
  .header .sns_list > dd > ul {
    flex-direction: column;
  }
}
.header .sns_list > dd > ul > li {
  width: 7.2rem;
  aspect-ratio: 1/1;
  margin: 0 0 0 2rem;
}
@media screen and (min-width: 768px) {
  .header .sns_list > dd > ul > li {
    width: 3.1746031746vw;
    margin: 0.7936507937vw 0 0 0;
  }
}
@media screen and (min-width: 1260px) {
  .header .sns_list > dd > ul > li {
    width: 4rem;
    margin: 1rem 0 0 0;
  }
}
.header .sns_list > dd > ul > li.sns_instagram > a {
  background-image: url(../assets/images/common/icon_instagram.png);
}
@media screen and (min-width: 768px) {
  .header .sns_list > dd > ul > li.sns_instagram > a:hover {
    background-image: url(../assets/images/common/icon_instagram_h.png);
  }
}
.header .sns_list > dd > ul > li.sns_x > a {
  background-image: url(../assets/images/common/icon_x.png);
}
@media screen and (min-width: 768px) {
  .header .sns_list > dd > ul > li.sns_x > a:hover {
    background-image: url(../assets/images/common/icon_x_h.png);
  }
}
.header .sns_list > dd > ul > li.sns_tiktok > a {
  background-image: url(../assets/images/common/icon_tiktok.png);
}
@media screen and (min-width: 768px) {
  .header .sns_list > dd > ul > li.sns_tiktok > a:hover {
    background-image: url(../assets/images/common/icon_tiktok_h.png);
  }
}
.header .sns_list > dd > ul > li > a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
@media screen and (min-width: 768px) {
  .header .sns_list > dd > ul > li > a:hover {
    opacity: 1;
  }
}
.header .sns_list > dd > ul > li > a > span {
  font-size: 0;
}

/* ========================================================
    nav
======================================================== */
.nav {
  position: relative;
  width: 100%;
}
.nav .spmenu {
  position: fixed;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .nav .spmenu {
    display: none;
  }
}
.nav .spmenu_btn {
  position: relative;
  width: 9.6rem;
  margin: 0 0 0 auto;
  z-index: 103;
}
.nav .spmenu_open {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  font-size: 0;
  background-image: url(../assets/images/common/menu_open_btn.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  cursor: pointer;
}
.nav .spmenu_close {
  position: relative;
  display: none;
  width: 100%;
  aspect-ratio: 1/1;
  font-size: 0;
  background-image: url(../assets/images/common/menu_close_btn.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  cursor: pointer;
}
.nav .spmenu_cont {
  position: absolute;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background-color: #005fcc;
  z-index: 101;
}
.nav .spmenu_inner {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 16rem 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 102;
}
.nav .spmenu_list {
  position: relative;
  width: 100%;
  border-top: 1px solid #80afe6;
}
.nav .spmenu_list > li {
  width: 100%;
  border-bottom: 1px solid #80afe6;
}
.nav .spmenu_list > li.menu_top > a > span::before {
  left: 6rem;
  aspect-ratio: 43/37;
  -webkit-mask-image: url(../assets/images/common/icon_top.svg);
          mask-image: url(../assets/images/common/icon_top.svg);
}
.nav .spmenu_list > li.menu_club > a > span::before {
  left: 6rem;
  aspect-ratio: 47/39;
  -webkit-mask-image: url(../assets/images/common/icon_club.svg);
          mask-image: url(../assets/images/common/icon_club.svg);
}
.nav .spmenu_list > li.menu_movie > a > span::before {
  left: 6rem;
  height: 0.8em;
  aspect-ratio: 52/34;
  -webkit-mask-image: url(../assets/images/common/icon_movie.svg);
          mask-image: url(../assets/images/common/icon_movie.svg);
}
.nav .spmenu_list > li.menu_onepoint > a > span::before {
  left: 7rem;
  aspect-ratio: 29/42;
  -webkit-mask-image: url(../assets/images/common/icon_onepoint.svg);
          mask-image: url(../assets/images/common/icon_onepoint.svg);
}
.nav .spmenu_list > li.menu_column > a > span::before {
  left: 7rem;
  aspect-ratio: 30/45;
  -webkit-mask-image: url(../assets/images/common/icon_column.svg);
          mask-image: url(../assets/images/common/icon_column.svg);
}
.nav .spmenu_list > li.menu_about > a > span::before {
  left: 6.4rem;
  aspect-ratio: 36/39;
  -webkit-mask-image: url(../assets/images/common/icon_about.svg);
          mask-image: url(../assets/images/common/icon_about.svg);
}
.nav .spmenu_list > li > a {
  position: relative;
  display: block;
  width: 100%;
  padding: 4rem 0;
}
.nav .spmenu_list > li > a::before {
  content: "";
  position: absolute;
  right: 6rem;
  top: 50%;
  display: block;
  width: 4rem;
  aspect-ratio: 40/34;
  -webkit-mask-image: url(../assets/images/common/icon_arrow.svg);
          mask-image: url(../assets/images/common/icon_arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  background-color: #ffffff;
  transform: translateY(-50%);
}
.nav .spmenu_list > li > a > span {
  position: relative;
  display: inline-block;
  padding: 0 12.5rem;
  color: #ffffff;
  font-size: 3.6rem;
  line-height: 1;
  letter-spacing: 0.04em;
}
.nav .spmenu_list > li > a > span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  height: 1em;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  background-color: #ffffff;
  transform: translateY(-50%);
}
.nav .pcmenu {
  display: none;
}
@media screen and (min-width: 768px) {
  .nav .pcmenu {
    position: relative;
    display: block;
    width: 100%;
  }
}
.nav .pcmenu_list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
}
.nav .pcmenu_list > li {
  position: relative;
  width: 20%;
}
.nav .pcmenu_list > li:first-child::before {
  content: none;
}
.nav .pcmenu_list > li.menu_club > a > span {
  padding-left: 2.3em;
}
.nav .pcmenu_list > li.menu_club > a > span::before {
  aspect-ratio: 47/39;
  -webkit-mask-image: url(../assets/images/common/icon_club.svg);
          mask-image: url(../assets/images/common/icon_club.svg);
}
.nav .pcmenu_list > li.menu_movie > a > span {
  padding-left: 2.4em;
}
.nav .pcmenu_list > li.menu_movie > a > span::before {
  height: 1.3793103448vw;
  aspect-ratio: 52/34;
  -webkit-mask-image: url(../assets/images/common/icon_movie.svg);
          mask-image: url(../assets/images/common/icon_movie.svg);
}
@media screen and (min-width: 1740px) {
  .nav .pcmenu_list > li.menu_movie > a > span::before {
    height: 2.4rem;
  }
}
.nav .pcmenu_list > li.menu_onepoint > a > span {
  padding-left: 1.4em;
}
.nav .pcmenu_list > li.menu_onepoint > a > span::before {
  aspect-ratio: 29/42;
  -webkit-mask-image: url(../assets/images/common/icon_onepoint.svg);
          mask-image: url(../assets/images/common/icon_onepoint.svg);
}
.nav .pcmenu_list > li.menu_column > a > span {
  padding-left: 1.4em;
}
.nav .pcmenu_list > li.menu_column > a > span::before {
  aspect-ratio: 30/45;
  -webkit-mask-image: url(../assets/images/common/icon_column.svg);
          mask-image: url(../assets/images/common/icon_column.svg);
}
.nav .pcmenu_list > li.menu_about > a > span {
  padding-left: 1.8em;
}
.nav .pcmenu_list > li.menu_about > a > span::before {
  aspect-ratio: 36/39;
  -webkit-mask-image: url(../assets/images/common/icon_about.svg);
          mask-image: url(../assets/images/common/icon_about.svg);
}
.nav .pcmenu_list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  width: 1px;
  height: calc(100% - 2.0689655172vw);
  background-color: #ffffff;
  transform: translateY(-50%);
}
@media screen and (min-width: 1740px) {
  .nav .pcmenu_list > li::before {
    height: calc(100% - 3.6rem);
  }
}
.nav .pcmenu_list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  padding: 1.724137931vw 0;
  background-color: #005fcc;
}
@media screen and (min-width: 1740px) {
  .nav .pcmenu_list > li > a {
    padding: 3rem 0;
  }
}
.nav .pcmenu_list > li > a:hover {
  background-color: #ffff32;
  opacity: 1;
}
.nav .pcmenu_list > li > a:hover > span {
  color: #005fcc;
}
.nav .pcmenu_list > li > a:hover > span::before {
  background-color: #005fcc;
}
.nav .pcmenu_list > li > a > span {
  position: relative;
  display: inline-block;
  padding-left: 0;
  color: #ffffff;
  font-size: 1.2643678161vw;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 1740px) {
  .nav .pcmenu_list > li > a > span {
    font-size: 2.2rem;
  }
}
.nav .pcmenu_list > li > a > span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  height: 1.724137931vw;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  background-color: #ffffff;
  transform: translateY(-50%);
}
@media screen and (min-width: 1740px) {
  .nav .pcmenu_list > li > a > span::before {
    height: 3rem;
  }
}

/* ========================================================
    footer
======================================================== */
.footer {
  position: relative;
  width: 100%;
}
.footer .copyright {
  position: absolute;
  left: 3rem;
  bottom: calc(100% + 3rem);
  display: block;
}
@media screen and (min-width: 768px) {
  .footer .copyright {
    left: 4rem;
    bottom: calc(100% + 4rem);
  }
}
.footer .copyright_text {
  position: relative;
  width: auto;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .footer .copyright_text {
    font-size: 1.6rem;
  }
}
.footer .pagetop {
  position: absolute;
  right: 3rem;
  bottom: calc(100% + 3rem);
  display: block;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .footer .pagetop {
    right: 4rem;
    bottom: calc(100% + 4rem);
  }
}
.footer .pagetop_btn {
  position: relative;
  width: 12rem;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  .footer .pagetop_btn {
    width: 11.2rem;
  }
}
.footer .pagetop_btn > a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 0;
  background-image: url(../assets/images/common/pagetop_btn_sp.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
@media screen and (min-width: 768px) {
  .footer .pagetop_btn > a {
    background-image: url(../assets/images/common/pagetop_btn_pc.png);
  }
}
@media screen and (min-width: 768px) {
  .footer .pagetop_btn > a:hover {
    background-image: url(../assets/images/common/pagetop_btn_pc_h.png);
    opacity: 1;
  }
}

/* ========================================================
    popup
======================================================== */
.popup {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background-color: rgba(42, 43, 46, 0.95);
  z-index: 1000;
}
.popup_area {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 1010;
}
.popup_bg {
  position: fixed;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100vh;
  height: 100svh;
  z-index: 1020;
  cursor: pointer;
}
.popup_inner {
  position: relative;
  align-self: flex-start;
  width: calc(100% - 6rem);
  max-width: 960px;
  margin: auto;
  padding: 6rem 0;
  z-index: 1030;
}
.popup_close {
  position: relative;
  width: 7.2rem;
  aspect-ratio: 1/1;
  margin: 0 -2rem -3.6rem auto;
  border-radius: 50%;
  background-color: #005fcc;
  transition: 0.3s ease;
  z-index: 1;
  cursor: pointer;
}
@media screen and (min-width: 1032px) {
  .popup_close {
    margin: 0 -3.6rem -3.6rem auto;
  }
}
@media screen and (min-width: 768px) {
  .popup_close:hover {
    background-color: #ffff32;
  }
}
@media screen and (min-width: 768px) {
  .popup_close:hover::before {
    background-color: #005fcc;
  }
}
.popup_close::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 2rem;
  aspect-ratio: 29/29;
  -webkit-mask-image: url(../assets/images/common/icon_close.svg);
          mask-image: url(../assets/images/common/icon_close.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  background-color: #ffffff;
  transform: translate(-50%, -50%);
}
.popup_movie_embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.popup_movie_embed * {
  line-height: inherit;
}
.popup_movie_embed iframe {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.popup_movie_embed .video-js {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.popup_list > li {
  display: none;
}/*# sourceMappingURL=base.css.map */