@charset "UTF-8";
/* ==============================================================================
# メディアクエリのmixin
============================================================================== */
/* ==============================================================================
# メディアクエリのmixin
============================================================================== */
@media screen and (max-width: 767px) {
  .is-sp-up {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .is-mb-up {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .is-mb {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .only-mb {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .only-mb {
    display: block !important;
  }
}
@media screen and (min-width: 768px) {
  .only-mb {
    display: none !important;
  }
}

@media screen and (max-width: 1350px) {
  .is-lg-header-up {
    display: none !important;
  }
}

@media screen and (min-width: 1351px) {
  .is-lg-header-down {
    display: none !important;
  }
}

@media screen and (max-width: 1000px) {
  .is-1000-up {
    display: none !important;
  }
}

@media screen and (min-width: 1001px) {
  .is-1000-down {
    display: none !important;
  }
}

/* ==============================================================================
# mobileFont
============================================================================== */
/* ==============================================================================
# グリッドレイアウト with order制御
============================================================================== */
/* ==============================================================================
# グリッドレイアウト（通常状態と偶数番目の両方に対応）
============================================================================== */
/* ==============================================================================
# Utility
============================================================================== */
/* ---------- Color ---------- */
.u-orange {
  color: #ed4c19;
}

.u-yellow {
  color: #f4e336;
}

.u-blue {
  color: #50d9ff;
}

.u-green {
  color: #58ff8f;
}

/* ---------- Scroll Animation ---------- */
.js-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.js-fade-up.is-animated {
  opacity: 1;
  transform: translateY(0);
}

.js-fade-in {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}
.js-fade-in.is-animated {
  opacity: 1;
}

.js-scale-up {
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.js-scale-up.is-animated {
  opacity: 1;
  transform: scale(1);
}

.js-slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.js-slide-left.is-animated {
  opacity: 1;
  transform: translateX(0);
}

.js-slide-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.js-slide-right.is-animated {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Dot Loop Animation ---------- */
.u-dot-loop {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  position: relative;
}
.u-dot-loop__wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: dotLoop 20s linear infinite;
  will-change: transform;
}
.u-dot-loop__dot {
  flex-shrink: 0;
  width: 12px;
  height: 8px;
  background-color: #f5d436;
  border-radius: 50%;
}

@keyframes dotLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ---------- Dotted SVG ---------- */
.u-dotted-line-wrapper {
  position: relative;
  padding-bottom: 15px;
  overflow: hidden;
}
.u-dotted-line-wrapper .u-dotted-line {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}

/* ---------- Dotted Border ---------- */
.is-dotted {
  position: relative;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .is-dotted {
    padding-bottom: 16px;
  }
}
.is-dotted::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 11px;
  background: radial-gradient(circle at center, #f5d436 0, #f5d436 5.5px, transparent 5.5px, transparent);
  background-size: 52px 11px;
  background-position: 0 center;
  background-repeat: repeat-x;
  display: block;
}
@media screen and (max-width: 767px) {
  .is-dotted::after {
    height: 8px;
    background: radial-gradient(circle at center, #f5d436 0, #f5d436 4px, transparent 4px, transparent);
    background-size: 40px 8px;
    background-position: 0 center;
    background-repeat: repeat-x;
  }
}

/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  letter-spacing: 0.05em;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  color: #333;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 90px;
  }
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

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

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  object-fit: cover;
  height: auto;
}

a {
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}

a,
span {
  color: inherit;
}

/* ==============================================================================
# font-familyの定義
============================================================================== */
body {
  font-family: "TsukuGoPro", sans-serif;
}

.m-plus-rounded-1c-regular {
  font-family: "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Hiragino Sans", "Yu Gothic", "YuGothic", "Meiryo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "TsukuOldGothicStd";
  src: url("../font/TsukuOldGothicStdFont.woff2") format("woff2"), url("../font/TsukuOldGothicStdFont.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TsukuGoPro";
  src: url("../font/FOT-TsukuGoPro-L.woff2") format("woff2"), url("../font/FOT-TsukuGoPro-L.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TsukuGoPro";
  src: url("../font/FOT-TsukuGoPro-R.woff2") format("woff2"), url("../font/FOT-TsukuGoPro-R.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TsukuGoPro";
  src: url("../font/FOT-TsukuGoPro-M.woff2") format("woff2"), url("../font/FOT-TsukuGoPro-M.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TsukuGoPro";
  src: url("../font/FOT-TsukuGoPro-D.woff2") format("woff2"), url("../font/FOT-TsukuGoPro-D.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TsukuGoPro";
  src: url("../font/FOT-TsukuGoPro-B.woff2") format("woff2"), url("../font/FOT-TsukuGoPro-B.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TsukuGoPro";
  src: url("../font/FOT-TsukuGoPro-H.woff2") format("woff2"), url("../font/FOT-TsukuGoPro-H.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TsukuGoPro";
  src: url("../font/FOT-TsukuGoPro-E.woff2") format("woff2"), url("../font/FOT-TsukuGoPro-E.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HelveticaNeueLTStd";
  src: url("../font/HelveticaNeueLTStd-LtCn.woff2") format("woff2"), url("../font/HelveticaNeueLTStd-LtCn.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HelveticaNeueLTStd";
  src: url("../font/HelveticaNeueLTStd-MdCn.woff2") format("woff2"), url("../font/HelveticaNeueLTStd-MdCn.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HelveticaNeueLTStd";
  src: url("../font/HelveticaNeueLTStd-Bd.woff2") format("woff2"), url("../font/HelveticaNeueLTStd-Bd.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HelveticaNeueLTStd";
  src: url("../font/HelveticaNeueLTStd-BdCn.woff2") format("woff2"), url("../font/HelveticaNeueLTStd-BdCn.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
/* ---------- TITLE ---------- */
.c-title {
  text-align: center;
  font-size: clamp(26px, 48 / 1240 * 100vw, 48px);
  font-weight: 900;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: min(26px, 26 / 390 * 100vw);
  }
}
.c-lead {
  text-align: center;
  font-size: clamp(16px, 30 / 1240 * 100vw, 30px);
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-lead {
    font-size: min(16px, 16 / 390 * 100vw);
  }
}
.c-lead strong {
  font-weight: 800;
}

/* ---------- BUTTON ---------- */
.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  color: #fff;
  font-size: min(36px, 36 / 1240 * 100vw);
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 16px;
  background: #333;
  box-shadow: 6px 6px 0 0 #e83c5c;
  transition: all 0.3s;
  aspect-ratio: 550/104;
}
@media screen and (max-width: 767px) {
  .c-btn {
    max-width: 350px;
    margin: 0 auto;
    font-size: min(20px, 20 / 390 * 100vw);
    aspect-ratio: 350/72;
    gap: 5px;
  }
}
.c-btn:hover {
  background: #e83c5c;
  box-shadow: 6px 6px 0 0 #333;
}
.c-btn__icon {
  width: 45px;
  aspect-ratio: 45/45;
}
@media screen and (max-width: 767px) {
  .c-btn__icon {
    width: min(30px, 30 / 390 * 100vw);
  }
}

/* ==============================================================================
# Inner
============================================================================== */
.inner {
  max-width: 1200px;
  padding: 0 20px;
  box-sizing: content-box;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 min(20px, 20 / 390 * 100vw);
  }
}

.header {
  background: #fff;
  height: 50px;
}
.header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  height: 100%;
  max-width: 1240px;
}
@media screen and (max-width: 767px) {
  .header .inner {
    padding-right: 0;
  }
}
.header .header__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.header .header__logo {
  display: block;
  width: auto;
  height: 30px;
}
@media screen and (max-width: 767px) {
  .header .header__logo {
    height: 30px;
  }
}
.header .header__cta {
  display: block;
}
.header .header__cta picture {
  display: block;
}
.header .header__cta img {
  height: 35px;
}
@media screen and (max-width: 767px) {
  .header .header__cta img {
    height: 50px;
  }
}

.footer {
  padding: 30px 0;
}
.footer .inner {
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footer .inner {
    flex-direction: column;
    gap: 10px;
  }
}
.footer .footer__logo {
  display: block;
  width: clamp(196px, 196 / 1240 * 100vw, 196px);
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .footer .footer__logo {
    width: min(196px, 196 / 390 * 100vw);
  }
}
.footer .footer__logo:hover {
  transform: translateY(-5px);
}
.footer .footer__map {
  font-size: clamp(16px, 16 / 1240 * 100vw, 16px);
  font-weight: 500;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .footer .footer__map {
    font-size: min(16px, 16 / 390 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .footer .footer__map {
    text-align: center;
  }
}

.hero {
  position: relative;
  padding-top: 100px;
  background: #fafafa;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .hero {
    padding-top: 20px;
    padding-bottom: 50px;
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 25px;
  background: repeating-linear-gradient(-45deg, #e83c5c 0, #e83c5c 4px, transparent 4px, transparent 8px);
  background-size: 11.31px 11.31px;
}
@media screen and (max-width: 767px) {
  .hero::before {
    height: 11.5px;
  }
}
.hero .inner {
  position: relative;
  display: grid;
  grid-template-columns: 681fr 477fr;
  gap: 43px;
  align-items: end;
}
@media screen and (max-width: 767px) {
  .hero .inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.hero .hero__content {
  position: relative;
}
@media screen and (max-width: 767px) {
  .hero .hero__content {
    width: 100%;
    margin-left: 0;
  }
}
.hero .hero__content-img {
  display: block;
  position: relative;
  z-index: 1;
}
.hero .hero__right {
  position: relative;
}
@media screen and (max-width: 767px) {
  .hero .hero__right {
    position: relative;
    width: 100%;
    right: auto;
  }
}
.hero .hero__right-bubble {
  width: 33.3958724203%;
  position: absolute;
  opacity: 0;
  animation: bubbleFadeIn 0.6s ease-out forwards;
}
.hero .hero__right-bubble:nth-child(1) {
  width: min(180px, 180 / 1240 * 100vw);
  left: 9%;
  top: -14%;
  animation-delay: 0.4s;
}
.hero .hero__right-bubble:nth-child(2) {
  right: 11%;
  top: -17%;
  width: min(179px, 179 / 1240 * 100vw);
  animation-delay: 0.8s;
}
.hero .hero__right-bubble:nth-child(3) {
  width: min(243px, 243 / 1240 * 100vw);
  right: 0%;
  top: -3%;
  animation-delay: 1.2s;
}
.hero .hero__right-illust {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .hero .hero__right-illust {
    position: relative;
    width: 90%;
    top: auto;
    left: 52%;
    transform: translateX(-50%);
    margin-bottom: -3%;
  }
}
.hero .hero__right-note {
  width: fit-content;
  margin: 35px auto 15px;
  position: relative;
  text-align: center;
  color: #e83c5c;
  font-size: min(16px, 16 / 1240 * 100vw);
  font-weight: 800;
  line-height: 150%;
  letter-spacing: 0.8px;
}
.hero .hero__right-note::before, .hero .hero__right-note::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 48px;
  height: 2px;
  background: #e83c5c;
}
.hero .hero__right-note::before {
  transform: rotate(67.75deg);
  left: -40px;
}
@media screen and (max-width: 767px) {
  .hero .hero__right-note::before {
    left: -20px;
  }
}
.hero .hero__right-note::after {
  transform: rotate(-67.75deg);
  right: -40px;
}
@media screen and (max-width: 767px) {
  .hero .hero__right-note::after {
    right: -20px;
  }
}
@media screen and (max-width: 767px) {
  .hero .hero__right-note {
    margin: 10px auto 10px;
    font-size: min(12px, 12 / 390 * 100vw);
  }
  .hero .hero__right-note::before, .hero .hero__right-note::after {
    width: 18px;
  }
}
.hero .hero__right-btns {
  max-width: 380px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .hero .hero__right-btns {
    max-width: 350px;
    position: relative;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    margin-left: -6px;
  }
}
.hero .hero__right .c-btn {
  aspect-ratio: 380/70;
  font-size: min(1.6666666667vw, 24px);
  gap: 0;
  width: min(380px, 380 / 1240 * 100vw);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .hero .hero__right .c-btn {
    width: min(350px, 350 / 390 * 100vw);
    font-size: min(20px, 20 / 390 * 100vw);
    gap: 4px;
    aspect-ratio: 350/60;
  }
}
.hero .hero__right .c-btn__icon {
  width: clamp(30px, 37 / 1240 * 100vw, 37px);
}
@media screen and (max-width: 767px) {
  .hero .hero__right .c-btn__icon {
    width: min(30px, 30 / 390 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .hero .hero__bottom {
    margin-top: min(30px, 30 / 390 * 100vw);
  }
}

/* ---------- Animation ---------- */
@keyframes rotateLoop {
  0% {
    transform: rotate(-30deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(-30deg);
  }
}
@keyframes bubbleFadeIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.achievements {
  overflow: hidden;
  padding: 30px 0 30px;
}
@media screen and (max-width: 767px) {
  .achievements {
    padding: 34px 0 14px;
  }
}
.achievements__title {
  display: block;
  text-align: center;
  font-size: clamp(18px, 32 / 1240 * 100vw, 32px);
  font-weight: 800;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .achievements__title {
    font-size: min(18px, 18 / 390 * 100vw);
  }
}
.achievements__title strong {
  color: #e83c5c;
  font-size: clamp(26px, 40 / 1240 * 100vw, 40px);
  font-weight: 900;
  display: inline-block;
  margin: 0 4px;
}
@media screen and (max-width: 767px) {
  .achievements__title strong {
    font-size: min(26px, 26 / 390 * 100vw);
  }
}
.achievements__marquee {
  display: block;
  overflow: hidden;
}
.achievements__marquee-track {
  display: flex;
  width: max-content;
  animation: achievements-marquee 60s linear infinite;
  will-change: transform;
}
.achievements__marquee-img {
  display: block;
  width: 7089px;
  max-width: none;
  flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
  .achievements__marquee-img {
    width: 5000px;
  }
}

@keyframes achievements-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.about {
  position: relative;
  background: #eef0f4;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .about {
    padding: 50px 0;
  }
}
.about .u-dotted-line-wrapper {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .about .u-dotted-line-wrapper {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .about .c-title {
    font-size: min(25.7px, 25.7 / 390 * 100vw);
  }
}
.about__text {
  border-radius: 10px;
  background: #fff;
  padding: 12px 17px;
  text-align: center;
  font-size: clamp(18px, 30 / 1240 * 100vw, 30px);
  font-weight: 800;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .about__text {
    font-size: min(18px, 18 / 390 * 100vw);
  }
}
.about__items {
  position: relative;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin: 30px 0 30px;
  display: grid;
  grid-template-columns: 313fr 79fr 294fr 79fr 340fr;
}
@media screen and (max-width: 767px) {
  .about__items {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 0;
    max-width: 300px;
    margin: 14px auto 14px;
  }
}
.about__item {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.about__item.js-scale-up {
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
@media screen and (max-width: 767px) {
  .about__item.js-scale-up {
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  }
}
@media screen and (max-width: 767px) {
  .about__item {
    width: 100%;
  }
}
.about__item img {
  display: block;
  width: 100%;
  height: auto;
}
.about__item-arrow {
  display: block;
  width: 100%;
  aspect-ratio: 79/72.83;
  transition: opacity 0.4s ease-out 0s, transform 0.4s ease-out 0s !important;
}
.about__item-arrow img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .about__item-arrow {
    transform: translateY(0) !important;
    width: min(79px, 79 / 390 * 100vw);
    aspect-ratio: 79/53;
    margin: 0 auto -26px;
    opacity: 0;
    z-index: 1;
  }
  .about__item-arrow.is-animated {
    opacity: 1;
    transform: translateY(0) !important;
  }
}
.about__bottom {
  display: block;
}
.what-is-pm {
  position: relative;
  background: #fafafa;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .what-is-pm {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .what-is-pm {
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .what-is-pm .inner {
    padding: 0;
  }
}
.what-is-pm__label {
  text-align: center;
  font-size: clamp(16px, 17 / 1240 * 100vw, 17px);
  font-weight: 900;
  margin-bottom: -15px;
}
@media screen and (max-width: 767px) {
  .what-is-pm__label {
    font-size: min(16px, 16 / 390 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .what-is-pm__label {
    margin-bottom: 0;
  }
}
.what-is-pm .u-dotted-line-wrapper {
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .what-is-pm .u-dotted-line-wrapper {
    margin-bottom: 30px;
  }
}
.what-is-pm .c-lead {
  font-size: clamp(16px, 21 / 1240 * 100vw, 21px);
  line-height: 1.7;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .what-is-pm .c-lead {
    font-size: min(16px, 16 / 390 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .what-is-pm .c-lead {
    padding: 0 20px;
    line-height: 1.8;
    margin-bottom: 30px;
  }
}
.what-is-pm__items {
  position: relative;
  display: grid;
  grid-template-columns: 370fr 370fr 400fr;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.what-is-pm__items .what-is-pm__item img {
  border-radius: 20px;
  box-shadow: 0 2px 8px 0 rgba(38, 39, 40, 0.15);
}
.what-is-pm__items .what-is-pm__item:nth-of-type(2) {
  transition-delay: 0.7s;
}
.what-is-pm__items .what-is-pm__item:nth-of-type(3) {
  transition-delay: 1.2s;
}
.what-is-pm__items .what-is-pm__item:nth-of-type(3) img {
  box-shadow: 0 2px 8px 0 rgba(38, 39, 40, 0.15), 0 0 20px 0 rgba(38, 39, 40, 0.2);
}
.what-is-pm__splide .splide__slide:nth-of-type(2) img {
  box-shadow: 0 2px 8px 0 rgba(38, 39, 40, 0.15), 0 0 20px 0 rgba(38, 39, 40, 0.2);
}
.what-is-pm__slide {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}
.what-is-pm__slide img {
  box-shadow: 0 2px 8px 0 rgba(38, 39, 40, 0.15);
  border-radius: 20px;
}
.what-is-pm__slide:nth-of-type(1) {
  width: min(295px, 295 / 390 * 100vw);
}
.what-is-pm__slide:nth-of-type(2) {
  width: min(319px, 319 / 390 * 100vw);
}
.what-is-pm__slide:nth-of-type(3) {
  width: min(284px, 284 / 390 * 100vw);
}
.what-is-pm__item {
  width: 100%;
  border-radius: 24px;
}
.what-is-pm__item figure {
  display: block;
}
.what-is-pm__item img {
  display: block;
  width: 100%;
  height: auto;
}

.example {
  position: relative;
  background: #fafafa;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .example {
    padding: 60px 0;
  }
}
.example .inner {
  max-width: 1400px;
}
.example .c-title {
  line-height: 1;
  margin-bottom: 20px;
}
.example .c-lead {
  margin-bottom: 40px;
}
.example__illust {
  display: block;
  width: clamp(230px, 310 / 1240 * 100vw, 310px);
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .example__illust {
    width: min(230px, 230 / 390 * 100vw);
  }
}
.example__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .example__items {
    grid-template-columns: 1fr;
    margin-top: 15px;
  }
}
.example__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 400;
  line-height: 170%;
  border-radius: 100px;
  border: 1px solid #a8a8a8;
  background: #fff;
  padding: 10px 20px;
}
@media screen and (max-width: 767px) {
  .example__item {
    font-size: min(15px, 15 / 390 * 100vw);
  }
}
.example__item strong {
  font-weight: 800;
  color: #e83c5c;
}
.example__icon {
  flex: 0 0 auto;
}
.example__text {
  display: inline-block;
}

.problem {
  position: relative;
  background: #eef0f4;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .problem {
    padding: 60px 0 20px;
  }
}
.problem__block .c-title {
  line-height: 150%;
}
.problem__block .u-dotted-line-wrapper {
  margin-bottom: 80px;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .problem__block .u-dotted-line-wrapper {
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
}
.problem__block--qa {
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .problem__block--qa {
    margin-bottom: 40px;
  }
}
.problem__block--qa .c-title strong {
  color: #e83c5c;
}
.problem__block--qa .c-lead {
  margin-bottom: 70px;
  line-height: 2;
  font-size: clamp(18px, 32 / 1240 * 100vw, 32px);
}
@media screen and (max-width: 767px) {
  .problem__block--qa .c-lead {
    font-size: min(18px, 18 / 390 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .problem__block--qa .c-lead {
    margin-bottom: 80px;
    line-height: normal;
  }
}
.problem__block--list .c-lead {
  margin-bottom: 50px;
  font-size: clamp(17px, 32 / 1240 * 100vw, 32px);
}
@media screen and (max-width: 767px) {
  .problem__block--list .c-lead {
    font-size: min(17px, 17 / 390 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .problem__block--list .c-lead {
    line-height: 2;
    margin-bottom: 15px;
  }
}
.problem__block--process .c-title {
  margin-bottom: 55px;
  color: #e83c5c;
  font-size: clamp(28px, 48 / 1240 * 100vw, 48px);
}
@media screen and (max-width: 767px) {
  .problem__block--process .c-title {
    font-size: min(28px, 28 / 390 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .problem__block--process .c-title {
    margin-bottom: 15px;
  }
}
.problem__block--process .c-title strong {
  color: #fff;
  background: #e83c5c;
  padding: 0 12px;
  display: inline-block;
  margin: 0 4px;
}
.problem .problem__bottom-arrow {
  display: block;
  margin: 0 auto 50px;
}
@media screen and (max-width: 767px) {
  .problem .problem__bottom-arrow {
    margin-bottom: 15px;
  }
}
.problem__illust {
  display: block;
  max-width: 960px;
  margin: 0 auto;
}
.problem__banner {
  display: block;
  max-width: 960px;
  margin: 0 auto 40px;
  position: relative;
  top: 0;
  opacity: 0;
  transform: scale(0);
  border-radius: 24px;
  overflow: hidden;
  transition: opacity 1s ease, transform 1s ease, top 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 767px) {
  .problem__banner {
    margin-bottom: 40px;
  }
}
.problem__banner.is-visible {
  opacity: 1;
  transform: scale(1);
}
.problem__banner.is-visible:hover {
  top: -8px;
  box-shadow: 0 24px 56px rgba(28, 31, 36, 0.28);
}
.problem__banner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.quality {
  position: relative;
  background: #fff;
  padding: 130px 0 150px;
}
@media screen and (max-width: 767px) {
  .quality {
    padding: 60px 0 70px;
  }
}
.quality .u-dotted-line-wrapper {
  margin-bottom: clamp(40px, 80 / 1240 * 100vw, 80px);
}
@media screen and (max-width: 767px) {
  .quality .u-dotted-line-wrapper {
    margin-bottom: min(40px, 40 / 390 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .quality .c-title {
    line-height: 1.5;
  }
}
.quality__lead {
  text-align: center;
  font-size: clamp(16px, 22 / 1240 * 100vw, 22px);
  font-weight: 700;
  line-height: 180%;
  margin-bottom: clamp(40px, 80 / 1240 * 100vw, 80px);
}
@media screen and (max-width: 767px) {
  .quality__lead {
    font-size: min(16px, 16 / 390 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .quality__lead {
    margin-bottom: min(40px, 40 / 390 * 100vw);
  }
}
.quality__process {
  position: relative;
  opacity: 0;
  transition: opacity 0.3s ease;
  max-width: min(1020px, 1020 / 1240 * 100vw);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .quality__process {
    max-width: 100%;
  }
}
.quality__process.is-process-visible {
  opacity: 1;
}
.quality__process::before {
  content: "";
  position: absolute;
  top: 38%;
  left: 50%;
  width: 123%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1240/260;
  background-image: url("data:image/svg+xml,%3Csvg width='1240' height='260' viewBox='0 0 1240 260' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_d_2781_6027)'%3E%3Cpath d='M1219 128L1140 238V190L19 190L19 66L1140 66V18L1219 128Z' fill='url(%23paint0_linear_2781_6027)' shape-rendering='crispEdges'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_d_2781_6027' x='0' y='0' width='1240' height='260' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dx='1' dy='2'/%3E%3CfeGaussianBlur stdDeviation='10'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.198078 0 0 0 0 0.181865 0 0 0 0 0.303467 0 0 0 0.2 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_2781_6027'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_2781_6027' result='shape'/%3E%3C/filter%3E%3ClinearGradient id='paint0_linear_2781_6027' x1='1163.45' y1='128' x2='18.9987' y2='128' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FFF539'/%3E%3Cstop offset='1' stop-color='%23FFFC39' stop-opacity='0.3'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 0;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .quality__process::before {
    display: none;
  }
}
.quality__process.is-arrow-visible::before {
  opacity: 1;
  animation: arrow-draw 2s ease-out forwards;
  animation-delay: 0s;
}
.quality__process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.quality__process-step {
  position: relative;
  transform: scale(0);
  transition: opacity 1s ease, transform 1s ease;
}
.quality__process-step:nth-child(1) {
  transition-delay: 0s;
}
.quality__process-step:nth-child(2) {
  transition-delay: 0.2s;
}
.quality__process-step:nth-child(3) {
  transition-delay: 0.4s;
}
.quality__process-step:nth-child(4) {
  transition-delay: 0.6s;
}
.quality__process-step.is-visible {
  transform: scale(1);
}
.quality__process-step-icon {
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 15px;
}
.quality__process-step-text {
  text-align: center;
  font-size: min(18px, 18 / 1240 * 100vw);
  font-weight: 800;
  line-height: 150%;
}
.quality__comparison {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .quality__comparison {
    margin-right: -20px;
  }
}
.quality__comparison .c-lead {
  margin-bottom: clamp(20px, 40 / 1240 * 100vw, 40px);
  font-size: clamp(20px, 32 / 1240 * 100vw, 32px);
}
@media screen and (max-width: 767px) {
  .quality__comparison .c-lead {
    margin-bottom: min(20px, 20 / 390 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .quality__comparison .c-lead {
    font-size: min(20px, 20 / 390 * 100vw);
  }
}
.quality__comparison .difference {
  position: relative;
  padding: 100px 0 100px;
}
@media screen and (max-width: 767px) {
  .quality__comparison .difference {
    padding: 30px 0 45px;
  }
}
@media screen and (max-width: 767px) {
  .quality__comparison .difference__table-wrap,
  .quality__comparison .advantage__table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.quality__comparison .difference__table,
.quality__comparison .advantage__table {
  display: block;
}
.quality__comparison .difference__table img,
.quality__comparison .advantage__table img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .quality__comparison .difference__table {
    width: 513px;
  }
  .quality__comparison .advantage__table {
    width: 754px;
  }
}

@keyframes arrow-draw {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  40% {
    clip-path: inset(0 40% 0 0);
  }
  60% {
    clip-path: inset(0 10% 0 0);
  }
  80% {
    clip-path: inset(0 2% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
.cta {
  position: relative;
  background: #ffe9ed;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .cta {
    padding: 40px 0 60px;
  }
}
.cta__buttons {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .cta__buttons {
    gap: 20px;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .cta__block:nth-of-type(1) {
    order: 2;
  }
  .cta__block:nth-of-type(2) {
    order: 1;
  }
}
.cta__note {
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.9px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .cta__note {
    font-size: min(16px, 16 / 390 * 100vw);
    margin-bottom: 5px;
  }
}

.insight {
  padding: 120px 0 150px;
}
@media screen and (max-width: 767px) {
  .insight {
    padding: 60px 0 70px;
  }
}
.insight .u-dotted-line-wrapper {
  margin-bottom: clamp(40px, 80 / 1240 * 100vw, 80px);
}
@media screen and (max-width: 767px) {
  .insight .u-dotted-line-wrapper {
    margin-bottom: min(40px, 40 / 390 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .insight .c-title {
    line-height: 1.5;
  }
}
.insight .insight__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .insight .insight__content {
    grid-template-columns: 1fr;
  }
}
.usage {
  padding: 180px 0 40px;
}
@media screen and (max-width: 767px) {
  .usage {
    padding: 60px 0 10px;
  }
}
.usage .u-dotted-line-wrapper {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .usage .u-dotted-line-wrapper {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .usage .c-title {
    line-height: 1.5;
  }
}
.usage .c-lead {
  margin-bottom: 80px;
}
.usage .usage__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .usage .usage__list {
    grid-template-columns: 1fr;
    margin: 0 auto;
    gap: 20px;
  }
}
.usage .usage__item {
  text-align: center;
  color: #000;
}
.usage .usage__item-img {
  margin-bottom: 32px;
}

.partner {
  padding: 80px 0 80px;
}
@media screen and (max-width: 767px) {
  .partner {
    padding: 40px 0 60px;
  }
}
.partner .u-dotted-line-wrapper {
  padding-bottom: 5px;
  margin-bottom: clamp(40px, 80 / 1240 * 100vw, 80px);
}
@media screen and (max-width: 767px) {
  .partner .u-dotted-line-wrapper {
    margin-bottom: min(40px, 40 / 390 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .partner .u-dotted-line-wrapper {
    padding-bottom: 15px;
  }
}
.partner__illust {
  display: block;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .partner__illust {
    max-width: 330px;
  }
}
.partner__illust img {
  display: block;
  width: 100%;
  height: auto;
}

.flow {
  padding: 100px 0 140px;
  /* ==============================================================================
  # 使用していない
  ============================================================================== */
}
@media screen and (max-width: 767px) {
  .flow {
    padding: 60px 0;
  }
}
.flow .u-dotted-line-wrapper {
  padding-bottom: 5px;
  margin-bottom: clamp(40px, 80 / 1240 * 100vw, 80px);
}
@media screen and (max-width: 767px) {
  .flow .u-dotted-line-wrapper {
    margin-bottom: min(40px, 40 / 390 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .flow .u-dotted-line-wrapper {
    padding-bottom: 10px;
  }
}
.flow__illust {
  display: block;
}
.flow__container {
  overflow: scroll;
}
.flow__steps-container {
  position: relative;
  opacity: 0;
  transition: opacity 0.3s ease;
  max-width: 1088px;
  padding: 0 80px;
  margin: 0 auto;
  box-sizing: content-box;
}
.flow__steps-container.is-container-visible {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .flow__steps-container {
    padding: 0 16px;
    width: 100%;
    box-sizing: border-box;
  }
}
.flow__row {
  display: grid;
  gap: 94px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow__row {
    flex-direction: column;
    gap: 40px;
  }
}
.flow__row--top {
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .flow__row--top {
    margin-bottom: 40px;
    grid-template-columns: 1fr;
  }
}
.flow__row--bottom {
  grid-template-columns: repeat(2, 1fr);
  max-width: 694px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .flow__row--bottom {
    grid-template-columns: 1fr;
  }
}
.flow .flow__arrow-svg path {
  fill: #333;
  stroke: #333;
}
.flow__unit {
  position: relative;
}
.flow__step {
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.flow__step.is-visible {
  opacity: 1;
  transform: scale(1);
}
@media screen and (max-width: 767px) {
  .flow__step {
    margin: 0 auto;
  }
}
.flow__step img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .flow .flow__row--top .flow__unit:nth-child(1) .flow__step {
    width: min(146.56px, 146.56 / 390 * 100vw);
  }
  .flow .flow__row--top .flow__unit:nth-child(2) .flow__step {
    width: min(186px, 186 / 390 * 100vw);
  }
  .flow .flow__row--top .flow__unit:nth-child(3) .flow__step {
    width: min(181.44px, 181.44 / 390 * 100vw);
  }
  .flow .flow__row--bottom .flow__unit:nth-child(1) .flow__step {
    width: min(240px, 240 / 390 * 100vw);
  }
  .flow .flow__row--bottom .flow__unit:nth-child(2) .flow__step {
    width: min(240px, 240 / 390 * 100vw);
  }
}
.flow__arrow {
  position: absolute;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition: opacity 0.3s ease;
}
.flow__arrow.is-visible {
  opacity: 1;
  animation: arrow-draw 0.1s ease-out forwards;
}
.flow__arrow .flow__arrow-svg {
  display: block;
  width: 100%;
  height: auto;
}
.flow__arrow .flow__arrow-svg--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .flow__arrow .flow__arrow-svg--pc {
    display: none;
  }
  .flow__arrow .flow__arrow-svg--sp {
    display: block;
  }
}
.flow__arrow:not(.flow__arrow--curve):not(.flow__arrow--sp-34) {
  top: 50%;
  right: -24px;
  width: 46px;
  height: 30px;
  transform: translate(100%, -50%);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .flow__arrow:not(.flow__arrow--curve):not(.flow__arrow--sp-34) {
    position: relative;
    top: auto;
    left: auto;
    width: 30px;
    height: 38px;
    margin: 24px auto 0;
    transform: none;
    clip-path: inset(100% 0 0 0);
  }
}
.flow__arrow--sp-34 {
  display: none;
}
@media screen and (max-width: 767px) {
  .flow__arrow--sp-34 {
    display: block;
    position: relative;
    top: auto;
    left: auto;
    width: 30px;
    height: 38px;
    margin: 24px auto 0;
    transform: none;
    clip-path: inset(100% 0 0 0);
  }
}
.flow__arrow--curve {
  clip-path: none !important;
}
.flow__arrow--curve svg {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .flow__arrow--curve {
    display: none;
  }
}
.flow__arrow--curve .flow__arrow-curve-path {
  stroke-dasharray: 2500;
  stroke-dashoffset: 2500;
}
.flow__arrow--curve .flow__arrow-curve-head {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
}
.flow__arrow--curve.is-visible {
  animation: none;
}
.flow__arrow--curve.is-visible .flow__arrow-curve-path {
  animation: draw-curve-path 1.5s ease-out forwards;
}
.flow__arrow--curve.is-visible .flow__arrow-curve-head {
  animation: draw-curve-head 0.3s ease-out forwards;
  animation-delay: 0.8s;
}
.flow__arrow-curve-path, .flow__arrow-curve-head {
  stroke: #333;
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
}
.flow__arrow--curve {
  width: 89%;
  height: auto;
  top: 54%;
  left: calc(50% + 50px);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .flow__arrow--curve {
    position: relative;
    top: 0;
    right: 0;
    left: 50%;
    width: 150px;
    margin: 20px 0;
    transform: translateX(-50%);
  }
}

@keyframes arrow-draw {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes draw-curve-path {
  0% {
    stroke-dashoffset: 2500;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes draw-curve-head {
  0% {
    stroke-dashoffset: 80;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@media screen and (max-width: 767px) {
  @keyframes arrow-draw-vertical {
    0% {
      clip-path: inset(100% 0 0 0);
    }
    100% {
      clip-path: inset(0 0 0 0);
    }
  }
  .flow__arrow.is-visible,
  .flow__arrow--sp-34.is-visible {
    animation-name: arrow-draw-vertical;
  }
}
.faq {
  padding: 80px 0 150px;
  background: #eef0f4;
}
@media screen and (max-width: 767px) {
  .faq {
    padding: 60px 0;
  }
}
.faq .u-dotted-line-wrapper {
  padding-bottom: 5px;
  margin-bottom: clamp(40px, 80 / 1240 * 100vw, 80px);
}
@media screen and (max-width: 767px) {
  .faq .u-dotted-line-wrapper {
    margin-bottom: min(40px, 40 / 390 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .faq .u-dotted-line-wrapper {
    padding-bottom: 10px;
  }
}
.faq__list {
  max-width: 900px;
  margin: 0 auto;
}
.faq__item {
  transition: all 0.3s ease;
  border-bottom: 1px solid #71621f;
}
.faq__item.is-open .faq__question-icon {
  transform: rotate(180deg);
}
.faq__question {
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .faq__question {
    padding: 20px 0;
  }
}
.faq__question-text {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(16px, 18 / 1240 * 100vw, 18px);
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .faq__question-text {
    font-size: min(16px, 16 / 390 * 100vw);
  }
}
.faq__question-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq__answer {
  display: none;
  padding: 0 0 24px;
  font-size: clamp(16px, 18 / 1240 * 100vw, 18px);
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 767px) {
  .faq__answer {
    font-size: min(16px, 16 / 390 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .faq__answer {
    padding: 0 0 20px;
    font-size: min(16px, 16 / 390 * 100vw);
  }
}
.faq__answer-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.faq__label {
  flex: 0 0 auto;
}
.faq__text {
  flex: 1 1 auto;
}

.hero-cta {
  text-align: center;
  background: #e83c5c;
  padding: 100px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .hero-cta {
    padding: 50px 0;
  }
}
.hero-cta .hero-cta__lead {
  color: #fff;
  font-size: min(42px, 42 / 1240 * 100vw);
  font-weight: 700;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .hero-cta .hero-cta__lead {
    font-size: min(16px, 16 / 390 * 100vw);
    margin-bottom: 40px;
  }
}
.hero-cta .hero-cta__sublead {
  font-size: min(32px, 32 / 1240 * 100vw);
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .hero-cta .hero-cta__sublead {
    font-size: min(13px, 13 / 390 * 100vw);
  }
}
.hero-cta .hero-cta__title {
  max-width: min(814px, 814 / 1240 * 100vw);
  margin: 0 auto 50px;
}
@media screen and (max-width: 767px) {
  .hero-cta .hero-cta__title {
    margin-bottom: 40px;
    max-width: min(327px, 327 / 390 * 100vw);
  }
}
.hero-cta .cta__buttons {
  max-width: 1140px;
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .hero-cta .cta__buttons {
    gap: 10px;
    margin-bottom: 30px;
  }
}
.hero-cta .cta__buttons .cta__note {
  color: #fff;
  font-size: min(20px, 20 / 1240 * 100vw);
}
@media screen and (max-width: 767px) {
  .hero-cta .cta__buttons .cta__note {
    font-size: min(15px, 15 / 390 * 100vw);
  }
}
.hero-cta .cta__buttons .c-btn:hover {
  background: #333;
  box-shadow: 6px 6px 0 0 #e83c5c;
  transform: none;
}
.hero-cta .hero-cta__tel {
  text-align: center;
  font-size: min(32px, 32 / 1240 * 100vw);
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .hero-cta .hero-cta__tel {
    font-size: min(20px, 20 / 390 * 100vw);
    margin-bottom: 15px;
  }
}
.hero-cta .hero-cta__hours {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .hero-cta .hero-cta__hours {
    font-size: min(16px, 16 / 390 * 100vw);
  }
}

.fixed-button {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  background: transparent;
}
@media screen and (max-width: 767px) {
  .fixed-button {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    transform: none;
    padding: 10px;
    background: #fff;
  }
}
.fixed-button__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 15px 20px;
  gap: 8px;
  border-radius: 16px 0 0 16px;
  background: #e83c5c;
  box-shadow: 11px 11px 0 0 #333;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .fixed-button__btn {
    max-width: 310px;
    height: 35px;
    margin: 0 auto;
    flex-direction: row;
    border-radius: 5px;
    box-shadow: 3px 3px 0 0 #333;
    padding: 4px 4px;
  }
}
.fixed-button__btn:hover {
  background: #333;
  box-shadow: 11px 11px 0 0 #e83c5c;
}
@media screen and (max-width: 767px) {
  .fixed-button__btn:hover {
    box-shadow: 3px 3px 0 0 #e83c5c;
  }
}
.fixed-button__btn-text {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 123%;
}
@media screen and (max-width: 767px) {
  .fixed-button__btn-text {
    font-size: 15px;
  }
}
.fixed-button__btn-icon {
  width: 60px;
  aspect-ratio: 1/1;
  height: auto;
}
@media screen and (max-width: 767px) {
  .fixed-button__btn-icon {
    width: 15px;
  }
}