@charset "UTF-8";
/* ==========================================================
  フォント
========================================================== */
/* ==========================================================
  EXTEND
========================================================== */
/* ===================================================================
CSS information
 file name  :shared.css
 style info :共通のスタイル
=================================================================== */
/* ==========================================================
  BASE
========================================================== */
@media screen and (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  html {
    font-size: 15px;
  }
}
@media screen and (min-width: 1921px) {
  html {
    font-size: 0.9vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 3.4vw;
  }
}

body {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: 700;
  color: #000;
  background: #000;
  line-height: 1.8;
  text-align: center;
}
:lang(ja) body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
}
:lang(en) body {
  font-family: "Noto Sans", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
}
body:focus {
  outline: none;
}
body .btnMenu {
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  body .btnMenu {
    display: none;
  }
}
@media screen and (max-width: 1020px) {
  body .btnMenu {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    gap: 0.4rem 0;
    border-radius: 1rem;
    background: #000;
    position: fixed;
    top: 3.2rem;
    right: 0.4rem;
    z-index: 9998;
    width: 4rem;
    padding: 0.8rem 0.8rem 0.4rem;
    aspect-ratio: 1/1;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
}
body .btnMenu.sc {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media screen and (max-width: 1020px) {
  body .btnMenu.sc {
    top: 0.4rem;
  }
}
@media screen and (max-width: 1020px) {
  body .btnMenu span {
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 0.1rem;
    text-indent: 0.1rem;
    line-height: 1;
  }
}

/* ==========================================================
  LINK
========================================================== */
a,
a:visited,
a:hover {
  text-decoration: none;
}

.modal_img {
  display: block;
  position: relative;
}
.modal_img:after {
  content: "";
  display: block;
  border-radius: 100rem;
  background: #7f7f7f url(../img/shared/icn_mg.svg) no-repeat center center/72%;
  position: absolute;
  z-index: 1;
  width: 2.2rem;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  .modal_img:after {
    bottom: 1rem;
    right: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .modal_img:after {
    bottom: 0.5rem;
    right: 0.5rem;
  }
}

/* ==========================================================
  ROLLOVER
========================================================== */
.expansion {
  -webkit-transition: all 0.2s 0s ease-in-out;
  transition: all 0.2s 0s ease-in-out;
  will-change: transform;
  width: calc(100% + 1px);
  filter: blur(0);
  -webkit-filter: blur(0);
}
.expansion:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  filter: blur(0);
  -webkit-filter: blur(0);
}

/* ==========================================================
  COMMON
========================================================== */
:lang(ja) .txtNote li {
  padding-left: 1em;
  text-indent: -1em;
}
:lang(en) .txtNote li {
  padding-left: 0.5em;
  text-indent: -0.5em;
}

/* ==========================================================
  HEADER
========================================================== */
header {
  background: #000;
}
header img {
  vertical-align: baseline;
}
header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 2.8rem;
}
@media screen and (min-width: 768px) {
  header .inner {
    padding: 0 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  header .inner {
    padding: 0 1rem;
  }
}
header .inner .logo {
  width: 10.6rem;
}
header .inner .rBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .inner .rBox .x {
  border-right: solid 1px #565454;
  height: 1.4rem;
  padding-right: 1rem;
  margin-right: 1rem;
}
header .inner .rBox .x img {
  width: auto;
  height: 100%;
}
header .inner .rBox .langBox {
  position: relative;
  color: #fff;
  font-size: 0.875rem;
  text-align: right;
}
header .inner .rBox .langBox p {
  cursor: pointer;
  background: url(../img/shared/icn_language.svg) no-repeat center left/1.4rem;
  padding-left: 1.8rem;
}
header .inner .rBox .langBox ul {
  display: none;
  position: absolute;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  z-index: 9999;
  top: 2rem;
  right: -1rem;
}
header .inner .rBox .langBox ul li a {
  display: block;
  color: #fff;
  background: #000;
  text-align: right;
  text-decoration: none;
  padding: 0.5rem 1rem 0.8rem;
}
header .inner .rBox .langBox ul li a:hover {
  background: #4b4e56;
  color: #fff;
}
.navArea {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .navArea {
    position: absolute;
    padding: 1.5rem 0 1.5rem 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .navArea {
    background: -webkit-gradient(linear, left top, right top, from(#ffd800), to(#ff918d));
    background: linear-gradient(90deg, #ffd800 0%, #ff918d 100%);
    padding: 0.8rem 1rem;
  }
}
.navArea h1 {
  text-align: left;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .navArea h1 {
    -webkit-filter: drop-shadow(0 0 0.2rem rgb(255, 255, 255));
            filter: drop-shadow(0 0 0.2rem rgb(255, 255, 255));
  }
}
.navArea h1 .logo {
  display: block;
  height: 1.2rem;
  margin-bottom: 0.2em;
}
@media screen and (max-width: 767px) {
  @supports (-webkit-touch-callout: none) {
    .navArea h1 .logo {
      position: relative;
      left: -0.6rem;
    }
  }
}
.navArea h1 .logo img {
  display: block;
  width: auto;
  height: 100%;
}
.navArea h1 .txt {
  display: block;
  color: #000;
  font-size: 0.8125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .navArea #gnav {
    border-radius: 100rem 0 0 100rem;
    background: #000;
    padding: 0.8rem 2rem 1rem;
  }
}
@media screen and (max-width: 1020px) {
  .navArea #gnav {
    border-radius: 0;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 2.8rem;
    right: -100%;
    z-index: 9999;
    padding: 6rem;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
}
@media screen and (min-width: 768px) {
  .navArea #gnav.opens {
    width: 50%;
  }
}
@media screen and (max-width: 1020px) {
  .navArea #gnav.opens {
    right: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
}
@media screen and (max-width: 1020px) {
  .navArea #gnav.sc {
    top: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
}
@media screen and (min-width: 768px) {
  .navArea #gnav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 1020px) {
  .navArea #gnav ul {
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
.navArea #gnav ul li {
  border-right: solid 1px #fff;
}
@media screen and (max-width: 1020px) {
  .navArea #gnav ul li {
    width: 100%;
    border-bottom: solid 1px #fff;
    border-right: none;
  }
}
.navArea #gnav ul li:last-of-type {
  border-right: none;
  border-bottom: none;
}
@media screen and (max-width: 1020px) {
  .navArea #gnav ul li br {
    display: none;
  }
}
.navArea #gnav ul li a {
  color: #fff;
  line-height: 1.4;
  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: 2.5rem;
}
@media screen and (min-width: 768px) {
  .navArea #gnav ul li a {
    padding: 0 1rem;
  }
}
@media screen and (max-width: 1020px) {
  .navArea #gnav ul li a {
    padding: 1rem 0;
  }
}
.navArea #gnav ul li a:hover, .navArea #gnav ul li a.current {
  background: -webkit-gradient(linear, left top, right top, from(#ffd800), to(#ff918d));
  background: linear-gradient(90deg, #ffd800 0%, #ff918d 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.navArea #gnav ul li.new {
  position: relative;
}
@media screen and (max-width: 1020px) {
  .navArea #gnav ul li.new {
    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;
    gap: 0 1rem;
  }
}
.navArea #gnav ul li.new:after {
  pointer-events: none;
  content: "NEW";
  color: #fff;
  font-size: 0.625rem;
  border-radius: 100rem;
  background: -webkit-gradient(linear, left top, right top, from(#0ef), to(#3a68ff));
  background: linear-gradient(90deg, #0ef 0%, #3a68ff 100%);
  padding: 0.1rem 0.5rem 0.15rem;
}
@media screen and (min-width: 768px) {
  .navArea #gnav ul li.new:after {
    position: absolute;
    top: -1.4rem;
    right: 0;
  }
}
@media screen and (max-width: 1020px) {
  .navArea #gnav ul li.new:after {
    position: static;
    margin-right: -3.4rem;
  }
}
.navArea #gnav .btnClose {
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .navArea #gnav .btnClose {
    display: none;
  }
}
@media screen and (max-width: 1020px) {
  .navArea #gnav .btnClose {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    gap: 0.4rem 0;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    width: 2rem;
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 1020px) {
  .navArea #gnav .btnClose span {
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 0.1rem;
    text-indent: 0.1rem;
    line-height: 1;
  }
}

/* ==========================================================
    FOOTER
  ========================================================== */
footer .navArea {
  position: static;
  background: -webkit-gradient(linear, left top, right top, from(#ffd800), to(#ff918d));
  background: linear-gradient(90deg, #ffd800 0%, #ff918d 100%);
}
footer .navArea h1 {
  -webkit-filter: none;
          filter: none;
}
footer .inner {
  color: #6a6a6a;
  background: #000;
  padding: 3rem 0;
}
footer .inner .link {
  width: 6rem;
  margin: 0 auto 2rem;
}
footer .inner .notes {
  font-size: 0.75rem;
  margin-bottom: 2rem;
}
footer .inner .copyRight {
  font-size: 0.75rem;
}