@charset "UTF-8";
/* box-sizing: border-box;を設定 */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* フォントサイズの拡大を防ぐ */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

/* デフォルトのマージンを削除、作成するCSSの制御を改善するため */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* リストのスタイルを削除、これはデフォルトのスタイルが削除されることを示唆します */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* bodyのデフォルトを設定 */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* 見出しやインタラクティブ要素のline-heightを設定 */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* classを持たないa要素はデフォルトのスタイルを継承 */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

/* 画像の扱いを簡単にする */
img,
picture {
  pointer-events: none;
  max-width: 100%;
  display: block;
  height: auto;
}

/* inputやbuttonなどのfontは継承 */
input,
button,
textarea,
select {
  font: inherit;
}

/* rows属性のないtextareasが小さくならないようにする */
textarea:not([rows]) {
  min-height: 10em;
}

/* アンカーされている要素には余分なスクロールマージンが必要 */
:target {
  scroll-margin-block: 5ex;
}

/*----- COLORS -----*/
/*----- BREAKPOINT -----*/
/*----- LINKS -----*/
a {
  color: #000;
  text-decoration: none;
}

a:hover {
  color: #000;
}

a:focus {
  outline: 0;
}

a:hover,
a:active {
  outline: 0;
}

a[href^="tel:"] {
  cursor: default;
}

br.forPC {
  display: inline;
}

br.forSP {
  display: none;
}

@media only screen and (max-width: 768px) {
  br.forPC {
    display: none;
  }
  br.forSP {
    display: inline;
  }
}
/*----- IMAGES -----*/
img {
  max-width: 100%;
  vertical-align: bottom;
}

img[src$=".svg"] {
  width: 100%;
}

/*----- MISC -----*/
::-moz-selection {
  background: #cedae3;
  color: #000;
  text-shadow: none;
}
::selection {
  background: #cedae3;
  color: #000;
  text-shadow: none;
}

::-webkit-selection {
  background: #cedae3;
  color: #000;
  text-shadow: none;
}

::-moz-selection {
  background: #cedae3;
  color: #000;
  text-shadow: none;
}

/*----- FONT -----*/
/*----- WP CORE -----*/
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #FFF;
  border: 1px solid #F0F0F0;
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption .wp-caption-text,
.gallery-caption {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Document
========================================================================== */
html {
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

:root {
  --halfup: 0px;
  --swipe-height: 0px;
}

body {
  height: 100%;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: #1d1d1d;
  background-color: #abf3fe;
  line-height: 1.5;
  letter-spacing: 0.5px;
  padding: 0;
  margin: 0;
  position: relative;
  background-image: url("../../assets/images/hebereke_bg.png");
  background-position: 50% 50%;
}

.wrapper {
  overflow: hidden;
}

h2.content_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: clamp(20px, 5vw, 60px);
  margin-bottom: 0;
  -webkit-transition: opacity 360ms, -webkit-transform 360ms;
  transition: opacity 360ms, -webkit-transform 360ms;
  transition: transform 360ms, opacity 360ms;
  transition: transform 360ms, opacity 360ms, -webkit-transform 360ms;
  opacity: 0;
}
h2.content_title span {
  max-width: 90vw;
  display: block;
}
h2.content_title.active {
  -webkit-transform: translateY(calc(var(--halfup, 0px) / -2));
          transform: translateY(calc(var(--halfup, 0px) / -2));
  opacity: 1;
}

/* header::WRAP
========================================================================== */
#header {
  width: 100%;
  background-color: #003dd5;
  z-index: 1000;
}

/* header::HAMBURGER
========================================================================== */
#header .nav-toggle {
  display: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  padding: 8px;
  margin: 0;
  color: #fff;
}

#header .nav-toggle__bars {
  display: grid;
  gap: 5px;
}

#header .nav-toggle__bars > span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
}

/* header::MENU MAIN
========================================================================== */
#header .inner {
  height: clamp(50px, 6vw, 60px);
  width: 100%;
  margin: auto;
  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;
  gap: 3em;
}
#header nav.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: clamp(0px, 2.5vw, 30px);
}
#header nav.nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(10px, 2vw, 30px);
  list-style: none;
  margin: 0;
  padding: 0;
}
#header nav.nav ul li a {
  font-weight: 700;
  color: #fff;
  font-size: clamp(16px, 4px + 1.5625vw, 24px);
}
#header .wpml-ls-legacy-list-horizontal {
  padding: 0;
  margin-right: clamp(0px, 2.5vw, 30px);
}

@media screen and (max-width: 840px) {
  #header .nav-toggle {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: clamp(0px, 2.5vw, 30px);
    cursor: pointer;
  }
  #header .inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 12px;
  }
  #header nav.nav {
    width: 100%;
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
    display: block;
    overflow: hidden;
    max-height: 0;
    margin-left: 0;
    position: absolute;
    top: clamp(50px, 6vw, 80px);
    -webkit-transition: max-height 360ms ease-out;
    transition: max-height 360ms ease-out;
    background-color: rgba(0, 60, 213, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
  }
  #header nav.nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    padding: calc(2.5vw + 8px);
    padding-top: 2vw;
  }
  #header nav.nav ul li a {
    font-size: clamp(24px, 7.3333333333px + 3.4722222222vw, 34px);
  }
  #header.is-menu-open nav.nav {
    max-height: 60vh;
    -webkit-transition: max-height 480ms ease-out;
    transition: max-height 480ms ease-out;
  }
}
/* header::LANGUAGE SWITCH
========================================================================== */
nav.language-nav {
  font-weight: 700;
}
nav.language-nav ul li a {
  font-size: clamp(14px, 10.3225806452px + 0.9677419355vw, 20px);
}

.wpml-ls-current-language > a {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  background-color: #d1d1d1;
  border-radius: 500px;
  -webkit-transition: background-color 240ms;
  transition: background-color 240ms;
}
.wpml-ls-current-language > a:before {
  content: "";
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMTIgMGMtNi42MjcgMC0xMiA1LjM3My0xMiAxMnM1LjM3MyAxMiAxMiAxMiAxMi01LjM3MyAxMi0xMi01LjM3My0xMi0xMi0xMnptNi4wMTYgMTFjLS4wNDgtMS4wMy0uMTY4LTIuMDM1LS4zNTYtM2gzLjVjLjQxLjkzNS42ODUgMS45NDIuNzkgM2gtMy45MzR6bTMuOTMzIDJjLS4xMDUgMS4wNTgtLjM4IDIuMDY1LS43OSAzaC0zLjVjLjE4OC0uOTY1LjMwOS0xLjk3LjM1Ni0zaDMuOTM0em0tMS45NjgtN2gtMi44M2MtLjM3NS0xLjE5Ny0uODc1LTIuMjkyLTEuNDYxLTMuMjg2IDEuNzE2LjY4NCAzLjE5NSAxLjgzMSA0LjI5MSAzLjI4NnptLTQuOTQ4IDBoLTIuMDMzdi0zLjY3NGMuODQxIDEuMDEgMS41MjYgMi4yNTYgMi4wMzMgMy42NzR6bS0yLjAzMyAxMmgyLjAzM2MtLjUwNyAxLjQxOC0xLjE5MiAyLjY2NC0yLjAzMyAzLjY3NHYtMy42NzR6bS0yLTE1LjY3NHYzLjY3NGgtMi4wMzNjLjUwNy0xLjQxOCAxLjE5Mi0yLjY2NCAyLjAzMy0zLjY3NHptMCA1LjY3NHYzaC0yLjk5NGMuMDUyLTEuMDQuMTgxLTIuMDQ0LjM4OS0zaDIuNjA1em0wIDV2M2gtMi42MDVjLS4yMDgtLjk1Ni0uMzM2LTEuOTYtLjM4OS0zaDIuOTk0em0wIDV2My42NzRjLS44NDEtMS4wMS0xLjUyNi0yLjI1Ni0yLjAzMy0zLjY3NGgyLjAzM3ptMi0ydi0zaDIuOTk0Yy0uMDUyIDEuMDQtLjE4MSAyLjA0NC0uMzg5IDNoLTIuNjA1em0wLTV2LTNoMi42MDVjLjIwOC45NTYuMzM2IDEuOTYuMzg5IDNoLTIuOTk0em0tNC42OS04LjI4NmMtLjU4Ni45OTQtMS4wODYgMi4wODktMS40NjEgMy4yODZoLTIuODNjMS4wOTYtMS40NTUgMi41NzUtMi42MDIgNC4yOTEtMy4yODZ6bS0yLjMyNiA4LjI4NmgtMy45MzNjLjEwNS0xLjA1OC4zOC0yLjA2NS43OS0zaDMuNWMtLjE4OS45NjUtLjMwOSAxLjk3LS4zNTcgM3ptLjM1NyA1aC0zLjVjLS40MS0uOTM1LS42ODUtMS45NDItLjc5LTNoMy45MzRjLjA0NyAxLjAzLjE2NyAyLjAzNS4zNTYgM3ptLTIuMzIyIDJoMi44M2MuMzc1IDEuMTk3Ljg3NSAyLjI5MiAxLjQ2MSAzLjI4Ni0xLjcxNi0uNjg0LTMuMTk1LTEuODMxLTQuMjkxLTMuMjg2em0xMS42NzEgMy4yODZjLjU4Ni0uOTk0IDEuMDg2LTIuMDg5IDEuNDYxLTMuMjg2aDIuODNjLTEuMDk2IDEuNDU1LTIuNTc1IDIuNjAyLTQuMjkxIDMuMjg2eiIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
  width: 1em;
  height: 1em;
}
.wpml-ls-current-language:hover > a {
  border-radius: 20px 20px 0 0;
}

.wpml-ls-legacy-dropdown {
  width: 180px;
}
.wpml-ls-legacy-dropdown a {
  display: block;
  text-decoration: none;
  color: inherit;
  border: none;
  padding: 10px 20px;
  line-height: 1;
}

/* Footer
========================================================================== */
#footer {
  background-color: #202020;
  color: #fff;
  padding: clamp(20px, 10vw, 120px) 0;
  text-align: center;
  font-size: clamp(12px, 9.5483870968px + 0.6451612903vw, 16px);
}

/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-accessible-hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
  backdrop-filter: blur(10px);
}

.modaal-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  backdrop-filter: blur(10px);
}

.modaal-wrapper * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
}

.modaal-wrapper .modaal-close {
  border: none;
  background: 0 0;
  padding: 0;
  -webkit-appearance: none;
}

.modaal-wrapper.modaal-start_none {
  display: none;
  opacity: 1;
}

.modaal-wrapper.modaal-start_fade {
  opacity: 0;
}

.modaal-wrapper [tabindex="0"] {
  outline: 0 !important;
}

.modaal-wrapper.modaal-fullscreen {
  overflow: hidden;
}

.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
}

.modaal-fullscreen .modaal-outer-wrapper {
  display: block;
}

.modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 80px 0;
}

.modaal-fullscreen .modaal-inner-wrapper {
  padding: 0;
  display: block;
  vertical-align: top;
}

.modaal-container {
  position: relative;
  display: inline-block;
  margin: auto;
  text-align: left;
  color: #000;
  max-width: 870px;
  border-radius: 0;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: auto;
  width: 92.5%;
}

.modaal-container.is_loading {
  height: 100px;
  width: 100px;
  overflow: hidden;
}

.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto;
}

.modaal-close {
  position: fixed;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.modaal-close:focus,
.modaal-close:hover {
  outline: 0;
}

.modaal-close span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-close:after,
.modaal-close:before {
  display: block;
  content: " ";
  position: absolute;
  top: 14px;
  left: 23px;
  width: 2px;
  height: 26px;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.modaal-close:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modaal-close:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modaal-fullscreen .modaal-close {
  background: #afb7bc;
  right: 10px;
  top: 10px;
}

.modaal-content-container {
  border-radius: 10px;
  overflow: hidden;
}

.modaal-confirm-wrap {
  padding: 30px 0 0;
  text-align: center;
  font-size: 0;
}

.modaal-confirm-btn {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: 0 0;
}

.modaal-confirm-btn.modaal-ok {
  padding: 10px 15px;
  color: #fff;
  background: #555;
  border-radius: 3px;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.modaal-confirm-btn.modaal-ok:hover {
  background: #2f2f2f;
}

.modaal-confirm-btn.modaal-cancel {
  text-decoration: underline;
}

.modaal-confirm-btn.modaal-cancel:hover {
  text-decoration: none;
  color: #2f2f2f;
}

.modaal-instagram .modaal-container {
  width: auto;
  background: 0 0;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.modaal-instagram .modaal-content-container {
  padding: 0;
  background: 0 0;
}

.modaal-instagram .modaal-content-container > blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.modaal-instagram iframe {
  opacity: 0;
  margin: -6px !important;
  border-radius: 0 !important;
  width: 1000px !important;
  max-width: 800px !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-animation: instaReveal 1s linear forwards;
  animation: instaReveal 1s linear forwards;
}

.modaal-image .modaal-inner-wrapper {
  padding-left: 140px;
  padding-right: 140px;
}

.modaal-image .modaal-container {
  width: auto;
  max-width: 100%;
}

.modaal-gallery-wrap {
  position: relative;
  color: #fff;
}

.modaal-gallery-item {
  display: none;
}

.modaal-gallery-item img {
  display: block;
}

.modaal-gallery-item.is_active {
  display: block;
}

.modaal-gallery-label {
  display: none;
}

.modaal-gallery-control {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.modaal-gallery-control.is_hidden {
  opacity: 0;
  cursor: default;
}

.modaal-gallery-control:focus,
.modaal-gallery-control:hover {
  outline: 0;
}

.modaal-gallery-control span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-gallery-control:before {
  display: block;
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  width: 20px;
  aspect-ratio: 1/1;
  border-style: solid;
}

.modaal-gallery-next:before {
  border-width: 2px 2px 0 0;
}

.modaal-gallery-next-inner {
  left: 100%;
  margin-left: 40px;
}

.modaal-gallery-next-outer {
  right: 45px;
}

.modaal-gallery-prev:after,
.modaal-gallery-prev:before {
  left: 22px;
}

.modaal-gallery-prev:before {
  border-width: 0 0 2px 2px;
}

.modaal-gallery-prev:after {
  margin: -5px 0 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modaal-gallery-prev-inner {
  right: 100%;
  margin-right: 40px;
}

.modaal-gallery-prev-outer {
  left: 45px;
}

.modaal-video-wrap {
  margin: auto;
  position: relative;
  max-width: 1300px;
  width: 92.5%;
}

.modaal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  max-width: 100%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #000;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.modaal-video-container embed,
.modaal-video-container iframe,
.modaal-video-container object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modaal-iframe .modaal-content {
  width: 100%;
  height: 100%;
}

.modaal-iframe-elem {
  width: 100%;
  height: 100%;
  display: block;
}

.modaal-loading-spinner {
  background: 0 0;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  -webkit-transform: scale(0.25);
  transform: scale(0.25);
}

.modaal-loading-spinner > div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute;
}

.modaal-loading-spinner > div > div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff;
}

.modaal-loading-spinner > div:nth-of-type(1) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.modaal-loading-spinner > div:nth-of-type(2) > div,
.modaal-loading-spinner > div:nth-of-type(3) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(1) {
  -webkit-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(2) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.12s;
  animation-delay: 0.12s;
}

.modaal-loading-spinner > div:nth-of-type(2) {
  -webkit-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(3) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.modaal-loading-spinner > div:nth-of-type(4) > div,
.modaal-loading-spinner > div:nth-of-type(5) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(3) {
  -webkit-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(4) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.37s;
  animation-delay: 0.37s;
}

.modaal-loading-spinner > div:nth-of-type(4) {
  -webkit-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(5) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.modaal-loading-spinner > div:nth-of-type(6) > div,
.modaal-loading-spinner > div:nth-of-type(7) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(5) {
  -webkit-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(6) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.62s;
  animation-delay: 0.62s;
}

.modaal-loading-spinner > div:nth-of-type(6) {
  -webkit-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(7) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
}

.modaal-loading-spinner > div:nth-of-type(7) {
  -webkit-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(8) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.87s;
  animation-delay: 0.87s;
}

.modaal-loading-spinner > div:nth-of-type(8) {
  -webkit-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}

@media only screen and (min-width: 1400px) {
  .modaal-video-container {
    padding-bottom: 0;
    height: 731px;
  }
}
@media only screen and (max-width: 1140px) {
  .modaal-image .modaal-inner-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
  .modaal-gallery-control {
    top: auto;
    bottom: max(-19vw, -70px);
    -webkit-transform: none;
            transform: none;
  }
  .modaal-gallery-next {
    left: auto;
    right: 20px;
  }
  .modaal-gallery-prev {
    left: 20px;
    right: auto;
  }
}
@media screen and (max-width: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
}
@media only screen and (max-width: 600px) {
  .modaal-instagram iframe {
    width: 280px !important;
  }
}
@media screen and (max-height: 1100px) {
  .modaal-instagram iframe {
    width: 700px !important;
  }
}
@media screen and (max-height: 1000px) {
  .modaal-inner-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .modaal-instagram iframe {
    width: 600px !important;
  }
}
@media screen and (max-height: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
  .modaal-video-container {
    max-width: 900px;
    max-height: 510px;
  }
}
@keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/**
 * Featherlight - ultra slim jQuery lightbox
 * Version 1.7.13 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2018, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
html.with-featherlight {
  overflow: hidden;
}

.featherlight {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2147483647;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}
.featherlight * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.featherlight:last-of-type {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
}
.featherlight:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.featherlight .featherlight-content {
  width: 90vw;
  max-width: 750px;
  vertical-align: middle;
  display: inline-block;
  overflow: visible;
  padding: 0;
  max-height: 95%;
  cursor: auto;
  white-space: normal;
  opacity: 1;
  -webkit-transition: opacity 600ms;
  transition: opacity 600ms;
}
.featherlight.featherlight-loading .featherlight-content {
  opacity: 0;
  -webkit-transition: opacity 600ms;
  transition: opacity 600ms;
}
.featherlight .featherlight-inner {
  display: block;
}

.featherlight link.featherlight-inner,
.featherlight script.featherlight-inner,
.featherlight style.featherlight-inner {
  display: none;
}

.featherlight .featherlight-close-icon {
  position: fixed;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  font-size: 0;
}
.featherlight .featherlight-close-icon::-moz-focus-inner {
  padding: 0;
}
.featherlight .featherlight-close-icon:after, .featherlight .featherlight-close-icon:before {
  display: block;
  content: " ";
  position: absolute;
  top: 14px;
  left: 23px;
  width: 2px;
  height: 26px;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.featherlight .featherlight-close-icon:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.featherlight .featherlight-close-icon:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.featherlight .featherlight-image {
  width: 100%;
}

.featherlight-iframe .featherlight-content {
  padding: 0;
  -webkit-overflow-scrolling: touch;
  aspect-ratio: 16/9;
}
.featherlight-iframe .featherlight-content iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Hero
========================================================================== */
#hero img {
  width: 100%;
  height: auto;
}

/* Gizagiza
========================================================================== */
#gizagiza {
  height: clamp(50px, 12vw, 100px);
  background-image: url("../../assets/images/flag.png");
  background-repeat: repeat-x;
  background-position: 50% 50%;
  background-size: contain;
}

/* Movie
========================================================================== */
#movie {
  padding: clamp(40px, 17vw, 150px) 0 0;
}
#movie .wrap {
  position: relative;
}

/* movie::SWIPER */
.movies-swiper {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 360ms, -webkit-transform 360ms;
  transition: opacity 360ms, -webkit-transform 360ms;
  transition: transform 360ms, opacity 360ms;
  transition: transform 360ms, opacity 360ms, -webkit-transform 360ms;
  opacity: 0;
}
.movies-swiper.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.movies-swiper {
  width: 75%;
  max-width: 680px;
  position: relative;
  overflow: visible;
  --movies-nav-gap-half: 45px;
}
.movies-swiper .swiper-button-prev,
.movies-swiper .swiper-button-next {
  z-index: 5;
  width: 45px;
  height: 45px;
  position: absolute;
  top: calc(var(--swipe-height) / 2);
  border: 0;
  padding: 0;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  -moz-appearance: none;
       appearance: none;
  margin-top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("../../assets/images/arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 840px) {
  .movies-swiper .swiper-button-prev,
  .movies-swiper .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
.movies-swiper .swiper-button-prev::after,
.movies-swiper .swiper-button-next::after {
  display: none;
}
.movies-swiper .swiper-button-prev {
  left: -65px;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
@media screen and (max-width: 840px) {
  .movies-swiper .swiper-button-prev {
    left: -45px;
  }
}
.movies-swiper .swiper-button-next {
  right: -65px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 840px) {
  .movies-swiper .swiper-button-next {
    right: -45px;
  }
}
.movies-swiper .swiper-pagination {
  position: static;
  margin-top: clamp(10px, 2vw, 20px);
}
.movies-swiper .movies_wrap {
  list-style: none;
  margin: 0;
  padding: 0;
}
.movies-swiper .movies_wrap .item a .youtube-wrap {
  position: relative;
  gap: 15px;
}
.movies-swiper .movies_wrap .item a .youtube-wrap .youtube-container {
  position: relative;
}
.movies-swiper .movies_wrap .item a .youtube-wrap .youtube-container::before {
  content: "";
  display: block;
  border-radius: clamp(0px, 4vw, 20px);
  border: clamp(0px, 1vw, 6px) solid #0e0e5b;
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  z-index: 1;
}
.movies-swiper .movies_wrap .item a .youtube-wrap .youtube-container img {
  width: 100%;
  height: auto;
  border-radius: clamp(0px, 4vw, 23px);
  display: block;
}
.movies-swiper .movies_wrap .item a .youtube-wrap h3 {
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1em;
}

/* Introduction
========================================================================== */
#introduction {
  width: 100%;
  padding-top: clamp(40px, 17vw, 150px);
}
#introduction .wrap {
  position: relative;
  background-image: url("../../assets/images/introduction_bg.png");
  background-repeat: repeat-x;
  background-position: 50% 50%;
  background-size: contain;
}
#introduction .inner {
  position: relative;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 20px;
}
#introduction .inner .text {
  position: relative;
  color: #0e0e5b;
  font-weight: bold;
  font-size: clamp(18px, 14.4px + 0.75vw, 24px);
}
#introduction .inner .text p + p {
  margin-top: 1.5em;
}
#introduction .inner .images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -webkit-transform: translateY(clamp(20px, 8vw, 80px));
          transform: translateY(clamp(20px, 8vw, 80px));
  position: relative;
}
@media (max-width: 1000px) {
  #introduction .inner .sidebycontent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 7vw;
    margin-bottom: 7vw;
  }
}
@media (min-width: 1001px) {
  #introduction .inner .sidebycontent .sidebyitem {
    position: absolute;
    aspect-ratio: 1/1;
    height: calc(var(--sidebytext, 0px) / 2);
    width: calc(var(--sidebytext, 0px) / 2);
  }
  #introduction .inner .sidebycontent .sidebyitem.img_01 {
    bottom: 0;
    right: calc(100% + 80px + var(--sidebyitem, 0px));
  }
  #introduction .inner .sidebycontent .sidebyitem.img_02 {
    top: 0;
    right: calc(100% + 50px);
  }
  #introduction .inner .sidebycontent .sidebyitem.img_03 {
    top: 0;
    left: calc(100% + 50px);
  }
  #introduction .inner .sidebycontent .sidebyitem.img_04 {
    bottom: 0;
    left: calc(100% + 80px + var(--sidebyitem, 0px));
  }
}

/* Characters
========================================================================== */
#characters {
  padding: clamp(0px, 17vw, 150px) 0 0;
  max-width: 447px;
  width: 65%;
  height: auto;
  margin: 0 auto;
}

/* Special
========================================================================== */
#special {
  position: relative;
  padding: clamp(40px, 17vw, 150px) 0 clamp(0px, 7vw, 50px);
}
#special .wrap {
  position: relative;
  max-width: 1024px;
  width: 95%;
  margin: 0 auto;
  padding: 0 clamp(10px, 7vw, 50px) clamp(10px, 7vw, 50px);
  background-color: #fff;
  border: clamp(0px, 1vw, 6px) solid #0e0e5b;
  border-radius: clamp(0px, 4vw, 20px);
}
#special .special_wrap {
  text-align: center;
}
#special .special_coming_soon {
  margin: 0;
  padding: clamp(20px, 2.5vw, 30px) 0 clamp(20px, 10vw, 60px);
  font-weight: 700;
  color: #0e0e5b;
  font-size: clamp(26px, -7px + 4.296875vw, 48px);
}
#special .special_note {
  margin-top: clamp(0px, 2vw, 20px);
}

/* Store Bonuses
========================================================================== */
#storebonuses {
  position: relative;
  padding: clamp(40px, 17vw, 150px) 0 clamp(0px, 7vw, 50px);
}
#storebonuses .wrap {
  position: relative;
  max-width: 1280px;
  width: 95%;
  margin: 0 auto;
}
#storebonuses .wrap .bonus_wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0px, 2.5vw, 50px);
}
@media screen and (max-width: 840px) {
  #storebonuses .wrap .bonus_wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
#storebonuses .wrap .bonus_wrap.soon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#storebonuses .wrap .bonus_wrap.soon .item {
  width: 100%;
  max-width: 426.6666666667px;
  padding: clamp(20px, 20vw, 150px) 0;
  font-size: clamp(26px, 5px + 2.734375vw, 40px);
}
#storebonuses .wrap .bonus_wrap .item {
  display: grid;
  justify-items: center;
  gap: 10px;
  grid-template-rows: subgrid;
  grid-row: span 4;
  background-color: #0054bc;
  border: clamp(0px, 1vw, 6px) solid #fff;
  border-radius: clamp(0px, 4vw, 20px);
  padding: 10px clamp(20px, 2.5vw, 30px);
  font-size: clamp(16px, 11.2px + 1vw, 24px);
  font-weight: bold;
  color: #fff;
  -webkit-box-shadow: 5px 0 20px #63b7ca;
          box-shadow: 5px 0 20px #63b7ca;
}
#storebonuses .wrap .bonus_wrap .item .store_name {
  font-size: clamp(18px, 12px + 1.25vw, 28px);
}
#storebonuses .wrap .bonus_wrap .item .link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #0e0e5b;
  border-radius: 500px;
  border: 3px solid #fff;
  padding: clamp(0px, 1vw, 5px) clamp(0px, 4vw, 25px);
  color: #fff;
}
#storebonuses .wrap .bonus_wrap .item .link a::after {
  content: "▶︎";
  font-size: 70%;
}

/* PRODUCTS
========================================================================== */
#products {
  position: relative;
  padding: clamp(40px, 17vw, 150px) 0 clamp(0px, 7vw, 50px);
}
#products .outwrap {
  max-width: 1024px;
  width: 95%;
  margin: auto;
  padding: 0 clamp(10px, 7vw, 80px) clamp(10px, 8vw, 70px);
  background-color: #fff;
  border: clamp(0px, 1vw, 6px) solid #0e0e5b;
  border-radius: clamp(0px, 4vw, 20px);
}
#products .outwrap .tabs .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(5vw, 50px);
  max-width: 630px;
  width: 85%;
  margin: auto;
}
#products .outwrap .tabs .inner .tab-button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: opacity 240ms;
  transition: opacity 240ms;
  border: 2px solid transparent;
  padding: 0;
}
#products .outwrap .tabs .inner .tab-button.active {
  border-color: #0e0e5b;
  pointer-events: none;
}
#products .outwrap .tab-contents .tab-content {
  display: none;
  width: 100%;
  margin: auto;
  margin-top: clamp(0px, 7vw, 70px);
}
#products .outwrap .tab-contents .tab-content .editionBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(3vw, 15px);
  padding-bottom: min(7vw, 50px);
  border-bottom: 1px solid #a4adb9;
}
#products .outwrap .tab-contents .tab-content .editionBox .edition_bonus ol {
  margin: 0;
  padding: 0 0 min(2.5vw, 10px);
}
#products .outwrap .tab-contents .tab-content .editionBox .edition_bonus ol li {
  list-style: none;
  padding-left: 1.3em;
  text-indent: -1.3em;
}
#products .outwrap .tab-contents .tab-content .innerBox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(5vw, 30px);
}
@media screen and (max-width: 768px) {
  #products .outwrap .tab-contents .tab-content .innerBox {
    grid-template-columns: 1fr;
  }
}
#products .outwrap .tab-contents .tab-content .imgbox.notforsale {
  position: relative;
}
#products .outwrap .tab-contents .tab-content .imgbox.notforsale img {
  opacity: 0.5;
}
#products .outwrap .tab-contents .tab-content .imgbox.notforsale::before {
  content: "販売終了しています";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-10deg);
          transform: translate(-50%, -50%) rotate(-10deg);
  z-index: 1;
  background: #000;
  color: #fff;
  padding: 5px 15px;
  font-size: 2.6rem;
  white-space: nowrap;
}
#products .outwrap .tab-contents .tab-content .product_location {
  padding-top: 5px;
}
#products .outwrap .tab-contents .tab-content .product_location.notforsale {
  opacity: 0.4;
  pointer-events: none;
}
#products .outwrap .tab-contents .tab-content .product_location .location ~ .location {
  margin-top: min(10vw, 50px);
}
#products .outwrap .tab-contents .tab-content .product_location .location p.edition {
  font-size: 2rem;
  color: #fff;
  background-color: #000;
  display: inline-block;
  padding: 5px 10px;
  line-height: 1;
}
#products .outwrap .tab-contents .tab-content .product_location .location p.price_title {
  font-size: 2rem;
  padding: 10px 0 0;
  line-height: 1;
}
#products .outwrap .tab-contents .tab-content .product_location .location p.price {
  font-size: 4.2rem;
  line-height: 1;
  font-weight: 900;
}
#products .outwrap .tab-contents .tab-content .product_location .location p.price span {
  font-size: 2rem;
}
#products .outwrap .tab-contents .tab-content .product_location .location p.shop {
  margin-top: min(4vw, 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
}
#products .outwrap .tab-contents .tab-content .product_location .location p.shop a {
  font-size: 1.8rem;
  font-weight: 400;
  color: #fff;
  background-color: #e60013;
  padding: 5px 10px;
}
#products .outwrap .tab-contents .tab-content.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(7vw, 50px);
}
#products .outwrap p.product_note {
  width: 90%;
  max-width: 600px;
  margin: auto;
  margin-top: clamp(0px, 7vw, 70px);
  font-size: clamp-calc(380px, 1000px, 10px, 14px);
}
#products .outwrap .product_info {
  background-color: #fff;
  border-top: 1px solid #81858a;
  margin-top: min(5vw, 30px);
}
#products .outwrap .product_info .game_info {
  margin-top: clamp(0px, 7vw, 70px);
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 20px clamp(5px, 5vw, 40px);
}
@media screen and (max-width: 768px) {
  #products .outwrap .product_info .game_info {
    grid-template-columns: 1fr;
  }
}
#products .outwrap .product_info .game_info .infobox ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: auto 1fr;
}
#products .outwrap .product_info .game_info .infobox li {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column: 1/-1;
}
@supports (grid-template-columns: subgrid) {
  #products .outwrap .product_info .game_info .infobox li {
    grid-template-columns: subgrid;
  }
}
#products .outwrap .product_info .game_info .infobox .title {
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#products .outwrap .product_info .game_info .infobox .title::after {
  content: ":";
  padding: 0 0.5em;
}
#products .outwrap .product_info .game_info .infobox li > span:nth-child(2) {
  min-width: 0;
  word-break: break-word;
}
#products .outwrap .product_info .logos {
  width: 90%;
  max-width: 500px;
  margin: auto;
  margin-top: min(5vw, 30px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(5vw, 30px);
}
#products .outwrap .product_info .game_copyright {
  width: 90%;
  margin: auto;
  margin-top: min(5vw, 30px);
}