@charset "utf-8";
/*==================================
SWITCH DOT LINE WCS-CSS 5.0
https://www.switchdotline.net/
Edit:2024 -
LastUpdate:20250324
==================================*/
/* FONTS */
@import url("https://fonts.googleapis.com/css2?family=Gilda+Display&display=swap");
/* Google Fonts
Gilda Display
font-family: "Gilda Display", serif;
font-weight: 400;
font-style: normal;
*/
/* Adobe Fonts
Source Han Sans JP Medium
font-family: "source-han-sans-japanese", sans-serif;
font-weight: 500;
font-style: normal;

Shippori Mincho B1 Medium
font-family: "shippori-mincho-b1", sans-serif;
font-weight: 500;
font-style: normal;
*/

/*==================================
CSS ANIMATION
==================================*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes bg_effect {
  0%,
  100% {
    background-size: 102%;
  }
  50% {
    background-size: 104%;
  }
}

@keyframes slide_down {
  0% {
    transform: translateY(-1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide_up {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/*==================================
INTRO ANIMATION
==================================*/
#intro_ani {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding: 0;
  background-color: #000;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 9999;
  animation: fixed 1s ease-in-out 0s 1 forwards;
}

/* intro_ani */
@keyframes fixed {
  0%,
  75% {
    opacity: 1;
  }
  85% {
    z-index: 200;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}

/*==================================
LAYOUT
==================================*/
html {
  font-size: 16px;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  padding: 0;
  margin: 0;
  background-color: #010000;
  background-image: url(../common/bg-graphic-pc.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  line-height: 160%;
  font-family: "shippori-mincho-b1", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #e9e9e9;
  text-shadow: 0 0 5px #000;
  text-align: center;
  letter-spacing: 0.02em;
  font-feature-settings: "palt" 1;
  -webkit-text-size-adjust: 100%;
  animation: bg_effect 18s ease-in-out 0s infinite;
}

#page-en {
  letter-spacing: 0.01em;
}

#content-area {
  position: relative;
  top: 0;
}

article {
  display: block;
  padding: 0;
  margin: 0;
}

section {
  max-width: 1100px;
  padding: 0;
  margin: 0 auto 150px auto;
  background-image: url(../common/bg-section.png);
  background-position: center;
  background-repeat: repeat;
  background-size: 100px;
  position: relative;
}

.device_width {
  /* padding: 120px 150px 150px 150px; */
  padding: 12%;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.inner_block {
  display: block;
  padding: 0;
  margin: 0 0 75px 0;
}

.inner_block:last-of-type {
  margin: 0;
}

/* SECTION WINDOW LINE */
section:before {
  content: "";
  display: block;
  width: calc(100% + 120px);
  height: 1px;
  background-image: linear-gradient(90deg, rgba(215, 227, 235, 0), rgba(215, 227, 235, 0.6) 5%, rgba(215, 227, 235, 1) 10%, rgba(215, 227, 235, 0.6) 15%, rgba(215, 227, 235, 0));
  position: absolute;
  left: -60px;
  top: -1px;
}

section:after {
  content: "";
  display: block;
  width: calc(100% + 120px);
  height: 1px;
  background-image: linear-gradient(90deg, rgba(215, 227, 235, 0), rgba(215, 227, 235, 0.6) 85%, rgba(215, 227, 235, 1) 90%, rgba(215, 227, 235, 0.6) 95%, rgba(215, 227, 235, 0));
  position: absolute;
  left: -60px;
  bottom: -1px;
}

.device_width:before {
  content: "";
  display: block;
  width: 1px;
  height: 500px;
  background-image: linear-gradient(0deg, rgba(215, 227, 235, 0), rgba(215, 227, 235, 0.6) 85%, rgba(215, 227, 235, 1) 90%, rgba(215, 227, 235, 0.6) 95%, rgba(215, 227, 235, 0));
  position: absolute;
  left: -1px;
  top: -60px;
}

.device_width:after {
  content: "";
  display: block;
  width: 1px;
  height: 500px;
  background-image: linear-gradient(180deg, rgba(215, 227, 235, 0), rgba(215, 227, 235, 0.6) 85%, rgba(215, 227, 235, 1) 90%, rgba(215, 227, 235, 0.6) 95%, rgba(215, 227, 235, 0));
  position: absolute;
  right: -1px;
  bottom: -60px;
}

/*==================================
ANCHOR LINK
==================================*/
.anchor {
  display: block;
  padding-top: 210px !important;
  margin-top: -210px !important;
  position: absolute;
}

/*==================================
BTN PAGETOP
==================================*/
a.fixed_pagetop {
  display: block;
  width: 45px;
  height: 45px;
  padding: 0;
  margin: 0;
  border-right: 1px solid #e9e9e9;
  border-top: 1px solid #e9e9e9;
  background-image: url(../common/icon-pagetop.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px;
  position: fixed;
  left: 0;
  z-index: 100;
  transition: 0.4s;
  opacity: 0.5;
}

a:hover.fixed_pagetop {
  background-color: #d7e3eb;
  background-image: url(../common/icon-pagetop-hover.svg);
  opacity: 1;
}

/*==================================
FOOTER
==================================*/
footer {
  display: block;
  width: 100%;
  padding: 100px 0 90px 0;
  margin: 0;
  background-image: url(../common/logo-theone.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 150px;
  position: relative;
}

footer a {
  padding: 0 0 3px 0;
  color: #e9e9e9;
  border-bottom: 1px dashed rgba(0, 0, 0, 0);
  transition: 0.4s;
}

footer a:hover {
  color: #fff;
  border-color: #fff;
  text-decoration: none;
}

footer .copyright {
  color: #e9e9e9;
  padding: 0;
  margin: 0;
  font-size: 0.72rem;
  text-align: center;
  opacity: 0.7;
}

/*==================================
SPLIDE COMMON
==================================*/
/* ARROWS */
.splide__arrow {
  width: 30px !important;
  height: 30px !important;
  background: #e9e9e9 !important;
  top: calc(100% + 30px) !important;
  transition: 0.4s;
}

.splide__arrow--prev {
  left: calc(50% + 325px) !important;
}

.splide__arrow--next {
  right: calc(50% - 400px) !important;
}

.splide__arrow:disabled {
  opacity: 0.4 !important;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 1 !important;
}

.splide__arrow svg {
  fill: #010000 !important;
  height: 1em !important;
  width: 1em !important;
}

/* SLIDE CONTENT */
.slide-content_benefits,
.slide-content_register {
  margin: 0 -15.8% 75px -15.8%;
}

.slide-content_benefits ul.splide__list .splide__slide,
.slide-content_register ul.splide__list .splide__slide {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 800px;
  padding: 45px;
  text-align: left;
  background-color: #161616;
}

.slide-content_benefits .splide__slide,
.slide-content_register .splide__slide {
  opacity: 0.5;
}

.slide-content_benefits .splide__slide.is-active,
.slide-content_register .splide__slide.is-active {
  opacity: 1;
}

/*==================================
MAINVISUAL AREA
==================================*/
#mainvisual_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 90vh;
  position: relative;
}

#mainvisual_area div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 480px;
}

#mainvisual_area h1 {
  display: block;
  width: 480px;
  height: 240px;
  padding: 0;
  margin: 0;
  background-image: url(../common/logo-theone.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  animation: slide_down 0.9s ease-out 1.2s 1 forwards;
}

#mainvisual_area p {
  display: block;
  width: 300px;
  height: 260px;
  padding: 0;
  margin: 60px 0 0 0;
  background-image: url(../common/main_title-pc.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  animation: slide_up 0.8s ease-out 1.2s 1 forwards;
}

/*==================================
LAYOUT
==================================*/
/* COMMON */
.title_area {
  width: 100%;
  padding: 0;
  margin: 0 0 60px 0;
  text-shadow: 0 0 10px rgba(222, 254, 255, 0.5);
}

/* ITEM */
.item_img {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  padding: 15px 0;
  margin: 0 0 15px 0;
  /* background-color: rgba(0, 0, 0, 0.7); */
}

.item_img img {
  width: 50%;
  height: auto;
}

.item_read p {
  padding: 0;
  margin: 4px 0;
  font-size: 1.1rem;
  line-height: 150%;
}

#index_item .price {
  padding: 0;
  margin: 20px 0;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  text-shadow: 0 0 5px rgba(222, 254, 255, 0.5);
}

/* SLIDE */
.slide-content_benefits .slide_body h3,
.slide-content_register .slide_body h3 {
  padding: 0;
  margin: 0 0 10px 0;
  text-align: left;
}

.slide-content_benefits .slide_body h3 span,
.slide-content_register .slide_body h3 span {
  display: block;
  font-size: 1rem;
  line-height: 100%;
}

.slide-content_benefits .slide_body ul,
.slide-content_register .slide_body ul {
  padding: 0;
  margin: 15px 0 0 0;
}

.slide-content_benefits .slide_body ul li,
.slide-content_register .slide_body ul li {
  padding: 0;
  margin: 5px 0 0 1em;
  line-height: 150%;
  list-style-type: none;
}

.slide-content_benefits .slide_body ul li:before,
.slide-content_register .slide_body ul li:before {
  content: "※";
  margin-left: -1em;
}

#page-en .slide-content_benefits .slide_body ul li:before,
#page-en .slide-content_register .slide_body ul li:before {
  content: "*";
  margin-left: -0.6em;
}

/* Slide Benefits */
.slide-content_benefits .slide_thm {
  display: block;
  width: 260px;
  height: 260px;
  padding: 0;
  margin: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.slide-content_benefits .slide_thm span {
  font-size: 0.6rem;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 500;
  position: absolute;
  left: 0;
  bottom: -1.8rem;
  opacity: 0.7;
}

.slide-content_benefits .slide_thm.thm-benefits01 {
  background-image: url(../common/thm-benefits01.jpg);
}

.slide-content_benefits .slide_thm.thm-benefits02 {
  background-image: url(../common/thm-benefits02.jpg);
}

.slide-content_benefits .slide_thm.thm-benefits03 {
  background-image: url(../common/thm-benefits03.jpg);
}

.slide-content_benefits .slide_thm.thm-benefits04 {
  background-image: url(../common/thm-benefits04.jpg);
}

.slide-content_benefits .slide_body {
  display: block;
  width: calc(100% - 260px);
  padding-left: 30px;
}

/* Slide Register */
.slide-content_register .slide_step {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100%;
  padding: 0 45px 0 0;
  margin: 0;
  border-right: 1px solid #404040;
  text-align: center;
}

.slide-content_register .slide_step li:nth-of-type(1) {
  display: block;
  padding: 0;
  margin: 0 0 15px 0;
  font-size: 1.2rem;
  line-height: 100%;
}

.slide-content_register .slide_step li:nth-of-type(2) {
  display: block;
  padding: 0;
  margin: 0;
  font-size: 4.7rem;
  line-height: 100%;
}

.slide-content_register .slide_body {
  display: block;
  width: calc(100% - 100px);
  padding-left: 45px;
}

.slide-content_benefits .slide_body p,
.slide-content_register .slide_body p {
  font-size: 0.94rem;
}

/* CONTENT NORMAL */
.content_normal {
  text-align: left;
}

.content_normal h3 {
  padding: 0;
  margin: 75px 0 25px 0;
  text-align: left !important;
}

.content_normal h3:first-of-type {
  margin: 0 0 25px 0;
}

.content_normal h4 {
  padding: 0;
  margin: 0 0 15px 0;
  text-align: left !important;
  font-size: 1.2rem;
}

.content_normal ul.caption li {
  padding: 0;
  margin: 5px 0 0 1em;
  line-height: 160%;
  list-style-type: none;
}

.content_normal ul.caption li:before {
  content: "※";
  margin-left: -1em;
}

#page-en .content_normal ul.caption li:before {
  content: "*";
  margin-left: -0.6em;
}

.content_normal .list_notice {
  margin: 0 0 45px 0;
}

.content_normal .list_notice ul {
  list-style-type: disc;
  padding-left: 1em;
}

.content_normal .list_notice ul li {
  padding: 0;
  margin: 6px 0;
}

.content_normal .list_notice ul li a.btn-inner {
  margin: 6px 0 20px 0;
}

#index_register .content_normal {
  margin-top: 60px;
}

/*==================================
BTN
==================================*/
a.btn-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 340px;
  height: 60px;
  padding: 0;
  margin: 45px auto 0 auto;
  border: 1px solid;
  border-image: linear-gradient(to right, #535e65, #d7e3eb, #535e65) 1;
  font-size: 1.2rem;
  text-shadow: none;
  position: relative;
  transition: 0.4s;
}

a.btn-block:before {
  content: "";
  width: 340px;
  height: 60px;
  border: 1px solid #d7e3eb;
  position: absolute;
  top: 3px;
  left: 3px;
  opacity: 0.2;
}

a:hover.btn-block {
  color: #010000;
  background-color: #d7e3eb;
  text-decoration: none;
}

a.btn-inner {
  display: block;
  padding: 0 0 0 30px;
  margin: 20px 0 0 0;
  position: relative;
  font-style: italic;
  transition: 0.4s;
}

a.btn-inner:before {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transition: 0.4s;
}

a:hover.btn-inner {
  padding-left: 40px;
  text-decoration: none;
  text-shadow: 0 0 5px rgba(222, 254, 255, 0.5);
}

a:hover.btn-inner:before {
  width: 30px;
}

a.btn-inner + p,
a.btn-inner + ul {
  margin-top: 20px;
}

/*==================================
FIXED BTN
==================================*/
#fixed_lang {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 122px;
  height: 30px;
  padding: 0;
  margin: 0;
  background-color: #010000;
  border: 1px solid #e9e9e9;
  border-top: none;
  font-size: 0.9rem;
  transform: rotate(90deg);
  position: fixed;
  top: 76px;
  right: -46px;
  z-index: 10;
}

#fixed_lang span,
#fixed_lang a {
  display: block;
  width: 60px;
  height: 30px;
  text-shadow: none;
}

#fixed_lang span {
  background-color: #e9e9e9;
  color: #010000;
}

#fixed_lang a:hover {
  text-decoration: none;
  background-color: rgba(222, 254, 255, 0.2);
}

/*==================================
TEXT
==================================*/
h1,
h2,
h3,
h4 {
  padding: 0;
  margin: 0;
  line-height: 140%;
}

p {
  line-height: 160%;
  padding: 5px 0;
  margin: 0;
}

a {
  color: #e9e9e9;
  text-decoration: none;
  transition: 0.4s;
}

a:hover {
  color: #fff;
  text-decoration: underline;
}

.caption {
  display: block;
  font-size: 0.75rem !important;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

h1 {
  font-size: 4rem;
  letter-spacing: 0;
}

h2 {
  width: 100%;
  text-align: center;
  font-size: 3.4rem;
  font-family: "Gilda Display", serif;
  font-weight: 400;
  font-style: normal;
  padding: 0 0 5px 0;
  margin: 0 auto;
  letter-spacing: 0.04em;
  line-height: 120%;
}

h3 {
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
  padding: 0;
  margin: 0 auto;
  letter-spacing: 0.04em;
}

h4 {
  width: 100%;
  font-size: 1.4rem;
  padding: 0;
  margin: 0 auto;
  letter-spacing: 0.04em;
}

/*==================================
Tablet portrait
==================================*/
/* @media only screen and (min-device-width: 768px) and (max-device-width: 1023px) and (orientation: portrait) { */
@media screen and (min-width: 768px) and (max-width: 1160px) {
  body::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url(../common/bg-graphic-sp.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
  }

  section {
    max-width: 100vw;
  }
}

/*==========================================*/
.fix {
  overflow: hidden;
  zoom: 1;
}

.none {
  display: none;
}

.display_sp {
  display: none !important;
}

.display_pc {
  display: block !important;
}
