@charset "UTF-8";
/*!
Theme Name: Scoop Hero
Version: 1.0.0
*/
/* 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 {
  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;
}

/*----- 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%;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  height: 100%;
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: #efefef;
  background-color: #1d1d1d;
  line-height: 1.5;
  letter-spacing: 0.5px;
  padding: 0;
  margin: 0;
  position: relative;
  background-image: url("./img/bg.jpg");
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.wrapper {
  overflow: hidden;
}

/* Sections
========================================================================== */
.grotesk {
  font-family: "Hanken Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

/* Common
========================================================================== */
/* hamburger
========================================================================== */
.float--icon {
  position: fixed;
  right: 30px;
  top: 50px;
  width: 34px;
  height: 34px;
  pointer-events: none;
  -webkit-transition: 120ms;
  transition: 120ms;
  z-index: 999;
}
@media (max-width: 768px) {
  .float--icon {
    right: 5vw;
    top: 27px;
  }
}
.float--icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  border-radius: 100px;
  border: 2px solid #fff;
  background-color: #000;
  z-index: -1;
}
.float--icon svg {
  position: absolute;
  top: -33px;
  left: -33px;
  -webkit-transform: scale(0.1);
          transform: scale(0.1);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}
.float--icon svg path {
  stroke: #fff;
  stroke-width: 20px;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: transparent;
  -webkit-transition: stroke-dasharray 480ms;
  transition: stroke-dasharray 480ms;
}
.float--icon svg path.path1 {
  stroke-dashoffset: 5803.15px;
  stroke-dasharray: 2901.57px, 2981.57px, 240px;
}
.float--icon svg path.path2 {
  stroke-dashoffset: 800px;
  stroke-dasharray: 400px, 480px, 240px;
}
.float--icon svg path.path3 {
  stroke-dashoffset: 6993.11px;
  stroke-dasharray: 3496.56px, 3576.56px, 240px;
}
.float--icon.open svg path.path1 {
  stroke-dasharray: 2901.57px, 5258.15px, 240px;
}
.float--icon.open svg path.path2 {
  stroke-dasharray: 400px, 600px, 0px;
}
.float--icon.open svg path.path3 {
  stroke-dasharray: 3496.56px, 6448.11px, 240px;
}
.float--icon .menu-icon-trigger {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  pointer-events: auto;
  background: none;
  border: none;
  margin: 0;
  padding: 0;
}

.float {
  position: fixed;
  right: 0;
  top: 25px;
  z-index: 990;
  padding: 17px 40px 30px 25px;
  -webkit-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
          filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
  -webkit-transform: translateX(200px);
          transform: translateX(200px);
  -webkit-transition: -webkit-transform 360ms cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: -webkit-transform 360ms cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 360ms cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 360ms cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 360ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (max-width: 768px) {
  .float {
    top: 10px;
  }
}
.float.open {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}
.float::before {
  content: "";
  width: 130%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  z-index: -1;
  display: block;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 13% 100%);
}
.float--sns {
  padding-right: clamp(0px, 13vw, 50px);
}
.float--sns__link {
  display: block;
  width: 50px;
  height: auto;
  aspect-ratio: 1/1;
}
.float--sns__link svg {
  width: 100%;
  height: auto;
  fill: #fff;
  vertical-align: bottom;
}
.float--menu {
  margin-top: clamp(0px, 4vw, 20px);
}
.float--menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.float--menu__item {
  position: relative;
}
.float--menu__link {
  color: #fff;
  font-size: clamp(18px, 16.7741935484px + 0.0032258065 * 100vw, 20px);
  font-family: "Hanken Grotesk", "Noto Sans", sans-serif;
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25em;
}
.float--menu__link::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNDVweCIgaGVpZ2h0PSI0NXB4Ij48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGZpbGw9InJnYigyNTUsIDI1NSwgMjU1KSIgZD0iTTQyLjA1MiwzMy4xMjEgTDI1LjE3OSwzMS41MzIgTDExLjg2Nyw0Mi4wMTggTDEzLjQ1NSwyNS4xNDYgTDIuOTcwLDExLjgzMyBMMTkuODQyLDEzLjQyMSBMMzMuMTU1LDIuOTM2IEwzMS41NjYsMTkuODA4IEw0Mi4wNTIsMzMuMTIxIFoiLz48L3N2Zz4=");
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.float--menu__link:hover {
  color: #f8bb17;
}
.float--menu__link:hover::before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNDVweCIgaGVpZ2h0PSI0NXB4Ij48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGZpbGw9IiNmOGJiMTciIGQ9Ik00Mi4wNTIsMzMuMTIxIEwyNS4xNzksMzEuNTMyIEwxMS44NjcsNDIuMDE4IEwxMy40NTUsMjUuMTQ2IEwyLjk3MCwxMS44MzMgTDE5Ljg0MiwxMy40MjEgTDMzLjE1NSwyLjkzNiBMMzEuNTY2LDE5LjgwOCBMNDIuMDUyLDMzLjEyMSBaIi8+PC9zdmc+");
}
.float--menu__item:nth-child(3) {
  padding-left: 15px;
}
.float--menu__item:nth-child(2) {
  padding-left: 10px;
}
.float--menu__item:nth-child(1) {
  padding-left: 5px;
}

/* Hero
========================================================================== */
.heroSec {
  position: relative;
  z-index: 1;
  background-image: url("./img/hero-bg.webp");
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 86%);
}
@media (max-width: 768px) {
  .heroSec {
    background-image: url("./img/hero-bg-sp.webp");
  }
}
.heroSec__inner {
  position: relative;
  max-width: 1280px;
  margin: auto;
}
@media (max-width: 768px) {
  .heroSec__inner {
    width: 120vw;
    margin-left: -15vw;
  }
}
.heroSec__inner .logo {
  position: absolute;
  bottom: clamp(0px, 24vw, 280px);
  right: 10%;
  width: 32%;
  -webkit-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
          filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
}
@media (max-width: 768px) {
  .heroSec__inner .logo {
    bottom: 27%;
    width: 30%;
  }
}

/* Promotion Video
========================================================================== */
.promotionvideo {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.promotionvideo__inner {
  width: 85%;
  max-width: 1000px;
  margin: auto;
}
.promotionvideo__inner .youtube {
  width: 100%;
  aspect-ratio: 16/9;
  margin-top: max(-250px, -25%);
  margin-left: -10px;
  -webkit-box-shadow: clamp(0px, 2.5vw, 20px) clamp(0px, 2.5vw, 20px) 0px 0px rgba(0, 0, 0, 0.8);
          box-shadow: clamp(0px, 2.5vw, 20px) clamp(0px, 2.5vw, 20px) 0px 0px rgba(0, 0, 0, 0.8);
}
@media (max-width: 768px) {
  .promotionvideo__inner .youtube {
    margin-left: -5px;
    margin-top: -27.5%;
  }
}
.promotionvideo__inner .youtube iframe {
  background-color: #000;
  display: block;
  width: 100%;
  height: 100%;
}

/* 事前登録受付中
========================================================================== */
.zizen {
  margin-top: clamp(0px, 8vw, 100px);
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transform: rotate(-5.5deg);
          transform: rotate(-5.5deg);
}
.zizen::before, .zizen::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.zizen::before {
  top: 0;
  right: -1vw;
  width: 115vw;
  height: 175%;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  clip-path: polygon(0 0, 100% 0, 100% 30%, 0% 100%);
  background: linear-gradient(170deg, #a34b2a 0%, #f4b200 45%);
}
@media (max-width: 1600px) {
  .zizen::before {
    height: 165%;
    clip-path: polygon(0 0, 100% 0, 100% 25%, 0% 100%);
    -webkit-transform: rotate(22deg);
            transform: rotate(22deg);
  }
}
@media (max-width: 1280px) {
  .zizen::before {
    height: 155%;
    clip-path: polygon(0 0, 100% 0, 100% 20%, 0% 100%);
    -webkit-transform: rotate(25deg);
            transform: rotate(25deg);
  }
}
.zizen::after {
  bottom: 0;
  left: 0;
  width: 125vw;
  height: 60%;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  clip-path: polygon(0 0, 100% 95%, 100% 100%, 0 100%);
  background: #ff9600;
}
@media (max-width: 1600px) {
  .zizen::after {
    -webkit-transform: rotate(12deg);
            transform: rotate(12deg);
  }
}
@media (max-width: 1280px) {
  .zizen::after {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
}
.zizen__inner {
  position: relative;
  z-index: 0;
  width: 95%;
  max-width: 1000px;
  margin: auto;
  padding: clamp(0px, 4vw, 30px) 0;
}
.zizen__inner::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: 105vw;
  height: 100%;
  background-image: url("./img/zizen-bg.jpg");
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* Store Links
========================================================================== */
.storelinks {
  margin-top: clamp(0px, 8vw, 100px);
  position: relative;
  z-index: 1;
}
.storelinks__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(0px, 3vw, 50px);
  width: 85%;
  max-width: 1000px;
  margin: auto;
  padding: clamp(0px, 4vw, 30px) 0;
}

/* Footer
========================================================================== */
.footer {
  position: relative;
  z-index: 1;
  margin-top: clamp(0px, 15vw, 120px);
  padding: clamp(0px, 10vw, 70px) 0;
  background-color: #000;
}
.footer__inner {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0px, 6vw, 40px);
}
.footer--pfcopyright {
  font-size: clamp(10px, 6.3225806452px + 0.0096774194 * 100vw, 16px);
  text-align: center;
}
.footer--copyright {
  font-size: clamp(12px, 5.8709677419px + 0.0161290323 * 100vw, 22px);
  text-align: center;
}
.footer--links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(0px, 5vw, 30px);
}
.footer--links--item .link {
  position: relative;
  color: #fff;
  font-size: clamp(14px, 11.5483870968px + 0.0064516129 * 100vw, 18px);
  -webkit-transition: color 240ms;
  transition: color 240ms;
}
.footer--links--item .link::before {
  background: #f8bb17;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 360ms;
  transition: -webkit-transform 360ms;
  transition: transform 360ms;
  transition: transform 360ms, -webkit-transform 360ms;
  z-index: -1;
}
.footer--links--item .link:hover {
  color: #000;
  -webkit-transition-delay: 60ms;
          transition-delay: 60ms;
}
.footer--links--item .link:hover::before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

/* FAQ（よくある質問・お問い合わせ）：TOP
========================================================================== */
.faq__section {
  margin-top: clamp(0px, 8vw, 100px);
  position: relative;
  z-index: 1;
}
.faq__section__inner {
  width: 85%;
  max-width: 1000px;
  margin: auto;
  -webkit-filter: drop-shadow(clamp(0px, 2.5vw, 20px) clamp(0px, 2.5vw, 20px) 0px rgba(0, 0, 0, 0.8));
          filter: drop-shadow(clamp(0px, 2.5vw, 20px) clamp(0px, 2.5vw, 20px) 0px rgba(0, 0, 0, 0.8));
}
.faq__section__inner .link {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding: clamp(0px, 5vw, 50px) 0 clamp(0px, 8vw, 90px);
  clip-path: polygon(0% 0, 100% 0%, 98% 80%, 3% 100%);
}
.faq__section__inner .link::before, .faq__section__inner .link::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.faq__section__inner .link::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f8bb17;
  z-index: -2;
}
.faq__section__inner .link::before {
  background: #fff;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 360ms;
  transition: -webkit-transform 360ms;
  transition: transform 360ms;
  transition: transform 360ms, -webkit-transform 360ms;
}
.faq__section__inner .link:hover {
  color: #000;
  -webkit-transition-delay: 60ms;
          transition-delay: 60ms;
}
.faq__section__inner .link:hover::before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.faq__section__inner .link span {
  line-height: 1;
  color: #000;
  font-weight: 900;
}
.faq__section__inner .link span.grotesk {
  font-size: clamp(28px, 2.9873417722px + 0.0658227848 * 100vw, 80px);
}
.faq__section__inner .link span.noto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  letter-spacing: 0;
  font-size: clamp(14px, 1.4936708861px + 0.0329113924 * 100vw, 40px);
}
.faq__section__inner .link span.noto::after {
  content: "";
  display: block;
  width: 1.2em;
  height: 1.5em;
  aspect-ratio: 1/1;
  background-color: #000;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

/* FAQ（よくある質問・お問い合わせ）：PAGE
========================================================================== */
.faq__header .faq__header--visual {
  background-image: url("./img/faq/head-bg-03.webp");
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
  display: -ms-grid;
  display: grid;
      grid-template-areas: "overlap";
}
.faq__header .faq__header--visual > * {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: overlap;
  -ms-grid-column-align: center;
      justify-self: center;
  -ms-grid-row-align: center;
      align-self: center;
}
.faq__header .faq__header--visual .img-full {
  grid-column: 1/-1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right top;
     object-position: right top;
  display: block;
  position: relative;
  z-index: 2;
}
.faq__header .faq__header--visual .img-wrap {
  width: 100%;
  max-width: 1280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  z-index: 1;
}
.faq__header .faq__header--visual .img-wrap .img-left {
  max-width: 780px;
  width: 70vw;
  height: auto;
  display: block;
}
.faq__header--title {
  padding: 0 0 clamp(0px, 13vw, 100px);
  position: relative;
}
.faq__header--title .text {
  position: relative;
  z-index: 0;
  width: 90%;
  max-width: 1000px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.5em;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  padding-bottom: 5px;
}
.faq__header--title .text::after {
  content: "";
  display: block;
  width: 120vw;
  height: 100vw;
  background-color: #f4b200;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.faq__header--title .text span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1;
  color: #000;
  font-weight: 900;
}
.faq__header--title .text span.grotesk {
  font-size: clamp(40px, 20.7594936709px + 0.0506329114 * 100vw, 80px);
}
.faq__header--title .text span.noto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  letter-spacing: 0;
  color: #fff;
  font-size: clamp(16px, 9.2658227848px + 0.017721519 * 100vw, 30px);
}

.faq__content {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}
.faq__content .title {
  font-family: "Noto Sans", sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 21.1139240506px + 0.0075949367 * 100vw, 30px);
  padding-bottom: 10px;
  border-bottom: 3px solid #f4b200;
}
.faq__content--information .text {
  font-weight: bold;
  padding: clamp(0px, 3vw, 15px) 0;
  font-size: clamp(14px, 12.0759493671px + 0.0050632911 * 100vw, 18px);
}
.faq__content--inner {
  margin-top: clamp(0px, 10vw, 70px);
  font-weight: bold;
}
.faq__content--inner .faq-wrap {
  list-style: none;
  margin: min(4vw, 20px) 0 0;
  padding: 0;
}
.faq__content--inner .faq-wrap .acc_ctrl {
  border-top: 1px solid #747474;
}
.faq__content--inner .faq-wrap .acc_ctrl:first-of-type {
  border-top: 0;
}
.faq__content--inner .faq-wrap .acc_ctrl:last-of-type {
  border-bottom: 1px solid #747474;
}
.faq__content--inner .faq-wrap .acc_ctrl .question {
  cursor: pointer;
  position: relative;
  font-weight: bold;
  font-size: clamp(18px, 14.3225806452px + 0.0096774194 * 100vw, 24px);
  padding: clamp(0px, 3vw, 30px) 0;
  padding-right: 15px;
  -webkit-transition: color 360ms;
  transition: color 360ms;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(0px, 3vw, 20px);
}
.faq__content--inner .faq-wrap .acc_ctrl .question::before, .faq__content--inner .faq-wrap .acc_ctrl .question::after {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1;
}
.faq__content--inner .faq-wrap .acc_ctrl .question::before {
  content: "Q";
  font-size: clamp(20px, 15.0967741935px + 0.0129032258 * 100vw, 28px);
  font-family: "Hanken Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
.faq__content--inner .faq-wrap .acc_ctrl .question svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  aspect-ratio: 1/1;
  width: 1em;
  height: auto;
  -webkit-transform: rotate(0);
          transform: rotate(0);
  margin-left: auto;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.1px;
  -webkit-transition: stroke 360ms, -webkit-transform 360ms;
  transition: stroke 360ms, -webkit-transform 360ms;
  transition: transform 360ms, stroke 360ms;
  transition: transform 360ms, stroke 360ms, -webkit-transform 360ms;
}
.faq__content--inner .faq-wrap .acc_ctrl .question.active {
  color: #f4b200;
}
.faq__content--inner .faq-wrap .acc_ctrl .question.active svg {
  stroke: #f4b200;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.faq__content--inner .faq-wrap .acc_ctrl .anser.peek-a-box {
  display: none;
}
.faq__content--inner .faq-wrap .acc_ctrl .anser.peek-a-box .inbox {
  padding: 0 0 clamp(0px, 4vw, 35px);
  font-size: clamp(14px, 12.0759493671px + 0.0050632911 * 100vw, 18px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(0px, 3vw, 20px);
}
.faq__content--inner .faq-wrap .acc_ctrl .anser.peek-a-box .inbox::before {
  content: "A";
  font-size: clamp(20px, 15.0967741935px + 0.0129032258 * 100vw, 28px);
  font-family: "Hanken Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1;
}
.faq__content--links {
  margin-top: clamp(0px, 10vw, 70px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  padding-bottom: 20px;
}
.faq__content--links .link {
  position: relative;
  z-index: 0;
  color: #000;
  font-family: "Noto Sans", sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 15.1898734177px + 0.0126582278 * 100vw, 30px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0px, 3vw, 15px);
  background-color: #f4b200;
  -webkit-transition: color 360ms, background-color 360ms;
  transition: color 360ms, background-color 360ms;
  padding: clamp(0px, 3vw, 30px) clamp(0px, 4vw, 40px);
}
.faq__content--links .link svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  flex-shrink: 0;
  display: block;
  aspect-ratio: 1/1;
  width: 1.5em;
  height: auto;
  -webkit-transform: rotate(0);
          transform: rotate(0);
  margin-left: auto;
  -webkit-transition: fill 360ms;
  transition: fill 360ms;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  fill: #000;
}
.faq__content--links .link::after {
  content: "";
  display: block;
  width: 0.8em;
  height: 1em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 1/1;
  background-color: #000;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  -webkit-transition: background-color 360ms;
  transition: background-color 360ms;
}
.faq__content--links .link:hover {
  background-color: #fff;
}