@charset "utf-8";

/* =========================================================
   Shoppal LP — styles
   ========================================================= */

:root {
  --main: #F09238;
  --main-deep: #E07E22;
  --peach: #FADDBF;
  --peach-deep: #F5C08E;
  --navy: #191E62;
  --ink: #121212;
  --ink-soft: #5A5C66;
  --bg: #F8F9FD;
  --line: #E4E5EA;
  --cyan: #DCF5F9;
  --pink: #FDF0F0;
  --header-h: 72px;
  --inner: 1120px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
dl,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--main);
  outline-offset: 2px;
}

.inner {
  width: min(100% - 40px, var(--inner));
  margin-inline: auto;
}

.u-maincolor {
  color: var(--main);
}

.u-mobile {
  display: none;
}

.u-desktop {
  display: inline;
}

@media (max-width: 767px) {
  .u-mobile {
    display: inline;
  }

  .u-desktop {
    display: none;
  }
}

/* ---------- 共通：セクションタイトル ---------- */
.title {
  text-align: center;
}

.title h2 {
  font-size: clamp(26px, 4.4vw, 40px);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: .02em;
}

.title h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: var(--main);
  margin: 20px auto 0;
}

.title p {
  margin-top: 20px;
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 500;
  line-height: 1.9;
  color: var(--ink-soft);
}

.title.--white h2,
.title.--white p {
  color: #fff;
}

/* ---------- 共通：CTAボタン ---------- */
.cta-button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: min(360px, 100%);
  padding: 18px 32px;
  border-radius: 999px;
  background: var(--main);
  color: #fff;
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 700;
  line-height: 1.4;
  box-shadow: 0 6px 0 rgba(0, 0, 0, .06);
  transition: background-color .2s ease, transform .2s ease;
}

.cta-button a:hover {
  background: var(--main-deep);
  transform: translateY(-2px);
}

.cta-button a {
  text-wrap: balance;
}

.cta-button a span {
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--main);
  font-size: .82em;
  font-weight: 700;
}

.cta-button.--blue a {
  background: var(--navy);
}

.cta-button.--blue a:hover {
  background: #12174E;
}

.cta-button.--blue a span {
  color: var(--navy);
}

/* =========================================================
   ヘッダー
   ========================================================= */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header__spacer {
  height: var(--header-h);
}

.header__container {
  width: min(100% - 32px, 1280px);
  margin-inline: auto;
}

.header__content {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__logo-link {
  margin: 0;
  font-size: 0;
  line-height: 0;
}

.header__logo-img {
  width: 168px;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}

.header__nav-link {
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .2s ease;
}

.header__nav-link:hover {
  color: var(--main);
}

.header__nav-link.--painted {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 8px;
  background: var(--main);
  color: #fff;
}

.header__nav-link.--painted:hover {
  background: var(--main-deep);
  color: #fff;
}

/* ハンバーガー */
.hamburger {
  display: none;
  position: fixed;
  top: 14px;
  right: 16px;
  z-index: 120;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--main);
}

.hamburger__container {
  position: relative;
  width: 20px;
  height: 14px;
  margin: 0 auto;
}

.hamburger__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform .25s ease, opacity .2s ease;
}

.hamburger__line.--01 {
  top: 0;
}

.hamburger__line.--02 {
  top: 6px;
}

.hamburger__line.--03 {
  top: 12px;
}

.hamburger.is-open .hamburger__line.--01 {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.is-open .hamburger__line.--02 {
  opacity: 0;
}

.hamburger.is-open .hamburger__line.--03 {
  transform: translateY(-6px) rotate(-45deg);
}

/* ドロワー */
.drawer-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: #fff;
  padding: 88px 24px 48px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: transform .3s ease, opacity .3s ease, visibility .3s ease;
}

.drawer-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.drawer-menu__logo-img {
  width: 156px;
}

.drawer-menu__list {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.drawer-menu__list-link {
  display: block;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.drawer-menu__copy {
  margin-top: 40px;
  font-size: 12px;
  color: var(--ink-soft);
  text-align: center;
}

@media (max-width: 1023px) {
  .header__nav {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

/* =========================================================
   メインビジュアル
   ========================================================= */
.frontpage-mv {
  padding: clamp(40px, 6vw, 88px) 0 clamp(48px, 6vw, 96px);
  background: #fff;
}

.frontpage-mv__container {
  width: min(100% - 40px, var(--inner));
  margin-inline: auto;
}

.frontpage-mv__texts {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  grid-template-areas:
    "main  image"
    "icons image"
    "cta   image";
  align-items: start;
  column-gap: clamp(24px, 4vw, 64px);
}

.frontpage-mv__main {
  grid-area: main;
  font-size: clamp(38px, 5.6vw, 70px);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: .01em;
  align-self: end;
}

.frontpage-mv__icons {
  grid-area: icons;
  width: min(100%, 380px);
  margin-top: 28px;
}

.frontpage-mv__image {
  grid-area: image;
  display: block;
  justify-self: center;
}

.frontpage-mv__image img {
  max-width: 460px;
  margin-inline: auto;
}

.frontpage-mv__cta-button-wrapper {
  grid-area: cta;
  margin-top: 36px;
}

@media (max-width: 767px) {
  .frontpage-mv__texts {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "image"
      "icons"
      "cta";
    justify-items: center;
    text-align: center;
  }

  .frontpage-mv__main {
    text-align: center;
  }

  .frontpage-mv__icons {
    width: min(100%, 300px);
    margin-top: 24px;
    order: -1;
  }

  .frontpage-mv__image {
    margin-top: 24px;
  }

  .frontpage-mv__cta-button-wrapper {
    width: 100%;
    margin-top: 28px;
  }

  .frontpage-mv__cta-button a {
    width: 100%;
    min-width: 0;
  }
}

/* =========================================================
   ストア事例（無限スクロール）
   ========================================================= */
.frontpage-case {
  padding: clamp(56px, 7vw, 96px) 0 clamp(48px, 6vw, 80px);
  background: var(--bg);
  overflow: hidden;
}

.frontpage-case__title-main {
  text-align: center;
  font-size: clamp(22px, 3.4vw, 34px);
  font-weight: 800;
  line-height: 1.55;
}

.frontpage-case__cards {
  display: flex;
  width: max-content;
  margin-top: clamp(40px, 5vw, 72px);
  animation: case-marquee 70s linear infinite;
}

@keyframes case-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.frontpage-case__cards-wrap {
  display: flex;
  gap: clamp(40px, 6vw, 88px);
  padding-right: clamp(40px, 6vw, 88px);
}

.frontpage-case__card {
  width: 206px;
  flex: 0 0 auto;
}

.frontpage-case__card-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(18, 18, 18, .10);
}

.frontpage-case__card-description {
  margin-top: 26px;
  text-align: center;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
}

.frontpage-case__link {
  margin-top: clamp(40px, 5vw, 64px);
  text-align: center;
}

.frontpage-case__link a {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1.5px solid currentColor;
  font-size: 17px;
  font-weight: 700;
}

.frontpage-case__link a:hover {
  color: var(--main);
}

@media (max-width: 767px) {
  .frontpage-case__card {
    width: 168px;
  }

  .frontpage-case__card-description {
    margin-top: 18px;
    font-size: 15px;
  }
}

/* =========================================================
   Shoppalとは
   ========================================================= */
.frontpage-how-shoppal {
  padding: clamp(56px, 7vw, 104px) 0 clamp(56px, 7vw, 96px);
  background: #fff;
}

.frontpage-how-shoppal__content {
  margin-top: clamp(32px, 4vw, 48px);
  text-align: center;
}

.frontpage-how-shoppal__logo img {
  width: 200px;
  margin-inline: auto;
}

.frontpage-how-shoppal__texts {
  max-width: 820px;
  margin: 28px auto 0;
  font-size: clamp(17px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.85;
}

.frontpage-how-shoppal__texts span {
  display: block;
  margin-top: 16px;
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 500;
  color: var(--ink-soft);
}

.frontpage-how-shoppal__downer {
  margin-top: clamp(40px, 5vw, 64px);
}

.frontpage-how-shoppal__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.frontpage-how-shoppal__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.frontpage-how-shoppal__card {
  width: 100%;
  padding: 0 0 28px;
  border-radius: 14px;
  background: var(--peach);
  overflow: hidden;
  text-align: center;
}

.frontpage-how-shoppal__card h3 {
  padding: 14px 12px;
  background: var(--peach-deep);
  font-size: clamp(16px, 1.9vw, 20px);
  font-weight: 800;
}

.frontpage-how-shoppal__card-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 28px 22px 0;
}

.frontpage-how-shoppal__card-main img {
  width: 84px;
}

.frontpage-how-shoppal__card-main span {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}

.frontpage-how-shoppal__card-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 11px 26px;
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease;
}

.frontpage-how-shoppal__card-button:hover {
  transform: translateY(-2px);
}

.frontpage-how-shoppal__tryangle {
  width: 0;
  height: 0;
  margin-top: 22px;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 18px solid var(--peach-deep);
}

.frontpage-how-shoppal__text-card-under {
  margin-top: 18px;
  text-align: center;
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 800;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .frontpage-how-shoppal__downer-wrap {
    width: 100%;
    padding-inline: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .frontpage-how-shoppal__downer-wrap::-webkit-scrollbar {
    display: none;
  }

  .frontpage-how-shoppal__cards {
    grid-template-columns: repeat(3, 74vw);
    width: max-content;
  }
}

/* =========================================================
   Shoppalが提供すること
   ========================================================= */
.frontpage-provide {
  padding: clamp(56px, 7vw, 100px) 0;
}

.frontpage-provide__tabs {
  display: flex;
  gap: 8px;
  margin-top: clamp(32px, 4vw, 48px);
}

.frontpage-provide__tab {
  flex: 1;
  padding: 16px 8px;
  border-radius: 10px 10px 0 0;
  background: #EFEFF3;
  color: var(--ink-soft);
  font-size: clamp(13px, 1.6vw, 17px);
  font-weight: 700;
  transition: background-color .2s ease, color .2s ease;
}

.frontpage-provide__tab:hover {
  background: #E5E5EC;
}

.frontpage-provide__tab.--active {
  background: var(--main);
  color: #fff;
}

.frontpage-provide__content {
  display: none;
}

.frontpage-provide__content.--active {
  display: block;
}

.frontpage-provide__content-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(28px, 4vw, 56px);
  border-radius: 0 0 16px 16px;
  background: var(--bg);
}

.frontpage-provide__content-box+.frontpage-provide__content-box {
  margin-top: 24px;
  border-radius: 16px;
}

.frontpage-provide__content-box.--img-pos-diff .frontpage-provide__content-box-r {
  align-self: center;
}

.frontpage-provide__content-box-l strong {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--main);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.frontpage-provide__content-box-l h3 {
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 800;
  line-height: 1.55;
}

.frontpage-provide__content-box-l>p {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink-soft);
}

.frontpage-provide__content-box-l ul {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.frontpage-provide__content-box-l li {
  position: relative;
  padding-left: 30px;
  font-size: clamp(14px, 1.7vw, 17px);
  font-weight: 700;
}

.frontpage-provide__content-box-l li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: .58em;
  width: 14px;
  height: 8px;
  border-left: 2.5px solid var(--main);
  border-bottom: 2.5px solid var(--main);
  transform: rotate(-45deg);
}

.frontpage-provide__content-box-r img {
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  border-radius: 12px;
}

@media (max-width: 767px) {
  .frontpage-provide__tabs {
    gap: 4px;
  }

  .frontpage-provide__tab {
    padding: 12px 4px;
  }

  .frontpage-provide__content-box {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   CTA（収益シミュレーション）
   ========================================================= */
.frontpage-cta {
  position: relative;
  padding: clamp(56px, 7vw, 88px) 0 clamp(60px, 7vw, 96px);
  background: #2A292B;
  overflow: hidden;
  isolation: isolate;
}

.frontpage-cta__deco {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.frontpage-cta__deco-shape {
  position: absolute;
  border-radius: 50%;
}

.frontpage-cta__deco-shape.--a {
  top: -18%;
  left: -6%;
  width: 46%;
  aspect-ratio: 1;
  background: #3F3333;
}

.frontpage-cta__deco-shape.--b {
  top: -34%;
  right: 4%;
  width: 52%;
  aspect-ratio: 1;
  background: #453D38;
}

.frontpage-cta__deco-shape.--c {
  bottom: -46%;
  left: 18%;
  width: 44%;
  aspect-ratio: 1;
  background: #372F30;
}

.frontpage-cta__deco-shape.--d {
  bottom: -30%;
  right: -10%;
  width: 38%;
  aspect-ratio: 1;
  background: #453935;
}

.frontpage-cta__title {
  position: relative;
  text-align: center;
  text-wrap: balance;
  color: #fff;
  font-size: clamp(18px, 2.4vw, 27px);
  font-weight: 800;
  line-height: 1.7;
}

.frontpage-cta__title span {
  display: block;
}

.frontpage-cta__main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(28px, 4vw, 48px);
  padding: clamp(28px, 4vw, 52px) clamp(24px, 4vw, 56px);
  border-radius: 22px;
  background: #FAF9F9;
}

.frontpage-cta__lead {
  font-size: clamp(15px, 1.9vw, 21px);
  font-weight: 800;
  color: var(--navy);
}

.frontpage-cta__main h3 {
  margin-top: 10px;
  font-size: clamp(26px, 3.7vw, 46px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .02em;
  white-space: nowrap;
  color: var(--navy);
}

.frontpage-cta__main .frontpage-cta__cta-button {
  margin-top: clamp(24px, 3vw, 38px);
}

.frontpage-cta__figure svg {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .frontpage-cta__main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .frontpage-cta__figure {
    order: -1;
    max-width: 300px;
    margin-inline: auto;
  }

  .frontpage-cta__main .cta-button a {
    width: 100%;
    min-width: 0;
    gap: 10px;
    padding: 16px 14px;
    font-size: 15px;
    white-space: nowrap;
  }
}

/* ピンク版CTA */
.frontpage-cta.--pink {
  background: var(--pink);
}

.frontpage-cta.--pink .frontpage-cta__deco {
  display: none;
}

.frontpage-cta__title.--black {
  color: var(--ink);
}

.frontpage-cta__items {
  position: relative;
  max-width: 760px;
  margin: clamp(24px, 3vw, 40px) auto 0;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 20px;
  background: #fff;
  text-align: center;
}

.frontpage-cta__items>p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink-soft);
}

.frontpage-cta__items ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 24px 0 28px;
}

.frontpage-cta__items li {
  padding: 9px 20px;
  border-radius: 999px;
  background: var(--bg);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .frontpage-cta__items .cta-button a {
    width: 100%;
    min-width: 0;
  }
}

/* =========================================================
   ベネフィット（図解）
   ========================================================= */
.frontpage-benefit {
  padding: clamp(56px, 7vw, 100px) 0;
}

.frontpage-benefit__content {
  max-width: 760px;
  margin: clamp(32px, 4vw, 56px) auto 0;
  padding: clamp(20px, 3vw, 40px);
  border-radius: 16px;
  background: var(--bg);
}

/* =========================================================
   ベネフィット（無在庫販売）
   ========================================================= */
.frontpage-benefit-no-store {
  padding: clamp(56px, 7vw, 100px) 0;
  background: #191919;
}

.frontpage-benefit-no-store__main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  align-items: start;
  gap: clamp(24px, 4vw, 56px);
  margin-top: clamp(32px, 4vw, 56px);
  padding: clamp(28px, 4vw, 48px);
  border-radius: 20px;
  background: var(--peach);
}

.frontpage-benefit-no-store__small-title h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(20px, 2.8vw, 32px);
  font-weight: 800;
  line-height: 1.4;
}

.frontpage-benefit-no-store__small-title h3 img {
  flex: 0 0 auto;
  width: 36px;
}

.frontpage-benefit-no-store__small-title p {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.95;
}

.frontpage-benefit-no-store__small-title p span {
  display: block;
}

.frontpage-benefit-no-store__list {
  grid-column: 1;
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.frontpage-benefit-no-store__list li {
  position: relative;
  padding: 12px 18px 12px 46px;
  border-radius: 10px;
  background: #fff;
  font-size: clamp(14px, 1.7vw, 17px);
  font-weight: 700;
}

.frontpage-benefit-no-store__list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 15px;
  height: 15px;
  border: 2.5px solid var(--main);
  border-radius: 50%;
  transform: translateY(-50%);
}

.frontpage-benefit-no-store__list li::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 15px;
  height: 2.5px;
  background: var(--main);
  transform: translateY(-50%) rotate(-45deg);
}

.frontpage-benefit-no-store__main picture {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.frontpage-benefit-no-store__main picture img {
  width: 100%;
  max-width: 330px;
  margin-inline: auto;
  border-radius: 14px;
}

@media (max-width: 767px) {
  .frontpage-benefit-no-store__main {
    grid-template-columns: 1fr;
  }

  .frontpage-benefit-no-store__list,
  .frontpage-benefit-no-store__main picture {
    grid-column: 1;
    grid-row: auto;
  }
}

/* =========================================================
   利用者の声
   ========================================================= */
.frontpage-review {
  padding: clamp(56px, 7vw, 100px) 0;
  background: var(--bg);
}

.frontpage-review__stars {
  margin: clamp(28px, 4vw, 44px) auto 0;
  width: min(300px, 70%);
}

.frontpage-review__stars img {
  width: 100%;
}

.frontpage-review__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 4vw, 56px);
  width: min(100% - 40px, 860px);
  margin: clamp(36px, 5vw, 60px) auto 0;
}

.article-card__article {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  background: #ddd;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(18, 18, 18, .14);
  transition: transform .2s ease, box-shadow .2s ease;
}

.article-card__article:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(18, 18, 18, .20);
}

.article-card__article>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card__article::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 62%;
  background: linear-gradient(to top, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .58) 38%, rgba(0, 0, 0, 0) 100%);
}

.article-card__article-texts {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 0 22px 22px;
  color: #fff;
}

.article-card__tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  background: #EF7C78;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}

.article-card__article-texts h3 {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.article-card__title {
  margin-top: 6px;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 800;
  line-height: 1.55;
  color: #fff;
}

.frontpage-review__link {
  margin-top: clamp(36px, 5vw, 56px);
  text-align: center;
}

.frontpage-review__link a {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1.5px solid currentColor;
  font-size: 17px;
  font-weight: 700;
}

.frontpage-review__link a:hover {
  color: var(--main);
}

/* =========================================================
   料金
   ========================================================= */
.frontpage-price {
  padding: clamp(56px, 7vw, 100px) 0;
}

.frontpage-price__scroll {
  margin-top: clamp(32px, 4vw, 56px);
}

.frontpage-price__plans {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  align-items: stretch;
}

.frontpage-price__plan {
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.frontpage-price__plan-name {
  padding: 14px 16px;
  background: var(--main);
  color: #fff;
  font-size: clamp(15px, 1.7vw, 17px);
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.frontpage-price__plan-summary {
  padding: 16px 20px 0;
  font-size: 13px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.frontpage-price__plan-fee {
  margin: 16px 20px 0;
  padding: 16px;
  border-radius: 12px;
  background: #FFF7EE;
  text-align: center;
}

.frontpage-price__initial {
  font-size: 11px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.frontpage-price__strike {
  display: inline-block;
  margin: 0 6px 0 8px;
  text-decoration: line-through;
  white-space: nowrap;
}

.frontpage-price__free {
  display: inline-block;
  color: #D8352A;
  font-weight: 800;
  white-space: nowrap;
}

.frontpage-price__free sup {
  font-size: .7em;
}

.frontpage-price__monthly {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.frontpage-price__monthly strong {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -.01em;
}

.frontpage-price__monthly span {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-soft);
}

.frontpage-price__term {
  margin-top: 4px;
  font-size: 12px;
  color: var(--ink-soft);
}

.frontpage-price__extra {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #E6D5C0;
  font-size: 12px;
  font-weight: 700;
}

.frontpage-price__plan-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 0 20px 26px;
}

.frontpage-price__plan-list li {
  position: relative;
  padding-left: 24px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.frontpage-price__plan-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .55em;
  width: 12px;
  height: 7px;
  border-left: 2.2px solid var(--main);
  border-bottom: 2.2px solid var(--main);
  transform: rotate(-45deg);
}

.frontpage-price__plan-list li span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-soft);
}

.frontpage-price__notes {
  width: min(100% - 40px, 1200px);
  margin: 24px auto 0;
  display: grid;
  gap: 4px;
}

.frontpage-price__notes p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--ink-soft);
}

@media (max-width: 1023px) {
  .frontpage-price__scroll {
    overflow-x: auto;
    padding: 0 20px 8px;
    -webkit-overflow-scrolling: touch;
  }

  .frontpage-price__plans {
    width: max-content;
    grid-template-columns: repeat(4, 280px);
  }
}

/* =========================================================
   よくある質問
   ========================================================= */
.faq {
  padding: clamp(56px, 7vw, 100px) 0;
  background: var(--bg);
}

.faq__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(28px, 4vw, 44px);
}

.faq__tab {
  padding: 9px 20px;
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
  transition: background-color .2s ease, color .2s ease;
}

.faq__tab:hover {
  background: #F0F0F4;
}

.faq__tab.--active {
  background: var(--main);
  color: #fff;
}

.faq__content {
  max-width: 860px;
  margin: clamp(28px, 4vw, 44px) auto 0;
}

.faq__item {
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.faq__item+.faq__item {
  margin-top: 12px;
}

.faq__item.is-hidden {
  display: none;
}

.faq__question {
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 60px 20px 24px;
  cursor: pointer;
  list-style: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question-text {
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 700;
  line-height: 1.7;
}

.faq__question::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2.5px solid var(--main);
  border-bottom: 2.5px solid var(--main);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .25s ease;
}

.faq__item[open] .faq__question::after {
  transform: translateY(-20%) rotate(-135deg);
}

.faq__answer {
  padding: 0 24px 22px;
}

.faq__answer-text {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink-soft);
}

.faq__more-button {
  margin-top: 28px;
  text-align: center;
}

.faq__more-button button {
  padding: 13px 44px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  background: #fff;
  transition: background-color .2s ease, color .2s ease;
}

.faq__more-button button:hover {
  background: var(--ink);
  color: #fff;
}

/* =========================================================
   予約（TimeRex）
   ========================================================= */
.frontpage-reserve {
  padding: clamp(56px, 7vw, 100px) 0;
  background: #fff;
}

.frontpage-reserve__calendar {
  min-height: 520px;
  margin-top: clamp(32px, 4vw, 52px);
  padding: clamp(12px, 2vw, 24px);
  border: 1.5px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.frontpage-reserve__calendar #timerex_calendar {
  width: 100%;
}

.frontpage-reserve__calendar iframe {
  width: 100% !important;
  border: 0;
}

.frontpage-reserve__fallback {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.frontpage-reserve__fallback a {
  font-weight: 700;
  color: var(--main);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 767px) {
  .frontpage-reserve__calendar {
    min-height: 640px;
    padding: 8px;
  }
}

/* =========================================================
   モーダル
   ========================================================= */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(18, 18, 18, .55);
}

.modal__modal-container {
  position: relative;
  width: min(100%, 720px);
  max-height: 82vh;
  overflow-y: auto;
  padding: 40px clamp(20px, 4vw, 40px);
  border-radius: 16px;
  background: #fff;
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.modal__close:hover {
  background: var(--bg);
}

.modal__article img {
  width: 100%;
  border-radius: 12px;
}

.modal__tag {
  display: inline-block;
  margin-top: 20px;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--main);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.modal__article-texts h3 {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-soft);
}

.modal__title {
  margin-top: 8px;
  font-size: clamp(18px, 2.2vw, 23px);
  font-weight: 800;
  line-height: 1.6;
}

.modal__main-text {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  line-height: 2;
  color: var(--ink-soft);
  white-space: pre-line;
}

/* =========================================================
   フッター
   ========================================================= */
.footer {
  position: relative;
  padding: clamp(48px, 6vw, 80px) 0 32px;
  background: #fff;
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.footer__ashirai {
  position: absolute;
  right: -40px;
  bottom: -20px;
  width: 320px;
  opacity: .6;
  pointer-events: none;
}

.footer__container {
  position: relative;
  width: min(100% - 40px, var(--inner));
  margin-inline: auto;
}

.footer__logo-img {
  width: 176px;
}

.footer__logo p {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
}

.footer__cta {
  margin-top: clamp(28px, 4vw, 40px);
}

.footer__cta-button a {
  min-width: min(340px, 100%);
  padding: 16px 28px;
  font-size: 16px;
  color: #fff;
}

.footer__bottom {
  margin-top: clamp(36px, 4vw, 56px);
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.footer__copyright {
  font-size: 12px;
  color: var(--ink-soft);
}
