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

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

.wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  font-family: YakuHanJP, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #000000;
  background: url(../images/common/bg_pattern01.jpg) repeat-y top left/213% auto;
  overflow-x: clip;
}
.wrapper section,
.wrapper main,
.wrapper header,
.wrapper footer,
.wrapper aside {
  position: relative;
}
.wrapper img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.wrapper a {
  display: block;
  color: #000000;
  word-wrap: break-word;
}

@supports (aspect-ratio: 1) {
  .main {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.main > * {
  overflow-x: hidden;
}

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

@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: calc(10 / 1600 * 100vw);
  }
  .wrapper {
    font-size: 1.8rem;
    font-size: max(1.8rem, 14px);
    background-size: 100% auto;
    background-position: top center;
  }
  .wrapper a {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .inner {
    width: 90%;
    max-width: 1200px;
  }
  .is-sp {
    display: none !important;
  }
}
@media screen and (min-width: 1600px) {
  html {
    font-size: 10px;
  }
}
/* =====================================================================
*    共通
* =================================================================== */
.movie-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.movie-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.btn1 {
  text-align: center;
  margin: 10rem auto 0;
  font-family: YakuHanJP, "M PLUS 2", sans-serif;
  font-weight: 800;
  font-size: 157%;
}
.btn1.font-en {
  font-size: 214%;
  line-height: 0.8;
}
.btn1 a {
  position: relative;
  display: inline-block;
  padding: 3.2rem 1.8em;
  min-width: calc(600 / 650 * 100%);
  color: #ffffff;
  background: #000000;
  border-radius: 3em;
}
.btn1 a::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0.6em;
  width: 0.9em;
  height: 100%;
  background: url(../images/common/icon_plus.svg) no-repeat center/contain;
}
.btn1.nolink a {
  padding-left: 0.8em;
  padding-right: 0.8em;
  color: rgb(229, 229, 229);
  background: gray;
  pointer-events: none;
}
.btn1.nolink a::after {
  display: none;
}
.btn1.nolink a small {
  display: block;
  margin-top: 0.4em;
  font-size: 60%;
}

.font-en {
  font-family: "Staatliches", sans-serif;
  vertical-align: baseline;
}

.font-mplus {
  font-family: YakuHanJP, "M PLUS 2", sans-serif;
}

.deco-brackets {
  position: relative;
}
.deco-brackets::before, .deco-brackets::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 5rem;
  height: 5rem;
  border-style: solid;
  border-color: #ff0014;
  border-top-width: 1rem;
  border-left-width: 1rem;
}
.deco-brackets::after {
  left: auto;
  right: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.deco-brackets-inner {
  position: relative;
}
.deco-brackets-inner::before, .deco-brackets-inner::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 5rem;
  height: 5rem;
  border-style: solid;
  border-color: #ff0014;
  border-bottom-width: 1rem;
  border-left-width: 1rem;
}
.deco-brackets-inner::after {
  left: auto;
  right: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

@media screen and (min-width: 768px) {
  .btn1 a {
    min-width: calc(600 / 1200 * 100%);
  }
  .btn1 a::after {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .btn1 a:hover {
    background-color: #ff0014;
  }
  .btn1 a:hover::after {
    -webkit-transform: rotate(315deg);
            transform: rotate(315deg);
  }
}
/* =====================================================================
*    header
* =================================================================== */
.header {
  position: sticky !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 5;
}
.header-global {
  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;
  height: 8rem;
}
.header-global a {
  padding: 1.5rem 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
}
.header-global a img {
  margin: 0 auto;
  width: auto;
  height: 100%;
}
.header-sns {
  position: absolute;
  top: 16rem;
  right: 0;
  height: 100%;
}
.header-sns li {
  position: relative;
  padding-right: 1.6rem;
}
.header-sns li:not(:last-child) {
  margin-bottom: 3rem;
}
.header-sns li::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.8rem;
  border-top: 1px solid #000000;
}
.header-sns li 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: 5.4rem;
  height: 5.4rem;
}
.header-sns li a::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/common/img_brackets_black.svg) no-repeat center/100% 100%;
}
.header-sns li a svg {
  width: 50%;
  height: 50%;
}
.header-logo {
  position: absolute;
  top: 5rem;
  left: 3rem;
  width: 22.6rem;
}
.header.is-active .nav {
  right: 0;
}
.header.is-active .btn-menu > img {
  opacity: 0;
}
.header.is-active .btn-menu::before {
  opacity: 1;
}

@-webkit-keyframes menu-open {
  0% {
    display: none;
    right: -120%;
  }
  5% {
    display: block;
    right: -120%;
  }
  100% {
    display: block;
    right: 0;
  }
}

@keyframes menu-open {
  0% {
    display: none;
    right: -120%;
  }
  5% {
    display: block;
    right: -120%;
  }
  100% {
    display: block;
    right: 0;
  }
}
.btn-menu {
  position: absolute;
  top: 6rem;
  right: 0;
  width: 9.6rem;
  z-index: 2;
}
.btn-menu > img {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.btn-menu::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/common/btn_close.png) no-repeat center/100% 100%;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.nav {
  position: fixed;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  padding: 22rem 0;
  background-color: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-transition: right 0.4s ease-in-out;
  transition: right 0.4s ease-in-out;
  z-index: -1;
}
.nav::-webkit-scrollbar {
  display: none;
}
.nav-menu {
  position: relative;
  width: calc(600 / 750 * 100%);
  border-top: 1px solid #e0e0e0;
}
.nav-menu::before {
  content: "";
  position: absolute;
  display: block;
  top: -1px;
  left: 0;
  width: 5rem;
  border-top: 1px solid #ff0014;
}
.nav-menu li {
  position: relative;
  border-bottom: 1px solid #e0e0e0;
}
.nav-menu li::before {
  content: "";
  position: absolute;
  display: block;
  bottom: -1px;
  left: 0;
  width: 5rem;
  border-bottom: 1px solid #ff0014;
}
.nav-menu li a {
  padding: 3.2rem 5rem;
  font-family: "Staatliches", sans-serif;
  font-size: 5rem;
  letter-spacing: 0.08em;
}
.nav-menu li a:first-letter {
  color: #ff0014;
}
.nav-menu li.nolink a {
  pointer-events: none;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  opacity: 0.6;
}
.nav .banner-list {
  margin-top: 8rem;
}
.nav .banner-list li {
  width: calc(550 / 750 * 100%);
}

@media screen and (min-width: 768px) {
  .header-global {
    height: 5.4rem;
  }
  .header-global a {
    padding: 1rem 0;
  }
  .header-sns {
    top: 21rem;
  }
  .header-sns li:not(:last-child) {
    margin-bottom: 2rem;
  }
  .header-sns li a {
    width: 4.2rem;
    height: 4.2rem;
  }
  .header-sns li a::before {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  .header-sns li a:hover::before {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
  .header-logo {
    top: 8rem;
    left: 5rem;
    width: 20.1rem;
  }
  .header.is-active .btn-menu::after {
    background-image: url(../images/common/btn_close_h.png);
  }
  .btn-menu {
    top: 10.7rem;
    width: 8.6rem;
    cursor: pointer;
  }
  .btn-menu::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/common/btn_menu_h.png) no-repeat center/100% 100%;
    opacity: 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .btn-menu:hover::after {
    opacity: 1;
  }
  .nav {
    padding: 13rem 0;
    width: 50%;
  }
  .nav-menu {
    width: 75%;
  }
  .nav-menu li a {
    position: relative;
    padding-top: 2.6rem;
    padding-bottom: 2.6rem;
    font-size: 4rem;
  }
  .nav-menu li a::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #fff100;
    -webkit-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
    z-index: -1;
  }
  .nav-menu li a:hover::before {
    width: 100%;
  }
  .nav .banner-list {
    margin-top: 4rem;
  }
  .nav .banner-list li {
    width: 62.5%;
  }
}
/* =====================================================================
*    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-top: 4rem;
  width: calc(570 / 650 * 100%);
}
.banner-list li:first-child {
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .banner-list li {
    margin: 2rem calc(20 / 1200 * 100%) 0 0;
    width: calc(380 / 1200 * 100%);
  }
  .banner-list li:nth-child(-n+3) {
    margin-top: 0;
  }
  .banner-list li:nth-child(3n), .banner-list li:last-child {
    margin-right: 0;
  }
  .banner-list li a {
    position: relative;
  }
  .banner-list li a::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0px solid #000000;
    -webkit-transition: border-width 0.3s ease-in-out;
    transition: border-width 0.3s ease-in-out;
  }
  .banner-list li a:hover::after {
    border-width: 1rem;
  }
}
/* =====================================================================
*    footer
* =================================================================== */
.footer {
  background: url(../images/common/bg_footer-sp.jpg) no-repeat top center/cover;
}
.footer .inner {
  padding: 24rem 0 16rem;
}

.pagetop {
  position: absolute;
  top: 9rem;
  left: 0;
  right: 0;
  margin: auto;
  width: 15.5rem;
  z-index: 3;
}
.pagetop a {
  position: relative;
  text-align: center;
  padding-top: 1.8em;
  font-family: "Staatliches", sans-serif;
  font-size: 3rem;
  color: #fff100;
}
.pagetop a::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 1.5em;
  background: url(../images/common/img_pagetop_arrow.png) no-repeat center/contain;
}

.copyright {
  padding: 8rem 0;
  text-align: center;
  font-size: 2.2rem;
  color: #ffffff;
  background-color: #000000;
}

@media screen and (min-width: 768px) {
  .footer {
    background-image: url(../images/common/bg_footer-pc.jpg);
  }
  .footer .inner {
    padding: 11rem 0;
  }
  .pagetop {
    top: 2rem;
    left: auto;
    right: 6rem;
    width: 80px;
  }
  .pagetop a {
    font-size: 16px;
  }
  .pagetop a::after {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .pagetop a:hover::after {
    -webkit-transform: translateY(-0.5rem);
            transform: translateY(-0.5rem);
  }
  .copyright {
    padding: 5.2rem 0;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1600px) {
  .pagetop {
    top: 7rem;
  }
}
/* =====================================================================
*    popup
* =================================================================== */
.popup {
  position: fixed !important;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  z-index: 50;
}
.popup-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5.5em 0;
  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(0, 0, 0, 0.9);
}
.popup-inner {
  position: relative;
  margin: auto;
  -ms-flex-item-align: start;
  align-self: flex-start;
  width: calc(650 / 750 * 100%);
}
@media screen and (max-width: 767px) {
  .popup-movie .popup-inner {
    width: 100%;
  }
}
.popup-close {
  position: absolute;
  top: -4em;
  right: 0;
  width: 3em;
  height: 3em;
  z-index: 3;
}
.popup-close::before {
  content: "";
  display: block;
  width: 1px;
  padding-top: 100%;
  background-color: #fff;
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
  margin: 0 auto;
}
.popup-close::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  width: 1px;
  margin: 0 auto;
  padding-top: 100%;
  background-color: #fff;
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg);
}
.popup-close2 {
  margin: 1em auto 0;
  padding: 0.5em;
  width: 30rem;
  font-size: 16px;
  text-align: center;
  background: #fff100;
  color: #fff;
  border: 1px solid #fff;
}
.popup-list {
  position: relative;
  width: 100%;
  height: 100%;
  color: #fff100;
  background: #000000;
}
.popup-list > li {
  position: relative;
  display: none;
  margin: 0 auto;
  padding: 12rem calc(40 / 650 * 100%);
  line-height: 1.666;
  z-index: 2;
}
.popup-movie-embed {
  position: relative;
  padding-top: 56.25%;
}
.popup-movie-embed iframe,
.popup-movie-embed video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .popup-bg {
    cursor: pointer;
  }
  .popup-inner {
    width: 90%;
    max-width: 1200px;
  }
  .popup-movie .popup-inner {
    max-width: 120vh;
  }
  .popup-close {
    cursor: pointer;
  }
  .popup-close2 {
    width: 50rem;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    cursor: pointer;
  }
  .popup-close2:hover {
    background-color: #ff0014;
  }
  .popup-list > li {
    padding: 8rem calc(65 / 1200 * 100%);
  }
}
/* =====================================================================
    print
======================================================================*/
@media print {
  .nextstory_movie img,
  .story_movie img,
  .article_list img,
  .bucknumber_list img,
  .topics_article img,
  .chart_btn_img,
  .chart_photo img {
    display: none;
  }
}/*# sourceMappingURL=base.css.map */