@charset "UTF-8";
.hidden {
  display: none;
}

@media screen and (min-width: 640px) {
  .is-sp {
    display: none;
  }
}

@media screen and (max-width: 639px) {
  .is-pc {
    display: none;
  }
}

.content-pd {
  padding: 100px 0;
}
@media screen and (max-width: 639px) {
  .content-pd {
    padding: 60px 0;
  }
}

* {
  margin: 0;
  padding: 0;
  max-width: 100%;
  box-sizing: border-box;
}
*::-moz-selection {
  background: rgba(0, 0, 0, 0.8);
  color: rgba(255, 255, 255, 0.8);
}
*::selection {
  background: rgba(0, 0, 0, 0.8);
  color: rgba(255, 255, 255, 0.8);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  background: #000;
}

.wrapper {
  overflow: hidden;
}

p, h3 {
  transform: scaleX(0.85);
  letter-spacing: 0.08em;
}

a {
  transition: 0.3s;
}

li {
  list-style: none;
}

details {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  transform: scaleX(0.85);
  letter-spacing: 0.08em;
  font-weight: normal;
  margin-bottom: 16px;
  font-size: 16px;
  background: #E8E8E8;
}
details svg {
  position: absolute;
  right: 10px;
  top: 12px;
  transform: scaleX(1);
}
details p {
  padding: 20px;
  transform: scaleX(1);
}
details summary {
  background-color: #000;
  display: block;
  color: #fff;
  text-align: center;
  font-size: 27px;
  font-weight: bold;
  transition: 0.3s;
  padding: 0 50px;
}
details summary:hover {
  color: #e60012;
  cursor: pointer;
  background: #1a1a1a;
}
@media screen and (max-width: 639px) {
  details summary {
    font-size: 20px;
    padding: 4px 50px;
  }
}
details ul {
  padding: 20px;
}
details ul li {
  list-style-type: disc;
  margin-left: 20px;
}
details dl {
  padding: 20px;
}
details dl dt {
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 4px;
}

details[open] svg {
  transform: scaleY(-1);
}

.Header {
  width: 100%;
  z-index: 100;
  background: #fff;
  position: fixed;
  padding: 2px 20px;
}
.Header-inner {
  margin: 0 auto;
  text-align: center;
  width: 1400px;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 639px) {
  .Header-inner {
    justify-content: space-between;
    width: 100%;
    min-width: auto;
    overflow: hidden;
  }
}
.Header-inner h1 {
  width: 280px;
  margin-right: 30px;
  display: inline-block;
}
@media screen and (max-width: 639px) {
  .Header-inner h1 {
    width: 180px;
  }
}
.Header-inner img {
  width: 100%;
  filter: drop-shadow(5px 0px 5px #ffffff);
}
.Header-inner-navButton {
  display: block;
}

.MainNav {
  display: none;
  padding: 15px 0;
}
.MainNav.opened {
  display: block;
}
@media screen and (min-width: 640px) {
  .MainNav {
    display: block;
  }
}
@media screen and (max-width: 639px) {
  .MainNav {
    padding: 60px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
  }
}
.MainNav-logo {
  margin: auto auto 30px;
  width: 270px;
}
.MainNav-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
}
@media screen and (max-width: 639px) {
  .MainNav-close {
    display: block;
  }
}
.MainNav-close::before, .MainNav-close::after {
  position: absolute;
  top: 50%;
  content: "";
  display: block;
  width: 100%;
  border-top: 2px solid #000;
}
.MainNav-close::before {
  transform: rotate(45deg);
}
.MainNav-close::after {
  transform: rotate(135deg);
}
.MainNav ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 639px) {
  .MainNav ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.MainNav ul li {
  font-weight: 900;
  display: inline-block;
  white-space: nowrap;
  transform: scaleX(0.85);
  letter-spacing: 0.08em;
}
@media screen and (max-width: 639px) {
  .MainNav ul li {
    margin-bottom: 20px;
  }
}
.MainNav ul li a {
  text-decoration: none;
  color: #000;
  font-size: 19px;
  text-shadow: 0px 0px 5px #ffffff, 0px 0px 5px #fff;
}
.MainNav ul li a:hover {
  color: #e60012;
}
.MainNav ul li:last-child {
  margin-right: 0px;
}

.MainVisual {
  width: 100%;
  overflow: hidden;
  background-image: url("../images/pc_kv.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  padding-top: 65%;
  display: block;
  margin: 0 auto;
  opacity: 0;
  animation: fade-in 0.6s forwards;
  position: relative;
}
@media screen and (max-width: 639px) {
  .MainVisual {
    background-image: url("../images/sp_kv.jpg");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    padding-top: 181%;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
    background-size: 120%;
  }
  to {
    opacity: 1;
    background-size: 100%;
  }
}
.MainVisual-link {
  position: absolute;
  top: 106px;
  right: 0;
  overflow: hidden;
}
.MainVisual-link a {
  font-size: 19px;
  text-decoration: none;
  color: #fff;
  display: inline-block;
  padding: 10px 30px 10px 20px;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.6);
  position: relative;
}
.MainVisual-link a svg {
  margin-left: 10px;
}
.MainVisual-link a:hover {
  color: #e60012;
  background: rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 639px) {
  .MainVisual-link {
    bottom: 20px;
    top: auto;
  }
  .MainVisual-link a {
    font-size: 14px;
  }
}

.Introduction {
  margin: 0 auto;
  text-align: center;
  max-width: 100%;
  padding: 37px 20px;
  background-color: #fff;
  background-image: url("../images/bg_white.png");
  background-size: 100%;
  background-attachment: fixed;
}

.News {
  background: #000;
  padding: 0 20px;
}
.News-inner {
  width: 1440px;
  padding: 24px 0;
  margin: 0 auto;
  display: flex;
}
@media screen and (max-width: 639px) {
  .News-inner {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 639px) {
  .News {
    width: 100%;
    padding: 20px;
  }
}
.News-title h2 {
  font-family: "futura-pt-bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 70px;
  color: #fff;
  display: inline-block;
  transform: scaleX(1);
  width: 100%;
}
@media screen and (max-width: 639px) {
  .News-title h2 {
    font-size: 50px;
  }
}
@media screen and (max-width: 639px) {
  .News-title h2 {
    display: inline;
  }
}
@media screen and (max-width: 639px) {
  .News-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
  }
}
.News-link {
  padding: 0 8px;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.15em;
  line-height: 140%;
  text-decoration: none;
  border: #fff 1px solid;
  display: inline-block;
  font-weight: bold;
  white-space: nowrap;
}
.News-link:hover {
  color: #e60012;
  border: #e60012 solid 1px;
}
@media screen and (max-width: 639px) {
  .News-link {
    height: 25px;
  }
}
.News ul {
  width: 80%;
}
.News ul li {
  font-size: 20px;
  margin-bottom: 4px;
  width: 100%;
  display: flex;
  vertical-align: middle;
}
.News ul li hr {
  width: 20px;
  display: inline-block;
  height: 1px;
  margin-bottom: 8px;
}
.News ul li span {
  color: #818181;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}
.News ul li p {
  display: inline-block;
  margin-left: -10px;
}
.News ul li a {
  color: #fff;
  display: inline-block;
  width: 100%;
  background: #343434;
  padding: 10px;
}
.News ul li a:hover {
  background: #1a1a1a;
  color: #e60012;
  scale: 1.05;
}
@media screen and (max-width: 639px) {
  .News ul {
    width: 100%;
  }
  .News ul li {
    font-size: 12px;
  }
}

.Features {
  position: relative;
  background-image: url("../images/bg_grey.png");
  background-size: 100%;
  width: 100%;
}
.Features-bg {
  opacity: 1;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.Features-inner {
  width: 1100px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
  position: relative;
}
.Features-title {
  position: relative;
  margin-bottom: 70px;
}
@media screen and (max-width: 639px) {
  .Features-title {
    margin-bottom: 40px;
  }
}
.Features-title h2 {
  font-size: 19px;
  color: #e60012;
  transform: scaleX(0.85);
  letter-spacing: 0.08em;
}
.Features-title p {
  font-family: "futura-pt-bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 70px;
  color: #000;
  transform: scaleX(1);
  display: inline-block;
}
@media screen and (max-width: 639px) {
  .Features-title p {
    font-size: 50px;
  }
}
.Features ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.Features ul li {
  width: 360px;
  display: inline-block;
  text-align: center;
  margin-bottom: 40px;
}
.Features ul li img {
  border: #000 solid 3px;
  width: 220px;
}
.Features ul li h3 {
  border-bottom: 2px solid #000;
  padding: 12px 0 16px;
  font-size: 24px;
  line-height: 140%;
  height: 130px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.4em;
  letter-spacing: 0.2em;
  white-space: nowrap;
}
.Features ul li h3 b {
  font-weight: bold;
  color: #e60012;
  display: inline;
}
.Features ul li p {
  font-size: 16px;
  font-weight: normal;
  font-feature-settings: "palt";
}
.Features ul li p span {
  margin-top: 10px;
  display: inline-block;
}
.Features ul li span {
  font-size: 10px;
  display: inline-block;
}
.Features-about {
  background: #eeeeee;
  display: flex;
  padding: 20px 50px;
  text-align: left;
  width: 900px;
  margin: 40px auto 0;
  align-items: center;
}
@media screen and (max-width: 639px) {
  .Features-about {
    width: 95%;
    padding: 2vw 0.1vw;
  }
}
.Features-about p {
  font-weight: normal;
  letter-spacing: 0;
  width: 573px;
}
.Features-about .logo {
  width: 265px;
}
.Features-about img {
  width: 265px;
  height: auto;
}
.Features-about a {
  margin-top: 8px;
  display: inline-block;
  font-feature-settings: "palt";
  color: #616161;
}
@media screen and (max-width: 639px) {
  .Features-about {
    flex-direction: column;
  }
}

.Story {
  width: 100%;
  background: url("../images/bg_story.png");
  position: relative;
}
.Story-bg {
  opacity: 1;
  height: 100%;
  position: absolute;
  top: 0;
  left: -20px;
}
@media screen and (max-width: 639px) {
  .Story-bg {
    height: 40%;
    left: 0;
  }
}
.Story-title {
  position: relative;
  margin-bottom: 70px;
  text-align: center;
}
@media screen and (max-width: 639px) {
  .Story-title {
    margin-bottom: 40px;
  }
}
.Story-title h2 {
  font-size: 19px;
  color: #e60012;
  transform: scaleX(0.85);
  letter-spacing: 0.08em;
  letter-spacing: 0;
}
.Story-title p {
  font-family: "futura-pt-bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 70px;
  color: #fff;
  display: inline-block;
  transform: scaleX(1);
}
@media screen and (max-width: 639px) {
  .Story-title p {
    font-size: 50px;
  }
}
.Story-text {
  text-align: center;
  color: #fff;
  font-size: 22px;
  letter-spacing: 0.17em;
  line-height: 200%;
  font-weight: bold;
  transform: scaleX(0.85);
  letter-spacing: 0.08em;
  text-shadow: #000 0px 0px 10px;
}
@media screen and (max-width: 639px) {
  .Story-text {
    font-size: 17px;
  }
}

.Character {
  background: #e60012;
  border-top: #000 solid 11px;
  border-bottom: #000 solid 11px;
  position: relative;
}
.Character-inner {
  width: 1280px;
  margin: 0 auto;
  position: relative;
}
.Character-bg {
  width: 100vw;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.Character-title {
  position: relative;
  margin-bottom: 70px;
  text-align: center;
}
@media screen and (max-width: 639px) {
  .Character-title {
    margin-bottom: 40px;
  }
}
.Character-title h2 {
  font-size: 19px;
  color: #e60012;
  transform: scaleX(0.85);
  letter-spacing: 0.08em;
  color: #fff;
}
.Character-title p {
  font-family: "futura-pt-bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 70px;
  color: #000;
  transform: scaleX(1);
  display: inline-block;
}
@media screen and (max-width: 639px) {
  .Character-title p {
    font-size: 50px;
  }
}
.Character-intro {
  text-align: center;
  margin: 70px auto 0;
  font-size: 24px;
  color: #fff;
  width: 900px;
}
.Character-intro .word {
  display: inline-block;
  margin: 0 auto 8px;
  font-feature-settings: "palt";
  padding: 4px 0px;
  position: relative;
  transform: scaleX(0.85);
  letter-spacing: 0.08em;
}
.Character-intro .word .rect {
  background: #000;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.Character-intro .word .label {
  color: #fff;
  width: 100%;
  height: 100%;
  padding: 4px 10px;
}
@media screen and (max-width: 639px) {
  .Character-intro {
    font-size: clamp(0.625rem, -0.577rem + 5.13vw, 0.75rem);
    margin: 0 auto;
  }
}
.Character-nav {
  display: flex;
}
.Character-nav img {
  width: 72px;
  max-width: 90%;
}
.Character-nav img:hover {
  cursor: pointer;
}
.Character .desc {
  text-align: left;
  width: 85%;
  margin-right: 40px;
}
.Character .desc .name {
  font-size: 50px;
  color: #000;
  letter-spacing: 0.1em;
  background: #fff;
  display: inline-block;
  padding: 8px;
  line-height: 1em;
}
.Character .desc .chara-desc {
  text-align: left;
  color: #fff;
  font-size: 20px;
  padding: 20px;
  background: #000;
  font-weight: bold;
  line-height: 180%;
}
@media screen and (max-width: 639px) {
  .Character .desc {
    width: 100%;
  }
  .Character .desc .chara-desc {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .Character .desc .name {
    font-size: 30px;
  }
}

.Event {
  position: relative;
  background-image: url("../images/bg_grey.png");
  background-size: 100%;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.Event-bg {
  opacity: 1;
  height: 70%;
  position: absolute;
  top: 0;
  left: -20px;
}
@media screen and (max-width: 639px) {
  .Event-bg {
    height: 40%;
  }
}
.Event-title {
  position: relative;
  margin-bottom: 70px;
  text-align: center;
}
@media screen and (max-width: 639px) {
  .Event-title {
    margin-bottom: 40px;
  }
}
.Event-title h2 {
  font-size: 19px;
  color: #e60012;
  transform: scaleX(0.85);
  letter-spacing: 0.08em;
  color: #e60012;
}
.Event-title p {
  font-family: "futura-pt-bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 70px;
  color: #000;
  transform: scaleX(1);
  display: inline-block;
}
@media screen and (max-width: 639px) {
  .Event-title p {
    font-size: 50px;
  }
}
.Event-list {
  position: relative;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.Event-list-item {
  background: #eeeeee;
  border: solid #e60012 2px;
  color: #000;
  width: 800px;
  margin: 0 auto 70px;
  padding: 34px 20px;
}
.Event-list-item .EventTitle {
  background: #000;
  color: #fff;
  margin-bottom: 16px;
}
.Event-list-item h3 {
  font-size: 27px;
}
@media screen and (max-width: 639px) {
  .Event-list-item h3 {
    font-size: 20px;
    padding: 4px 0;
  }
}
.Event-list-item .EventTerm {
  font-size: 27px;
  padding: 0 47px;
  border-right: 2px #e60012 solid;
  border-left: 2px #e60012 solid;
  display: inline-block;
  transform: scaleX(0.85);
  letter-spacing: 0.08em;
}
@media screen and (max-width: 639px) {
  .Event-list-item .EventTerm {
    font-size: 20px;
    padding: 0 10px;
    width: 100%;
  }
}
.Event-list-item .EventMap {
  margin-top: 16px;
}
.Event-list-item .EventDetail {
  font-size: 20px;
  text-align: left;
  font-weight: normal;
  line-height: 180%;
  margin-top: 16px;
}
@media screen and (max-width: 639px) {
  .Event-list-item .EventDetail {
    font-size: 14px;
  }
  .Event-list-item .EventDetail p {
    width: 100%;
    display: inline;
    font-feature-settings: "palt";
  }
  .Event-list-item .EventDetail b {
    margin-right: 5px;
  }
}
.Event-list-item .EventLink {
  display: inline-block;
  color: #000;
  background-color: #eeeeee;
  text-decoration: none;
  border: solid 2px #000;
  padding-left: 20px;
  font-size: 24px;
  margin-top: 16px;
  transform: scaleX(0.85);
  letter-spacing: 0.08em;
  line-height: 2em;
}
.Event-list-item .EventLink .icon {
  display: inline-block;
  border-left: 1px solid #000;
  margin-left: 16px;
  padding-left: 20px;
  padding-right: 20px;
  background-color: #eeeeee;
  transition: 0.3s;
}
@media screen and (max-width: 639px) {
  .Event-list-item .EventLink .icon {
    padding-left: 14px;
    padding-right: 10px;
  }
}
.Event-list-item .EventLink:hover {
  background: #000;
  color: #fff;
}
.Event-list-item .EventLink:hover .icon {
  background-color: #eeeeee;
  padding-left: 26px;
  padding-right: 14px;
}
@media screen and (max-width: 639px) {
  .Event-list-item .EventLink {
    width: 100%;
    font-size: 19px;
    padding-left: 5px;
    letter-spacing: 0;
  }
}
.Event-list .comingsoon .EventTitle {
  background: #000;
}
.Event-list .comingsoon p {
  font-size: 40px;
  font-family: "futura-pt-bold", sans-serif;
  color: #707070;
}

.Howtoplay {
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  width: 100%;
  background: #eeeeee url("../images/bg_white.png");
  background-size: 100%;
  background-attachment: fixed;
}
.Howtoplay-bg {
  opacity: 1;
  position: absolute;
  top: 0;
  width: 100%;
}
.Howtoplay-title {
  position: relative;
  margin-bottom: 70px;
  text-align: center;
}
@media screen and (max-width: 639px) {
  .Howtoplay-title {
    margin-bottom: 40px;
  }
}
.Howtoplay-title h2 {
  font-size: 19px;
  color: #e60012;
  transform: scaleX(0.85);
  letter-spacing: 0.08em;
  color: #e60012;
}
.Howtoplay-title p {
  font-family: "futura-pt-bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 70px;
  color: #000;
  transform: scaleX(1);
  display: inline-block;
}
@media screen and (max-width: 639px) {
  .Howtoplay-title p {
    font-size: 50px;
  }
}
.Howtoplay .Point {
  display: flex;
  justify-content: space-between;
  width: 968px;
  margin: 0 auto 70px;
}
@media screen and (max-width: 639px) {
  .Howtoplay .Point {
    width: 600px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}
.Howtoplay .Point li {
  width: 24%;
}
@media screen and (max-width: 639px) {
  .Howtoplay .Point li {
    width: min(45%, 230px);
  }
}
.Howtoplay .steps {
  margin: 0 auto;
  text-align: center;
  width: 1000px;
}
@media screen and (min-width: 640px) {
  .Howtoplay .steps {
    padding: 0 30px;
  }
}
.Howtoplay .steps-item {
  display: inline-block;
  width: 738px;
  border: solid #e60012 1px;
  position: relative;
  text-align: left;
  padding: 34px 70px;
  margin-bottom: 80px;
  background: #eee;
}
@media screen and (max-width: 639px) {
  .Howtoplay .steps-item {
    width: 80%;
    min-width: 300px;
    padding: 10px;
    text-align: center;
  }
}
.Howtoplay .steps-num {
  background: #e60012;
  display: inline-block;
  font-size: 40px;
  color: #fff;
  padding: 10px;
  position: absolute;
  top: -40px;
  left: -40px;
  line-height: 1em;
}
@media screen and (max-width: 639px) {
  .Howtoplay .steps-num {
    font-size: 20px;
  }
}
.Howtoplay .steps-item:last-child {
  margin-bottom: 0px;
}
.Howtoplay .steps-item:nth-of-type(even) {
  margin-left: max(min(240px, 100vw - 820px), 0);
}
@media screen and (max-width: 639px) {
  .Howtoplay .steps-item:nth-of-type(even) {
    margin-left: 0;
  }
}
.Howtoplay .steps-item:nth-of-type(odd) {
  margin-right: 178px;
}
@media screen and (max-width: 639px) {
  .Howtoplay .steps-item:nth-of-type(odd) {
    margin-right: 0;
  }
  .Howtoplay .steps-item:nth-of-type(odd) .steps-num {
    left: auto;
    right: -40px;
  }
}
.Howtoplay .steps h3 {
  font-size: 32px;
  color: #fff;
  background-color: #000;
  display: inline-block;
  padding: 10px;
  margin-bottom: 10px;
  line-height: 1em;
  margin-left: -38px;
}
@media screen and (max-width: 639px) {
  .Howtoplay .steps h3 {
    font-size: 24px;
    margin-left: 0;
  }
}
.Howtoplay .steps img {
  width: 148px;
}
@media screen and (max-width: 639px) {
  .Howtoplay .steps img {
    margin-bottom: 10px;
  }
}
.Howtoplay .steps-detail {
  display: inline-block;
  font-size: 22px;
  line-height: 140%;
  font-weight: bold;
}
.Howtoplay .steps-detail span {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.4em;
  display: inline-block;
  margin-top: 20px;
}
@media screen and (max-width: 639px) {
  .Howtoplay .steps-detail {
    font-size: 16px;
    width: 100%;
  }
  .Howtoplay .steps-detail span {
    font-size: 10px;
    margin-top: 10px;
  }
}
.Howtoplay .steps-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
}
@media screen and (max-width: 639px) {
  .Howtoplay .steps-wrap {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

.Products {
  position: relative;
  background-image: url("../images/bg_grey.png");
  background-size: 100%;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.Products-inner {
  position: relative;
}
.Products-title {
  position: relative;
  margin-bottom: 70px;
  text-align: center;
}
@media screen and (max-width: 639px) {
  .Products-title {
    margin-bottom: 40px;
  }
}
.Products-title h2 {
  font-size: 19px;
  color: #e60012;
  transform: scaleX(0.85);
  letter-spacing: 0.08em;
  color: #e60012;
}
.Products-title p {
  font-family: "futura-pt-bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 70px;
  color: #000;
  transform: scaleX(1);
  display: inline-block;
}
@media screen and (max-width: 639px) {
  .Products-title p {
    font-size: 50px;
  }
}
.Products-main {
  width: 800px;
  background-color: #fff;
  border: solid #000 1px;
  margin: 0 auto;
  text-align: center;
  padding: 34px 20px;
}
.Products-main dl {
  font-size: 27px;
}
@media screen and (max-width: 639px) {
  .Products-main dl {
    font-size: 20px;
  }
}
.Products-main dl dt {
  color: #fff;
  background-color: #e60012;
  letter-spacing: 0.08em;
  margin: 16px 0;
}
.Products-main dl dd {
  font-weight: bold;
}

.Tutorial {
  background: #e60012;
  border-top: #000 solid 11px;
  border-bottom: #000 solid 11px;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}
.Tutorial-bg {
  opacity: 1;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.Tutorial-title {
  position: relative;
  margin-bottom: 70px;
  text-align: center;
}
@media screen and (max-width: 639px) {
  .Tutorial-title {
    margin-bottom: 40px;
  }
}
.Tutorial-title h2 {
  font-size: 19px;
  color: #fff;
  transform: scaleX(0.85);
  letter-spacing: 0.08em;
}
.Tutorial-title p {
  font-family: "futura-pt-bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 70px;
  color: #000;
  transform: scaleX(1);
  display: inline-block;
}
@media screen and (max-width: 639px) {
  .Tutorial-title p {
    font-size: 50px;
  }
}
.Tutorial-main {
  width: 900px;
  margin: 0 auto;
  padding: 70px 144px;
  background: #fff;
  border: solid 1px #000;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 639px) {
  .Tutorial-main {
    padding: 20px;
  }
}
.Tutorial-main img {
  margin-bottom: 32px;
}
@media screen and (max-width: 639px) {
  .Tutorial-main img {
    margin-bottom: 10px;
  }
}
.Tutorial-main input {
  width: 280px;
  height: 45px;
  border: solid #000 2px;
  border-radius: 0;
  font-size: 18px;
  padding: 10px 4px;
  margin-right: 10px;
  transition: 0.3s;
}
.Tutorial-main input:hover {
  background: #e1e1e1;
}
.Tutorial-main button {
  background-color: #000;
  color: #fff;
  font-size: 18px;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  width: 140px;
  height: 45px;
  font-weight: bold;
  transform: scaleX(0.85);
  letter-spacing: 0.08em;
  letter-spacing: 15%;
  transition: 0.3s;
}
.Tutorial-main button:hover {
  background: #e60012;
  scale: 1.05;
}
@media screen and (max-width: 639px) {
  .Tutorial-main button {
    margin-top: 10px;
  }
}
.Tutorial .hints {
  width: 987px;
  margin: 40px auto 0;
}
.Tutorial-correct {
  margin: 20px 60px 0;
}
.Tutorial-correct img {
  margin: 0;
}
.Tutorial-button {
  width: 60px;
  display: inline-block;
  margin-top: 20px;
}

.Goods {
  background: #232323;
  position: relative;
}
.Goods-bg {
  opacity: 1;
  width: 85vw;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.Goods-inner {
  position: relative;
  z-index: 10;
}
.Goods-title {
  position: relative;
  margin-bottom: 70px;
  text-align: center;
}
@media screen and (max-width: 639px) {
  .Goods-title {
    margin-bottom: 40px;
  }
}
.Goods-title h2 {
  font-size: 19px;
  color: #e60012;
  transform: scaleX(0.85);
  letter-spacing: 0.08em;
}
.Goods-title p {
  font-family: "futura-pt-bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 70px;
  color: #fff;
  display: inline-block;
  transform: scaleX(1);
}
@media screen and (max-width: 639px) {
  .Goods-title p {
    font-size: 50px;
  }
}
.Goods-list {
  margin: 0 auto;
  width: 909px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
@media screen and (max-width: 639px) {
  .Goods-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    place-items: center;
    gap: 20px;
  }
}
.Goods-list li {
  width: 263px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  margin-bottom: 70px;
  position: relative;
}
@media screen and (max-width: 639px) {
  .Goods-list li {
    margin-bottom: 20px;
  }
}
.Goods-list li .goods-img {
  transition: 0.3s;
  border: solid #000 1px;
  position: relative;
}
.Goods-list li .goods-img:hover {
  scale: 1.05;
}
.Goods-list li .goods-img::after {
  display: block;
  content: "";
  width: 22px;
  height: 22px;
  background: url("../images/icon_zoom.svg");
  position: absolute;
  bottom: 8px;
  right: 4px;
}
.Goods-list li h3 {
  transform: scaleX(1);
  font-size: 23px;
  padding: 10px 0px;
  text-align: center;
  background-color: #000;
}
.Goods-list li h3 span {
  transform: scaleX(0.85);
  display: inline-block;
}
@media screen and (max-width: 639px) {
  .Goods-list li h3 {
    font-size: 20px;
  }
}
.Goods-list li .price {
  font-size: 27px;
  padding: 20px 0px 10px;
}
.Goods-list li .price span {
  font-size: 17px;
  font-weight: normal;
}
@media screen and (max-width: 639px) {
  .Goods-list li .price {
    font-size: 20px;
  }
  .Goods-list li .price span {
    font-size: 17px;
  }
}
.Goods-list li .detail {
  font-weight: normal;
  font-size: 12px;
  padding-bottom: 20px;
}
@media screen and (max-width: 639px) {
  .Goods-list li .detail {
    font-size: 10px;
  }
}
.Goods .Goods-wrap {
  text-align: center;
}
.Goods .GoodsLink {
  display: inline-block;
  color: #000;
  background-color: #eeeeee;
  text-decoration: none;
  border: solid 2px #000;
  padding-left: 20px;
  font-size: 24px;
  margin-top: 16px;
  transform: scaleX(0.85);
  letter-spacing: 0.08em;
  line-height: 2em;
  margin-bottom: 40px;
}
.Goods .GoodsLink .icon {
  display: inline-block;
  border-left: 1px solid #000;
  margin-left: 16px;
  padding-left: 20px;
  padding-right: 20px;
  background-color: #eeeeee;
  transition: 0.3s;
}
.Goods .GoodsLink:hover {
  background: #000;
  color: #fff;
}
.Goods .GoodsLink:hover .icon {
  background-color: #eeeeee;
  padding-left: 26px;
  padding-right: 14px;
}
@media screen and (max-width: 639px) {
  .Goods .GoodsLink {
    font-size: 20px;
  }
}

.Notice {
  background-image: url("../images/bg_grey.png");
  background-color: rgba(255, 255, 255, 0.6);
  background-blend-mode: lighten;
}
.Notice-title {
  position: relative;
  margin-bottom: 70px;
  text-align: center;
}
@media screen and (max-width: 639px) {
  .Notice-title {
    margin-bottom: 40px;
  }
}
.Notice-title h2 {
  font-size: 19px;
  color: #e60012;
  transform: scaleX(0.85);
  letter-spacing: 0.08em;
  color: #e60012;
}
.Notice-title p {
  font-family: "futura-pt-bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 70px;
  color: #000;
  transform: scaleX(1);
  display: inline-block;
}
@media screen and (max-width: 639px) {
  .Notice-title p {
    font-size: 50px;
  }
}

.NewsPage {
  padding: 150px 20px 100px;
  position: relative;
  background-image: url("../images/bg_grey.png");
  background-size: 100%;
  width: 100%;
}
.NewsPage-bg {
  opacity: 1;
  height: 70%;
  position: absolute;
  top: 0;
  left: -20px;
}
@media screen and (max-width: 639px) {
  .NewsPage-bg {
    height: 40%;
  }
}
.NewsPage-inner {
  position: relative;
}
.NewsPage-title {
  position: relative;
  margin-bottom: 70px;
  text-align: center;
}
@media screen and (max-width: 639px) {
  .NewsPage-title {
    margin-bottom: 40px;
  }
}
.NewsPage-title h2 {
  font-size: 19px;
  color: #e60012;
  transform: scaleX(0.85);
  letter-spacing: 0.08em;
  color: #e60012;
}
.NewsPage-title p {
  font-family: "futura-pt-bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 70px;
  color: #000;
  transform: scaleX(1);
  display: inline-block;
}
@media screen and (max-width: 639px) {
  .NewsPage-title p {
    font-size: 50px;
  }
}

.ArticleContainer {
  width: 1000px;
  margin: auto;
  background: white;
  padding: 25px;
}

.Article-title {
  margin-bottom: 15px;
}
.Article-title a {
  color: #000;
  text-decoration: none;
}
.Article-title a:hover {
  text-decoration: underline;
}
.Article-date {
  font-weight: normal;
}
.Article hr {
  border: none;
  border-top: 3px solid #000;
  margin: 1.3em 0;
}
.Article-body p {
  font-weight: normal;
  transform: none;
  line-height: 1.8;
  margin-bottom: 1em;
}

.SubPageButtons {
  width: 340px;
  margin: 40px auto;
}

.SubPageButton {
  background: #fff;
  border: #000 solid 2px;
  color: #000;
  text-decoration: none;
  display: block;
  padding: 10px 20px;
  margin: 20px auto 0;
  font-weight: bold;
  text-align: center;
}
.SubPageButton span {
  display: block;
  transform: scaleX(0.85);
  letter-spacing: 0.08em;
}
.SubPageButton.primary {
  background: #000;
  color: #fff;
}

.SiteFooter {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 70px 0;
}
.SiteFooter .contact {
  background: #2F2F2F;
  width: 1180px;
  margin: 0 auto 10px;
  padding: 40px 20px;
}
.SiteFooter .contact p {
  font-weight: normal;
  font-size: 18px;
  transform: scaleX(0.85);
  letter-spacing: 0.08em;
}
@media screen and (max-width: 639px) {
  .SiteFooter .contact p {
    font-size: 14px;
  }
}
.SiteFooter .contact h2 {
  font-size: 27px;
  color: #E8E8E8;
  transform: scaleX(0.85);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
@media screen and (max-width: 639px) {
  .SiteFooter .contact h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 639px) {
  .SiteFooter .contact {
    width: 95%;
    padding: 40px 16px;
  }
}
.SiteFooter small {
  font-size: 16px;
  font-weight: normal;
}
@media screen and (max-width: 639px) {
  .SiteFooter small {
    font-size: 12px;
  }
}
.SiteFooter .BannerList li {
  margin-bottom: 10px;
}
.SiteFooter .BannerList li img {
  width: 319px;
}

.swiper {
  width: 100%;
  max-width: 1130px;
}
@media screen and (max-width: 639px) {
  .swiper {
    width: 90%;
  }
}

.subSwiper {
  width: 500px;
}
@media screen and (max-width: 639px) {
  .subSwiper {
    width: 90%;
    margin: 0 auto;
  }
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 639px) {
  .swiper-slide {
    display: inline-block;
    text-align: center;
    margin: 0 auto;
  }
  .swiper-slide .character {
    width: 80%;
    margin: 0 auto;
  }
}

.swiper-slide-thumb-active {
  opacity: 0.8;
}
.swiper-slide-thumb-active::after {
  width: 100%;
  height: 100%;
  background: #e60012;
  opacity: 0.6;
  mix-blend-mode: multiply;
  display: inline-block;
  content: "";
  position: absolute;
}

@media screen and (max-width: 639px) {
  .swiper-button-prev {
    width: 30px;
  }
  .swiper-button-next {
    width: 30px;
  }
}
.image-modal {
  position: fixed;
  inset: 0;
  display: none; /* 非表示がデフォルト */
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.image-modal[aria-hidden=false] {
  display: flex;
}

/* 半透明オーバーレイ */
.image-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  cursor: zoom-out;
}

/* 中心ダイアログ */
.image-modal__dialog {
  position: relative;
  max-width: calc(100% - 40px);
  max-height: calc(100% - 60px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  background: #fff;
  padding: 12px;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 画像 */
.image-modal__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  max-height: 100%;
}

.image-modal__img {
  max-width: 90vw;
  max-height: 75vh;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 4px;
}

/* キャプション */
.image-modal__caption {
  font-size: 14px;
  color: #333;
  text-align: center;
  max-width: 90vw;
  word-break: break-word;
}

/* 閉じるボタン */
.image-modal__close {
  position: absolute;
  right: 8px;
  top: 8px;
  background: transparent;
  border: none;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  z-index: 1002;
}

.image-modal__close:focus {
  outline: 2px solid #aaa;
}

[data-transition].hidden {
  pointer-events: none;
}

[data-transition]:not(.hidden) {
  transition: 0.25s;
  transition-delay: 0.3s;
  transition-timing-function: cubic-bezier(0.04, 0.69, 0.39, 1.28);
  animation-timing-function: cubic-bezier(0, 0.78, 0.395, 1.205);
}

[data-transition=slideRight].hidden {
  transform: translateX(50%);
  opacity: 0;
}

[data-transition=slideLeft].hidden {
  transform: translateX(-50%);
  opacity: 0;
}

[data-transition=slideBottom].hidden {
  transform: translateY(50%);
  opacity: 0;
}

[data-transition=scale].hidden {
  transform: scale(0);
}/*# sourceMappingURL=style.css.map */