@charset "UTF-8";
/* CSS INFORMATION -====================================================
File name : base.css
Description : 共通
===================================================================== */
/* =====================================================================
    共通（大枠）
======================================================================*/
html {
  min-height: 100vh;
  overflow-x: hidden;
  font-size: calc(10 / 750 * 100vw);
}

.gDef-top-banner {
  background-color: #0f1111;
}

.wrapper {
  position: relative;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  color: #ffffff;
  background-color: #0f1111;
  overflow-x: hidden;
}
.wrapper img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.wrapper a {
  display: block;
  color: #ffffff;
  word-wrap: break-word;
}

section,
main,
header,
footer {
  position: relative;
}

.inner {
  position: relative;
  margin: 0 auto;
  width: calc(640 / 750 * 100%);
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: calc(10 / 1600 * 100vw);
  }
  .wrapper {
    font-size: 18px;
  }
  .wrapper a {
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
  }
  .inner {
    width: 90%;
    max-width: 1000px !important;
  }
  .sp {
    display: none !important;
  }
}
@media screen and (min-width: 1600px) {
  html {
    font-size: 10px;
  }
}
/* =====================================================================
    submv
======================================================================*/
.submv {
  background: url(../images/common/img_submv-sp.jpg) no-repeat top center/100% auto;
}
.submv .inner {
  width: 100%;
}
.submv h1 {
  margin-left: calc(413 / 750 * 100%);
  padding: calc(94 / 750 * 100%) 0 calc(76 / 750 * 100%);
  width: calc(312 / 750 * 100%);
}

.submv_date {
  width: 100%;
  padding: 3.2rem 0;
  background: #0c2b34;
}
.submv_date img {
  margin: 0 auto;
  width: calc(699 / 750 * 100%);
}

@media screen and (min-width: 768px) {
  .submv {
    background-image: url(../images/common/img_submv-pc.jpg);
  }
  .submv h1 {
    margin-left: calc(480 / 1000 * 100%);
    padding: calc(75 / 1000 * 100%) 0 calc(61 / 1000 * 100%);
    width: calc(465 / 1000 * 100%);
  }
  .submv_date {
    position: relative;
    padding: calc(10 / 1000 * 100%) 0;
  }
  .submv_date::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: #0c2b34;
    margin: 0 calc(50% - 50vw);
    z-index: -1;
  }
  .submv_date img {
    width: calc(880 / 1000 * 100%);
  }
}
@media screen and (min-width: 1000px) {
  .submv {
    background-size: 1000px auto;
  }
}
/* =====================================================================
*    header
* =================================================================== */
.header_banner {
  padding: 5rem 0;
}

.nav {
  background: -webkit-gradient(linear, left top, left bottom, from(#005425), to(#0f1111));
  background: linear-gradient(to bottom, #005425 0%, #0f1111 100%);
  border-top: 1px solid #00c256;
  border-bottom: 1px solid #00c256;
}
@media screen and (max-width: 767px) {
  .nav .inner {
    width: 100%;
  }
}
.nav .nav_sns {
  padding: 3rem 0;
}

.nav_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.nav_menu li {
  position: relative;
  width: 25%;
  border-left: 1px solid #0d1f24;
  border-bottom: 1px solid #00672e;
}
.nav_menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 16rem;
  line-height: 1.142;
}
.nav_menu li a span {
  font-weight: bold;
}
.nav_menu li a small {
  display: block;
  margin-top: 0.4em;
  font-family: "Share Tech Mono", monospace;
  font-size: 2.4rem;
  color: #009a44;
  text-shadow: 0 0 0.35em rgba(0, 107, 47, 0.8), 0 0 0.3em rgba(0, 107, 47, 0.8), 0 0 0.3em rgba(0, 107, 47, 0.8), 0 0 0.3em rgba(0, 107, 47, 0.8);
}
.nav_menu li.nolink a {
  pointer-events: none;
  opacity: 0.3;
}

.nav_date {
  position: absolute;
  top: -0.5em;
  left: 50%;
  padding: 0.2em 0.5em;
  text-align: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #32ffe9;
  border-radius: 2em;
  z-index: 1;
}
.nav_date span {
  display: block;
  font-family: "Share Tech Mono", monospace;
  font-weight: 700;
  font-size: 2.4rem;
  color: #0f1111;
  white-space: nowrap;
}

.nav_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.nav_sns li {
  margin: 0 1rem;
  width: 10.4rem;
}

@media screen and (min-width: 768px) {
  .header_banner {
    padding: 20px 0;
  }
  .nav .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    max-width: 1100px !important;
  }
  .nav .nav_sns {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
    margin: 0 0 0 calc(20 / 1000 * 100%);
    width: calc(170 / 1000 * 100%);
  }
  .nav .nav_sns li {
    margin: 0;
    width: 29.4117647059%;
  }
  .nav_menu {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: calc(812 / 1000 * 100%);
    border-right: 1px solid #0d1f24;
  }
  .nav_menu li {
    width: 14.1625615764%;
  }
  .nav_menu li a {
    position: relative;
    height: 12rem;
    min-height: 80px;
    overflow: hidden;
  }
  .nav_menu li a span {
    font-size: max(2rem, 14px);
  }
  .nav_menu li a small {
    font-size: max(1.8rem, 10px);
  }
  .nav_menu li a::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-top: -40%;
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(3, 209, 96, 0.4) 0%, transparent 80%);
    opacity: 0;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    z-index: -1;
  }
  .nav_menu li a:hover::before {
    opacity: 1;
  }
  .nav_date span {
    font-size: 1.4rem;
  }
  .nav_sns li {
    margin: 0 calc(10 / 1000 * 100%);
    width: calc(80 / 1000 * 100%);
  }
  .nav_sns li a {
    position: relative;
  }
  .nav_sns li a::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
  }
  .nav_sns li a:hover::after {
    opacity: 1;
  }
  .nav_sns li.nav_twitter a:hover {
    -webkit-filter: drop-shadow(0px 0px 10px rgba(169, 169, 169, 0.5));
            filter: drop-shadow(0px 0px 10px rgba(169, 169, 169, 0.5));
  }
  .nav_sns li.nav_twitter a::after {
    background: url(../images/common/btn_sns1_h.png) no-repeat center/contain;
  }
  .nav_sns li.nav_insta a:hover {
    -webkit-filter: drop-shadow(0px 0px 10px rgba(162, 106, 255, 0.5));
            filter: drop-shadow(0px 0px 10px rgba(162, 106, 255, 0.5));
  }
  .nav_sns li.nav_insta a::after {
    background: url(../images/common/btn_sns2_h.png) no-repeat center/contain;
  }
  .nav_sns li.nav_tiktok a:hover {
    -webkit-filter: drop-shadow(0px 0px 10px rgba(255, 92, 92, 0.5));
            filter: drop-shadow(0px 0px 10px rgba(255, 92, 92, 0.5));
  }
  .nav_sns li.nav_tiktok a::after {
    background: url(../images/common/btn_sns3_h.png) no-repeat center/contain;
  }
}
/* =====================================================================
*    共通
* =================================================================== */
.sec_ttl {
  margin: 0 auto 10rem;
}
.sec_ttl .typewriter {
  display: inline-block;
  width: 0;
  font-family: "Share Tech Mono", monospace;
  font-size: 6rem;
  color: #03d160;
  border-right: 0.3em solid #32ffe9;
  overflow: hidden;
  white-space: nowrap;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.sec_ttl .ja {
  display: block;
  margin-top: 0.7em;
  font-weight: bold;
  letter-spacing: 0.2em;
  text-shadow: 0 0 0.6em rgba(3, 209, 96, 0.8), 0 0 0.4em rgba(3, 209, 96, 0.5), 0 0 0.3em rgba(3, 209, 96, 0.5);
}

.sec_ttl.appear .typewriter {
  width: 8ch;
  -webkit-animation: typing 1.5s steps(8, end), blink-caret 1s step-end infinite;
          animation: typing 1.5s steps(8, end), blink-caret 1s step-end infinite;
}

@-webkit-keyframes typing {
  from {
    width: 0;
  }
}

@keyframes typing {
  from {
    width: 0;
  }
}
@-webkit-keyframes blink-caret {
  50% {
    border-color: transparent;
  }
}
@keyframes blink-caret {
  50% {
    border-color: transparent;
  }
}
.nextstory_movie_embed a,
.story_movie_embed a,
.movie_list figure,
.movie_pickup figure {
  position: relative;
}
.nextstory_movie_embed a::after,
.story_movie_embed a::after,
.movie_list figure::after,
.movie_pickup figure::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 11.9117647059%;
  padding-top: 8.3823529412%;
  background: url(../images/common/icon_play.png) no-repeat center/contain;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  z-index: 1;
}
.nextstory_movie_embed a img,
.story_movie_embed a img,
.movie_list figure img,
.movie_pickup figure img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9 !important;
}

.movie_list figure::after {
  width: 16.1764705882%;
  padding-top: 11.3235294118%;
}

a.btn1,
.comment dt {
  position: relative;
  text-align: center;
  margin-top: 7rem;
  padding: 3.7rem 0;
  font-size: 120%;
  font-weight: bold;
  color: #0f1111;
  letter-spacing: 0.2em;
  background: #00d15c;
  border-radius: 3em;
  border: 2px solid #00d15c;
  -webkit-box-shadow: 0px 0px 1em rgba(0, 209, 92, 0.6);
          box-shadow: 0px 0px 1em rgba(0, 209, 92, 0.6);
}
a.btn1.en,
.comment dt.en {
  font-family: "Share Tech Mono", monospace;
  font-weight: normal;
}
a.btn1::before,
.comment dt::before {
  content: "";
  position: absolute;
  display: block;
  top: calc(50% - 0.3em);
  right: 1.5em;
  width: 0.55em;
  height: 0.55em;
  border-top: 2px solid;
  border-right: 2px solid;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
}

.comment dt {
  font-family: "Share Tech Mono", monospace;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  z-index: 1;
}
.comment dt::before {
  top: 35%;
  right: 1.5em;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.comment dt.active {
  background: #48cf83;
  -webkit-box-shadow: 0px 0px 1em rgba(1, 255, 113, 0.5);
          box-shadow: 0px 0px 1em rgba(1, 255, 113, 0.5);
}
.comment dt.active::before {
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
}
.comment dd {
  position: relative;
  top: -5rem;
  padding: 15rem calc(50 / 640 * 100%) 8rem;
  font-size: 107%;
  line-height: 1.733;
  background-color: rgba(97, 97, 97, 0.3);
  border-top: 2px solid #0d5c54;
  border-bottom: 2px solid #0d5c54;
}

.fadeIn {
  opacity: 0;
  -webkit-transform: translate(0, 2rem);
          transform: translate(0, 2rem);
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}

.scrollIn {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (min-width: 768px) {
  .sec_ttl {
    margin: 0 auto 50px;
    width: 100%;
  }
  .sec_ttl .typewriter {
    font-size: 277%;
  }
  .sec_ttl .ja {
    margin-top: 0.3em;
    font-size: 110%;
  }
  .nextstory_movie_embed a:hover::after,
  .story_movie_embed a:hover::after {
    background-image: url(../images/common/icon_play_h.png);
  }
  .movie_list a:hover figure::after,
  .movie_pickup a:hover figure::after {
    background-image: url(../images/common/icon_play_h.png);
  }
  a.btn1,
  .comment dt {
    margin: 60px auto 0;
    padding: 20px 0;
    max-width: 460px;
    font-size: 144%;
  }
  a.btn1:hover,
  .comment dt:hover {
    color: #00ff70;
    text-shadow: 0 0 0.3em rgba(0, 255, 112, 0.5), 0 0 0.2em rgba(0, 255, 112, 0.5);
    background-color: #006c2f;
    border-color: #00ff70;
  }
  a.btn1:hover::before,
  .comment dt:hover::before {
    border-color: #00ff70;
  }
  .comment dt {
    cursor: pointer;
  }
  .comment dd {
    top: -25px;
    margin: 0;
    padding: 9rem calc(40 / 1000 * 100%) 5rem;
    font-size: 100%;
  }
}
/* =====================================================================
*    article
* =================================================================== */
.article_list_img {
  margin-bottom: 2rem;
}

.article_list figure {
  margin-bottom: 2rem;
}
.article_list figure img {
  -o-object-fit: cover;
     object-fit: cover;
}
.article_list h4 {
  position: relative;
  line-height: 1.785;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.article_list_date {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2rem;
  font-family: "Share Tech Mono", monospace;
  font-size: 85%;
  letter-spacing: 0.05em;
  color: #4a9b92;
  z-index: 1;
}
.article_list_date p::before {
  content: "/";
  display: inline-block;
  margin: 0 0.3em;
}

@media screen and (min-width: 768px) {
  .article_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .article_list li {
    width: calc(304 / 1000 * 100%);
    margin: 0 calc(56 / 1000 * 100%) 0 0;
  }
  .article_list li:nth-child(3n), .article_list li:last-child {
    margin-right: 0;
  }
  .article_list li a figure {
    margin-bottom: 1.6rem;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
  }
  .article_list li a:hover figure {
    -webkit-box-shadow: 0 0 4rem rgba(50, 255, 233, 0.8);
            box-shadow: 0 0 4rem rgba(50, 255, 233, 0.8);
  }
  .article_list_img figure {
    margin-bottom: 1.6rem;
  }
  .article_list_img h4 {
    line-height: 1.666;
  }
}
/* =====================================================================
    delivery
======================================================================*/
.delivery {
  padding: 7.2rem 0;
  border-top: 1px solid #32ffe9;
  border-bottom: 1px solid #32ffe9;
  -webkit-box-shadow: 0 0 5rem #6fffef inset;
          box-shadow: 0 0 5rem #6fffef inset;
  background-image: repeating-linear-gradient(0deg, rgba(38, 86, 100, 0.8), rgba(38, 86, 100, 0.8) 2px, transparent 2px, transparent);
  background-size: 4px 4px;
}
.delivery::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 2rem #6fbcb3;
          box-shadow: 0 0 2rem #6fbcb3;
}
.delivery h3 {
  text-align: center;
  margin-bottom: 4.8rem;
  font-size: 107%;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-shadow: 0 0 0.35em rgba(50, 255, 233, 0.5), 0 0 0.3em rgba(50, 255, 233, 0.5), 0 0 0.3em rgba(50, 255, 233, 0.5);
}

@media screen and (min-width: 768px) {
  .delivery {
    margin: 0 auto 90px;
    padding: 60px 0;
    max-width: 1000px;
    -webkit-box-shadow: 0 0 30px #6fbcb3 inset;
            box-shadow: 0 0 30px #6fbcb3 inset;
    border: 1px solid #32ffe9;
  }
  .delivery h3 {
    margin-bottom: 40px;
    font-size: 133%;
  }
}
/* =====================================================================
    sns_share
======================================================================*/
.sns_share {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  padding: 7rem 0;
}
.sns_share::before, .sns_share::after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2rem;
  border: 1px solid #32ffe9;
}
.sns_share::before {
  top: 0;
  border-bottom: 0;
}
.sns_share::after {
  bottom: 0;
  border-top: 0;
}
.sns_share dt {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: right;
  font-size: 2.2rem;
  font-weight: bold;
  text-shadow: 0 0 0.6em rgba(3, 209, 96, 0.6), 0 0 0.6em rgba(3, 209, 96, 0.6), 0 0 0.6em rgba(3, 209, 96, 0.6);
}
.sns_share dt::after {
  content: "";
  position: relative;
  display: inline-block;
  margin-left: 0.3em;
  top: 0.15em;
  width: 2.8em;
  height: 1em;
  background: url(../images/common/img_arrow1.png) no-repeat center/contain;
}
.sns_share dd {
  width: calc(296 / 640 * 100%);
}
.sns_share dd ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sns_share dd ul li {
  width: 30.4054054054%;
}
.sns_share dd ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 768px) {
  .sns_share {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 34px 0;
    width: calc(900 / 1000 * 100%);
  }
  .sns_share dt {
    top: -0.2em;
    font-size: 111%;
  }
  .sns_share dt::after {
    margin-left: 1em;
    top: 0.35em;
    width: 4.5em;
    height: 1.5em;
  }
  .sns_share dd {
    margin-left: 5.5555555556%;
    width: 24.8888888889%;
  }
  .sns_share dd ul li {
    margin: 0;
    width: 28.5714285714%;
  }
  .sns_share dd ul li a:hover {
    -webkit-transform: translateY(-1rem);
            transform: translateY(-1rem);
  }
}
/* =====================================================================
*    banner
* =================================================================== */
.banner_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.banner_list li {
  margin-bottom: calc(20 / 640 * 100%);
  width: calc(540 / 640 * 100%);
}
.banner_list li:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .banner_list li {
    margin: 0 calc(12 / 1000 * 100%) calc(24 / 1000 * 100%);
    width: calc(380 / 1000 * 100%);
  }
  .banner_list li:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
  .banner_list li a:hover {
    -webkit-box-shadow: 0 0 0.8em rgba(50, 255, 233, 0.7);
            box-shadow: 0 0 0.8em rgba(50, 255, 233, 0.7);
  }
}
/* =====================================================================
*    footer
* =================================================================== */
.footer {
  background: url(../images/common/bg_pattern1.jpg) repeat center/94.6rem auto;
}
.footer .inner {
  padding: 15rem 0 40rem;
}
.footer .nav_sns {
  margin-top: 7rem;
}

.fix_contents {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 100;
}

.delivery_bnr {
  margin-bottom: 3rem;
}
.delivery_bnr_close {
  position: absolute;
  top: -2rem;
  left: -2rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 1;
}
.delivery_bnr_close::after {
  content: "×";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  font-family: "Share Tech Mono", monospace;
  font-weight: bold;
  font-size: 6rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #0f1111;
  cursor: pointer;
}
.delivery_bnr_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.delivery_bnr_list a {
  width: 19rem;
}

.pagetop {
  margin-left: auto;
  width: 12rem;
  height: 12rem;
  background: #0f1111;
  border-radius: 1rem 0 0 1rem;
}
.pagetop a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
.pagetop a img {
  width: 39.1666666667%;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.copyright {
  text-align: center;
  padding: 5.5rem 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: #03d160;
  background: #0f1111;
}

@media screen and (min-width: 768px) {
  .footer .inner {
    padding: 100px 0 200px;
  }
  .footer .nav_sns {
    margin-top: 45px;
  }
  .pagetop a:hover img {
    -webkit-transform: translateY(-1rem);
            transform: translateY(-1rem);
  }
  .copyright {
    padding: 40px 0;
    font-size: 16px;
  }
}
/* =====================================================================
*    popup
* =================================================================== */
.popup {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  z-index: 99999;
}

.popup_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.popup_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(12, 32, 38, 0.6);
}

.popup_inner {
  position: relative;
  margin: auto;
  -ms-flex-item-align: start;
  align-self: flex-start;
  padding: 5.5em 0;
  width: 90%;
}

.popup_close {
  position: absolute;
  top: 2em;
  right: 0;
  width: 3em;
  height: 3em;
  background: #32ffe9;
  border: 2px solid #32ffe9;
  border-radius: 0.2em;
  -webkit-box-shadow: 0 0 2rem #32ffe9;
          box-shadow: 0 0 2rem #32ffe9;
  z-index: 3;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
.popup_close::before, .popup_close::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin: auto;
  width: 3px;
  padding-top: 64%;
  background-color: #0f1111;
  border-radius: 3px;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
.popup_close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.popup_close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.popup_list {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid #32ffe9;
  -webkit-box-shadow: 0 0 2rem #32ffe9 inset;
          box-shadow: 0 0 2rem #32ffe9 inset;
}
.popup_list > li {
  position: relative;
  display: none;
  margin: 0 auto;
  padding: 50px 0;
  width: calc(650 / 750 * 100%);
  z-index: 2;
}

.popup_movie_embed {
  position: relative;
  padding-top: 56.25%;
}
.popup_movie_embed iframe,
.popup_movie_embed video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.popup_close2 {
  margin: 15px auto 0;
  padding: 0.5em;
  width: 300px;
  font-size: 16px;
  text-align: center;
  background: #0f1111;
  color: #fff;
  border: 1px solid #fff;
}

@media screen and (min-width: 768px) {
  .popup_bg {
    cursor: pointer;
  }
  .popup_inner {
    width: 90%;
    max-width: 750px;
  }
  .popup_close {
    cursor: pointer;
  }
  .popup_close:hover {
    background-color: #005e5d;
  }
  .popup_close:hover::before, .popup_close:hover::after {
    background-color: #32ffe9;
  }
  .popup_close2 {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    cursor: pointer;
  }
  .popup_close2:hover {
    background-color: #4a9b92;
  }
}
/* =====================================================================
    print
======================================================================*/
@media print {
  .nextstory_movie_photo img,
  .story_movie_photo img,
  .news_list_photo img,
  .story_txt_list_photo img,
  .bucknumber_list img,
  .topics_photo img,
  .chart_btn_img,
  .chart_photo img {
    display: none;
  }
}/*# sourceMappingURL=base.css.map */