@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: 7.9rem;
}
@media (min-width: 768px) {
  .header--mt {
    margin-top: 34.5rem;
  }
}

.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;
  }
}
.btn {
  display: inline-block;
  background-color: #f9a9c0;
  color: #fff;
}

@media (any-hover: hover) {
  .btn: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); /* 最終位置で軽く膨らんだまま */
  }
}
.page-title {
  font-family: "Gothic A1", "Helvetica Neue", Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin: 0 auto;
  border-bottom: 3px solid #5fcae3;
}
@media (min-width: 768px) {
  .page-title {
    font-size: 5rem;
    letter-spacing: 0;
    text-align: center;
  }
}

/* ===== 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.6rem 5.6rem 2rem 3.3rem;
    align-items: center;
    margin-inline: auto;
  }
}

.header__logo {
  display: flex;
  align-items: center;
}
.header__logo img {
  width: 5.6rem;
}
@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: 0.6rem;
  }
}

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

.header__tel-number {
  font-size: clamp(20px, 4vw, 3.3rem);
  font-weight: 700;
}
@media (min-width: 768px) {
  .header__tel-number {
    font-size: 3.3rem;
  }
}

.header__hours {
  font-size: clamp(18px, 3vw, 2.2rem);
  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: clamp(15px, 3vw, 1.9rem);
  font-weight: 700;
  color: #fff;
  height: 48px;
}
@media (min-width: 768px) {
  .btn--mail {
    justify-content: flex-start;
    gap: 0;
    font-size: 1.9rem;
  }
}

.btn--line {
  background-color: #18d048;
  border-radius: 0.5rem;
  font-size: clamp(18px, 3vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  color: #fff;
  display: flex;
  height: 48px;
  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;
  height: 4.3rem;
  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;
  inline-size: min(86vw, 360px);
  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 screen and (min-width: 440px) {
  .hamburger__menu {
    padding: 5rem 1.5rem 2rem;
  }
}
@media (min-width: 768px) {
  .hamburger__menu {
    position: relative;
    inline-size: unset;
    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: clamp(14px, 1.6rem, 16px);
  font-weight: 700;
  transition: opacity 0.2s ease;
}

/* PCで上書き＆下線アニメ */
@media (min-width: 768px) {
  .gnav__link {
    position: relative;
    display: inline-block;
    padding: 2.7rem 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;
  } /* 既存のホバー演出があれば打ち消し */
}
/* 任意：ナビの開閉（hidden属性で制御するなら不要） */
.gnav {
  /* スタイルは任意 */
}

/* breadcrumb（必要なら） */
/* ================================
   フッター
================================ */
.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 2.6rem;
}
@media (min-width: 768px) {
  .footer__inner {
    max-width: 1200px;
    padding: 2.8rem 4.4rem 3.5rem;
    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: 2.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.5rem;
  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;
  }
}
.collect {
  margin: 0 0 5rem;
}
@media (min-width: 768px) {
  .collect {
    margin: 0 0 9rem;
  }
}

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

.collect__title {
  font-family: "Gothic A1", "Helvetica Neue", Arial, sans-serif;
  width: 14.7rem;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin: 0 auto;
  border-bottom: 3px solid #5fcae3;
}
@media (min-width: 768px) {
  .collect__title {
    width: 30.1rem;
    font-size: 5rem;
    letter-spacing: 0;
    text-align: center;
  }
}

.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-layout__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f7b0c8;
  font-weight: 700;
  font-size: 2rem;
  border-radius: 4rem;
  color: #fff;
  margin: 0 auto;
  gap: 1.7rem;
}
@media (min-width: 768px) {
  .price-layout__btn {
    width: 39.7rem;
    font-size: 3rem;
    line-height: 1;
    letter-spacing: 0;
    padding: 1rem;
  }
}

/* ========================================
   混雑した部屋参考価格
======================================== */
.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;
  }
}

/* ================================
   ご依頼の流れセクション
================================ */
.flow {
  margin: 3.6rem 0 0;
}
@media (min-width: 768px) {
  .flow {
    margin: 8rem 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;
  }
}

.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) {
  .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;
  }
}

.flow-step {
  position: relative;
  box-shadow: 0px 1.43px 1.43px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 0.4rem;
}
@media (min-width: 768px) {
  .flow-step {
    box-shadow: 0px 3.8px 3.8px 0px rgba(0, 0, 0, 0.2509803922);
    border-radius: 1.2rem;
  }
}

.flow-step__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) {
  .flow-step__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);
  }
}

.flow-step__content {
  display: flex;
  align-items: center;
  padding: 0.1rem 0.1rem 0.1rem 0;
}
@media (min-width: 768px) {
  .flow-step__content {
    padding: 0.3rem 0.3rem 0.3rem 0;
  }
}

.flow-step__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) {
  .flow-step__title {
    font-size: 3.7rem;
  }
}

.flow-step__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) {
  .flow-step__text {
    width: 58rem;
    height: 9.3rem;
    border-radius: 0.9rem;
    font-size: 3rem;
    padding: 0.2rem 0 0.2rem 1.1rem;
  }
}

/* 色別修飾クラス */
.flow-step--pink {
  background-color: #d06d86;
}

.flow-step--green {
  background-color: #8bcb8d;
}

.flow-step--blue {
  background-color: #35aba5;
}

.flow-step--orange {
  background-color: #eea040;
}

.flow-step--navy {
  background-color: #18acd2;
}

.flow-step--purple {
  background-color: #dd7b9d;
}

.flow-step__number--pink {
  color: #d06d86;
}

.flow-step__number--green {
  color: #8bcb8d;
}

.flow-step__number--blue {
  color: #35aba5;
}

.flow-step__number--orange {
  color: #eea040;
}

.flow-step__number--navy {
  color: #18acd2;
}

.flow-step__number--purple {
  color: #dd7b9d;
}

/* ================================
   フッター上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;
  }
}

.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;
  }
}

.price__title {
  width: 20.6rem;
}
@media (min-width: 768px) {
  .price__title {
    width: 40rem;
  }
}

.price__message {
  text-align: center;
  margin: 10.3rem auto;
  font-size: 2.2rem;
  font-weight: 700;
}/*# sourceMappingURL=style.css.map */