@charset "UTF-8";
/*カラーセット
---------------------------------------*/
/*ブレイクポイントmixin
---------------------------------------*/
html {
  font-size: 2.5641025641vw;
  -webkit-text-size-adjust: 100%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  html {
    font-size: 0.8333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 10px;
  }
}

body {
  font-family: "Yu Gothic", "YuGothic", "游ゴシック体", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.7;
  color: #222;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.header--mt {
  margin-top: 11.1rem;
}
@media (min-width: 768px) {
  .header--mt {
    margin-top: 27.4rem;
  }
}

.br__sp--none {
  display: none;
}
@media (min-width: 768px) {
  .br__sp--none {
    display: block;
  }
}

@media (min-width: 768px) {
  .br__pc--none {
    display: none;
  }
}

@media (any-hover: hover) {
  a {
    transition: opacity 0.3s ease;
    /* ここでトランジション設定 */
  }
  a:hover {
    opacity: 0.8;
  }
}
.uppercase {
  text-transform: uppercase;
}

/* reCAPTCHA v3 バッジを完全非表示 */
.grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ===== Basic Reset (practical) ===== */
/* 1) レイアウト基盤 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  line-height: 1.6;
}

/* 2) 余白の初期化（必要な所で付ける方針） */
:where(h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd) {
  margin: 0;
}

/* 3) 画像・メディアのはみ出し防止 */
img,
picture,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* 4) リストのマーカー＆インデントをリセット（必要に応じて個別で付与） */
ul,
ol {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

/* 5) リンクの基本 */
a {
  color: inherit;
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

address {
  font-style: normal;
}

/* header */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  background-color: #fff;
  z-index: 1000;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  padding-left: 1.8rem;
}
@media (min-width: 768px) {
  .header__inner {
    max-width: 1200px;
    padding: 2.3rem 3.8rem 0 1.7rem;
    align-items: center;
    margin-inline: auto;
  }
}

.header__logo {
  display: flex;
  align-items: center;
}
.header__logo img {
  padding-top: 0.4rem;
  width: 5.3rem;
}
@media (min-width: 768px) {
  .header__logo img {
    width: 14.6rem;
  }
}

.header__copy {
  text-align: center;
}

.header__tagline {
  display: none;
}
@media (min-width: 768px) {
  .header__tagline {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.06em;
  }
}

.header__name {
  font-size: 2rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .header__name {
    font-size: 4rem;
    line-height: 1.2;
  }
}

@media (min-width: 768px) {
  .header__right {
    display: none;
  }
}

.header__right-pc {
  display: none;
}
@media (min-width: 768px) {
  .header__right-pc {
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
  }
}

.header__tel > a {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  line-height: 1;
}

.icon--phone img {
  width: 3.5rem;
}

.header__tel-number {
  font-size: 2rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .header__tel-number {
    font-size: 3.3rem;
  }
}

.header__hours {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .header__hours {
    font-size: 2.2rem;
  }
}

.header__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .header__buttons {
    width: 21.7rem;
    margin-top: 0;
  }
}

/* buttons & icons */
.btn--mail {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #59c3e1;
  border-radius: 0.5rem;
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  height: 4.8rem;
}
@media (min-width: 768px) {
  .btn--mail {
    justify-content: flex-start;
    gap: 0;
    font-size: 1.9rem;
  }
}

.icon--mail img {
  width: 3.5rem;
}

.btn--line {
  background-color: #18d048;
  border-radius: 0.5rem;
  font-size: 1.9rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  display: flex;
  height: 4.8rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .btn--line {
    font-size: 2.6rem;
  }
}

@media (min-width: 768px) {
  .icon--mail img {
    width: 4.7rem;
  }
}

/* ボタン本体 */
.header__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.9rem;
  border: 0;
  background: #5fcae3;
  /* 好きな色に */
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 1002;
  padding: 0.88rem 0;
}
@media (min-width: 768px) {
  .header__toggle {
    display: none;
  }
}

/* 三本線 */
.hamburger {
  position: relative;
  display: block;
  width: 2.5rem;
  height: 0.16rem;
  background: currentColor;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 2.5rem;
  height: 0.16rem;
  background: currentColor;
  transition: transform 0.2s ease, top 0.2s ease, bottom 0.2s ease, opacity 0.2s ease;
}

.hamburger::before {
  top: -1.2rem;
}

.hamburger::after {
  bottom: -1.2rem;
}

/* 開いたとき（バツに変形） */
.header__toggle.is-open .hamburger {
  background-color: transparent;
}

.header__toggle.is-open .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.header__toggle.is-open .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* ========== トグルボタン ========== */
.header__toggle.is-open .hamburger {
  background: transparent;
}
.header__toggle.is-open .hamburger::before {
  transform: rotate(45deg);
}
.header__toggle.is-open .hamburger::after {
  transform: rotate(-45deg);
}

/* ========== オーバーレイ ========== */
.hamburger__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  z-index: 1000;
}
.hamburger__overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ========== 右からスライドするメニュー ========== */
.hamburger__menu {
  position: fixed;
  top: 0;
  right: 0;
  block-size: 100dvh;
  background: #fff;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.15);
  transform: translateX(110%);
  transition: transform 0.28s ease;
  z-index: 1001;
  display: grid;
  grid-auto-rows: min-content;
  align-content: start;
  padding: 7rem 2rem 2rem;
}
@media (min-width: 768px) {
  .hamburger__menu {
    padding: 5rem 1.5rem 2rem;
  }
}
@media (min-width: 768px) {
  .hamburger__menu {
    position: relative;
    background-color: #5fcae3;
    box-shadow: none;
    transform: unset;
    display: block;
    block-size: auto;
    padding: 0;
  }
}
.hamburger__menu.is-open {
  transform: translateX(0);
}
.hamburger__menu .gnav__list {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  display: grid;
}
@media (min-width: 768px) {
  .hamburger__menu .gnav__list {
    display: flex;
    justify-content: center;
    margin: 0;
  }
}
.hamburger__menu .gnav__list .gnav__item {
  border-bottom: 1px solid #5fcae3;
}
@media (min-width: 768px) {
  .hamburger__menu .gnav__list .gnav__item {
    border: unset;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .hamburger__menu .gnav__list .gnav__item:not(:last-child)::after {
    content: "";
    display: block;
    width: 1px;
    height: 4.2rem;
    background-color: #fff;
  }
}

/* SP基準 */
.gnav__link {
  display: block;
  padding: 0.5rem;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

/* PCで上書き＆下線アニメ */
@media (min-width: 768px) {
  .gnav__link {
    position: relative;
    display: inline-block;
    padding: 1.9rem 2.8rem;
    font-size: 1.7rem;
    color: #fff;
  }
  .gnav__link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2rem;
    width: 80%;
    height: 2px;
    background-color: currentColor;
    transform: translateX(-50%) scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
}
@media (min-width: 768px) and (any-hover: hover) {
  .gnav__link:hover::after,
  .gnav__link:focus-visible::after {
    transform: translateX(-50%) scaleX(1);
  }
}
/* スクロール固定 */
.body--no-scroll {
  overflow: hidden;
}

/* 低速/無効アニメーション環境 */
@media (prefers-reduced-motion: reduce) {
  .hamburger__menu,
  .hamburger__overlay {
    transition: none;
  }
}
/* マウスホバーできる環境=PC想定だけクリック無効 */
@media (any-hover: hover) {
  .header__tel a,
  .cta-contact__tel a {
    pointer-events: none;
    /* クリック不可 */
    cursor: default;
    /* カーソルを通常に */
    text-decoration: none;
    /* 下線がある場合は消すなどお好みで */
  }
  .header__tel a:hover,
  .cta-contact__tel a {
    opacity: 1;
  }
  /* 既存のホバー演出があれば打ち消し */
}
/* ================================
   フッター上CTAセクション
================================ */
.cta-contact {
  max-width: 95.7rem;
  margin: 0 auto;
  padding-inline: 2rem;
}

.cta-contact__inner {
  background-color: #e6fcff;
  box-shadow: 0px 1.43px 5.54px 0px rgba(0, 0, 0, 0.1098039216);
  padding: 1.2rem 1.7rem;
}
@media (min-width: 768px) {
  .cta-contact__inner {
    box-shadow: 0px 3.8px 14.72px 0px rgba(0, 0, 0, 0.1098039216);
    padding: 2.7rem 4.7rem;
  }
}

.cta-contact__body {
  position: relative;
  background-color: #fff;
  padding: 1.3rem 0;
  border: 1px solid #5fcae3;
}
@media (min-width: 768px) {
  .cta-contact__body {
    padding: 4rem 0 2rem;
  }
}

.cta-contact__image {
  position: absolute;
  top: -1.7rem;
  left: -0.8rem;
}
@media (min-width: 768px) {
  .cta-contact__image {
    top: -4.7rem;
    left: -4.8rem;
  }
}
.cta-contact__image img {
  width: 9.1rem;
}
@media (min-width: 768px) {
  .cta-contact__image img {
    width: 24.7rem;
  }
}

.cta-contact__title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: #59c3e1;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
@media (min-width: 768px) {
  .cta-contact__title {
    font-size: 5rem;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
  }
}

.cta-contact__company {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 1.7rem;
}
@media (min-width: 768px) {
  .cta-contact__company {
    font-size: 5rem;
    margin-top: 4rem;
  }
}

.cta-contact__tel {
  margin-top: 1.1rem;
  margin-left: 2.8rem;
}
@media (min-width: 768px) {
  .cta-contact__tel {
    margin-top: 1.9rem;
    margin-left: 14.2rem;
  }
}

.cta-contact__link {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.cta-contact__tel-icon img {
  width: 2.5rem;
}
@media (min-width: 768px) {
  .cta-contact__tel-icon img {
    width: 4.7rem;
  }
}

.cta-contact__mail-icon img {
  width: 3.3rem;
}
@media (min-width: 768px) {
  .cta-contact__mail-icon img {
    width: 6.5rem;
  }
}

.cta-contact-tel__text {
  font-family: "Gothic A1", "Helvetica Neue", Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
}
@media (min-width: 768px) {
  .cta-contact-tel__text {
    font-size: 5rem;
    margin-top: 0.5rem;
  }
}

.cta-contact-mail__text {
  font-family: "Gothic A1", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .cta-contact-mail__text {
    font-size: 3.5rem;
  }
}

.cta-contact__mail {
  margin-top: 0.3rem;
  margin-left: 2.4rem;
}
@media (min-width: 768px) {
  .cta-contact__mail {
    margin-top: 2rem;
  }
}

/* ================================
   フッター
================================ */
.footer {
  margin-top: 2.7rem;
  background-color: #5fcae3;
  color: #fff;
}
@media (min-width: 768px) {
  .footer {
    margin-top: 3.9rem;
  }
}

.footer__inner {
  padding: 4.2rem 2.2rem 2rem;
}
@media (min-width: 768px) {
  .footer__inner {
    max-width: 1200px;
    padding: 2.8rem 4.4rem 3rem;
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .footer__grid {
    display: flex;
    gap: 8.3rem;
  }
}

/* 左：会社情報 */
.footer-info {
  border-bottom: 1px solid #fff;
  padding-bottom: 1.8rem;
}
@media (min-width: 768px) {
  .footer-info {
    border: none;
    padding-bottom: 0;
  }
}

.footer-info__catch {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.06em;
}
@media (min-width: 768px) {
  .footer-info__catch {
    font-size: 1.6rem;
    margin-top: 0.3rem;
  }
}

.footer-info__company {
  font-size: 3.3rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.06em;
}
@media (min-width: 768px) {
  .footer-info__company {
    font-size: 4rem;
  }
}

.footer-info__address {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4285714286;
  letter-spacing: 0;
  margin-top: 0.8rem;
}
@media (min-width: 768px) {
  .footer-info__address {
    letter-spacing: 0.05em;
  }
}
.footer-info__address span {
  margin-left: 3.5rem;
}
@media (min-width: 768px) {
  .footer-info__address span {
    margin-left: 3rem;
  }
}

/* 電話＋受付/定休日行 */
@media (min-width: 768px) {
  .footer-contact {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
    margin-top: 0.8rem;
  }
}

@media (min-width: 768px) {
  .footer-contact__meta {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
}

.footer-contact__meta-item {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  margin-top: 0.6rem;
}
@media (min-width: 768px) {
  .footer-contact__meta-item {
    margin-top: 0;
  }
}

.footer-contact__tel {
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .footer-contact__tel {
    margin-top: 0;
  }
}

.footer-contact__link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-contact__mail-link {
  gap: 0.5rem;
}

.footer-contact__icon img {
  width: 2.2rem;
}
@media (min-width: 768px) {
  .footer-contact__icon img {
    width: 3.5rem;
  }
}

.footer-contact__mail-icon img {
  width: 3rem;
}
@media (min-width: 768px) {
  .footer-contact__mail-icon img {
    width: 4.8rem;
  }
}

.footer-contact__tel-text {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .footer-contact__tel-text {
    font-size: 3.2rem;
  }
}

.footer-contact__mail-text {
  font-family: "Gothic A1", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .footer-contact__mail-text {
    font-size: 1.7rem;
  }
}

.footer-contact__mail {
  margin-top: 0.7rem;
  margin-left: -0.4rem;
}
@media (min-width: 768px) {
  .footer-contact__mail {
    margin-top: 1.1rem;
    margin-left: -0.7rem;
  }
}

/* CTA & SNS */
.footer-cta {
  display: flex;
  gap: 0.8rem;
  align-items: flex-end;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .footer-cta {
    gap: 1.2rem;
    margin-top: -1.5rem;
  }
}

.footer-cta__btn {
  width: 11rem;
  height: 2.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 0.3rem;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}
@media (min-width: 768px) {
  .footer-cta__btn {
    width: 16.4rem;
    height: 4.2rem;
    border-radius: 0.4rem;
    font-size: 1.8rem;
  }
}

.footer-cta__btn--mail {
  color: #5fcae3;
}

.footer-cta__btn--line {
  color: #18d048;
}

.footer-cta__instagram {
  margin-left: 1.2rem;
}
@media (min-width: 768px) {
  .footer-cta__instagram {
    margin-left: 5.1rem;
  }
}

.footer-cta__instagram img {
  width: 4.8rem;
}
@media (min-width: 768px) {
  .footer-cta__instagram img {
    width: 7.2rem;
  }
}

/* 右：メニュー */
.footer-nav {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .footer-nav {
    margin-top: 3.6rem;
  }
}

.footer-nav__top-page {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .footer-nav__top-page {
    font-size: 2rem;
  }
}
.footer-nav__top-page a {
  padding: 1rem 1rem 1rem 0;
}
@media (min-width: 768px) {
  .footer-nav__top-page a {
    padding: 1rem;
  }
}

.footer-nav__cols {
  display: flex;
  gap: 4rem;
  margin-top: 0.8rem;
  margin-left: 1.8rem;
}
@media (min-width: 768px) {
  .footer-nav__cols {
    align-items: flex-end;
    gap: 13rem;
    margin-top: -2.6rem;
  }
}

.footer-nav__col {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .footer-nav__col {
    font-size: 1.7rem;
  }
}

.footer-nav__item a {
  display: block;
  padding: 0.6rem;
}
@media (min-width: 768px) {
  .footer-nav__item a {
    padding: 0.8rem;
  }
}

/* マウスホバーできる環境=PC想定だけクリック無効 */
@media (any-hover: hover) {
  .footer-contact__tel a {
    pointer-events: none;
    /* クリック不可 */
    cursor: default;
    /* カーソルを通常に */
    text-decoration: none;
    /* 下線がある場合は消すなどお好みで */
  }
  .footer-contact__tel a {
    opacity: 1;
  }
  /* 既存のホバー演出があれば打ち消し */
}
@media (any-hover: hover) {
  .footer-cta__btn:hover {
    color: #fff;
  }
}
.copyright {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.3rem;
}

/* トップへ戻るボタン
  ----------------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
}

/* トップへ戻る（丸） */
.back-to-top {
  position: fixed;
  right: 2rem;
  bottom: calc(2rem + env(safe-area-inset-bottom));
  z-index: 1000;
  width: 5rem;
  height: 5rem;
  border: none;
  border-radius: 9999px;
  background: #5fcae3;
  /* 指定色 */
  color: #fff;
  /* アイコン白 */
  display: grid;
  place-items: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  /* 初期は隠す */
  opacity: 0;
  transform: translateY(0.6rem);
  pointer-events: none;
  /* ふわっと表示＆ホバーで浮く */
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  /* 影（通常） */
  box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.16);
  /* フォーカス可視化 */
  /* 小さめ画面で少し縮小（任意） */
}
.back-to-top.is-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  transform: translateY(-0.2rem);
  /* 少し浮く */
  box-shadow: 0 1rem 2.4rem rgba(0, 0, 0, 0.22);
}
.back-to-top:active {
  transform: translateY(0);
  /* 押した感 */
  box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.18);
}
.back-to-top:focus-visible {
  outline: 0.3rem solid rgba(255, 255, 255, 0.85);
  outline-offset: 0.2rem;
}
@media (max-width: 374px) {
  .back-to-top {
    width: 4.4rem;
    height: 4.4rem;
  }
}

/* 中のアイコン（Font Awesome） */
.back-to-top i {
  font-size: 2rem;
  line-height: 1;
}

/* PCで位置を少しだけ広げたい場合（m以上をPC想定） */
@media (min-width: 768px) {
  .back-to-top {
    right: 3rem;
    bottom: calc(3rem + env(safe-area-inset-bottom));
  }
}
/* 動きを苦手とする設定のユーザー配慮 */
@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: none;
  }
}
.btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f7b0c8;
  font-weight: 700;
  font-size: 1.5rem;
  border-radius: 4rem;
  color: #fff;
  padding-block: 0.3rem;
  margin: 0 auto;
  gap: 1.7rem;
}
@media (min-width: 768px) {
  .btn {
    width: 39.7rem;
    font-size: 3rem;
    line-height: 1;
    letter-spacing: 0;
    padding: 1rem;
  }
}
.btn img {
  position: absolute;
  width: 1.8rem;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .btn img {
    width: 2.4rem;
    right: 1.3rem;
  }
}

@media (any-hover: hover) {
  .btn:hover,
  .footer-cta__btn:hover,
  .btn--line:hover,
  .btn--mail:hover {
    animation: btn-bounce 0.4s ease forwards;
    background-color: #f78ca3;
    opacity: 1;
  }
}
@keyframes btn-bounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
    /* ちょっと大きく */
  }
  70% {
    transform: scale(1.03);
    /* 少し戻る */
  }
  100% {
    transform: scale(1.04);
    /* 最終位置で軽く膨らんだまま */
  }
}
.cta-contact__button {
  margin-top: 0.7rem;
}
@media (min-width: 768px) {
  .cta-contact__button {
    margin-top: 1.3rem;
  }
}

.cta-contact__btn {
  width: 12.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f7b0c8;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.05em;
  border-radius: 0.3rem;
  color: #fff;
  margin: 0 auto;
  padding: 0.4rem 0;
}
@media (min-width: 768px) {
  .cta-contact__btn {
    width: 33.6rem;
    font-size: 3.4rem;
    border-radius: 0.9rem;
    padding: 1.3rem 0;
  }
}

.page-title {
  font-family: "Gothic A1", "Helvetica Neue", Arial, sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 768px) {
  .page-title {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 5rem;
    letter-spacing: 0;
  }
}
.page-title::after {
  content: "";
  display: block;
  width: 14.6rem;
  height: 3px;
  background-color: #5fcae3;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .page-title::after {
    width: 30.1rem;
    height: 5px;
  }
}

@media (min-width: 768px) {
  .page-title--mb {
    margin-bottom: 10rem;
  }
}

/* ================================
   ご依頼の流れセクション（c-flow版）
================================ */
.c-flow {
  margin: 3.6rem 0;
}
@media (min-width: 768px) {
  .c-flow {
    margin: 8rem 0;
  }
}
.c-flow__inner {
  padding-inline: 1.5rem;
}
.c-flow__list {
  background-color: #e6fcff;
  box-shadow: 0px 1.43px 5.54px 0px rgba(0, 0, 0, 0.1098039216);
  padding: 1.8rem 0.9rem 1.8rem 1.7rem;
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media (min-width: 768px) {
  .c-flow__list {
    max-width: 95.6rem;
    margin: 3.5rem auto 0;
    box-shadow: 0px 3.8px 14.71px 0px rgba(0, 0, 0, 0.1098039216);
    padding: 4.9rem 2.4rem 5.8rem 4.7rem;
    gap: 2.1rem;
  }
}
.c-flow__item {
  position: relative;
  box-shadow: 0px 1.43px 1.43px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 0.4rem;
  /* 色別修飾子（背景色＋番号色） */
}
@media (min-width: 768px) {
  .c-flow__item {
    box-shadow: 0px 3.8px 3.8px 0px rgba(0, 0, 0, 0.2509803922);
    border-radius: 1.2rem;
  }
}
.c-flow__item.is-accent-pink {
  background-color: #d06d86;
}
.c-flow__item.is-accent-pink .c-flow__number {
  color: #d06d86;
}
.c-flow__item.is-accent-green {
  background-color: #8bcb8d;
}
.c-flow__item.is-accent-green .c-flow__number {
  color: #8bcb8d;
}
.c-flow__item.is-accent-blue {
  background-color: #35aba5;
}
.c-flow__item.is-accent-blue .c-flow__number {
  color: #35aba5;
}
.c-flow__item.is-accent-orange {
  background-color: #eea040;
}
.c-flow__item.is-accent-orange .c-flow__number {
  color: #eea040;
}
.c-flow__item.is-accent-navy {
  background-color: #18acd2;
}
.c-flow__item.is-accent-navy .c-flow__number {
  color: #18acd2;
}
.c-flow__item.is-accent-purple {
  background-color: #dd7b9d;
}
.c-flow__item.is-accent-purple .c-flow__number {
  color: #dd7b9d;
}
.c-flow__number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.6rem;
  height: 2.6rem;
  position: absolute;
  font-size: 1.1rem;
  font-weight: 700;
  background-color: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: -1.3rem;
  box-shadow: 0px 1.43px 1.43px 0px rgba(0, 0, 0, 0.2509803922);
}
@media (min-width: 768px) {
  .c-flow__number {
    width: 7rem;
    height: 7rem;
    font-size: 3.1rem;
    left: -3.4rem;
    box-shadow: 0px 3.8px 3.8px 0px rgba(0, 0, 0, 0.2509803922);
  }
}
.c-flow__content {
  display: flex;
  align-items: center;
  padding: 0.1rem 0.1rem 0.1rem 0;
}
@media (min-width: 768px) {
  .c-flow__content {
    padding: 0.3rem 0.3rem 0.3rem 0;
  }
}
.c-flow__item-title {
  flex: 1;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
}
@media (min-width: 768px) {
  .c-flow__item-title {
    font-size: 3.7rem;
  }
}
.c-flow__text {
  display: flex;
  align-items: center;
  width: 21.5rem;
  height: 3.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  color: #31abc6;
  background-color: #fff;
  border-radius: 0.3rem;
  padding: 0.2rem 0.4rem;
}
@media (min-width: 768px) {
  .c-flow__text {
    width: 58rem;
    height: 9.3rem;
    border-radius: 0.9rem;
    font-size: 3rem;
    padding: 0.2rem 0 0.2rem 1.1rem;
  }
}

/* ========================================
   共通
   ======================================== */
.section__title {
  font-family: "Gothic A1", "Helvetica Neue", Arial, sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #B5E1EB;
  text-align: center;
}
@media (min-width: 768px) {
  .section__title {
    font-size: 10rem;
  }
}

.section__subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #3592C3;
  text-align: center;
}
@media (min-width: 768px) {
  .section__subtitle {
    font-size: 5rem;
  }
}

/* ========================================
   FV）
   ======================================== */
.top-fv {
  margin-top: -2.8rem;
}

.top-fv__inner {
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .top-fv__inner {
    padding-inline: 6rem;
  }
}

.top-fv__video {
  max-width: 1079px;
  width: 100%;
  margin-inline: auto;
}

/* ========================================
   top-intro：イントロセクション（全体）
   ======================================== */
@media (min-width: 768px) {
  .top-intro {
    margin-top: 4.5rem;
  }
}

.top-intro__inner {
  max-width: 1200px;
  width: 100%;
  padding-inline: 1.5rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .top-intro__inner {
    padding-inline: 12rem;
  }
}

/* ========================================
   top-intro-badges：上段バッジ群
   ======================================== */
.top-intro-badges {
  display: flex;
  justify-content: space-between;
}

.top-intro-badges__item {
  width: 11.5rem;
  height: 5.9rem;
  border-radius: 0.4rem;
  padding: 0.3rem 0.2rem 0.2rem;
}
@media (min-width: 768px) {
  .top-intro-badges__item {
    width: 29.6rem;
    height: 15.3rem;
    border-radius: 0.9rem;
    padding: 0.4rem 0.4rem 0.4rem;
  }
}
.top-intro-badges__item--free {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: #F7B0C8;
  color: #fff;
  text-align: center;
  padding-top: 0.4rem;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .top-intro-badges__item--free {
    padding-top: 1rem;
  }
}
.top-intro-badges__item--covid {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #3592C3;
  color: #3592C3;
  text-align: center;
  padding-top: 0.6rem;
}
@media (min-width: 768px) {
  .top-intro-badges__item--covid {
    padding-top: 1.5rem;
  }
}
.top-intro-badges__item--quality {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #80A37C;
  text-align: center;
}
@media (min-width: 768px) {
  .top-intro-badges__item--quality {
    padding-top: 0.9rem;
  }
}

.top-intro-badges__title--estimate {
  writing-mode: vertical-rl;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .top-intro-badges__title--estimate {
    font-size: 4.3rem;
  }
}
.top-intro-badges__title--quality {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  /* transform を効かせるため */
  transform: scaleY(1.8);
  /* Y方向に130%に伸ばす */
  transform-origin: center;
  /* 変形の基準位置（中央） */
}
@media (min-width: 768px) {
  .top-intro-badges__title--quality {
    font-size: 6.5rem;
    transform: scaleY(1.5);
    line-height: 1;
    padding-top: 1.1rem;
  }
}

.top-intro-badges__content {
  line-height: 1;
}

.top-intro-badges__em {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}
@media (min-width: 768px) {
  .top-intro-badges__em {
    font-size: 9.1rem;
  }
}

.top-intro-badges__note {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  background-color: #fff;
  border-radius: 0 0 0.4rem 0.4rem;
  padding-block: 0.3rem;
}
@media (min-width: 768px) {
  .top-intro-badges__note {
    font-size: 2.9rem;
    border-radius: 0 0 0.7rem 0.7rem;
    padding-block: 0.8rem;
  }
}
.top-intro-badges__note--free {
  width: 7.9rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #F7B0C8;
  background-color: #fff;
  border-radius: 0.4rem;
  padding-block: 0.3rem;
  margin-top: 0.2rem;
}
@media (min-width: 768px) {
  .top-intro-badges__note--free {
    width: 20.3rem;
    border-radius: 0.9rem;
    font-size: 2.2rem;
    padding-block: 0.7rem;
    margin-top: 0.9rem;
  }
}
.top-intro-badges__note--quality {
  color: #80A37C;
  letter-spacing: 0.25em;
}

/* コロナ対策アイコン */
.top-intro-covid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
}
@media (min-width: 768px) {
  .top-intro-covid {
    gap: 0.9rem;
  }
}

.top-intro-covid__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #fff;
  padding-top: 0.3rem;
}
@media (min-width: 768px) {
  .top-intro-covid__item {
    width: 7.6rem;
    height: 7.6rem;
    justify-content: flex-start;
    padding-top: 0.9rem;
  }
}

.top-intro-covid__label {
  display: none;
}
@media (min-width: 768px) {
  .top-intro-covid__label {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
  }
}

.top-intro-covid__icon--mask img {
  width: 2.2rem;
  margin-top: -0.3rem;
}
@media (min-width: 768px) {
  .top-intro-covid__icon--mask img {
    width: 5.1rem;
    margin-top: -0.7rem;
  }
}
.top-intro-covid__icon--thermometer img {
  width: 2rem;
  margin-top: -0.2rem;
}
@media (min-width: 768px) {
  .top-intro-covid__icon--thermometer img {
    width: 5.1rem;
    margin-top: -0.7rem;
  }
}
.top-intro-covid__icon--spray img {
  width: 2.2rem;
  margin-right: 0.4rem;
}
@media (min-width: 768px) {
  .top-intro-covid__icon--spray img {
    width: 3.7rem;
  }
}

/* ========================================
   top-intro-services：下段4枚（画像＋ラベル重ね）
   ======================================== */
.top-intro-services {
  display: flex;
  margin-top: 5rem;
}
@media (min-width: 768px) {
  .top-intro-services {
    justify-content: space-between;
  }
}

.top-intro-services__figure {
  position: relative;
  width: 17.6rem;
}
@media (min-width: 768px) {
  .top-intro-services__figure {
    width: 100%;
  }
}

.top-intro-services__img {
  width: 100%;
  height: 24.1rem;
  border-radius: 0.4rem;
}
@media (min-width: 768px) {
  .top-intro-services__img {
    width: 23.5rem;
    height: 33.2rem;
  }
}

.top-intro-services__label {
  position: absolute;
  width: 12rem;
  background-color: #E6FCFF;
  border-radius: 3.4rem;
  box-shadow: 0 1.79px 4.69px rgba(0, 0, 0, 0.25);
  bottom: 0.1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (min-width: 768px) {
  .top-intro-services__label {
    width: 21.2rem;
    border-radius: 9.1rem;
    box-shadow: 0 4.78px 12.51px rgba(0, 0, 0, 0.25);
    bottom: 0.4rem;
    font-size: 2.9rem;
    line-height: 1;
    padding-block: 0.8rem;
  }
}

/* ========================================
   top-intro-services：PC時のふわっと出現
   ======================================== */
@media (min-width: 768px) {
  .top-intro-services__item {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 1.5s ease, transform 1.5s ease;
  }
  .top-intro-services__item.is-revealed {
    opacity: 1;
    transform: none;
  }
}
/* ========================================
   top-intro-staff：イントロ内 スタッフ紹介
   ======================================== */
.top-intro-staff {
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .top-intro-staff {
    margin-top: 5.7rem;
  }
}

.top-intro-staff__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #37D2E8;
  text-align: center;
}
@media (min-width: 768px) {
  .top-intro-staff__title {
    position: relative;
    font-size: 4rem;
  }
}
.top-intro-staff__title::after {
  content: "";
  display: block;
  width: 12rem;
  height: 0.5em;
  background-color: #FFFD85;
  margin-inline: auto;
  margin-top: -0.9rem;
}
@media (min-width: 768px) {
  .top-intro-staff__title::after {
    position: absolute;
    width: 46.2rem;
    height: 1.5rem;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-51%);
    z-index: -1;
  }
}

.top-intro-staff__inner {
  padding-top: 1.85rem;
  padding-bottom: 1.9rem;
  padding-inline: 1.5rem;
  margin-top: 1rem;
  background-color: #C9F7FE;
}
@media (min-width: 768px) {
  .top-intro-staff__inner {
    padding: 3.4rem 12rem 3rem;
  }
}

.top-intro-staff__list {
  display: flex;
  justify-content: space-between;
  max-width: 960px;
  width: 100%;
  margin-inline: auto;
}

.top-intro-staff__img {
  width: 11rem;
  height: 14.6rem;
}
@media (min-width: 768px) {
  .top-intro-staff__img {
    width: 29.4rem;
    height: 39.1rem;
  }
}

.top-intro-staff__actions {
  width: 25rem;
  margin-inline: auto;
  margin-top: 2.6rem;
}
@media (min-width: 768px) {
  .top-intro-staff__actions {
    width: unset;
  }
}

/* ========================================
   top-service：サービス一覧
   ======================================== */
.top-service {
  padding-block: 4.5rem 5.5rem;
}
@media (min-width: 768px) {
  .top-service {
    padding-block: 10.5rem 5rem;
  }
}

.top-service__inner {
  padding-inline: 4.5rem;
}

.top-service__list {
  display: grid;
  justify-content: center;
  grid-template-columns: 30rem;
  gap: 2rem;
  margin-block: 3rem;
}
@media (min-width: 768px) {
  .top-service__list {
    grid-template-columns: repeat(3, 29.3rem);
    row-gap: 3.7rem;
    -moz-column-gap: 3.8rem;
         column-gap: 3.8rem;
    margin-bottom: 7rem;
  }
}

.top-service__item {
  background-color: #5FCAE3;
  border-radius: 1.2rem;
  padding: 0.3rem;
}

.top-service__img {
  width: 100%;
  border-radius: 0.9rem 0.9rem 0 0;
}
@media (min-width: 768px) {
  .top-service__img {
    height: 18.8rem;
  }
}

.top-service__caption {
  position: relative;
  height: 10rem;
}
@media (min-width: 768px) {
  .top-service__caption {
    height: 12.4rem;
  }
}
.top-service__caption img {
  position: absolute;
  width: 2.5rem;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .top-service__caption img {
    width: 3.4rem;
    bottom: 1.1rem;
  }
}

.top-service__text {
  display: flex;
  height: 7rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .top-service__text {
    height: 7.8rem;
  }
}

.top-service__label {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.top-service__note {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.top-service__actions {
  width: 25rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .top-service__actions {
    width: unset;
  }
}

/* ========================================
   top-service：カード画像ホバー拡大（any-hover対応）
   ======================================== */
.top-service__figure {
  overflow: hidden;
  border-radius: 0.9rem 0.9rem 0 0;
}

.top-service__img {
  display: block;
  width: 100%;
  height: 19.1rem;
  transition: transform 0.5s ease;
  transform-origin: center center;
  will-change: transform;
}

/* ホバー環境だけズーム */
@media (any-hover: hover) {
  .top-service__link:hover .top-service__img,
  .top-service__item:focus-within .top-service__img {
    transform: scale(1.06);
  }
}
/* 動きが苦手な人向け */
@media (prefers-reduced-motion: reduce) {
  .top-service__img {
    transition: none;
  }
}
/* ==============================
   料金（top-price）
============================== */
.top-price {
  padding-block: 4.5rem 5.5rem;
  background-color: #F4FDFF;
}

.top-price__inner {
  padding-inline: 4.5rem;
}

.top-price__list {
  display: grid;
  justify-content: center;
  grid-template-columns: 30rem;
  gap: 2rem;
  margin-block: 3rem;
}
@media (min-width: 768px) {
  .top-price__list {
    grid-template-columns: repeat(3, 29.7rem);
    row-gap: 7rem;
    -moz-column-gap: 3.8rem;
         column-gap: 3.8rem;
    margin-bottom: 7rem;
  }
}

.top-price__item {
  background-color: #5FCAE3;
  border-radius: 0.9rem;
  padding: 0.3rem;
}

.top-price__img {
  width: 100%;
  border-radius: 0.5rem 0.5rem 0 0;
}

.top-price__caption {
  color: #5FCAE3;
  text-align: center;
  background-color: #fff;
  border-top: 0.3rem solid #5FCAE3;
  border-radius: 0 0 0.5rem 0.5rem;
  padding-block: 1.7rem;
}
.top-price__caption span {
  display: block;
  line-height: 1;
}

.top-price__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .top-price__title {
    font-size: 3.5rem;
    margin-bottom: 1.4rem;
  }
}

.top-price__cost {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}
@media (min-width: 768px) {
  .top-price__cost {
    font-size: 2.9rem;
  }
}

.top-price__actions {
  width: 25rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .top-price__actions {
    width: unset;
  }
}

/* ==============================
   エリア（top-area）
   ============================== */
.top-area {
  background-color: #E4F5FF;
  padding-block: 4.5rem 5.5rem;
}
@media (min-width: 768px) {
  .top-area {
    padding-block: 10.5rem 5rem;
  }
}

/* --- リード文 --- */
.top-area__lead {
  margin-top: 2.3rem;
}
@media (min-width: 768px) {
  .top-area__lead {
    margin-top: 4.8rem;
  }
}

.top-area__line {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.35;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .top-area__line {
    font-size: 4rem;
  }
}

.top-area__note {
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: #F7B0C8;
  text-align: center;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .top-area__note {
    width: 78.5rem;
    font-size: 4rem;
    margin-top: 5.5rem;
    margin-inline: auto;
  }
}

.top-area__slash-left,
.top-area__slash-right {
  position: absolute;
  display: inline-block;
  font-size: 2.2rem;
  line-height: 1;
  transform-origin: center;
}
@media (min-width: 768px) {
  .top-area__slash-left,
  .top-area__slash-right {
    font-size: 4.4rem;
  }
}

/* 左のスラッシュを立てる（角度を調整） */
.top-area__slash-left {
  transform: skewX(-27deg);
  top: 0;
  left: 2.4rem;
}

/* 右のスラッシュを立てる */
.top-area__slash-right {
  transform: skewX(27deg);
  top: 0;
  right: 2.4rem;
}

/* --- マップ --- */
.top-area__map {
  margin-top: 1.1rem;
}
@media (min-width: 768px) {
  .top-area__map {
    margin-top: 4.1rem;
  }
}

.top-area__img {
  width: 34.4rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .top-area__img {
    width: 87.8rem;
  }
}

/* ==============================
   作業事例（top-work）
   ============================== */
.top-work {
  padding-block: 4.5rem 5.5rem;
}
@media (min-width: 768px) {
  .top-work {
    padding-block: 10.5rem 5rem;
  }
}

/* --- リスト/アイテム --- */
.top-work__slider {
  margin-block: 3rem;
}
@media (min-width: 768px) {
  .top-work__slider {
    margin-block: 3.8rem 7rem;
  }
}

@media (min-width: 768px) {
  .top-work__list {
    display: flex;
    justify-content: center;
    gap: 1.9rem;
  }
}

.top-work__figure {
  width: 30.7rem;
  margin-inline: auto;
}

.top-work__img {
  width: 100%;
}

.top-work__label {
  width: 30.7rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 1.5rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .top-work__label {
    font-size: 2.5rem;
    margin-top: 2rem;
  }
}

/* --- ボタン --- */
.top-work__actions {
  width: 25rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .top-work__actions {
    width: unset;
  }
}

/* ==============================
   よくある質問（top-faq）
   ※page-q-a.phpにもそのまま使用してます
   ============================== */
.top-faq {
  background-color: #F4FEFF;
  padding-block: 4.5rem 5.5rem;
}
@media (min-width: 768px) {
  .top-faq {
    padding-block: 10.5rem 5rem;
  }
}

.top-faq__list {
  margin-block: 6rem 4rem;
}
@media (min-width: 768px) {
  .top-faq__list {
    width: 95.7rem;
    margin-inline: auto;
    margin-block: 6rem 8.3rem;
  }
}

.top-faq__item:not(:last-child) {
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .top-faq__item:not(:last-child) {
    margin-bottom: 6.9rem;
  }
}

.top-faq__q {
  position: relative;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .top-faq__q {
    margin-bottom: 3.4rem;
  }
}

.top-faq__a {
  position: relative;
}

.top-faq__illust {
  position: absolute;
}

.top-faq__illust--q-young {
  left: 2.9rem;
}
@media (min-width: 768px) {
  .top-faq__illust--q-young {
    left: 0;
  }
}
.top-faq__illust--q-young img {
  width: 5.7rem;
}
@media (min-width: 768px) {
  .top-faq__illust--q-young img {
    width: 15.3rem;
  }
}

.top-faq__illust--q-old {
  left: 2.6rem;
}
@media (min-width: 768px) {
  .top-faq__illust--q-old {
    left: 0;
  }
}
.top-faq__illust--q-old img {
  width: 5.6rem;
}
@media (min-width: 768px) {
  .top-faq__illust--q-old img {
    width: 15rem;
  }
}

.top-faq__illust--a {
  left: 2rem;
}
@media (min-width: 768px) {
  .top-faq__illust--a {
    left: unset;
    right: 0;
    bottom: 0;
  }
}
.top-faq__illust--a img {
  width: 7.4rem;
}
@media (min-width: 768px) {
  .top-faq__illust--a img {
    width: 19.9rem;
  }
}

.top-faq__bubble {
  width: 30rem;
  border-radius: 0.4rem;
  display: flex;
  align-items: baseline;
  margin-left: 6.4rem;
  padding-block: 1rem;
  padding-inline: 3rem 0.9rem;
}
@media (min-width: 768px) {
  .top-faq__bubble {
    border-radius: 1.2rem;
    align-items: flex-start;
    padding-block: 2.7rem;
    padding-inline: 8.7rem 0.9rem;
  }
}

.top-faq__bubble--q {
  background-color: #E6FCFF;
  box-shadow: 0.27rem 0.37rem 0.18rem rgba(0, 0, 0, 0.11);
}
@media (min-width: 768px) {
  .top-faq__bubble--q {
    width: 74.4rem;
    box-shadow: 0.76rem 1.01rem 0.5rem rgba(0, 0, 0, 0.11);
    margin-left: 10.3rem;
  }
}

.top-faq__bubble--a {
  background-color: #FFE8F0;
  box-shadow: 0.2rem 0.25rem 0.1rem rgba(0, 0, 0, 0.11);
}
@media (min-width: 768px) {
  .top-faq__bubble--a {
    width: 74.7rem;
    box-shadow: 0.55rem 0.74rem 0.37rem rgba(0, 0, 0, 0.11);
    margin-left: 14.3rem;
    padding-inline: 5.1rem 0.9rem;
  }
}

.top-faq__badge {
  font-size: 1.2rem;
  font-weight: 700;
  margin-right: 1rem;
}
@media (min-width: 768px) {
  .top-faq__badge {
    font-size: 3.8rem;
    margin-right: 2rem;
    line-height: 1;
  }
}

.top-faq__badge--q {
  color: #5FCAE3;
}

.top-faq__badge--a {
  color: #F7B0C8;
}

.top-faq__text {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .top-faq__text {
    font-size: 2.3rem;
    margin-top: 0.4rem;
  }
}

.top-faq__text--a span {
  display: block;
  margin-top: 2rem;
}

span.top-faq__text--note {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 1.3rem;
}
@media (min-width: 768px) {
  span.top-faq__text--note {
    font-size: 1.8rem;
    line-height: 1.2777777778;
  }
}

.top-faq__actions {
  width: 25rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .top-faq__actions {
    width: unset;
  }
}

.top__flow {
  margin-block: 4rem 6rem;
}

/* ===== News（とりあえず版 / サムネ常時表示）===== */
.top-news {
  padding: 4.8rem 0;
  background: linear-gradient(180deg, #51DDF1 -5.93%, #FFFFFF 39.34%);
}

.top-news__inner {
  max-width: 82rem;
  margin: 0 auto;
  padding: 3.2rem 2rem 2.4rem;
}

/* タイトル */
.top-news__title {
  text-align: center;
  color: #fff;
}

/* リスト */
.top-news__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-news__item {
  padding: 2rem 0;
  border-top: 0.1rem solid rgba(0, 0, 0, 0.2);
}

.top-news__item:first-child {
  border-top: none;
}

/* 行リンク（SPは2カラム相当でサムネ見せる） */
.top-news__link {
  display: grid;
  grid-template-columns: 9rem 1fr;
  /* date | right side */
  grid-template-areas: "date thumb" "date content";
  -moz-column-gap: 1.6rem;
       column-gap: 1.6rem;
  row-gap: 1.2rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

/* 日付 */
.top-news__date {
  grid-area: date;
  display: grid;
  row-gap: 0.4rem;
  justify-items: start;
}

.top-news__year {
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  color: #7c8b95;
}

.top-news__md {
  font-weight: 800;
  font-size: 3rem;
  line-height: 1.1;
}

.top-news__weekday {
  font-size: 1.2rem;
  color: #7c8b95;
}

/* サムネ（常時表示） */
.top-news__thumb {
  grid-area: thumb;
  width: 100%;
  border-radius: 0.6rem;
  overflow: hidden;
  background: #f3f6f8;
}

.top-news__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}

/* 本文 */
.top-news__content {
  grid-area: content;
  display: grid;
  row-gap: 0.6rem;
}

.top-news__post-title {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.4;
}

.top-news__excerpt {
  font-size: 1.4rem;
  color: #5a6a72;
}

/* もっと見る */
.top-news__more {
  text-align: center;
  margin: 2.8rem 0 0.8rem;
}

.button.button--round {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 2.8rem;
  border-radius: 99.9rem;
  background: #f4b5c7;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.12);
}

.button.button--round:hover {
  opacity: 0.9;
}

/* ===== PC（スマホ→PCへの切替だけ @include mq(m)）===== */
@media (min-width: 768px) {
  .top-news__item {
    padding: 2.4rem 0;
  }
  .top-news__link {
    grid-template-columns: 12rem 1fr 16rem;
    /* date | content | thumb */
    grid-template-areas: "date content thumb";
    -moz-column-gap: 2.4rem;
         column-gap: 2.4rem;
    row-gap: 0;
  }
  .top-news__md {
    font-size: 4rem;
  }
  .top-news__post-title {
    font-size: 2rem;
  }
  .top-news__thumb {
    max-width: 24rem;
    justify-self: end;
  }
}
.contact__inner {
  max-width: 94rem;
  padding-inline: 3rem;
  margin-inline: auto;
}

.contact__text {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 1.6rem 0 0.6rem;
  color: #333;
}

.contact-name__input,
.contact-mail__input,
.contact-title__input,
.contact-textarea__input {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1.4rem;
  line-height: 1.5;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-name__input:focus,
.contact-mail__input:focus,
.contact-title__input:focus,
.contact-textarea__input:focus {
  border-color: #31abc6;
  box-shadow: 0 0 0 3px rgba(49, 171, 198, 0.2);
  outline: none;
}

.contact-textarea__input {
  min-height: 160px;
  resize: vertical;
}

.contact-submit {
  width: 20rem;
  display: block;
  margin-top: 2rem;
  padding: 1rem 3rem;
  margin-inline: auto;
  background: #31abc6;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s, opacity 0.3s;
}
.contact-submit:hover {
  background: #2790a9;
}
.contact-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* エラーメッセージ / 成功メッセージ */
.wpcf7-not-valid-tip {
  margin-top: 0.4rem;
  font-size: 1.3rem;
  color: #d9534f;
}

.wpcf7-response-output {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 6px;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: center;
}

.wpcf7-mail-sent-ok {
  border: 1px solid #31abc6;
  background: #e8f9fc;
  color: #10798a;
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
  border: 1px solid #d9534f;
  background: #fdeaea;
  color: #b94a48;
}

.recaptcha-notice {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #666;
  text-align: center;
  margin-top: 1rem;
}
.recaptcha-notice a {
  color: #3592c3;
  text-decoration: underline;
}
.recaptcha-notice a:hover {
  text-decoration: none;
}

.notfound__inner {
  margin-top: 5rem;
  padding-inline: 4rem;
  margin-inline: auto;
}

.notfound__subtitle {
  margin-top: 2.5rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .notfound__subtitle {
    margin-top: 5rem;
  }
}

.notfound__actions {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.collect__inner {
  padding-inline: 2rem;
}
@media (min-width: 768px) {
  .collect__inner {
    padding-inline: 3rem;
  }
}

.collect__intro {
  margin-top: 1.3rem;
  text-align: center;
}
@media (min-width: 768px) {
  .collect__intro {
    margin-top: 2.7rem;
  }
}

.collect-intro__list {
  width: 29.9rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  row-gap: 0.8rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .collect-intro__list {
    width: 100%;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }
}

.collect-intro__item {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
}
@media (min-width: 768px) {
  .collect-intro__item {
    font-size: 2.5rem;
    font-weight: 700;
  }
}

.collect-intro__text {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .collect-intro__text {
    font-size: 2.5rem;
    margin-top: 1.5rem;
  }
}

/* ========================================
   Price Size Block
   サイズ別料金
======================================== */
.price-section {
  margin-top: 2.3rem;
}

.price-section__inner {
  max-width: 88rem;
  margin: 0 auto;
}

.price-size {
  background-color: #31abc6;
  border-radius: 0.6rem;
  padding: 2.1rem;
}
@media (min-width: 768px) {
  .price-size {
    border-radius: 2rem;
    padding: 1.8rem 2.1rem 0.4rem;
  }
}

.price-size__title-container {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
@media (min-width: 768px) {
  .price-size__title-container {
    flex-direction: row;
    gap: 2.7rem;
  }
}

.price-size__title {
  width: 20.7rem;
  background-color: #fff;
  border-radius: 7.7rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  padding: 0.7rem 0;
}
@media (min-width: 768px) {
  .price-size__title {
    width: 31.8rem;
    border-radius: 15rem;
    font-size: 3rem;
    padding: 1.3rem 0;
  }
}

.price-size__price {
  width: 20.7rem;
  background-color: #fff;
  border-radius: 7.7rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  padding: 0.45rem 0;
}
@media (min-width: 768px) {
  .price-size__price {
    width: 39rem;
    border-radius: 15rem;
    font-size: 3rem;
    padding: 1.3rem 0;
  }
}

.price-size__amount {
  color: #3592c3;
}

.price-size__amount-num {
  font-size: 2rem;
}
@media (min-width: 768px) {
  .price-size__amount-num {
    font-size: 3rem;
  }
}

.price-size__amount-unit {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .price-size__amount-unit {
    font-size: 3rem;
  }
}

.price-size__tax {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .price-size__tax {
    font-size: 3rem;
  }
}

.price-size__example {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .price-size__example {
    font-size: 1.5rem;
    letter-spacing: 0;
    text-align: end;
    margin-top: 1rem;
    margin-right: 3rem;
  }
}

@media (min-width: 768px) {
  .price-size__content {
    display: flex;
    align-items: center;
    gap: 4.4rem;
  }
}

.price-size__features {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 1.3rem;
}
@media (min-width: 768px) {
  .price-size__features {
    margin-top: 0;
    gap: 1.2rem;
  }
}

.price-size__feature {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
@media (min-width: 768px) {
  .price-size__feature {
    gap: 1.1rem;
  }
}
.price-size__feature img {
  width: 2.5rem;
}
@media (min-width: 768px) {
  .price-size__feature img {
    width: 3.3rem;
  }
}

.price-size__text {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .price-size__text {
    font-size: 2rem;
  }
}

.price-size__image {
  margin: 1.8rem auto 0;
}
@media (min-width: 768px) {
  .price-size__image {
    margin: 0;
  }
}
.price-size__image img {
  width: 100%;
}
@media (min-width: 768px) {
  .price-size__image img {
    width: 35.4rem;
  }
}

.price-size__note {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  margin-top: 0.7rem;
  margin-left: 1rem;
}
@media (min-width: 768px) {
  .price-size__note {
    font-size: 2.5rem;
    margin-top: 1.5rem;
    margin-left: 1.8rem;
  }
}

/* ========================================
   間取りでの参考価格
======================================== */
.price-layout {
  margin-top: 5rem;
}

.price-layout__inner {
  max-width: 88rem;
  margin: 0 auto;
  background-color: #5fcae3;
  border-radius: 0.6rem;
  padding: 1.9rem 1.6rem 3.6rem;
}
@media (min-width: 768px) {
  .price-layout__inner {
    border-radius: 2rem;
    padding: 2.1rem 3.6rem;
  }
}

.price-layout__title {
  width: 19.2rem;
  background-color: #fff;
  border-radius: 7.7rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #5fcae3;
  margin: 0 auto;
  padding: 0.7rem 0;
}
@media (min-width: 768px) {
  .price-layout__title {
    width: 37.2rem;
    font-size: 3rem;
    margin: 0;
    padding: 1.3rem 0;
  }
}

.price-layout__item {
  padding: 0 1.4rem 2rem;
}
@media (min-width: 768px) {
  .price-layout__item {
    padding: 0 0 1rem;
  }
}

.price-layout__item:not(:last-of-type) {
  border-bottom: 2px solid #fff;
}
@media (min-width: 768px) {
  .price-layout__item:not(:last-of-type) {
    border-bottom: 4px solid #fff;
  }
}

.price-layout__content {
  position: relative;
  margin: 3rem 0 0.8rem;
}
@media (min-width: 768px) {
  .price-layout__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.price-layout__head {
  color: #fff;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .price-layout__head {
    display: flex;
    align-items: center;
    gap: 7rem;
  }
}

.price-layout__room {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .price-layout__room {
    width: 10.9rem;
    font-size: 2.5rem;
  }
}

.price-layout__amount {
  margin-top: 1.3rem;
}
@media (min-width: 768px) {
  .price-layout__amount {
    margin-top: 0;
  }
}

.price-layout__amount-num {
  font-size: 2.1rem;
}
@media (min-width: 768px) {
  .price-layout__amount-num {
    font-size: 4rem;
  }
}

.price-layout__amount-unit {
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  .price-layout__amount-unit {
    font-size: 2.5rem;
  }
}

.price-layout__icon {
  position: absolute;
  width: 7.5rem;
  top: -2.8rem;
  right: 0;
}
@media (min-width: 768px) {
  .price-layout__icon {
    position: relative;
    width: 10rem;
    top: 0;
  }
}

.price-layout__note {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  margin-top: 0.7rem;
}
@media (min-width: 768px) {
  .price-layout__note {
    font-size: 2.5rem;
    margin-top: 1.4rem;
  }
}

.price-layout__works {
  margin-top: 2.2rem;
  margin-inline: 2.7rem;
}
@media (min-width: 768px) {
  .price-layout__works {
    margin-top: 5.6rem;
    margin-inline: 0;
  }
}

.price-layout__works-title {
  width: 12.6rem;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.05em;
  margin: 0 auto;
  border-bottom: 3px solid #fff;
  padding-bottom: 0.2rem;
}

.price-layout__gallery {
  margin-top: 2.7rem;
}
@media (min-width: 768px) {
  .price-layout__gallery {
    margin-top: 5.8rem;
    display: flex;
    justify-content: space-between;
  }
}

.price-layout__gallery-item {
  display: flex;
  justify-content: center;
  margin-bottom: 2.7rem;
}
@media (min-width: 768px) {
  .price-layout__gallery-item {
    margin-bottom: 4rem;
  }
}
.price-layout__gallery-item img {
  width: 100%;
  border-radius: 1.1rem;
}
@media (min-width: 768px) {
  .price-layout__gallery-item img {
    width: 38.3rem;
    border-radius: 1.5rem;
  }
}

/* ========================================
   混雑した部屋参考価格
======================================== */
.price-separate {
  max-width: 88rem;
  margin: 5rem auto 0;
}
@media (min-width: 768px) {
  .price-separate {
    margin-top: 6.8rem;
  }
}

.price-separate__inner {
  background-color: #31abc6;
  border-radius: 0.6rem;
  padding: 2.1rem 1.2rem;
}
@media (min-width: 768px) {
  .price-separate__inner {
    border-radius: 2rem;
    padding: 1.8rem 2.1rem 2.5rem;
  }
}

.price-separate__head {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .price-separate__head {
    flex-direction: row;
    justify-content: space-between;
  }
}

.price-separate__title {
  width: 11.4rem;
  background-color: #fff;
  border-radius: 7.7rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  padding: 0.7rem 0;
}
@media (min-width: 768px) {
  .price-separate__title {
    width: 22.1rem;
    border-radius: 15rem;
    font-size: 3rem;
    padding: 1.3rem 0;
  }
}

.price-separate__title-wrap {
  display: flex;
  flex: 1;
  background-color: #fff;
  border-radius: 7.7rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .price-separate__title-wrap {
    flex: unset;
    width: 56.9rem;
  }
}

.price-separate__price {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  padding: 0.45rem 0;
}
@media (min-width: 768px) {
  .price-separate__price {
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    border-radius: 15rem;
    font-size: 2.5rem;
    padding: 1.3rem 0;
  }
}

.price-separate__amount {
  color: #3592c3;
}

.price-separate__amount-num {
  color: #3592c3;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .price-separate__amount-num {
    font-size: 3rem;
  }
}

.price-separate__amount-unit {
  color: #3592c3;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .price-separate__amount-unit {
    font-size: 3rem;
  }
}

.price-separate__tax {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .price-separate__tax {
    font-size: 2.1rem;
  }
}

.price-separate__suffix {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .price-separate__suffix {
    font-size: 2.1rem;
  }
}

@media (min-width: 768px) {
  .price-separate__content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 4rem;
    margin-top: 1.7rem;
  }
}

.price-separate__features {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 1.3rem;
  margin-inline: 0.9rem;
}
@media (min-width: 768px) {
  .price-separate__features {
    margin-top: 0;
    gap: 1.2rem;
    margin-inline: 0;
  }
}

.price-separate__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}
@media (min-width: 768px) {
  .price-separate__feature {
    gap: 1.1rem;
  }
}
.price-separate__feature img {
  width: 2.5rem;
}
@media (min-width: 768px) {
  .price-separate__feature img {
    width: 3.3rem;
  }
}

.price-separate__text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .price-separate__text {
    font-size: 2rem;
  }
}

.price-separate__image {
  width: 14.3rem;
  margin: -0.8rem 1.3rem 0 auto;
}
@media (min-width: 768px) {
  .price-separate__image {
    width: 24.5rem;
    margin: 0;
  }
}
.price-separate__image img {
  width: 100%;
  border-radius: 0.8rem;
}
@media (min-width: 768px) {
  .price-separate__image img {
    border-radius: 1.1rem;
  }
}

.price-separate__note {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  margin-top: 0.7rem;
  margin-left: 1.8rem;
}
@media (min-width: 768px) {
  .price-separate__note {
    font-size: 2.5rem;
    margin-top: 1.5rem;
  }
}

/* ================================
   概算見積もりセクション
================================ */
.estimate-rough {
  max-width: 88rem;
  margin: 3.4rem auto 0;
}
@media (min-width: 768px) {
  .estimate-rough {
    margin-top: 5.2rem;
  }
}

.estimate-rough__card {
  border-radius: 0.6rem 0.6rem 0 0;
  background-color: #31abc6;
  padding: 1.8rem 1.6rem;
}
@media (min-width: 768px) {
  .estimate-rough__card {
    border-radius: 1.5rem 1.5rem 0 0;
    padding: 2.4rem 2.1rem;
  }
}

.estimate-rough__title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  color: #fff;
  border-bottom: 2px solid #fff;
  padding-bottom: 0.9rem;
}
@media (min-width: 768px) {
  .estimate-rough__title {
    font-size: 2.5rem;
  }
}

.estimate-rough__formula {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  color: #fff;
  margin-top: 0.9rem;
}
@media (min-width: 768px) {
  .estimate-rough__formula {
    font-size: 2.3rem;
  }
}

.estimate-rough__summary {
  border-radius: 0 0 0.6rem 0.6rem;
  background-color: #e6fcff;
  padding: 1.8rem 0;
}
@media (min-width: 768px) {
  .estimate-rough__summary {
    border-radius: 0 0 1.5rem 1.5rem;
    padding: 2.1rem 2rem;
  }
}

.estimate-rough__summary-text {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 768px) {
  .estimate-rough__summary-text {
    font-size: 2.3rem;
    text-align: left;
  }
}

/* ================================
   別途加算になる対象物セクション
================================ */
.extra-charge {
  background-color: #e6fcff;
  margin-top: 4.2rem;
}

.extra-charge__inner {
  padding: 6rem 0 3.1rem;
}

.extra-charge__title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (min-width: 768px) {
  .extra-charge__title {
    font-size: 4rem;
  }
}

.extra-charge__note {
  width: 9.4rem;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  margin: 1rem auto 0;
  padding-bottom: 0.7rem;
  border-bottom: 3px solid #5fcae3;
}
@media (min-width: 768px) {
  .extra-charge__note {
    width: 30.1rem;
    font-size: 2rem;
    margin-top: 3.7rem;
    padding-bottom: 1.5rem;
    border-bottom: 5px solid #5fcae3;
  }
}

.extra-charge__list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: 31.2rem;
  margin: 2.2rem auto 0;
  text-align: center;
}
@media (min-width: 768px) {
  .extra-charge__list {
    max-width: 70rem;
    width: 100%;
  }
}

.extra-charge__item {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  background-color: #fff;
  border-radius: 1rem;
  padding: 0.5rem 0;
}
@media (min-width: 768px) {
  .extra-charge__item {
    font-size: 3rem;
  }
}

.extra-charge__subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0;
  margin-top: 2.6rem;
}
@media (min-width: 768px) {
  .extra-charge__subtitle {
    font-size: 3rem;
    margin-top: 7.3rem;
  }
}

.extra-charge__slider {
  margin-top: 1.9rem;
}
@media (min-width: 768px) {
  .extra-charge__slider {
    margin-top: 2.8rem;
  }
}

/* これがないと “止まって→動く” のメリハリが出ちゃう */
.extra-charge__slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.extra-charge__slider .swiper-slide {
  width: 12.1rem;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 1.2rem 0 0.6rem;
}
@media (min-width: 768px) {
  .extra-charge__slider .swiper-slide {
    width: 23.4rem;
    padding: 2.4rem 0 1.9rem;
  }
}

@media (min-width: 640px) {
  .swiper-slide img {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .swiper-slide img {
    width: 85%;
  }
}

.slider__item-name {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .slider__item-name {
    font-size: 2.5rem;
  }
}

.extra-charge__caution {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .extra-charge__caution {
    font-size: 1.5rem;
    margin-top: 4.9rem;
  }
}

.faq__list .top-faq__list {
  margin-top: 4rem;
}

.service__inner {
  margin-top: 5rem;
  padding-inline: 4rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .service__inner {
    padding-inline: 13.6rem;
  }
}

.service__page-title-bottom {
  margin-top: 1.9rem;
  font-size: 1.3rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .service__page-title-bottom {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 4rem;
    text-align: center;
  }
}

.service__page-lead {
  margin-top: 1.9rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  font-feature-settings: "pwid", "pkna", "palt";
}
@media (min-width: 768px) {
  .service__page-lead {
    font-size: 2.5rem;
    margin-top: 3.5rem;
  }
}

.service-anchor {
  width: 31rem;
  margin-top: 1.5rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .service-anchor {
    margin-top: 6.5rem;
  }
}

@media (min-width: 768px) {
  .service-anchor .service-anchor__list {
    padding-inline: 6.9rem;
  }
}

.service__body {
  width: 100%;
  max-width: 92.8rem;
  margin-top: 3rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .service__body {
    margin-top: 5.9rem;
  }
}

.service__fv img {
  margin-inline: auto;
}

.service-detail:not(:last-child) {
  margin-bottom: 6rem;
}
@media (min-width: 768px) {
  .service-detail:not(:last-child) {
    margin-bottom: 4.5rem;
  }
}

.service-detail__title-area {
  padding-inline: 0;
}
@media (min-width: 768px) {
  .service-detail__title-area {
    padding-inline: 0;
  }
}
.service-detail__title-area::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ABABAB;
  border-left: 8.6rem solid #5FCAE3;
  margin-top: 0.7rem;
}
@media (min-width: 768px) {
  .service-detail__title-area::after {
    border-left: 25.6rem solid #5FCAE3;
    margin-top: 1.2rem;
  }
}

.service-detail__title-area {
  margin-bottom: 1.9rem;
}
@media (min-width: 768px) {
  .service-detail__title-area {
    margin-bottom: 3.2rem;
  }
}

.service-detail__title {
  /* サービス名（h2） */
  display: inline;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .service-detail__title {
    font-size: 3rem;
  }
}

.service-detail__item:not(:last-child) {
  margin-bottom: 6rem;
}
@media (min-width: 768px) {
  .service-detail__item:not(:last-child) {
    margin-bottom: 5rem;
  }
}

.service-detail__main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .service-detail__main {
    flex-direction: row;
    gap: 2.8rem;
  }
}

.service-detail__subtitle {
  background-color: #E6FCFF;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 2;
  padding-block: 0.5rem;
  padding-inline: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .service-detail__subtitle {
    font-size: 2rem;
    margin-bottom: 2.4rem;
    padding-inline: 2.3rem;
  }
}

@media (min-width: 768px) {
  .service-detail__content {
    flex: 1;
  }
}

.service-detail__media img {
  width: 100%;
}
@media (min-width: 768px) {
  .service-detail__media img {
    width: 25rem;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 250/220;
  }
}

@media (min-width: 768px) {
  .service-detail__head {
    display: flex;
    flex-direction: column-reverse;
  }
}

.service-detail__desc {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
}
@media (min-width: 768px) {
  .service-detail__desc {
    margin-top: 1.4rem;
  }
}

.service-detail__desc--fw {
  font-weight: 700;
}

.service-detail__desc ul {
  list-style-type: disc;
  padding-left: 1.5em;
}

.service-detail__price {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .service-detail__price {
    margin-top: 2.6rem;
  }
}

.service-detail__price--mt {
  margin-top: 0;
}

.service-detail__price-range {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 2;
  color: #E13B46;
  margin-top: 2rem;
  font-feature-settings: "pwid", "pkna", "palt";
  word-break: keep-all;
}
@media (min-width: 768px) {
  .service-detail__price-range {
    font-feature-settings: unset;
    margin-top: 0;
    line-height: 1;
  }
}

.service-detail__price-tax {
  font-size: 2rem;
  color: #000;
}

.service-detail__options {
  border-top: 1px solid #ABABAB;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .service-detail__options {
    margin-top: 2.6rem;
  }
}

.service-detail__options--mt {
  margin-top: 0;
}

.service-detail__option {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-block: 0.5rem;
  border-bottom: 1px solid #ABABAB;
}
@media (min-width: 768px) {
  .service-detail__option {
    align-items: center;
  }
}

.service-detail__option--column {
  flex-direction: column;
  align-items: normal;
}
@media (min-width: 768px) {
  .service-detail__option--column {
    flex-direction: row;
    align-items: flex-end;
  }
}

.service-detail__option--flex-start {
  align-items: flex-start;
}

.service-detail__option-term {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .service-detail__option-term {
    display: inline-block;
    font-size: 1.5rem;
    line-height: 2;
  }
}

@media (min-width: 768px) {
  .service-detail__option-term--ml {
    margin-left: 1rem;
  }
}

.service-detail__option-term--inline {
  display: inline;
}
@media (min-width: 768px) {
  .service-detail__option-term--inline {
    display: inline-block;
  }
}

.service-detail__option-term--block {
  display: block;
}

.service-detail__option-term-note {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .service-detail__option-term-note {
    display: inline-block;
    font-size: 1.5rem;
    margin-left: 1.5rem;
  }
}

@media (min-width: 768px) {
  .service-detail__option-term-note--block {
    display: block;
    margin-left: 0;
  }
}

.service-detail__option-desc {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.6;
  color: #E13B46;
  text-align: end;
}
@media (min-width: 768px) {
  .service-detail__option-desc {
    font-size: 1.5em;
  }
}

.service-detail__option--flex-end {
  justify-content: flex-end;
}

.service-detail__note {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2;
  margin-top: 2rem;
}

/* service-works（作業実例） */
.service-works {
  margin-top: 4.7rem;
}

.service-works__inner {
  width: 34rem;
  margin: 0 auto;
  background-color: #5fcae3;
  border-radius: 0.6rem;
  padding: 1.8rem 1.5rem 1.7rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .service-works__inner {
    width: 92.1rem;
    border-radius: 2rem;
    padding: 3.3rem 3.4rem;
  }
}

@media (min-width: 768px) {
  .service-works__block {
    margin-inline: 0;
  }
}

.service-works__title {
  width: 12.6rem;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.05em;
  margin: 0 auto;
  border-bottom: 3px solid #fff;
  padding-bottom: 0.2rem;
}

.service-works__gallery {
  margin-top: 2.7rem;
}
@media (min-width: 768px) {
  .service-works__gallery {
    margin-top: 5.1rem;
    display: flex;
    justify-content: space-between;
  }
}

.service-works__gallery-item {
  display: flex;
  justify-content: center;
  margin-bottom: 2.7rem;
}
@media (min-width: 768px) {
  .service-works__gallery-item {
    margin-bottom: 4rem;
  }
}
.service-works__gallery-item img {
  width: 100%;
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  .service-works__gallery-item img {
    width: 41.4rem;
    border-radius: 0.7rem;
  }
}

/* 横スクロール用のラッパー */
.service__table-wrap,
.single-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  /* iOSの慣性スクロール */
}

/* テーブルが親幅より広い時にスクロールを出す */
.service__table,
.single-table {
  min-width: 64rem;
  /* 列数に応じて調整（例：640px相当） */
}

/* 既存CSS（あなたの定義）に追記してOK */
.service__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-weight: 500;
  border: 1px solid #ddd;
  margin-top: 2rem;
}

.service__table th,
.service__table td {
  padding: 1rem 1.2rem;
  vertical-align: middle;
  border: 1px solid #ddd;
  line-height: 1.5;
  word-break: break-word;
}

.service__table td {
  font-size: 1.5rem;
}

.service__table th {
  text-align: center;
  background-color: #fff;
}

.service__table-head {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.service__table-sub {
  font-size: 1.5rem;
  font-weight: 500;
  color: #555;
}

.service__table-note {
  font-size: 0.9em;
  opacity: 0.85;
}

/* 交互背景（theadを1行目として数える） */
.service__table tr:nth-child(even) {
  background: #fff;
}

.service__table tr:nth-child(odd) {
  background: #E6FCFF;
}

/* 数字列右寄せ */
.service__table td:nth-child(2),
.service__table td:nth-child(3) {
  text-align: right;
}

/* 横スクロール用ラッパー */
.single-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 2rem;
  margin-bottom: 4rem;
}

/* 1行専用テーブル */
.single-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-weight: 500;
  border: 1px solid #ddd;
  background: #E6FCFF;
  /* 1行全体に背景 */
}

/* セル */
.single-table th,
.single-table td {
  padding: 1rem 1.2rem;
  vertical-align: middle;
  border: 1px solid #ddd;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 700;
  word-break: break-word;
  text-align: center;
}

.single-table__note {
  display: block;
  text-align: start;
  font-weight: 500;
}
@media (min-width: 768px) {
  .single-table__note {
    text-align: center;
  }
}

/* 見出しセル */
.single-table th {
  background-color: #E6FCFF;
}

/* 注釈 */
.single-table__note {
  font-size: 1.5rem;
  opacity: 0.85;
}

/* 強調リード（赤系強調想定） */
.service-detail__lead {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2;
  color: #E13B46;
}
@media (min-width: 768px) {
  .service-detail__lead {
    font-size: 2.5rem;
  }
}

/* サブ見出し＋小サイズ注釈 */
.service-detail__subheading {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2;
  color: #31ABC6;
  margin-top: 4.1rem;
  word-break: keep-all;
}
@media (min-width: 768px) {
  .service-detail__subheading {
    font-size: 2.5rem;
  }
}
.service-detail__subheading span {
  font-size: 1.5rem;
}

.service-detail__desc-group p {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .service-detail__desc-group p {
    margin-bottom: 3rem;
  }
}

.service-detail__desc-group span {
  font-weight: 700;
  color: #E13B46;
}

.service-detail__desc--note {
  font-weight: 500;
  font-size: 1.3rem;
}

/* 住宅修繕赤字計算式 */
.service__price-equation {
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
  color: #E13B46;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .service__price-equation {
    font-size: 2.5rem;
    margin-top: 3.5rem;
  }
}

.service-detail__desc--red {
  display: block;
  font-weight: 700;
  font-size: 1.5rem;
  color: #E13B46;
  margin-top: 2rem;
}

.service-detail__desc--underline {
  display: block;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.service-detail__price--mb {
  margin-bottom: 3rem;
}

.grave-cleaning--bg-blue {
  background-color: #E6FCFF;
}

.grave-cleaning__inner {
  padding-block: 1.5rem;
}

.service-works__title--bg-white {
  background-color: #fff;
}

/* =========================
   page-price.php skeleton
   ========================= */
/* ページタイトル */
.page-title {
  /* ページの見出し */
}

.price__inner {
  max-width: 100rem;
  margin-top: 5rem;
  padding-inline: 2.3rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .price__inner {
    padding-inline: 4rem;
  }
}

/* ===== ページ内リンク（アンカー） ===== */
.price-anchor {
  /* アンカーナビ全体 */
  border-style: solid;
  border-color: #31ABC6;
  border-width: 0 10px 10px 10px;
}
@media (min-width: 768px) {
  .price-anchor {
    width: 92rem;
    display: flex;
    border-width: 10px 10px 10px 0;
    margin-inline: auto;
  }
}

.price-anchor__nav-title {
  /* メニュータイトル */
  height: 3.9rem;
  background-color: #31ABC6;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
@media (min-width: 768px) {
  .price-anchor__nav-title {
    width: 15.8rem;
    height: unset;
    padding-inline: 1.7rem;
    font-size: 2.5rem;
    text-align: center;
    line-height: 2;
  }
}

.price-anchor__list {
  /* アンカーのUL */
  padding: 1.7rem 1.5rem;
}
@media (min-width: 768px) {
  .price-anchor__list {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    row-gap: 1.7rem;
    padding: 4rem 2.4rem 3.6rem 1.6rem;
  }
}

.price-anchor__item {
  /* アンカーのLI */
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .price-anchor__item {
    font-size: 2rem;
    text-decoration: none;
    padding-inline: 2.2rem;
    line-height: 1;
  }
}
@media (min-width: 768px) {
  .price-anchor__item:not(:last-child) {
    border-right: 1px solid #000;
  }
}

.price-anchor__link {
  /* セクションへのリンク */
  padding: 0.7rem;
}

/* ===== セクション群 ===== */
.price-sections {
  /* 各サービスセクションのラッパー */
  margin-top: 3.6rem;
}
@media (min-width: 768px) {
  .price-sections {
    margin-top: 5rem;
  }
}

/* ===== 各サービスカード ===== */
.price-item {
  /* 1サービスのセクション */
}
.price-item:not(:last-child) {
  margin-bottom: 5.2rem;
}
@media (min-width: 768px) {
  .price-item:not(:last-child) {
    margin-bottom: 10rem;
  }
}

.price-item__title-area {
  padding-inline: 1.7rem;
}
@media (min-width: 768px) {
  .price-item__title-area {
    padding-inline: 0;
  }
}
.price-item__title-area::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ABABAB;
  border-left: 8.6rem solid #5FCAE3;
  margin-top: 0.7rem;
}
@media (min-width: 768px) {
  .price-item__title-area::after {
    border-left: 25.6rem solid #5FCAE3;
    margin-top: 1.2rem;
  }
}

.price-item__title {
  /* サービス名（h2） */
  display: inline;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 768px) {
  .price-item__title {
    font-size: 3rem;
  }
}

.pricing__subtitle {
  /* サブタイトル（pricing-subtitle） */
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 768px) {
  .pricing__subtitle {
    font-size: 3rem;
  }
}

.benri__subtitle {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: -0.03em;
}
@media (min-width: 768px) {
  .benri__subtitle {
    display: inline;
    font-size: 2.5rem;
    line-height: 1;
    letter-spacing: 0;
  }
}

.price-item__body {
  /* 画像＋本文の横並び等 */
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  margin-top: 1.4rem;
}
@media (min-width: 768px) {
  .price-item__body {
    margin-top: 2.2rem;
    flex-direction: row;
    gap: 1.9rem;
  }
}

.price-item__figure {
  /* 画像のfigure */
  padding-inline: 1.7rem;
}
@media (min-width: 768px) {
  .price-item__figure {
    padding-inline: 0;
  }
}

.price-item__img {
  /* アイキャッチ画像 */
  width: 31rem;
}

.price-item__content {
  /* テキスト側のラッパー */
}
@media (min-width: 768px) {
  .price-item__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.price-item__desc {
  /* ディスクリプション（title_bottom-text） */
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2;
  padding-inline: 1.7rem;
}
@media (min-width: 768px) {
  .price-item__desc {
    font-size: 2rem;
    padding-inline: 0 1.1rem;
    line-height: 1.5;
  }
}
.price-item__desc .service-intro__list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: flex-start;
  -moz-column-gap: 1.7rem;
       column-gap: 1.7rem;
}
.price-item__desc .service-intro__item {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2;
}
@media (min-width: 768px) {
  .price-item__desc .service-intro__item {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.price-item__desc .service-intro-text__bottom {
  line-height: 2;
  margin-top: 0;
}
@media (min-width: 768px) {
  .price-item__desc .service-intro-text__bottom {
    font-size: 2rem;
    line-height: 1.5;
  }
}

.price-range {
  /* 料金（price-range） */
  font-size: 2.8rem;
  font-weight: 700;
  color: #E13B46;
  margin-top: 0.5rem;
  padding-inline: 1.7rem;
  word-break: keep-all;
}
@media (min-width: 768px) {
  .price-range {
    font-size: 4rem;
    margin-top: 1.8rem;
    padding-inline: 0;
    margin-top: 0;
  }
}
.price-range span {
  font-size: 2rem;
  color: #000;
}
@media (min-width: 768px) {
  .price-range span {
    font-size: 3rem;
  }
}

span.price-range__times {
  font-size: 2.8rem;
  margin-right: 0.8rem;
}
@media (min-width: 768px) {
  span.price-range__times {
    font-size: 4rem;
    margin-right: 3.5rem;
  }
}

.price-item__action {
  /* ボタン配置用 */
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .price-item__action {
    margin-top: 0;
  }
}

/* ボタン */
.price__btn {
  /* 詳しく見るボタン */
  font-size: 1.7rem;
  padding-block: 0.5rem;
  padding-right: 2.5rem;
}
@media (min-width: 768px) {
  .price__btn {
    width: 100%;
    font-size: 3rem;
    padding-block: 1.4rem;
  }
}

/* ================================
   ご依頼の流れセクション
================================ */
.flow {
  margin: 6rem 0 0;
}
@media (min-width: 768px) {
  .flow {
    margin: 13.5rem 0 0;
  }
}

.flow__inner {
  padding-inline: 1.5rem;
}

.flow__title {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  color: #3592c3;
}
@media (min-width: 768px) {
  .flow__title {
    font-size: 4rem;
    font-weight: 700;
  }
}

.policy {
  background: #fff;
  color: #222;
  padding: 2.4rem 0;
}

.policy__inner {
  max-width: 110rem;
  margin: 0 auto;
  padding: 0 1.6rem;
}

.policy__title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 1.6rem;
}
@media (min-width: 768px) {
  .policy__title {
    font-size: 2.8rem;
    margin-bottom: 2.4rem;
  }
}

.policy__list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: policy;
}

.policy__item {
  counter-increment: policy;
  padding: 1.6rem 0;
  border-top: 1px solid #e6e6e6;
}
.policy__item:last-child {
  border-bottom: 1px solid #e6e6e6;
}
@media (min-width: 768px) {
  .policy__item {
    padding: 2rem 0;
  }
}

.policy__heading {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 0.8rem;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 0.6rem;
}
@media (min-width: 768px) {
  .policy__heading {
    font-size: 1.9rem;
    margin-bottom: 0.8rem;
    align-items: center;
  }
}

/* 自動採番のバッジ */
.policy__num {
  display: inline-grid;
  place-items: center;
  min-width: 2.2rem;
  height: 2.2rem;
  padding: 0 0.4rem;
  border-radius: 9999px;
  background: #31ABC6;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
  content: counter(policy);
}

.policy__num::before {
  content: counter(policy);
}

.policy__desc {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #222;
}
@media (min-width: 768px) {
  .policy__desc {
    font-size: 1.6rem;
    line-height: 1.95;
  }
}

/* 連絡先ブロック用（必要時） */
.policy__contact {
  margin-top: 2.4rem;
  font-style: normal;
  color: #666;
}
.policy__contact a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* ============================
   Company Table (スマホファースト)
   ============================ */
.company {
  max-width: 91rem;
  padding-inline: 3rem;
  margin-inline: auto;
  margin-bottom: 4rem;
}

/* 横スクロールの器：外枠つける */
.company__inner {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border: 1px solid #ddd;
  margin-bottom: 5rem;
  margin-top: 5rem;
}

/* 会社テーブル本体：表枠＋セル枠を統一 */
.company-table {
  min-width: 72rem;
  /* 横スクロール用の最小幅 */
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  /* ★ セル境界を1本化 */
  border: 1px solid #ddd;
  /* ★ 表の外枠 */
}

/* 行見出し（1列目） */
.company-table th[scope=row] {
  background: #f7fbfd;
  font-weight: 700;
  white-space: nowrap;
  width: 9.7rem;
  /* 項目名の既定幅（必要なら調整） */
}

/* ★ 各セルの枠線（全部に枠） */
.company-table th,
.company-table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  line-height: 1.6;
  word-break: break-word;
  overflow-wrap: anywhere;
  border: 1px solid #ddd;
  /* ← ここで全セルに枠 */
}

/* 交互背景（好みでON/OFF） */
.company-table tbody tr:nth-child(odd) td {
  background: #fafafa;
}

/* リンク整形 */
.company-table a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.company-table a[href^="mailto:"],
.company-table a[href^="tel:"],
.company-table a[href^="geo:"],
.company-table a[href*="maps.google."] {
  /* Googleマップへのリンク */
  text-decoration: none;
  color: inherit;
  /* テキスト色も本文に合わせる */
  white-space: nowrap;
}

/* PC調整 */
@media (min-width: 768px) {
  .company-table th,
  .company-table td {
    font-size: 1.6rem;
    line-height: 1.75;
  }
  .company-table {
    min-width: 84rem;
  }
  .company-table th[scope=row] {
    width: 20rem;
  }
}
.company-greeting {
  padding: 3rem 0;
}

.company-greeting__title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.4;
  padding-bottom: 1.2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e6e6e6;
}

.company-greeting__main {
  display: block;
  /* SP：縦並び */
}

.company-greeting__media {
  margin: 0;
  /* figure余白リセット */
}

.company-greeting__img {
  display: block;
  width: 14rem;
  /* 見た目サイズ（HTMLの200x200はCLS対策用） */
  height: auto;
  border-radius: 0.6rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.company-greeting__content {
  margin-top: 1.6rem;
  /* SPでは画像の下に余白 */
}

.company-greeting__text {
  font-size: 1.6rem;
  line-height: 2;
  margin: 0 0 1.2rem;
}

.company-greeting__text:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .company-greeting__title {
    font-size: 2.6rem;
    margin-bottom: 2.4rem;
  }
  .company-greeting__main {
    display: flex;
    /* PC：横並び */
    align-items: flex-start;
    gap: 2.4rem;
  }
  .company-greeting__img {
    width: 16rem;
  }
  .company-greeting__content {
    margin-top: 0;
  }
}
.blog-archive {
  margin-top: -9.5rem;
}
@media (min-width: 768px) {
  .blog-archive {
    margin-top: -6.1rem;
  }
}

.blog__inner {
  max-width: 90rem;
}

/* =======================================
   Pagination (top-news)  スマホファースト
   ======================================= */
.top-news__pagination {
  margin-top: 2.4rem;
}

.pagination .page-numbers {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  /* ボタン間の隙間 */
  padding: 0;
  margin: 0;
}

.pagination .page-numbers li {
  margin: 0;
}

/* ボタンの共通見た目（a と span.current 等） */
.pagination .page-numbers a,
.pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.4rem;
  height: 3.4rem;
  padding: 0 0.9rem;
  /* 数字は丸、Prev/Nextは横長に */
  border: 1px solid #ddd;
  border-radius: 9999px;
  background: #fff;
  color: #222;
  font-size: 1.4rem;
  line-height: 1;
  /* 垂直中央のため */
  text-decoration: none;
  transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

/* 現在ページ */
.pagination .page-numbers .current,
.pagination .page-numbers span.current {
  background: #222;
  border-color: #222;
  color: #fff;
  cursor: default;
}

/* hover / focus */
.pagination .page-numbers a:hover,
.pagination .page-numbers a:focus-visible {
  border-color: #222;
  background: #f6f6f6;
  color: #222;
  outline: none;
}

/* 省略記号 … */
.pagination .page-numbers .dots {
  border-color: transparent;
  background: transparent;
  color: #888;
  min-width: auto;
  height: auto;
  padding: 0 0.2rem;
}

/* 前へ / 次へ は文字が長いので少し可変幅寄りに */
.pagination .page-numbers .prev,
.pagination .page-numbers .next {
  padding: 0 1.2rem;
}

/* （任意）PCで少しだけ大きく */
@media (min-width: 768px) {
  .pagination .page-numbers a,
  .pagination .page-numbers span {
    min-width: 3.6rem;
    height: 3.6rem;
    font-size: 1.5rem;
  }
}
/* ===== Blog 2カラム（flex版｜スマホファースト） ===== */
.blog__layout {
  display: flex;
  flex-direction: column;
  /* SP：縦並び */
  gap: 5rem;
}

.blog__main {
  min-width: 0;
  /* 画像や長い単語のはみ出し防止 */
}

.blog__sidebar {
  display: grid;
  /* サイド内の各ウィジェットの縦間隔 */
  gap: 2rem;
}

/* 見出しなど（お好みで） */
.widget__title {
  font-size: 1.6rem;
  font-weight: 700;
  border-left: 4px solid #222;
  padding-left: 0.8rem;
  margin-bottom: 0.8rem;
}

.widget__list {
  font-size: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget__item {
  padding: 0.4rem 0;
}

.widget__link {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.blog__layout {
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .blog__layout {
    margin-top: 6rem;
  }
}

/* PC：横並びにしてサイドを固定幅、メインを可変に */
@media (min-width: 960px) {
  .blog__layout {
    flex-direction: row;
    /* 横並び */
    align-items: flex-start;
  }
  .blog__main {
    flex: 1;
  }
  .blog__sidebar {
    width: 20rem;
  }
}
/* ---（任意）サイドバーを追従させたいとき：有効にしてね ---
.blog__sidebar {
  position: sticky;
  top: 2rem;                    // ヘッダー高さに合わせて
}
---------------------------------------------------------------- */
/* ---（任意）gap未対応ブラウザの簡易フォールバック ---
@supports not (gap: 1rem) {
  .blog__layout { margin: 0 -1.2rem; }
  .blog__main,
  .blog__sidebar { padding: 0 1.2rem; }
}
---------------------------------------------------------------- */
.single__blog-inner {
  max-width: 32rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .single__blog-inner {
    max-width: 90rem;
  }
}

.blog__subtitle {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .blog__subtitle {
    font-size: 4rem;
  }
}

/* ========== シングル記事の骨格 ========== */
.single__title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 0.8rem;
}
@media (min-width: 768px) {
  .single__title {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
  }
}

.single__date {
  display: inline-block;
  color: #6b7280;
  font-size: 1.4rem;
  margin-bottom: 1.6rem;
}
@media (min-width: 768px) {
  .single__date {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}

.single__thumbnail {
  margin: 0 0 1.6rem;
}
.single__thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.6rem;
}
@media (min-width: 768px) {
  .single__thumbnail {
    margin-bottom: 2rem;
  }
}

/* ========== 本文（何が来ても崩れない“prose”風） ========== */
.single__content {
  color: #222;
  font-size: 1.6rem;
  line-height: 2;
  word-break: normal;
  overflow-wrap: anywhere;
  /* ベースの余白リズム */
  /* 段落・強調 */
  /* 見出し */
  /* リスト */
  /* 引用 */
  /* 画像・図版 */
  /* ギャラリー */
  /* テーブル（横スクロール対応） */
  /* コード */
  /* 画像のアライメント（Gutenberg互換） */
  /* 埋め込み（YouTube 等） */
  /* 区切り線 */
  /* ボタン（ブロック） */
  /* ファイルブロック */
  /* 余白の締め処理 */
}
.single__content > * + * {
  margin-top: 1.2rem;
}
@media (min-width: 768px) {
  .single__content > * + * {
    margin-top: 1.4rem;
  }
}
.single__content p {
  margin: 0;
}
.single__content a {
  color: #31ABC6;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.single__content strong,
.single__content b {
  font-weight: 700;
}
.single__content em,
.single__content i {
  font-style: italic;
}
.single__content h2,
.single__content h3,
.single__content h4,
.single__content h5,
.single__content h6 {
  font-weight: 800;
  line-height: 1.4;
}
.single__content h2 {
  font-size: 2rem;
  margin-top: 2rem;
}
.single__content h3 {
  font-size: 1.8rem;
  margin-top: 1.6rem;
}
.single__content h4 {
  font-size: 1.6rem;
  margin-top: 1.2rem;
}
@media (min-width: 768px) {
  .single__content h2 {
    font-size: 2.2rem;
    margin-top: 2.4rem;
  }
  .single__content h3 {
    font-size: 2rem;
    margin-top: 2rem;
  }
  .single__content h4 {
    font-size: 1.8rem;
    margin-top: 1.6rem;
  }
}
.single__content ul,
.single__content ol {
  padding-left: 1.6rem;
}
.single__content li {
  margin: 0.4rem 0;
}
.single__content li > ul,
.single__content li > ol {
  margin-top: 0.4rem;
}
.single__content blockquote {
  margin: 0;
  padding: 1.2rem 1.6rem;
  border-left: 0.4rem solid #31ABC6;
  background: #f9fafb;
  color: #111;
  border-radius: 0.4rem;
}
.single__content cite {
  display: block;
  color: #6b7280;
  font-size: 1.4rem;
  margin-top: 0.6rem;
}
.single__content figure {
  margin: 0;
}
.single__content img {
  max-width: 100%;
  height: auto;
}
.single__content figcaption,
.single__content .wp-caption-text {
  color: #6b7280;
  font-size: 1.3rem;
  margin-top: 0.4rem;
  text-align: center;
}
.single__content .wp-block-gallery {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .single__content .wp-block-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
.single__content .wp-block-gallery .wp-block-image {
  margin: 0;
}
.single__content .wp-block-gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.4rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.single__content table {
  width: 100%;
  border-collapse: collapse;
  display: block;
  /* 幅が溢れても崩さない */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #e5e7eb;
  border-radius: 0.6rem;
}
.single__content thead th {
  position: sticky;
  top: 0;
  background: #f7fbfd;
}
.single__content th,
.single__content td {
  border: 1px solid #e5e7eb;
  padding: 0.8rem 1.2rem;
  text-align: left;
  vertical-align: top;
}
.single__content pre,
.single__content code,
.single__content kbd,
.single__content samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.single__content code {
  background: #f3f4f6;
  padding: 0.1rem 0.4rem;
  border-radius: 0.3rem;
}
.single__content pre {
  background: #0f172a;
  color: #e5e7eb;
  overflow: auto;
  padding: 1.2rem 1.4rem;
  border-radius: 0.6rem;
}
.single__content pre code {
  background: transparent;
  padding: 0;
  color: inherit;
}
.single__content .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.single__content .alignleft {
  float: left;
  margin: 0.2rem 1.2rem 0.6rem 0;
}
.single__content .alignright {
  float: right;
  margin: 0.2rem 0 0.6rem 1.2rem;
}
@media (min-width: 768px) {
  .single__content .alignleft,
  .single__content .alignright {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .single__content .alignleft,
  .single__content .alignright {
    float: none;
    margin: 0 auto 1rem;
    display: block;
  }
}
.single__content .wp-block-embed,
.single__content .wp-block-video,
.single__content .wp-block-embed__wrapper {
  width: 100%;
  margin-top: 2rem;
}
.single__content .wp-block-embed__wrapper iframe,
.single__content iframe[src*=youtube],
.single__content iframe[src*=vimeo],
.single__content video {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  display: block;
}
.single__content hr,
.single__content .wp-block-separator {
  border: 0;
  height: 1px;
  background: #e5e7eb;
  margin: 2rem 0;
}
.single__content .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.6rem;
  padding: 0.8rem 1.6rem;
  background: #31ABC6;
  color: #fff;
  border-radius: 9999px;
  text-decoration: none;
  transition: filter 0.15s ease;
}
.single__content .wp-block-button__link:hover {
  filter: brightness(0.95);
}
.single__content .wp-block-file {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}
.single__content .wp-block-file a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.single__content > :first-child {
  margin-top: 0;
}
.single__content > :last-child {
  margin-bottom: 0;
}

/* ========== もし関連記事 / 前後ナビなど付けるときの簡易スタイル（任意） ========== */
.post__pager {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid #e5e7eb;
}
.post__pager a {
  color: #31ABC6;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* =========================
   Category chip under title
   ========================= */
/* 複数カテゴリ用の並び */
.news__title-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.8rem 0 1.6rem;
}

/* バッジ（リンクOK版） */
.news__title-cat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0b7285;
  background: #e8f7fb;
  border: 1px solid #b7e6ef;
  border-radius: 9999px;
  text-decoration: none;
  /* aでも下線出さない */
  white-space: normal;
  word-break: break-word;
  transition: filter 0.15s ease;
}

.news__title-cat::before {
  content: "#";
  font-weight: 900;
  opacity: 0.6;
}

.news__title-cat:hover {
  filter: brightness(0.95);
}

@media (min-width: 960px) {
  .news__title-cat {
    font-size: 1.5rem;
  }
}/*# sourceMappingURL=style.css.map */