@charset "UTF-8";
/* ボタン用 */
@keyframes btn_anime {
  0% {
    transform: scale(1);
  }
  3% {
    transform: scale(1.1);
  }
  6% {
    transform: scale(1);
  }
  9% {
    transform: scale(1.1);
  }
  12% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
/* フェードイン */
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* フェードイン＋スケール */
@keyframes fadein-scale {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* フェードイン＋縦移動 */
@keyframes fadein-translate-y {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
:root {
  /* 基本カラー */
  --c-bg: #ffffff;
  --c-text: $c_black;
  --c-primary: #EC6633;
  --c-secondary: #59BD4D;
  /* ボタン */
  --bg-btn-primary: var(--c-primary);
  --bg-btn-secondary: var(--c-secondary);
  --c-text-btn-primary: #ffffff;
  --c-text-btn-secondary: #ffffff;
  --Gray-Grey-300: #B3B3B3;
  --Gray-Grey-50: #F2F2F2;
  /* タイポグラフィ */
  --font-size-base: 1rem; /* 基本のフォントサイズ */
  --font-weight-base: 400; /* 通常のフォントウェイト */
  /* レイアウト */
  --spacing: 16px; /* 基本の余白 */
  --radius: 8px; /* 角丸のサイズ */
}

.media-check {
  display: none;
}
@media (min-width: 1200px) {
  .media-check:before {
    content: "xl";
  }
}
@media (min-width: 1100px) and (max-width: 1199.98px) {
  .media-check:before {
    content: "lg";
  }
}
@media (min-width: 768px) and (max-width: 1099.98px) {
  .media-check:before {
    content: "md";
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .media-check:before {
    content: "sm";
  }
}
@media (max-width: 575.98px) {
  .media-check:before {
    content: "xs";
  }
}

@keyframes btn_arrow {
  0% {
    transform: translate(0, -50%);
  }
  100% {
    transform: translate(-5px, -50%);
  }
}
@keyframes btn_arrow_entry {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-5px);
  }
}
@media (max-width: 1099.98px) {
  .pc-only {
    display: none !important;
  }
}

@media (min-width: 576px) {
  .sp-only {
    display: none !important;
  }
}

@media (min-width: 1100px) {
  .tab-only {
    display: none !important;
  }
}
@media (max-width: 575.98px) {
  .tab-only {
    display: none !important;
  }
}

@media (max-width: 575.98px) {
  .tab-pc-only {
    display: none !important;
  }
}

@media (min-width: 1100px) {
  .sp-tab-only {
    display: none !important;
  }
}

@media (max-width: 1199.98px) {
  .xl-only {
    display: none;
  }
}

@media (min-width: 1200px) {
  .lg-only {
    display: none;
  }
}
@media (max-width: 1099.98px) {
  .lg-only {
    display: none;
  }
}

@media (min-width: 1100px) {
  .md-only {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .md-only {
    display: none;
  }
}

@media (min-width: 768px) {
  .sm-only {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .sm-only {
    display: none;
  }
}

@media (min-width: 576px) {
  .xs-only {
    display: none;
  }
}

.js-s.js-s-f {
  transition: opacity 0.5s, transform 0.5s;
}

.js-s.js-s-f--l {
  transition: opacity 0.5s, transform 0.5s;
}

.js-s.js-s-f--d {
  transition: all 0.5s 0.4s;
}

.js-s.js-s-f--dd {
  transition: all 0.5s 0.8s;
}

.js-s.js-s-f,
.js-s.js-s-f--l,
.js-s.js-s-f--d,
.js-s.js-s-f--dd {
  opacity: 0;
}
.js-s.js-s-f.is-active,
.js-s.js-s-f--l.is-active,
.js-s.js-s-f--d.is-active,
.js-s.js-s-f--dd.is-active {
  opacity: 1;
}

.js-s.js-s-left {
  transform: translateX(-10px);
}
.js-s.js-s-left.is-active {
  transform: translateX(0px);
}

.js-s.js-s-right {
  transform: translateX(10px);
}
.js-s.js-s-right.is-active {
  transform: translateX(0px);
}

.js-s.js-s-bottom {
  transform: translateY(20px);
}
.js-s.js-s-bottom.is-active {
  transform: translateY(0px);
}

.is-d1 {
  transition-delay: 0.4s !important;
}

.is-d2 {
  transition-delay: 0.8s !important;
}

.is-d3 {
  transition-delay: 1.2s !important;
}

.js-s-f-b {
  transition: opacity 0.5s, transform 0.5s;
  transform: translateY(20px);
  opacity: 0;
}
.js-s-f-b.is-active {
  opacity: 1;
  transform: translateY(0px);
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  width: 100%;
  word-break: break-word;
  background-color: var(--c-bg);
}

img {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
  height: auto;
}

img.icon {
  max-width: 100px;
}

body.is-fixed {
  overflow: hidden;
}
@media (min-width: 1100px) {
  body.is-fixed {
    width: calc(100vw - var(--scrollbar-width));
  }
}

p:empty::before {
  content: none !important;
}

.my-slick {
  opacity: 0;
  transition: opacity 0.3s linear;
}

.my-slick.slick-initialized {
  opacity: 1;
  height: auto;
}

/* reCAPTCHAのロゴの調整 */
.grecaptcha-badge {
  left: 6px !important;
  width: 70px !important;
  right: auto !important;
  transition: left 0.3s, width 0.3s !important;
  z-index: 1000;
}
.grecaptcha-badge:hover {
  left: 6px !important;
  width: 256px !important;
}

/* reCAPTCHAの記載部分 */
.recaptcha-desc {
  padding-top: 32px;
  font-size: 0.7em;
  line-height: 1.5;
  opacity: 0.5;
}
.recaptcha-desc a {
  text-decoration: underline;
  margin: 0 2px;
}
.recaptcha-desc .-name {
  font-weight: bold;
  margin: 0 2px;
}

html {
  font-size: 100%;
}

body {
  font-size: 1rem;
}

body,
body input,
body textarea {
  font-size: var(--font-size-base);
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  font-weight: var(--font-weight-base);
  color: var(--c-text);
  -webkit-text-size-adjust: 100%;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.f--en {
  font-family: var(--font-en);
  font-optical-sizing: auto;
  font-style: normal;
}

code, .code {
  font-family: var(--font-mono);
}

a {
  text-shadow: none;
  outline: none;
  text-decoration: none;
  color: var(--c-text);
}
a:link, a:visited, a:hover, a:active {
  color: var(--c-text);
}
a:hover {
  color: var(--c-text);
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
  font-size: 1.8823529412vw;
}

@media (min-width: 1100px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
[data-ruby] {
  position: relative;
}

[data-ruby]::before {
  content: attr(data-ruby);
  position: absolute;
  top: -1.2em;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-size: 0.5em;
  display: inline-block;
  text-align: center;
}

.bg-01 {
  background-color: #EAF6FF;
}

.common-panel {
  background-color: #ffffff;
}
@media (min-width: 1100px) {
  .common-panel {
    padding: 6.5rem;
    border-radius: 2.5rem;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .common-panel {
    padding: 4rem 2rem;
    border-radius: 1.875rem;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 575.98px) {
  .common-panel {
    padding: 4rem 2rem;
    border-radius: 1.875rem;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  }
}

.section-title .lang-en, .section-title .lang-jp {
  display: block;
}
@media (min-width: 1100px) {
  .section-title .lang-en {
    font-family: var(--font-en);
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 6.875rem;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .section-title .lang-en {
    font-family: var(--font-en);
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 3.75rem;
    font-weight: 500;
    line-height: 110%;
  }
}
@media (max-width: 575.98px) {
  .section-title .lang-en {
    font-family: var(--font-en);
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 3.75rem;
    font-weight: 500;
    line-height: 110%;
  }
}
@media (min-width: 1100px) {
  .section-title .lang-jp {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.05rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .section-title .lang-jp {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 165%;
    letter-spacing: 0.045rem;
  }
}
@media (max-width: 575.98px) {
  .section-title .lang-jp {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 165%;
    letter-spacing: 0.045rem;
  }
}
@media (min-width: 1100px) {
  .section-title .lang-jp {
    margin-top: 1rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .section-title .lang-jp {
    margin-top: 1rem;
  }
}
@media (max-width: 575.98px) {
  .section-title .lang-jp {
    margin-top: 1rem;
  }
}
.section-title .lang-jp {
  position: relative;
  padding-left: 2rem;
}
.section-title .lang-jp::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: block;
  width: 1.25rem;
  height: 2px;
  background-color: #238AF1;
}

@media (min-width: 1100px) {
  .common-lead {
    font-size: 2.125rem;
    font-weight: 700;
    line-height: 210%;
    letter-spacing: 0.085rem;
  }
}
@media (max-width: 1099.98px) {
  .common-lead {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 180%;
    letter-spacing: 0.05rem;
  }
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body .site-main {
  flex: 1 0 auto;
}

body {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.mw-01 {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: calc(1300px + 3.5rem * 2)) {
  .mw-01 {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}
@media screen and (max-width: calc(1300px + 3.5rem * 2)) and (min-width: 1100px) {
  .mw-01 {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}
@media screen and (max-width: calc(1300px + 3.5rem * 2)) and (min-width: 576px) and (max-width: 1099.98px) {
  .mw-01 {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}
@media screen and (max-width: calc(1300px + 3.5rem * 2)) and (max-width: 575.98px) {
  .mw-01 {
    padding-left: 6.5882352941vw;
    padding-right: 6.5882352941vw;
  }
}

.mw-01-2 {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: calc(1300px + 3.5rem * 2)) {
  .mw-01-2 {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}
@media screen and (max-width: calc(1300px + 3.5rem * 2)) and (min-width: 1100px) {
  .mw-01-2 {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}
@media screen and (max-width: calc(1300px + 3.5rem * 2)) and (min-width: 576px) and (max-width: 1099.98px) {
  .mw-01-2 {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}
@media screen and (max-width: calc(1300px + 3.5rem * 2)) and (max-width: 575.98px) {
  .mw-01-2 {
    padding-left: 1.8823529412vw;
    padding-right: 1.8823529412vw;
  }
}

.mw-02 {
  max-width: 1392px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: calc(1392px + 3.5rem * 2)) {
  .mw-02 {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}
@media screen and (max-width: calc(1392px + 3.5rem * 2)) and (min-width: 1100px) {
  .mw-02 {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}
@media screen and (max-width: calc(1392px + 3.5rem * 2)) and (min-width: 576px) and (max-width: 1099.98px) {
  .mw-02 {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}
@media screen and (max-width: calc(1392px + 3.5rem * 2)) and (max-width: 575.98px) {
  .mw-02 {
    padding-left: 6.5882352941vw;
    padding-right: 6.5882352941vw;
  }
}

.mw-03 {
  max-width: 1182px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: calc(1182px + 3.5rem * 2)) {
  .mw-03 {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}
@media screen and (max-width: calc(1182px + 3.5rem * 2)) and (min-width: 1100px) {
  .mw-03 {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}
@media screen and (max-width: calc(1182px + 3.5rem * 2)) and (min-width: 576px) and (max-width: 1099.98px) {
  .mw-03 {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}
@media screen and (max-width: calc(1182px + 3.5rem * 2)) and (max-width: 575.98px) {
  .mw-03 {
    padding-left: 6.5882352941vw;
    padding-right: 6.5882352941vw;
  }
}

@media (min-width: 1100px) {
  .ph {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .ph {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}
@media (max-width: 575.98px) {
  .ph {
    padding-left: 6.5882352941vw;
    padding-right: 6.5882352941vw;
  }
}

@media (min-width: 1100px) {
  .ph-pc {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}

@media (min-width: 576px) and (max-width: 1099.98px) {
  .ph-tab {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}

@media (max-width: 575.98px) {
  .ph-sp {
    padding-left: 6.5882352941vw;
    padding-right: 6.5882352941vw;
  }
}

@media (min-width: 1100px) {
  .ph-0 {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .ph-0 {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 575.98px) {
  .ph-0 {
    padding-left: 0;
    padding-right: 0;
  }
}

.site-main {
  background-color: #ed9209;
  background-image: url(../../images/limited3/bg-01.png);
  background-position: center center;
  background-size: auto auto;
}

.layout-wrapper {
  background-color: #fa9e15;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1100px) {
  .layout-wrapper {
    max-width: 850px;
  }
}
.layout-wrapper {
  background-image: url(../../images/limited3/bg-01.png);
  background-position: left top;
  background-size: 100% auto;
}

.footer-dice-common {
  background-color: #2d3e50;
  color: #ffffff;
  padding: 20px 0 5px 0;
}
.footer-dice-common a {
  color: #ffffff;
}
.footer-dice-common a:link, .footer-dice-common a:visited, .footer-dice-common a:hover, .footer-dice-common a:active {
  color: #ffffff;
}
.footer-dice-common a:hover {
  color: #ffffff;
}
.footer-dice-common .inner {
  padding: 5px;
}
.footer-dice-common .list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
.footer-dice-common .text-center {
  text-align: center;
}
.footer-dice-common ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: 0px;
}
.footer-dice-common ul, .footer-dice-common ol, .footer-dice-common p {
  margin: 0 0 20px 0;
}
.footer-dice-common ul, .footer-dice-common ol {
  padding-left: 15px;
  line-height: 26px;
}
.footer-dice-common .list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
.footer-dice-common small, .footer-dice-common .small {
  font-size: 75%;
}

.b-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 576px) {
  .b-cta {
    padding-left: 3.5rem;
  }
}
@media (max-width: 575.98px) {
  .b-cta {
    padding-left: 6.5882352941vw;
  }
}
@media (min-width: 576px) {
  .b-cta {
    padding-right: 3.5rem;
  }
}
@media (max-width: 575.98px) {
  .b-cta {
    padding-right: 6.5882352941vw;
  }
}
@media (min-width: 576px) {
  .b-cta {
    padding-bottom: 3.75rem;
  }
}
@media (max-width: 575.98px) {
  .b-cta {
    padding-bottom: 7.0588235294vw;
  }
}
@media (min-width: 576px) {
  .b-cta .b-cta__banner {
    max-width: 31.25rem;
  }
}
@media (max-width: 575.98px) {
  .b-cta .b-cta__banner {
    max-width: 58.8235294118vw;
  }
}
.b-cta .b-cta__button {
  animation: btn_anime 4s infinite;
}
@media (min-width: 576px) {
  .b-cta .b-cta__button {
    margin-top: 2.875rem;
  }
}
@media (max-width: 575.98px) {
  .b-cta .b-cta__button {
    margin-top: 5.4117647059vw;
  }
}
@media (min-width: 576px) {
  .b-cta .b-cta__button {
    margin-top: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .b-cta .b-cta__button {
    margin-top: 2.8235294118vw;
  }
}
@media (min-width: 576px) {
  .b-cta .b-cta__description {
    margin-top: 1.875rem;
  }
}
@media (max-width: 575.98px) {
  .b-cta .b-cta__description {
    margin-top: 3.5294117647vw;
  }
}
@media (min-width: 576px) {
  .b-cta .b-cta__description {
    font-size: 1.875rem;
  }
}
@media (max-width: 575.98px) {
  .b-cta .b-cta__description {
    font-size: 3.5294117647vw;
  }
}
.b-cta .b-cta__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
}
@media (min-width: 576px) {
  .b-cta .b-cta__sns {
    margin-top: 1.875rem;
  }
}
@media (max-width: 575.98px) {
  .b-cta .b-cta__sns {
    margin-top: 3.5294117647vw;
  }
}
.b-cta .b-cta__sns > * {
  flex: 1 0 0;
}
@media (min-width: 576px) {
  .b-cta .b-cta__sns > * {
    max-width: 5.625rem;
  }
}
@media (max-width: 575.98px) {
  .b-cta .b-cta__sns > * {
    max-width: 10.5882352941vw;
  }
}
.b-cta .b-cta__sns-button {
  display: block;
  transition: transform 0.15s ease-in-out;
}
.b-cta .b-cta__sns-button:hover {
  transform: scale(1.1);
}

@media (min-width: 576px) {
  .s-mv {
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .s-mv {
    padding-bottom: 2.8235294118vw;
  }
}
@media (min-width: 576px) {
  .s-mv .s-mv__inner {
    margin-bottom: 2rem;
  }
}
@media (max-width: 575.98px) {
  .s-mv .s-mv__inner {
    margin-bottom: 3.7647058824vw;
  }
}
@media (min-width: 576px) {
  .s-mv .s-mv__inner {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .s-mv .s-mv__inner {
    margin-bottom: 2.8235294118vw;
  }
}
.s-mv .s-mv__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 5.1764705882%;
}
.s-mv .s-mv__text {
  width: 56.2352941176%;
  width: 52.4705882353%;
  padding-right: 3.7647058824%;
}
.s-mv .s-mv__video {
  width: 42.2352941176%;
  padding-left: 6.7058823529%;
  aspect-ratio: 302/524;
}
@media (min-width: 576px) {
  .s-mv .s-mv__video {
    padding-top: 3.75rem;
  }
}
@media (max-width: 575.98px) {
  .s-mv .s-mv__video {
    padding-top: 7.0588235294vw;
  }
}
.s-mv .s-mv__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}
.s-mv .s-mv__label {
  padding-left: 8.3682008368%;
  padding-left: 29.2887029289%;
}
.s-mv .s-mv__title {
  padding-top: 0.1px;
}
@media (min-width: 576px) {
  .s-mv .s-mv__title {
    margin-bottom: 1.625rem;
  }
}
@media (max-width: 575.98px) {
  .s-mv .s-mv__title {
    margin-bottom: 3.0588235294vw;
  }
}
@media (min-width: 576px) {
  .s-mv .s-mv__title img {
    margin-top: -0.5rem;
  }
}
@media (max-width: 575.98px) {
  .s-mv .s-mv__title img {
    margin-top: -4vw;
  }
}
.s-mv .s-mv__lead {
  padding-left: 12.5523012552%;
  padding-right: 8.3682008368%;
}
@media (min-width: 1100px) {
  .s-mv .s-mv__info {
    padding-left: 1.125rem;
    padding-right: 1.125rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .s-mv .s-mv__info {
    padding-left: 1.125rem;
    padding-right: 1.125rem;
  }
}
@media (max-width: 575.98px) {
  .s-mv .s-mv__info {
    padding-left: 4.7058823529vw;
    padding-right: 4.7058823529vw;
  }
}
.s-mv .s-mv__title {
  opacity: 0;
  animation: fadein-scale 0.3s cubic-bezier(0.33, 1, 0.75, 0.95) forwards;
  animation-delay: 0.2s;
}
.s-mv .s-mv__lead {
  opacity: 0;
  animation: fadein-scale 0.3s cubic-bezier(0.33, 1, 0.75, 0.95) forwards;
  animation-delay: 0.4s;
}
.s-mv .s-mv__info {
  opacity: 0;
  animation: fadein-translate-y 0.3s cubic-bezier(0.33, 1, 0.75, 0.95) forwards;
  animation-delay: 0.6s;
}

.s-merit {
  background-color: #fff;
  background-image: url(../../images/limited3/bg-02.png);
  background-position: center center;
  background-size: cover;
  position: relative;
}
@media (min-width: 576px) {
  .s-merit {
    padding-bottom: 5.25rem;
  }
}
@media (max-width: 575.98px) {
  .s-merit {
    padding-bottom: 9.8823529412vw;
  }
}
@media (min-width: 1100px) {
  .s-merit {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .s-merit {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}
@media (max-width: 575.98px) {
  .s-merit {
    padding-left: 6.5882352941vw;
    padding-right: 6.5882352941vw;
  }
}
.s-merit::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../../images/limited3/bg-triangle-orange-01.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  position: absolute;
  top: 0;
  left: 0;
}
.s-merit .s-merit__content {
  position: relative;
  z-index: 1;
}
@media (min-width: 576px) {
  .s-merit .s-merit__point {
    margin-top: 2.3125rem;
  }
}
@media (max-width: 575.98px) {
  .s-merit .s-merit__point {
    margin-top: 4.3529411765vw;
  }
}
@media (min-width: 576px) {
  .s-merit .s-merit__point > * {
    margin-bottom: 2rem;
  }
}
@media (max-width: 575.98px) {
  .s-merit .s-merit__point > * {
    margin-bottom: 3.7647058824vw;
  }
}
.s-merit .s-merit__point img {
  opacity: 0;
}
.s-merit .s-merit__point.is-active img {
  animation: fadein-scale 0.3s cubic-bezier(0.33, 1, 0.75, 0.95) forwards;
}
.s-merit .s-merit__point.is-active .s-merit__point__item:nth-of-type(2) img {
  animation-delay: 0.3s;
}

.s-risk {
  background-color: #222d37;
  background-image: url(../../images/limited3/bg-04.png);
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 100% auto;
}
@media (min-width: 1100px) {
  .s-risk {
    padding-bottom: 5.25rem;
  }
}
@media (max-width: 1099.98px) {
  .s-risk {
    padding-bottom: 9.8823529412vw;
  }
}
@media (min-width: 1100px) {
  .s-risk .s-risk__triangle {
    margin-bottom: 3.9375rem;
  }
}
@media (max-width: 1099.98px) {
  .s-risk .s-risk__triangle {
    margin-bottom: 7.4117647059vw;
  }
}
@media (min-width: 1100px) {
  .s-risk .s-risk__inner {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .s-risk .s-risk__inner {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media (max-width: 575.98px) {
  .s-risk .s-risk__inner {
    padding-left: 9.4117647059vw;
    padding-right: 9.4117647059vw;
  }
}
@media (min-width: 1100px) {
  .s-risk .s-risk__heading {
    margin-bottom: 5.25rem;
  }
}
@media (max-width: 1099.98px) {
  .s-risk .s-risk__heading {
    margin-bottom: 9.8823529412vw;
  }
}
@media (min-width: 1100px) {
  .s-risk .s-risk__article {
    margin-bottom: 5.25rem;
  }
}
@media (max-width: 1099.98px) {
  .s-risk .s-risk__article {
    margin-bottom: 9.8823529412vw;
  }
}
.s-risk .s-risk__foreign {
  background-color: #fff;
  background-image: url(../../images/limited3/bg-grid-01.png);
  background-position: center center;
  background-size: 1.5rem auto;
  border-radius: 20px;
}
@media (min-width: 1100px) {
  .s-risk .s-risk__foreign {
    padding: 3.625rem 2.25rem;
  }
}
@media (max-width: 1099.98px) {
  .s-risk .s-risk__foreign {
    padding: 6.8235294118vw 4.2352941176vw;
  }
}
@media (min-width: 1100px) {
  .s-risk .s-risk__foreign__heading {
    margin-bottom: 4.0625rem;
  }
}
@media (max-width: 1099.98px) {
  .s-risk .s-risk__foreign__heading {
    margin-bottom: 7.6470588235vw;
  }
}
@media (min-width: 1100px) {
  .s-risk .s-risk__foreign-entry {
    padding-bottom: 3.75rem;
  }
}
@media (max-width: 1099.98px) {
  .s-risk .s-risk__foreign-entry {
    padding-bottom: 7.0588235294vw;
  }
}
.s-risk .s-risk__foreign-entry__content {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 1100px) {
  .s-risk .s-risk__foreign-entry__content {
    padding-top: 2.5rem;
  }
}
@media (max-width: 1099.98px) {
  .s-risk .s-risk__foreign-entry__content {
    padding-top: 4.7058823529vw;
  }
}
.s-risk .s-risk__foreign-entry__content .__text {
  flex: 1 0 0;
  line-height: 1.5;
}
@media (min-width: 1100px) {
  .s-risk .s-risk__foreign-entry__content .__text {
    font-size: 1.5rem;
  }
}
@media (max-width: 1099.98px) {
  .s-risk .s-risk__foreign-entry__content .__text {
    font-size: 2.8235294118vw;
  }
}
@media (min-width: 1100px) {
  .s-risk .s-risk__foreign-entry__content .__image {
    width: 19.9375rem;
  }
}
@media (max-width: 1099.98px) {
  .s-risk .s-risk__foreign-entry__content .__image {
    width: 37.5294117647vw;
  }
}
@media (min-width: 1100px) {
  .s-risk .s-risk__foreign-entry__content .__image {
    padding-left: 2.9375rem;
  }
}
@media (max-width: 1099.98px) {
  .s-risk .s-risk__foreign-entry__content .__image {
    padding-left: 5.5294117647vw;
  }
}

.s-safety {
  background-image: url(../../images/limited3/bg-01.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto auto;
}
@media (min-width: 576px) {
  .s-safety .s-safety__triangle {
    margin-bottom: 3.875rem;
  }
}
@media (max-width: 575.98px) {
  .s-safety .s-safety__triangle {
    margin-bottom: 7.2941176471vw;
  }
}
@media (min-width: 1100px) {
  .s-safety .s-safety__content-01,
  .s-safety .s-safety__content-02 {
    padding-left: 3.25rem;
    padding-right: 3.25rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .s-safety .s-safety__content-01,
  .s-safety .s-safety__content-02 {
    padding-left: 3.25rem;
    padding-right: 3.25rem;
  }
}
@media (max-width: 575.98px) {
  .s-safety .s-safety__content-01,
  .s-safety .s-safety__content-02 {
    padding-left: 6.1176470588vw;
    padding-right: 6.1176470588vw;
  }
}
@media (min-width: 576px) {
  .s-safety .s-safety__content-01 {
    padding-bottom: 6rem;
  }
}
@media (max-width: 575.98px) {
  .s-safety .s-safety__content-01 {
    padding-bottom: 11.2941176471vw;
  }
}
@media (min-width: 576px) {
  .s-safety .s-safety__heading-01 {
    margin-bottom: 3.125rem;
  }
}
@media (max-width: 575.98px) {
  .s-safety .s-safety__heading-01 {
    margin-bottom: 5.8823529412vw;
  }
}
@media (min-width: 576px) {
  .s-safety .s-safety__article-01 {
    margin-bottom: 6.125rem;
  }
}
@media (max-width: 575.98px) {
  .s-safety .s-safety__article-01 {
    margin-bottom: 11.5294117647vw;
  }
}
@media (min-width: 576px) {
  .s-safety .s-safety__heading-02 {
    margin-bottom: 1.875rem;
  }
}
@media (max-width: 575.98px) {
  .s-safety .s-safety__heading-02 {
    margin-bottom: 3.5294117647vw;
  }
}
@media (min-width: 576px) {
  .s-safety .s-safety__heading-03 {
    margin-bottom: 1.875rem;
  }
}
@media (max-width: 575.98px) {
  .s-safety .s-safety__heading-03 {
    margin-bottom: 3.5294117647vw;
  }
}
@media (min-width: 576px) {
  .s-safety .s-safety__content-02 {
    padding-top: 3.75rem;
  }
}
@media (max-width: 575.98px) {
  .s-safety .s-safety__content-02 {
    padding-top: 7.0588235294vw;
  }
}
@media (min-width: 576px) {
  .s-safety .s-safety__content-02 {
    padding-bottom: 3.75rem;
  }
}
@media (max-width: 575.98px) {
  .s-safety .s-safety__content-02 {
    padding-bottom: 7.0588235294vw;
  }
}
.s-safety .s-safety__panel__content {
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  line-height: 1.5;
}
@media (min-width: 576px) {
  .s-safety .s-safety__panel__content {
    padding: 2.75rem 1.25rem 3.375rem;
  }
}
@media (max-width: 575.98px) {
  .s-safety .s-safety__panel__content {
    padding: 5.1764705882vw 2.3529411765vw 6.3529411765vw;
  }
}
@media (min-width: 576px) {
  .s-safety .s-safety__panel__content {
    font-size: 1.9375rem;
  }
}
@media (max-width: 575.98px) {
  .s-safety .s-safety__panel__content {
    font-size: 3.0588235294vw;
  }
}
.s-safety .s-safety__panel__content .c-red {
  color: #e42c2c;
}
.s-safety .s-safety__heading-01 {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.3s, transform 0.5s;
}
.s-safety .s-safety__heading-01.is-active {
  opacity: 1;
  transform: scale(1);
}
.s-safety .s-safety__article-02 {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.3s, transform 0.5s;
}
.s-safety .s-safety__article-02.is-active {
  opacity: 1;
  transform: scale(1);
}
.s-safety .s-safety__image-01 {
  overflow: hidden;
}
.s-safety .s-safety__image-01 img {
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.5s, transform 0.8s;
  transition-delay: 0.2s;
}
.s-safety .s-safety__image-01.is-active img {
  opacity: 1;
  transform: scale(1);
}

.s-movie {
  background-image: url(../../images/limited3/bg-01.png);
  background-position: center center;
  background-size: auto auto;
  border-bottom: 4px solid #29313d;
}
@media (min-width: 576px) {
  .s-movie {
    padding-top: 5.25rem;
  }
}
@media (max-width: 575.98px) {
  .s-movie {
    padding-top: 9.8823529412vw;
  }
}
@media (min-width: 576px) {
  .s-movie {
    padding-bottom: 7.125rem;
  }
}
@media (max-width: 575.98px) {
  .s-movie {
    padding-bottom: 13.4117647059vw;
  }
}
@media (min-width: 1100px) {
  .s-movie {
    padding-left: 3.25rem;
    padding-right: 3.25rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .s-movie {
    padding-left: 3.25rem;
    padding-right: 3.25rem;
  }
}
@media (max-width: 575.98px) {
  .s-movie {
    padding-left: 6.1176470588vw;
    padding-right: 6.1176470588vw;
  }
}
@media (min-width: 576px) {
  .s-movie .s-movie__heading {
    margin-bottom: 5rem;
  }
}
@media (max-width: 575.98px) {
  .s-movie .s-movie__heading {
    margin-bottom: 9.4117647059vw;
  }
}
.s-movie .s-movie__movie {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 302/524;
}
.s-movie .s-movie__movie video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 576px) {
  .s-games {
    padding-top: 5.25rem;
  }
}
@media (max-width: 575.98px) {
  .s-games {
    padding-top: 9.8823529412vw;
  }
}
@media (min-width: 576px) {
  .s-games {
    padding-bottom: 7.125rem;
  }
}
@media (max-width: 575.98px) {
  .s-games {
    padding-bottom: 13.4117647059vw;
  }
}
@media (min-width: 1100px) {
  .s-games {
    padding-left: 3.25rem;
    padding-right: 3.25rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .s-games {
    padding-left: 3.25rem;
    padding-right: 3.25rem;
  }
}
@media (max-width: 575.98px) {
  .s-games {
    padding-left: 6.1176470588vw;
    padding-right: 6.1176470588vw;
  }
}
@media (min-width: 576px) {
  .s-games .s-games__heading {
    margin-bottom: 6.625rem;
  }
}
@media (max-width: 575.98px) {
  .s-games .s-games__heading {
    margin-bottom: 12.4705882353vw;
  }
}
@media (min-width: 576px) {
  .s-games .s-games__entry:not(:last-child) {
    margin-bottom: 5.25rem;
  }
}
@media (max-width: 575.98px) {
  .s-games .s-games__entry:not(:last-child) {
    margin-bottom: 9.8823529412vw;
  }
}

.s-start {
  background-image: url(../../images/limited3/bg-03.png);
  background-position: center center;
  background-size: auto auto;
}
@media (min-width: 576px) {
  .s-start {
    padding-top: 3.75rem;
  }
}
@media (max-width: 575.98px) {
  .s-start {
    padding-top: 7.0588235294vw;
  }
}
@media (min-width: 576px) {
  .s-start {
    padding-bottom: 5.25rem;
  }
}
@media (max-width: 575.98px) {
  .s-start {
    padding-bottom: 9.8823529412vw;
  }
}
@media (min-width: 1100px) {
  .s-start .s-start__content-01,
  .s-start .s-start__heading-02,
  .s-start .s-start__content-02__entries,
  .s-start .s-start__heading-03,
  .s-start .s-start__content-03__image {
    padding-left: 3.25rem;
    padding-right: 3.25rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .s-start .s-start__content-01,
  .s-start .s-start__heading-02,
  .s-start .s-start__content-02__entries,
  .s-start .s-start__heading-03,
  .s-start .s-start__content-03__image {
    padding-left: 3.25rem;
    padding-right: 3.25rem;
  }
}
@media (max-width: 575.98px) {
  .s-start .s-start__content-01,
  .s-start .s-start__heading-02,
  .s-start .s-start__content-02__entries,
  .s-start .s-start__heading-03,
  .s-start .s-start__content-03__image {
    padding-left: 6.1176470588vw;
    padding-right: 6.1176470588vw;
  }
}
@media (min-width: 576px) {
  .s-start .s-start__content-01 {
    padding-bottom: 11.25rem;
  }
}
@media (max-width: 575.98px) {
  .s-start .s-start__content-01 {
    padding-bottom: 21.1764705882vw;
  }
}
@media (min-width: 576px) {
  .s-start .s-start__heading-01 {
    margin-bottom: 6.25rem;
  }
}
@media (max-width: 575.98px) {
  .s-start .s-start__heading-01 {
    margin-bottom: 11.7647058824vw;
  }
}
@media (min-width: 576px) {
  .s-start .s-start__heading-02 {
    margin-bottom: 6.6875rem;
  }
}
@media (max-width: 575.98px) {
  .s-start .s-start__heading-02 {
    margin-bottom: 12.5882352941vw;
  }
}
@media (min-width: 576px) {
  .s-start .s-start__step:not(:last-child) {
    margin-bottom: 3.625rem;
  }
}
@media (max-width: 575.98px) {
  .s-start .s-start__step:not(:last-child) {
    margin-bottom: 6.8235294118vw;
  }
}
@media (min-width: 576px) {
  .s-start .s-start__content-02__entry:not(:last-child) {
    margin-bottom: 2.625rem;
  }
}
@media (max-width: 575.98px) {
  .s-start .s-start__content-02__entry:not(:last-child) {
    margin-bottom: 4.9411764706vw;
  }
}
@media (min-width: 576px) {
  .s-start .s-start__content-02__entries {
    margin-bottom: 7.5rem;
  }
}
@media (max-width: 575.98px) {
  .s-start .s-start__content-02__entries {
    margin-bottom: 14.1176470588vw;
  }
}
@media (min-width: 1100px) {
  .s-start .s-start__triangle {
    margin-bottom: 4.5rem;
  }
}
@media (max-width: 1099.98px) {
  .s-start .s-start__triangle {
    margin-bottom: 8.4705882353vw;
  }
}
@media (min-width: 1100px) {
  .s-start .s-start__heading-03 {
    margin-bottom: 2.625rem;
  }
}
@media (max-width: 1099.98px) {
  .s-start .s-start__heading-03 {
    margin-bottom: 4.9411764706vw;
  }
}
.s-start .s-start__content-02 {
  border-radius: 20px 20px 0 0;
  background-color: #fa9e15;
  background-image: url(../../images/limited3/bg-01.png);
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 100% auto;
  border-top: 1px solid transparent;
}
@media (min-width: 576px) {
  .s-start .s-start__heading-02 {
    margin-top: -6.25rem;
  }
}
@media (max-width: 575.98px) {
  .s-start .s-start__heading-02 {
    margin-top: -11.7647058824vw;
  }
}
.s-start .s-start__content-02__entries img {
  opacity: 0;
}
.s-start .s-start__content-02__entries.is-active img {
  animation: fadein-scale 0.3s cubic-bezier(0.33, 1, 0.75, 0.95) forwards;
}
.s-start .s-start__content-02__entries.is-active .s-start__content-02__entry:nth-of-type(2) img {
  animation-delay: 0.3s;
}
.s-start .s-start__content-02__entries.is-active .s-start__content-02__entry:nth-of-type(3) img {
  animation-delay: 0.6s;
}

@media (min-width: 576px) {
  .s-voices {
    padding-top: 2.9375rem;
  }
}
@media (max-width: 575.98px) {
  .s-voices {
    padding-top: 5.5294117647vw;
  }
}
@media (min-width: 576px) {
  .s-voices {
    padding-bottom: 5.25rem;
  }
}
@media (max-width: 575.98px) {
  .s-voices {
    padding-bottom: 9.8823529412vw;
  }
}
@media (min-width: 576px) {
  .s-voices .s-voices__heading {
    margin-bottom: 1.625rem;
  }
}
@media (max-width: 575.98px) {
  .s-voices .s-voices__heading {
    margin-bottom: 3.0588235294vw;
  }
}
@media (min-width: 576px) {
  .s-voices .s-voices__content {
    margin-bottom: 5rem;
  }
}
@media (max-width: 575.98px) {
  .s-voices .s-voices__content {
    margin-bottom: 9.4117647059vw;
  }
}
.s-voices .s-voices__content {
  background-color: #fff;
  border-radius: 20px;
  padding-bottom: 40px;
}
.s-voices .s-voices__slider {
  margin-bottom: 0;
}
@media (min-width: 576px) {
  .s-voices .s-voices__slider__entry {
    padding: 2.6875rem 3.125rem 0rem;
  }
}
@media (max-width: 575.98px) {
  .s-voices .s-voices__slider__entry {
    padding: 5.0588235294vw 5.8823529412vw 0vw;
  }
}
.s-voices .slick-dots button:before {
  opacity: 1;
  font-size: 32px;
}

/*# sourceMappingURL=main.css.map */
