/* =========================================
   Front Hero
========================================= */

/* 管理バー表示時：トップだけ余白調整 */
body.admin-bar .front-page.site-main {
  padding-top: 0;
}

/* front-page と front-hero の間は半角スペース */
body.admin-bar.front-page .front-hero {
  margin-top: calc(-1 * (var(--header-h) + var(--admin-bar-h)));
}

.front-hero {
  position: relative;
  overflow: visible;
}

.front-hero__bg {
  position: absolute;
  inset: 0;
  background: var(--hero-bg) center / cover no-repeat;
}

.front-hero__inner {
  position: relative;
  padding: 120px 0 0;
  margin: 0 auto;
}

/* 2カラム（PC） */
.front-hero__content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 0;
}

/* 左：テキスト */
.front-hero__text {
  max-width: 600px;
}

/* -----------------------------------------
   Animations
----------------------------------------- */
@keyframes heroImageIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroCatchIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 右：画像（PCのみ） */
.front-hero__media {
  position: relative;
  align-self: end;
  margin-top: 24px;
  margin-right: calc((100vw - 1080px) / -2);

  opacity: 0;
  transform: translateY(20px);
  animation: heroImageIn 0.7s ease-out forwards;
  animation-delay: 0.7s;
}

.front-hero__media img {
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
  border-radius: 16px;
}

/* タイトル */
.front-hero__catch {
  margin: 0 0 30px;
  line-height: 1.15;
  font-size: 70px;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.front-hero__catchLine {
  display: inline-block;
  margin: 0 0 8px;
  padding: 10px;
  border-radius: 4px;
  background: #45A230;
  color: #fff;

  opacity: 0;
  transform: translateY(12px);
  animation: heroCatchIn 0.6s ease-out forwards;
}

.front-hero__catchLine:nth-child(1) {
  animation-delay: 0.1s;
}

.front-hero__catchLine:nth-child(2) {
  animation-delay: 0.25s;
}

.front-hero__catchLine:nth-child(3) {
  animation-delay: 0.4s;
}

/* リード文 */
.front-hero__lead p {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 700;
}

/* SP用ブロックはPCでは非表示 */
.front-hero__spMediaCta {
  display: none;
}


/* =========================================
   Front Coupon
========================================= */

.front-coupon {
  padding: 30px 0 50px;
}

.front-coupon__inner {
  display: grid;
  gap: 30px;
}

/* -----------------------------------------
   Invoice banner
----------------------------------------- */
.invoice-banner {
  display: grid;
  grid-template-columns: 330px 1fr;
  border-radius: 10px;
  overflow: hidden;
  background: #EFEDEA;
}

.invoice-banner__left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
  background: #CE6D5B;
}

.invoice-banner__label {
  color: #fff;
  font-weight: 800;
  font-size: 28px;
  line-height: 1.2;
  text-align: center;
}

.invoice-banner__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 18px;
}

.invoice-banner__sub {
  margin: 0;
  color: #2A54A4;
  font-size: 16px;
}

.invoice-banner__main {
  margin: -4px 0 0;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.15;
}

/* -----------------------------------------
   Two image banners
----------------------------------------- */
.front-coupon__banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.front-coupon__banner {
  display: block;
  overflow: hidden;
}

.front-coupon__banner img {
  display: block;
  width: 100%;
  height: auto;
}

/* -----------------------------------------
   Coupon Download Button
----------------------------------------- */
.front-coupon__download {
  display: flex;
  justify-content: center;
}

.front-coupon__downloadBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 22px;
  background: #CC0033;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

/* SPでバナーの“間”に入れる用（PCでは隠す） */
.front-coupon__download--between {
  display: none;
}


/* =========================================
   Front Intro
========================================= */

.front-intro {
  padding: 56px 0;
}

.front-intro__inner {
  display: grid;
  grid-template-columns: 550px 508px;
  justify-content: space-between;
  align-items: start;
  gap: 22px; /* 余白調整用 */
}

/* 左：本文 */
.front-intro__text p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 2;
  color: #333;
}

.front-intro__list {
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.front-intro__list li {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 2;
}

.front-intro__list li span {
  color: #FF2902;
  font-weight: 700;
}

/* 右：画像 */
.front-intro__photos {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

/* 共通フレーム */
.front-intro__photo {
  width: 248px;
  flex-shrink: 0;
  border: 4px solid #2b2b2b;
  background: #fff;
}

.front-intro__photo img {
  display: block;
  width: 100%;
  height: auto;
}

.front-intro__photo--b {
  margin-top: 94px;
}


/* =========================================
   Front Feature
========================================= */

.front-feature {
  background: #45A230;
  padding: 30px 0 50px;
}

.front-feature__title {
  margin: 0 0 30px;
  text-align: center;
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.35;
}

.front-feature__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.front-feature__card {
  position: relative;
  padding: 30px 15px;
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

/* アイコン（上に浮いてる風） */
.front-feature__icon {
  display: grid;
  place-items: center;
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 3px 6px rgba(127, 198, 56, 0.28);
}

.front-feature__icon img {
  display: block;
  width: 70px;
  height: 70px;
}

.front-feature__cardTitle {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  color: #111;
  line-height: 1.5;
}

.front-feature__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}


/* =========================================
   Front Works
========================================= */

.front-works {
  padding: 56px 0;
}

.front-works__head {
  text-align: center; /* PC中央 */
  margin: 0 0 18px;
}

/* 既に style.css に共通見出しを作ってるなら差し替えOK */
.section-eyebrow {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 300;
  color: #333;
}

.section-title {
  margin: 0;
  font-size: 40px;
  font-weight: 800;
  color: #45A230;
  line-height: 1.2;
}

/* -----------------------------------------
   Tabs (PC)
----------------------------------------- */
.works-tabs {
  display: flex;
  flex-wrap: nowrap;
  max-width: 690px;
  margin: 0 auto;
  gap: 0;
  position: relative;
  z-index: 3;
  overflow: visible;
}

.works-tabs__btn {
  flex: 1 1 0;
  min-width: 0;
  appearance: none;
  border: none;
  background: #BEBEBE;
  color: #333;
  padding: 18px 10px;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-weight: 800;
  font-size: 18px;

  position: relative;
  z-index: 1;

  transform: translateY(0);
  transition:
    transform 0.2s ease,
    z-index 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

/* アクティブ判定（aria-selected / is-active 両対応） */
.works-tabs__btn[aria-selected="true"],
.works-tabs__btn.is-active {
  background: #45A230;
  color: #fff;
  z-index: 4;
}

/* 上タブ：選択中だけ上へ */
.works-tabs--top {
  margin-bottom: -1px;
  padding-top: 6px;
}

.works-tabs--top .works-tabs__btn[aria-selected="true"],
.works-tabs--top .works-tabs__btn.is-active {
  transform: translateY(-6px);
  padding: 24px 10px 12px;
}

.works-tabs--top .works-tabs__btn[aria-selected="true"]::after,
.works-tabs--top .works-tabs__btn.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 6px;
  background: #45A230;
  z-index: -1;
}

/* 下タブ：選択中だけ下へ */
.works-tabs--bottom {
  margin-top: -1px;
  padding-bottom: 6px;
}

.works-tabs--bottom .works-tabs__btn[aria-selected="true"],
.works-tabs--bottom .works-tabs__btn.is-active {
  transform: translateY(6px);
  padding: 12px 10px 24px;
}

.works-tabs--bottom .works-tabs__btn[aria-selected="true"]::before,
.works-tabs--bottom .works-tabs__btn.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -6px;
  height: 6px;
  background: #45A230;
  z-index: -1;
}

/* アイコン色：未選択(#333) / 選択(白SVG想定) */
.works-tabs__btn img {
  height: 24px;
  width: auto;
  filter: brightness(0) saturate(100%);
  opacity: 0.95;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.works-tabs__btn[aria-selected="true"] img,
.works-tabs__btn.is-active img {
  filter: none;
  opacity: 1;
}

.works-tabs__label {
  margin: 0;
  font-size: 18px;
}

.works-tabs__icon img {
  display: block;
}

/* パネル */
.works-panels {
  padding: 40px 30px;
  border-top: 1px solid #44A230;
  border-bottom: 1px solid #44A230;
  position: relative;
  z-index: 1;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

/* -----------------------------------------
   Common: time box
----------------------------------------- */
.works-time {
  background: #F7FFE3;
  border: 1px solid #D5E5C5;
  border-radius: 6px;
  padding: 20px;
  margin: 0 0 30px;
  text-align: center;
}

.works-time__title {
  margin: 0;
  font-weight: 900;
  font-size: 20px;
}

.works-time__list {
  list-style: none;
  margin: 0;
  padding: 0;

  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;

  font-size: 16px;
}

.works-time__list li {
  position: relative;
  padding: 0 14px;
}

.works-time__list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 1.2em;
  background: #44A230;
}

/* -----------------------------------------
   Common: body layout
----------------------------------------- */
.works-body {
  display: grid;
  grid-template-columns: 490px 1fr;
  gap: 20px;
  align-items: center;
}

.works-body__media img {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
}

/* -----------------------------------------
   Accordion (SP)
----------------------------------------- */
.works-acc {
  display: none;
}

.works-acc__item + .works-acc__item {
  margin-top: 12px;
}

.works-acc__btn {
  width: 100%;
  border: none;
  background: #45A230;
  color: #fff;
  padding: 15px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  font-weight: 900;
  cursor: pointer;
}

.works-acc__left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.works-acc__icon img {
  display: block;
  height: 24px;
  filter: brightness(0) invert(1);
}

.works-acc__label {
  margin: 0;
  font-size: 18px;
}

.works-acc__mark {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #fff;
  position: relative;
}

.works-acc__mark::before,
.works-acc__mark::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: #45A230;
}

.works-acc__mark::before {
  width: 12px;
  height: 4px;
}

.works-acc__mark::after {
  width: 4px;
  height: 12px;
}

.works-acc__btn[aria-expanded="true"] .works-acc__mark::after {
  display: none;
}

.works-acc__panel {
  padding: 30px 10px;
  background-color: #FDFFF7;
}


/* =========================================
   Front Price
========================================= */

.front-price {
  background: #F4F2F2;
  padding: 56px 0;
}

.c-section-title__main--dark {
  color: #333;
}

/* 注意文 */
.front-price__notice {
  margin: 0 0 20px;
  color: #FF2902;
  text-align: center;
  text-decoration: underline;
}

/* スクロール案内（SPのみ） */
.front-price__scroll {
  display: none;
  margin: 0 0 8px;
  font-size: 12px;
  color: #696969;
  text-align: left;
}

/* -----------------------------------------
   Table Wrapper
----------------------------------------- */
.front-price__tableWrap {
  overflow-x: auto;
}

/* 5カラム・高さ揃え */
.front-price__table {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-width: 900px;
  align-items: stretch;
  background: #fff;
}

/* Item（カード） */
.front-price__item {
  display: flex;
  flex-direction: column;
}

/* Head（項目名） */
.front-price__head {
  text-align: center;
}

.front-price__title {
  margin: 0;
  padding: 16px 6px;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  background: #78B957;
}

/* type別：項目名 背景 */
.front-price__item[data-price-type="cut"] .front-price__title {
  background: #60BF4A;
}

.front-price__item[data-price-type="bedcut"] .front-price__title {
  background: #58AF43;
}

.front-price__item[data-price-type="perm"] .front-price__title {
  background: #4F9F3D;
}

.front-price__item[data-price-type="color"] .front-price__title {
  background: #478F36;
}

.front-price__item[data-price-type="shampoo"] .front-price__title {
  background: #3E7F2F;
}

/* Body（価格＋説明） */
.front-price__body {
  flex: 1;
  padding: 20px 10px;
  background: #fff;
}

/* type別：body背景 */
.front-price__item[data-price-type="bedcut"] .front-price__body,
.front-price__item[data-price-type="color"] .front-price__body {
  background: #FAFAFA;
}

/* 価格 */
.front-price__price {
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #DEDEDE;

  text-align: center;
  font-weight: 900;
  color: #333;
  font-family: "M PLUS 1p", sans-serif;
  letter-spacing: -0.02em;
}

.front-price__priceValue {
  font-size: 26px;
  font-weight: 800;
}

.front-price__priceUnit {
  font-size: 18px;
}

/* 説明文 */
.front-price__text {
  line-height: 1.7;
}

/* Notes */
.front-price__notes {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  color: #777;
}

.front-price__notes li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 6px;
  line-height: 1.6;
}

.front-price__notes li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.6;
}


/* =========================================
   Front Flow
========================================= */

.front-flow {
  padding: 56px 0;
}

.front-flow__inner .c-section-title--centerPc {
  text-align: center;
  margin: 0 0 48px;
}

.flow-steps {
  margin-top: 24px;
  display: grid;
  gap: 20px;
}

/* STEP本体 */
.flow-step {
  position: relative;
}

.flow-step__badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  top: -18px;
  left: 20px;
  z-index: 2;
}

.flow-step__no {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 20px 8px 40px;

  background: #45A230;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.04em;
  border-radius: 999px;
  line-height: 1;
}

.flow-step__no::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
}

.flow-step__box {
  border: 2px solid #44A230;
  padding: 38px 20px 20px;
  background: #fff;
}

.flow-step__title {
  margin: 0 0 12px;
  color: #45A230;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
}

.flow-step__text {
  margin: 0;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}

.flow-step__text span {
  font-weight: 700;
}

/* 矢印（間） */
.flow-arrow {
  width: 0;
  height: 0;
  margin: 0 auto;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 24px solid rgba(69, 162, 48, 0.16);
}

/* バナー */
.flow-banner {
  margin-top: 80px;
}

.flow-banner__link {
  display: block;
}

.flow-banner__link img {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 0 auto;
}


/* =========================================
   Front Access
========================================= */

.front-access {
  padding: 0;
}

.front-access__head {
  margin-bottom: 18px;
}

/* フル幅マップ */
.front-access__map {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}

.front-access__map iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
}


/* =========================================
   Front Contact
========================================= */

.front-contact {
  padding: 80px 0 100px;
  background: #fff;
}

/* -----------------------------------------
   Front Contact layout fix
----------------------------------------- */
.front-contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 0;
  align-items: start;
}

/* 見出しは1行目で2列またぐ */
.front-contact__head {
  grid-column: 1 / -1;
  grid-row: 1;
  margin: 0 0 24px;
}

/* 左右を必ず同じ行（2行目）に置く */
.front-contact__left {
  grid-column: 1;
  grid-row: 2;
}

.front-contact__right {
  grid-column: 2;
  grid-row: 2;
}

/* 右：text + form */
.front-contact__rightHead {
  margin-bottom: 15px;
}

.front-contact__rightTitle {
  margin: 0 0 15px;
  font-size: 22px;
  font-weight: 900;
}

.front-contact__rightLead {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/* 左：info */
.front-contact__shopName {
  margin: 0 0 10px;
  font-size: 26px;
}

/* ドロワーの class を流用しても整うように（front-contact内で上書き） */
.front-contact .drawer-info-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.front-contact .drawer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  padding: 12px 0;
  border-bottom: 1px solid #DEDEDE;

  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.front-contact .drawer-info-icon {
  flex: 0 0 auto;
  margin-top: 3px;
}

.front-contact .drawer-info-icon img {
  display: block;
  width: 16px;
  height: 16px;
}

.front-contact .drawer-info-text a {
  color: inherit;
  text-decoration: none;
}

.front-contact .drawer-info-text a:hover {
  text-decoration: underline;
}

/* Notice */
.front-contact__notice {
  margin-top: 20px;
}

.front-contact__noticeTitle {
  margin: 0;
  font-size: 16px;
}

.front-contact__noticeTitle span {
  font-weight: 900;
  color: #FF2902;
}

.front-contact__noticeText {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}


/* =========================================
   Contact Form 7
========================================= */

.front-contact__form {
  margin-top: 10px;
}

/* 全体ラッパ */
.cf7 {
  width: 100%;
}

/* 行 */
.cf7__row {
  margin-bottom: 18px;
}

/* ラベル */
.cf7__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 400;
  color: #111;
}

/* 必須バッジ */
.cf7__req {
  display: inline-block;
  padding: 4px 8px;
  font-size: 10px;
  line-height: 1;
  color: #fff;
  background: #FF2902;
}

/* input / textarea / select */
.cf7__input,
.cf7__textarea,
.cf7__select {
  width: 100%;
  padding: 12px 10px;
  font-size: 16px;
  box-sizing: border-box;

  border: 1px solid #ECECEC;
  border-radius: 2px;
  background: #F7F7F7;
}

.cf7__textarea {
  min-height: 120px;
  resize: vertical;
}

.cf7__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%23000' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px 6px;
}

/* Acceptance */
.wpcf7-list-item {
  margin: 0;
}

.cf7__accept {
  margin: 18px 0 20px;
  font-size: 14px;
}

.cf7__accept label {
  cursor: pointer;
}

.cf7__accept a {
  color: #333;
  text-decoration: underline;
}

/* Submit */
.cf7__submit {
  margin-top: 10px;
}

.cf7__btn {
  width: 100%;
  max-width: 300px;
  padding: 14px 10px;

  border: none;
  border-radius: 2px;

  background: #63A63F;
  color: #fff;

  font-size: 18px;
  font-weight: 400;

  cursor: pointer;
}

.cf7__btn:hover {
  opacity: 0.9;
}

.cf7__submit p{
  margin: 0;
}


/* =========================================
   SP
========================================= */
@media (max-width: 768px) {
  /* ---------------------------------------
     Front Hero（SP）
  --------------------------------------- */
  .front-hero__inner {
    width: 100%;
    margin: 0;
    padding: 100px 0 0;
  }

  .front-hero__content {
    grid-template-columns: 1fr;
  }

  .front-hero__catch {
    margin: 0 10px 16px;
    font-size: 24px;
    letter-spacing: 0.06em;
  }

  .front-hero__lead {
    margin: 0 10px;
  }

  .front-hero__lead p {
    font-size: 14px;
  }

  /* PC用画像はSPでは非表示 */
  .front-hero__media {
    display: none;
  }

  /* SP：CTA + 画像 */
  .front-hero__spMediaCta {
    display: flex;
    align-items: flex-end;
    margin-top: -50px;
    position: relative;
  }

  /* CTA（左・固定幅） */
  .front-hero__spCta {
    flex: 0 0 180px;
    padding: 20px 10px 10px;

    display: flex;
    flex-direction: column;

    background: #FFFFF4;
    box-shadow: 2px -2px 2px rgba(233, 255, 124, 0.3);
    border-radius: 0 20px 0 0;

    z-index: 2;
  }

  .front-hero__spCtaTitle {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
  }

  .front-hero__spBtn {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 10px 6px 10px 10px;
    margin-bottom: 12px;

    text-decoration: none;
    font-weight: 800;
    color: #fff;
  }

  .front-hero__spBtn--line {
    background: #06C755;
    box-shadow: 0 4px 0 rgba(4, 152, 65, 1);
  }

  .front-hero__spBtn--mail {
    background: #F3C60B;
    box-shadow: 0 4px 0 rgba(195, 158, 7, 1);
  }

  .front-hero__spBtnIcon {
    flex: 0 0 auto;
    margin-right: 10px;
  }

  .front-hero__spBtnText {
    flex: 1;
    font-size: 16px;
    line-height: 1.1;
  }

  .front-hero__spBtnArrow img {
    display: block;
    width: 6px;
    height: auto;
  }

  /* メールのみ下向き */
  .front-hero__spBtn--mail .front-hero__spBtnArrow {
    transform: rotate(90deg);
  }

  /* 画像（右）：横だけクリップする */
  .front-hero__spMediaClip {
    position: relative;
    flex: 1;
    min-height: 270px;

    overflow-x: hidden;
    overflow-y: visible;
  }

  .front-hero__spMedia {
    position: absolute;
    right: -50px;
    top: 0;
    width: 270px;
    pointer-events: none;

    opacity: 0;
    transform: translateY(16px);
    animation: heroImageIn 0.7s ease-out forwards;
    animation-delay: 0.7s;
  }

  .front-hero__spMedia img {
    display: block;
    width: 100%;
    height: auto;
  }

  /* ---------------------------------------
     Front Coupon（SP）
  --------------------------------------- */
  .front-coupon {
    padding: 30px 0 0;
  }
  .front-coupon__inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .invoice-banner {
    grid-template-columns: 80px 1fr;
    border-radius: 6px;
  }

  .invoice-banner__left {
    padding: 10px;
  }

  .invoice-banner__label {
    font-size: 12px;
    line-height: 16px;
  }

  .invoice-banner__right {
    padding: 7px 10px;
  }

  .invoice-banner__sub {
    font-size: 10px;
  }

  .invoice-banner__main {
    margin: -3px 0 0;
    font-size: 16px;
  }

  .front-coupon__banners {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .front-coupon__download--between {
    display: flex;
    justify-content: center;
  }

  .front-coupon__download.is-pc {
    display: none;
  }

  .front-coupon__downloadBtn {
    max-width: 100%;
    font-size: 15px;
  }

  .front-intro {
    padding: 38px 0;
  }

  .front-intro__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .front-intro__media {
    display: none;
  }

  .front-intro__list li {
    line-height: 1.8;
  }

  .front-feature {
    padding: 40px 0;
  }

  .front-feature__title {
    margin-bottom: 25px;
    font-size: 24px;
  }

  .front-feature__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .front-works {
    padding: 36px 0;
  }

  .front-works__head {
    text-align: left;
    padding: 0 10px;
  }

  .section-title {
    font-size: 28px;
  }

  .works-tabs,
  .works-panels {
    display: none;
  }

  .works-acc {
    display: block;
  }

  .works-time {
    padding: 14px 10px 10px;
    margin: 0 0 25px;
  }

  .works-time__title {
    font-size: 18px;
  }

  .works-body {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .works-body__media img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .works-time__list {
    flex-direction: column;
    align-items: center;
  }

  .works-time__list li {
    padding: 10px 0;
    text-align: center;
  }

  .works-time__list li::after {
    display: none;
  }

  .works-time__list li:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: #44A230;
  }

  .front-price {
    padding: 40px 0;
  }

  .front-price__notice {
    text-align: left;
    font-size: 14px;
  }

  .front-price__scroll {
    display: block;
  }

  .front-price__table {
    min-width: 1080px;
  }

  .front-flow {
    padding: 40px 0;
  }

  .flow-step {
    margin-top: 18px;
  }

  .flow-step__badge {
    left: 50%;
    transform: translateX(-50%);
  }

  .flow-step__title {
    font-size: 18px;
    text-align: center;
  }

  .flow-arrow {
    border-left-width: 28px;
    border-right-width: 28px;
    border-top-width: 18px;
  }

  .flow-banner {
    margin-top: 60px;
  }

  .front-access {
    padding: 40px 0;
  }

  .front-contact {
    padding: 40px 0;
  }

  .front-contact__inner {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }

  .front-contact__head {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
  }

  .front-contact__right {
    grid-column: 1;
    grid-row: 2;
  }

  .front-contact__left {
    grid-column: 1;
    grid-row: 3;
  }

  .front-contact__shopName {
    font-size: 22px;
  }

  .front-contact__rightTitle {
    font-size: 18px;
  }

  .cf7__submit {
    text-align: center;
  }
}