@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Fugaz+One&display=swap");
/* -------------------------------------------------------------------
  default colors
------------------------------------------------------------------- */
/* -------------------------------------------------------------------
  default font-size
------------------------------------------------------------------- */
/* -------------------------------------------------------------------
  各種rem計算（font以外）
------------------------------------------------------------------- */
/* -------------------------------------------------------------------
  アスペクト比固定
------------------------------------------------------------------- */
/* -------------------------------------------------------------------
  vw変換
------------------------------------------------------------------- */
/* ---------------
  Utility
*/
html,
body {
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-size: 24px;
  font-family: "FP-ヒラギノ角ゴ StdN W9", sans-serif;
  line-height: 1.8;
  color: #000;
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-kerning: auto;
          font-kerning: auto;
}
@media (min-width: 750.1px) {
  body {
    font-size: clamp(20px, 1.7741935484vw, 24px);
  }
}

@media (max-width: 750px) {
  main {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    width: 200%;
  }
}

a {
  color: #000;
  text-decoration: none;
}

p {
  margin-top: 0;
  text-align: justify;
}
p:last-child {
  margin-bottom: 0;
}

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

figure {
  margin: 0;
}

b {
  color: #000;
  font-weight: 500;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h2, h4, h5 {
  margin: 0;
  font-weight: normal;
}

h3 {
  font-weight: bold;
}

ruby {
  ruby-position: under;
  -webkit-ruby-position: after;
}

ruby > rt {
  font-size: 24px;
  text-align: center;
  font-family: "FP-ヒラギノ角ゴ StdN W9", sans-serif;
}

.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

.fw-600{
  font-weight: 600;
}
.fw-800{
  font-weight: 800;
}
.fs-italic{
  font-style: italic;
}

.--accent {
  color: #FF2020;
}
.--accent-blue {
  color: #0047FF;
}


@media (min-width: 599.9px) {
  .--sp {
    display: none;
  }
}
@media (max-width: 750px) {
  .--pc {
    display: none;
  }
}
@media (max-width: 600px) and (min-width: 750.1px) {
  .--tb {
    display: none;
  }
}
@media (min-width: 1260px) {
  .--xl {
    display: none;
  }
}
/* ---------------
  Common
*/
.inner {
  width: 100%;
  max-width: calc(1098px + 10%);
  margin-inline: auto;
  padding-inline: 5%;
}
.inner.--wide {
  max-width: calc(1400px + 10%);
}

.header {
  padding: clamp(16px, 3.7333333333vw, 40px) clamp(24px, 4.2666666667vw, 40px);
}
.header__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(10px, 2vw, 20px);
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header__contents-sns {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #000;
}
.header__contents-sns img {
  width: 20px;
}

.splide__pagination {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(7px, 1.4666666667vw, 15px);
}
.splide__pagination__page {
  width: clamp(20px, 4.2666666667vw, 44px);
  height: clamp(20px, 4.2666666667vw, 44px);
  background-color: #D9D9D9;
  opacity: 1;
}
.splide__pagination__page.is-active {
  background-color: #FF2020;
  -webkit-transform: none;
          transform: none;
}

@-webkit-keyframes marquee {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes marquee {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.marquee__text {
  display: inline-block;
  white-space: nowrap;
  -webkit-animation: marquee 25s linear infinite;
          animation: marquee 25s linear infinite;
}
.marquee__text::after {
  content: attr(data-text);
  white-space: nowrap;
}
.marquee__text.--reverse {
  animation-direction: reverse;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}
.shake, .lead__label-img.--animated {
  display: inline-block;
  -webkit-animation: shake 0.5s;
          animation: shake 0.5s;
}

.to-large {
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.to-large.--lb {
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}
.to-large.--rb {
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
}
.to-large.--animated {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.slide-right {
  position: relative;
  right: -50%;
  opacity: 0;
  -webkit-transition: right 0.5s, opacity 0.5s;
  transition: right 0.5s, opacity 0.5s;
}
.slide-right.--animated {
  right: 0%;
  opacity: 1;
}

.lead {
  /* padding-block: clamp(110px, 28.6666666667vw, 320px) clamp(320px, 44vw, 340px); */
  padding-block: clamp(110px, 18vw, 220px) clamp(320px, 44vw, 340px);
  background-image: url(../img/bg-1-sp.png);
  background-size: cover;
}
.lead__title {
  position: relative;
  display: inline-block;
  font-size: clamp(60px, 10.8vw, 90px);
  line-height: 1.4;
  letter-spacing: -2.13px;
}
.lead__title-strong{
  color: #FF0000;
}

.lead__title-img {
  position: absolute;
  top: -42%;
  right: -0%;
  width: clamp(220px, 38.9333333333vw, 364px);
}
.lead__label {
  margin-top: clamp(15px, 4vw, 45px);
  text-align: center;
  background-color: #000;
}
.lead__label-inner {
  position: relative;
  display: inline-block;
  padding-top: 6px;
}
.lead__label-text {
  position: relative;
  z-index: 2;
  font-size: clamp(98px, 19.8666666667vw, 200px);
  letter-spacing: 9.87px;
  font-family: "Fugaz One", sans-serif;
  color: white;
  line-height: 2;
}
.lead__label-text.narrow{
  line-height: 1.4;
}
.lead__label-img {
  position: absolute;
  top: -22%;
  right: -5%;
  z-index: 1;
  width: clamp(70px, 11.8666666667vw, 108px);
}
.lead__text {
  margin-top: clamp(35px, 6.6vw, 64px);
  font-size: 33px;
  letter-spacing: -1px;
  line-height: 60px;
}
.lead__item {
  position: relative;
  overflow-x: hidden;
}
.lead__link{
  display: block;
  width: clamp(450px, 80vw, 720px);
  margin: clamp(30px, 10vw, 80px) auto;
  padding: 30px 0;
  font-size: 28px;
  line-height: 54px;
  color: #FFF;
  font-weight: 800;
  background-color: #000;
  text-align: center;
  border-radius: 260px;
}
.lead__item-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(28px, 11.8666666667vw, 150px);
  margin-top: clamp(85px, 17.6666666667vw, 180px);
  padding-block: 180px 166px;
}
.lead__item-img {
  max-width: 265px;
}
.lead__item-img-wrap {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.lead__item-content {
  position: relative;
  width: 100%;
}
.lead__item-content__inner {
  max-width: 575px;
  margin-inline: auto;
}
.lead__item-content__title {
  font-size: 40px;
  letter-spacing: -2px;
  line-height: 60px;
}
.lead__item-content__title-strong{
  color: #FF0000;
}
.lead__item-content__text {
  margin-top: 1em;
  font-size: 24px;
  line-height: 46px;
  margin-bottom: 0;
}
.lead__item-content__text-strong{
  color: #FF0000;
}
.lead__item-content__btn {
  display: inline-block;
  width: clamp(400px, 63.3333333333vw, 550px);
  margin-top: 38px;
  padding-block: 25px;
  border-radius: 3em;
  text-align: center;
  background-color: #000;
  color: white;
  text-decoration: none;
}
.lead__item-content__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  -webkit-transform: translateX(clamp(0px, 37.3333333333vw, 280px));
          transform: translateX(clamp(0px, 37.3333333333vw, 280px));
}
.lead__item-content__bg-img {
  height: 100%;
}
.lead__item-bg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.lead__item-bg__text {
  font-size: 500px;
  font-family: "Fugaz One", sans-serif;
}

@media (min-width: 750.1px) {
  .lead {
    background-image: url(../img/bg-1-pc.png);
  }
  .lead__title {
    font-size: clamp(62px, 6.5322580645vw, 90px);
  }
  .lead__title-img {
    width: clamp(200px, 22.7419354839vw, 364px);
  }
  .lead__item-inner {
    padding-block: 66px;
  }
  .lead__item-content__title {
    font-size: clamp(36px, 3.3064516129vw, 45px);
  }
  .lead__item-content__bg {
    -webkit-transform: translateX(clamp(150px, 28.5vw, 420px));
            transform: translateX(clamp(150px, 28.5vw, 420px));
  }
  .lead__item-content__btn {
    width: clamp(200px, 30.2419354839vw, 550px);
  }
  .lead__label-img {
    top: -25%;
    right: -6%;
  }
  .lead__label-text {
    font-size: clamp(96px, 11.935483871vw, 200px);
  }
}
.products {
  padding-block: clamp(390px, 58vw, 480px) 280px;
  background-image: url(../img/bg-2-sp.png);
  background-size: cover;
  background-position: bottom;
  overflow-x: hidden;
}
.products__title {
  text-align: center;
}
.products__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 153px;
  margin-top: clamp(90px, 16.6666666667vw, 160px);
}
.products__item-content {
  position: relative;
  padding-block: 76px 57px;
  background-color: white;
  text-align: center;
  font-size: 20px;
  letter-spacing: -1px;
  line-height: 30px;
}
.products__item-content__img-badge {
  position: absolute;
  right: -7%;
  top: -5%;
}
.products__item-content__img-badge.--pauchi {
  right: -10%;
}
.products__item-content__title {
  text-align: center;
  margin-top: 58px;
  margin-bottom: 0;
}
.products__item-content__title-strong {
  color: #FF0000;
}
.products__item-content__price {
  margin-top: 13px;
}
.products__item-content__price-price {
  font-size: 30px;
  line-height: 30px;
  letter-spacing: 2px;
  font-style: italic;
  color: #FF2020;
}
.products__item-btn {
  display: block;
  margin-top: clamp(30px, 4.5333333333vw, 38px);
  padding-block: 25px;
  border-radius: 3em;
  text-align: center;
  background-color: #000;
  color: white;
  text-decoration: none;
  font-family: "Fugaz One", sans-serif;
}

@media (min-width: 750.1px) {
  .products {
    background-image: url(../img/bg-2-pc.png);
  }
  .products__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4.4270833333vw;
  }
  .products__item-content__img {
    max-width: 50%;
    max-height: 432px;
    position: relative;
    z-index: 5;
  }
  .products__item-content__img-wrap {
    display: grid;
    place-items: center;
    height: 432px;
    max-height: 100%;
  }
  .products__item-content__img-badge {
    right: -15%;
  }
  .products__item-content__img-badge.--regular {
    width: 10.3125vw;
  }
  .products__item-content__img-badge.--large {
    width: 9.9479166667vw;
  }
  .products__item-content__img-badge.--pauchi {
    right: -18%;
    width: 12.5vw;
  }
}
.marquee-items {
  position: relative;
}
.marquee-items .marquee-item {
  position: absolute;
  width: 100%;
  left: 0;
}
.marquee-items .marquee-item__inner {
  overflow: hidden;
}
.marquee-items .marquee-item.--line1 {
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
}
.marquee-items .marquee-item.--line2 {
  -webkit-transform: translateY(-25%);
          transform: translateY(-25%);
}
.marquee-items .marquee-item__text {
  font-size: 300px;
  line-height: 90%;
  letter-spacing: 8.87px;
  font-family: "Fugaz One", sans-serif;
}
.marquee-items .marquee-item__text.--outline {
  color: white;
  text-shadow: -5px -5px 0 #FF2020, 0px -5px 0 #FF2020, 5px -5px 0 #FF2020, 5px 0px 0 #FF2020, 5px 5px 0 #FF2020, 0px 5px 0 #FF2020, -5px 5px 0 #FF2020, -5px 0px 0 #FF2020;
}

.howto {
  padding-block: 120px clamp(180px, 26.6666666667vw, 220px);
  overflow-x: hidden;
}
.howto__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 200px;
}
.howto__item-num {
  display: block;
  text-align: center;
  font-size: 200px;
  line-height: 100%;
  -webkit-transform: skew(-5deg);
          transform: skew(-5deg);
}
.howto__item-text {
  font-size: 60px;
  line-height: 85px;
  letter-spacing: 2px;
  -webkit-transform: skew(-5deg);
          transform: skew(-5deg);
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}
.howto__item-text__notice {
  display: block;
  font-size: 22px;
  line-height: 90px;
}

@media (min-width: 750.1px) {
  .howto__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: clamp(0px, 5.2419354839vw, 130px);
    margin-top: 140px;
  }
  .howto__item-text {
    font-size: clamp(36px, 3.8709677419vw, 60px);
  }
  .howto__item-text__notice {
    line-height: 2;
  }
  .howto__item-num {
    font-size: clamp(100px, 12.0967741935vw, 200px);
  }
}
.about {
  background-color: #000;
  color: white;
  padding-bottom: 100px;
}
.about__title {
  line-height: 0.9;
  margin-bottom: 50px;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
.about__title-en {
  display: inline-block;
  font-family: "Fugaz One", sans-serif;
  font-size: clamp(160px, 22.6666666667vw, 180px);
  text-transform: uppercase;
}
.about__title-ja {
  display: inline-block;
  font-size: clamp(50px, 7.3333333333vw, 60px);
}
.about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 87px 73px;
  align-items: center;
}
.about__contents-name {
  font-size: 65px;
  letter-spacing: 2px;
}
.about__contents-description {
  margin-top: 20px;
}
.about__contents-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.about__contents-btns__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  padding-block: 24px;
  border-radius: 2em;
  text-decoration: none;
  background-color: white;
}
.about__contents-btns__item-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #000;
}
.about__img {
  width: 100%;
}
@media (min-width: 750.1px) {
  .about__title {
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
    margin-inline: auto;
  }
  .about__title-en {
    font-size: clamp(90px, 10.8870967742vw, 180px);
  }
  .about__title-ja {
    font-size: clamp(40px, 4.0322580645vw, 60px);
  }
  .about__img-wrap {
    width: 65%;
  }
  .about__contents {
    width: 35%;
  }
  .about__contents-name {
    font-size: clamp(30px, 3.6290322581vw, 60px);
  }
  .about__contents-description {
    font-size: 14px;
  }
  .about__contents-btns__item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-block: 16px;
  }
  .about__contents-btns__item-text {
    font-size: 14px;
  }
  .about__contents-btns__item-icon {
    width: 40px;
    height: 40px;
  }
  .about__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.about_su {
  padding-block: clamp(60px, 14vw, 100px) clamp(30px, 7vw, 50px);
  background-image: url(../img/bg-1-sp.png);
  background-size: cover;
  background-position: center top -150px;
}
.about_su__title{
  margin: 30px 0;
  font-size: 20px;
  text-align: center;
}
.about_su__title-strong{
  font-size: 32px;
}
.about_su__catchcopy{
  margin: 20px 0;
  font-size: clamp(60px, 8vw, 123px);
  line-height: 1.2;
  text-align: center;
}
.about_su__description{
  margin: 30px 0 72px;
  font-size: 28px;
  text-align: center;
}
.about_su__img{
  display: block;
  width: clamp(85%, 1260px, 90%);
  margin: 0 auto 60px;
}
.about_su__back{
  text-align: center;
}
.about_su__back-link{
  position: relative;
}
.about_su__back-link:hover{
  top: -20px;
	transition: 0.4s;
}
.about_su__back-link img{
  width: clamp(220px, 20vw, 285px);
}

.footer__logo-img {
  width: 100%;
  max-width: 200px;
  margin-top: 20px;
}
.footer__copy small {
  font-size: 14px;
  font-family: sans-serif;
}
.footer__links {
  max-width: 800px;
  margin: 0 auto;
  font-family: sans-serif;
}

.footer__links ul {
  list-style: none;
  padding-left: 0;
  font-size: 12px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footer__links ul li{
  padding: 0 10px;
}
