@charset "UTF-8";

/* Google Fontsのインポート */
@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&family=Noto+Sans+JP:wght@300;400;500;700&display=swap");

/*

    Template: swell

    Theme Name: SWELL CHILD

    Theme URI: https://swell-theme.com/

    Description: SWELLの子テーマ

    Version: 1.0.0

    Author: LOOS WEB STUDIO

    Author URI: https://loos-web-studio.com/



    License: GNU General Public License

    License URI: http://www.gnu.org/licenses/gpl.html

*/

/* -------------------------------------------------------
   1. 基本設定
-------------------------------------------------------- */
/* 基本スタイル */
:root {
  /* 親テーマから継承する変数は削除 */
  --accent-color: #f6993f;
  --header-height: 140px; /* 2段ヘッダー用に高さ調整 */
  --content-width: 1062px;
  --font-family-main: YakuHanRP, "Kiwi Maru", sans-serif;
  --font-family-sub: YakuHanRP, "Noto Sans JP", sans-serif;
}
/* スムーススクロール */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-main);
  color: var(--color_text);
  background-color: var(--color_bg);
  line-height: 1.7;
}

body.is-fixed {
  overflow: hidden;
}

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

/* コンテナ */
.c-container {
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
}

@media (max-width: 991px) {
  .c-container {
    padding-inline: clamp(7.5px, calc(15 / 750 * 100vw), 15px);
  }

  /* パディングバリエーション */
  .c-container[data-padding="medium"] {
    padding-inline: clamp(10px, calc(20 / 750 * 100vw), 20px);
  }

  .c-container[data-padding="large"] {
    padding-inline: clamp(15px, calc(30 / 750 * 100vw), 30px);
  }
}

/* ヘッダーとコンテンツの間にスペースを追加 */
.l-content {
  padding-top: 0;
}
@media (max-width: 991px) {
  .l-content {
    padding-top: 0;
  }
}

.sp {
  display: none;
}
@media (max-width: 991px) {
  .sp {
    display: inherit;
  }
}
.pc {
}
@media (max-width: 991px) {
  .pc {
    display: none;
  }
}

/* -------------------------------------------------------
   2. ヘッダー関連のスタイル
-------------------------------------------------------- */
/* 縦2段ヘッダースタイル */
.l-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: transform 0.3s ease;
  font-family: var(--font-family-sub);
}
.l-header::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color_main);
  position: absolute;
  top: 72px;
  right: 0;
  left: 0;
  margin-inline: auto;
  z-index: 1000;
}

.l-header.is-hidden {
  transform: translateY(-100%);
}

.l-header__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  padding-left: 4%;
  padding-right: 4%;
  margin-inline: auto;
}

@media (max-width: 991px) {
  .l-header::before {
    content: none;
  }
  .l-header__inner {
    max-width: none;
    margin-inline: 0;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* 上段スタイル */
.l-header__top {
  width: 100%;
  background-color: #fff;
  padding-block: 8px;
}

.l-header__top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991px) {
  .l-header__top {
    padding-block: 0;
  }
  .l-header__top-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding-right: 0;
    min-height: 50px; /* スマホ表示時の最小高さを設定 */
    width: 100%;
  }
}

/* 左側エリア（ロゴと事業所名） */
.l-header__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .l-header__left {
    width: 100%;
    translate: 0 -3px;
  }
}

/* ヘッダーロゴエリア */
.l-header__logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 991px) {
  .l-header__logo-area {
    justify-content: flex-start;
    gap: 5px;
    width: calc(100% - 100px); /* LINEボタン+ハンバーガーボタン分の余白を確保 */
  }
}

/* ロゴ */
.l-header__logo {
}
@media (max-width: 991px) {
  .l-header__logo {
    flex: 0 0 auto;
    padding: 0;
  }
}

.l-header__logo a {
  display: block;
  font-weight: bold;
  color: var(--color_text);
  text-decoration: none;
  font-family: var(--font-family-sub);
}

.l-header__logo img {
  height: 48px;
  width: auto;
}
@media (max-width: 991px) {
  .l-header__logo img {
    height: 28px;
  }
}

/* 事業所名 */
.l-header__name {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  white-space: nowrap;
  position: relative;
  font-family: var(--font-family-sub);
}
@media (max-width: 991px) {
  .l-header__name {
    font-size: 14px;
    margin-left: 0;
    flex: 1 1 auto;
  }
}

/* 右側情報エリア（PC表示用） */
.l-header__info {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .l-header__info {
    display: none;
  }
}

.l-header__contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* 電話番号 */
.l-header__tel-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color_text);
}

.l-header__tel-icon {
  margin-right: 5px;
  background-image: url("images/l-header__tel-icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
  height: 25px;
  display: inline-block;
}

.l-header__tel-number {
  font-size: 32px;
  font-weight: bold;
  color: var(--color_text);
  font-family: var(--font-family-sub);
  line-height: 1;
}

.l-header__hours {
  font-size: 14px;
  color: var(--color_text);
  margin: 0;
  font-family: var(--font-family-sub);
}
/* 営業時間（SP表示用） */
.l-header__hours-sp {
  display: none;
  font-family: var(--font-family-sub);
}
@media (max-width: 991px) {
  .l-header__hours-sp {
    display: block;
    font-size: 9px;
    font-weight: 400;
    color: var(--color_text);
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    padding: 0;
    white-space: normal;
    position: absolute;
    top: 100%;
    left: 0;
  }
}

/* LINE連絡ボタン */
.l-header__line-btn {
  display: flex;
  align-items: center;
  background-color: #12d212;
  background-image: linear-gradient(to right, #12d212, #00c300);
  padding: 6px 26px;
  border: 1px solid #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.3s;
  box-shadow: 1px 3px 8px rgb(0 0 0 / 0.2);
  gap: 8px;
}
@media (max-width: 991px) {
  .l-header__line-btn {
    width: 50px;
    height: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 6px 0;
    flex-direction: column;
    gap: 0;
  }
}

.l-header__line-btn:hover {
  opacity: 0.9;
}

.l-header__line-icon {
  background-image: url("images/l-header__line-icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
  height: 25px;
  display: inline-block;
}
@media (max-width: 991px) {
  .l-header__line-icon {
  }
}

.l-header__line-text {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-family: var(--font-family-sub);
}
.l-header__line-text .sub1 {
  font-size: 0.8em;
}
@media (max-width: 991px) {
  .l-header__line-text {
    font-size: 8px;
  }
}

/* 右側エリア（SP表示用） */
.l-header__right-sp {
  display: none;
  align-items: center;
  position: relative;
}
@media (max-width: 991px) {
  .l-header__right-sp {
    display: flex;
    align-items: center;
  }
}

.l-header__cta-sp {
  margin-right: 10px;
}
@media (max-width: 991px) {
  .l-header__cta-sp {
    margin-right: 50px; /* ハンバーガーボタンの幅分の余白 */
  }
}

/* 下段スタイル - グローバルナビゲーション */
.l-header__bottom {
  width: 100%;
  background-color: #fff;
  padding-block: 12px;
}

.l-header__nav {
  width: 100%;
}

.c-headerMenu {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-headerMenu .menu-item {
  position: relative;
  text-align: center;
}

.c-headerMenu .menu-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  height: 100%;
  width: 1px;
  background-color: var(--color_main);
  transform: translateY(-50%);
}

.c-headerMenu .menu-item a {
  display: block;
  padding: 10px 2.5em;
  color: var(--color_main);
  text-decoration: none;
  font-size: 16px;
  font-family: var(--font-family-sub);
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
}

.c-headerMenu .menu-item a:hover {
  opacity: 0.7;
}

/* スマホでは非表示 */
@media (max-width: 991px) {
  .l-header__bottom {
    display: none;
  }
}

/* -------------------------------------------------------
   3. ハンバーガーメニュー / ドロワー
-------------------------------------------------------- */
/* ハンバーガーメニュー */
.c-hamburger {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1020;
  width: 50px;
  height: 50px;
  border: none;
  cursor: pointer;
  background-color: transparent;
}
@media (max-width: 991px) {
  .c-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.c-hamburger__line {
  display: block;
  width: 25px;
  height: 1px;
  background-color: var(--color_text);
  margin: 3px 0;
  transition: all 0.3s ease;
}

.c-hamburger__text {
  color: var(--color_text);
  font-size: 10px;
  font-family: var(--font-family-sub);
}

/* ハンバーガーボタンの✖型アニメーション */
.c-hamburger.is-active {
  z-index: 1030; /* ドロワーメニュー表示時はボタンを最前面に */
  background-color: var(--color_main);
}

.c-hamburger.is-active .c-hamburger__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background-color: #fff;
}

.c-hamburger.is-active .c-hamburger__line:nth-child(2) {
  opacity: 0;
}

.c-hamburger.is-active .c-hamburger__line:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
  background-color: #fff;
}

.c-hamburger.is-active .c-hamburger__text {
  opacity: 1;
  color: #fff;
}

/* ドロワーメニュー */
.p-drawer {
  background-color: var(--color_main);
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  transition: right 0.3s ease;
  z-index: 1010;
  overflow-y: auto;
  visibility: visible;
  font-family: var(--font-family-sub);
}

.p-drawer.is-active {
  right: 0;
}

.p-drawer__inner {
  padding: 60px 20px 20px;
}

.p-drawer__nav {
  margin-top: 20px;
}

.p-drawerMenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-drawerMenu li {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.p-drawerMenu a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: block;
  padding: 15px 0;
  font-family: var(--font-family-sub);
}

/* サブメニュー対応 */
.p-drawerMenu .sub-menu {
  list-style: none;
  padding-left: 15px;
  margin-top: 0;
}

.p-drawerMenu .sub-menu li {
  margin-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.p-drawerMenu .sub-menu a {
  font-size: 12px;
  padding: 15px 0;
  font-family: var(--font-family-sub);
}

/* -------------------------------------------------------
   4. フッター
-------------------------------------------------------- */
.l-footer {
  background-image: linear-gradient(325deg, #f97979, #eea0a0);
  padding-block-start: 96px;
  font-family: var(
    --font-family-main
  ); /* メインフォント（Kiwi Maru）をフッター全体に適用 */
}

/* GoogleMapセクション */
.l-footer__map {
  width: 690px;
  height: 410px;
  position: relative;
  margin-inline: auto;
  border-radius: 5px;
  border: 5px solid #fff;
}
.l-footer__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* 情報セクション */
.l-footer__content {
  padding: 35px 0 80px;
}

.l-footer__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

/* 事業者情報エリア */
.l-footer__info {
  flex: 0 0 auto;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
  color: #fff;
}

/* ロゴと事業者名のエリア */
.l-footer__logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.l-footer__logo {
  width: 74px;
  height: 74px;
}

.l-footer__name {
  font-size: 25px;
  font-weight: bold;
  color: #fff;
  font-family: var(--font-family-sub); /* サブフォント（Noto Sans JP）を維持 */
}

.l-footer__address {
}

.l-footer__contact {
}

.l-footer__hours {
}

/* ナビゲーションエリア */
.l-footer__nav {
  flex: 1;
  padding: 0;
}

.l-footer__nav-title {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
  font-family: var(--font-family-sub); /* サブフォント（Noto Sans JP）を維持 */
}

.l-footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.l-footer__menu .menu-item {
  margin: 0;
  border: none;
}

.l-footer__menu .menu-item a {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
  border: none;
  padding: 0;
}

.l-footer__menu .menu-item a:hover {
  opacity: 0.8;
}
.l-footer__nav li:first-child a {
  border: 0;
}
/* QRコードエリア */
.l-footer__qr {
  flex: 1;
  min-width: 280px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.l-footer__qr-title {
  color: #fff;
  margin-bottom: 5px;
  letter-spacing: 0.04em;
}

.l-footer__qr-image {
  width: 165px;
  height: 165px;
  margin-block-end: 5px;
}
.l-footer__qr-text {
  color: #fff;
}

/* コピーライトセクション */
.l-footer__copyright {
  padding: 20px 0;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  position: relative;
}
.l-footer__copyright::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 95%;
  height: 1px;
  background-color: #fff;
  margin-inline: auto;
}
@media (max-width: 991px) {
  .l-footer {
    padding-block-start: 40px;
  }
  .l-footer__inner {
    flex-direction: column;
    gap: 25px;
  }
  .l-footer__map {
    width: 100%;
    height: 205px;
    border: none;
  }

  .l-footer__content {
    padding: 30px 0;
  }

  .l-footer__inner {
    flex-direction: column;
    gap: 40px;
  }

  .l-footer__logo-area {
    justify-content: flex-start;
    margin-bottom: 15px;
  }
  .l-footer__logo {
    width: 37px;
    height: 37px;
  }
  .l-footer__name {
    font-size: 13px;
  }
  .l-footer__info {
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid #fff;
    padding-block-end: 20px;
  }
  .l-footer__address {
    display: inline;
  }
  .l-footer__nav {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .l-footer__menu .menu-item a {
    font-size: 14px;
  }
  .l-footer__qr {
    text-align: center;
  }
  .l-footer__qr-image {
    width: 105px;
    height: 105px;
  }
  .l-footer__qr-text {
    font-size: 13px;
  }

  .l-footer__copyright {
    font-size: 10px;
    padding: 8px 0;
  }
}

/* -------------------------------------------------------
   5. 共通コンポーネント
-------------------------------------------------------- */
/* カラーパレット */
.c-color-deep01 {
  color: var(--color_deep01);
}
.c-color-deep02 {
  color: var(--color_deep02);
}
.c-color-deep03 {
  color: var(--color_deep03);
}
.c-color-deep04 {
  color: var(--color_deep04);
}

.c-color-pale01 {
  color: var(--color_pale01);
}
.c-color-pale02 {
  color: var(--color_pale02);
}
.c-color-pale03 {
  color: var(--color_pale03);
}
.c-color-pale04 {
  color: var(--color_pale04);
}

.c-bg-deep01 {
  background-color: var(--color_deep01);
  color: #fff;
}
.c-bg-deep02 {
  background-color: var(--color_deep02);
  color: #fff;
}
.c-bg-deep03 {
  background-color: var(--color_deep03);
  color: #fff;
}
.c-bg-deep04 {
  background-color: var(--color_deep04);
  color: #fff;
}

.c-bg-pale01 {
  background-color: var(--color_pale01);
}
.c-bg-pale02 {
  background-color: var(--color_pale02);
}
.c-bg-pale03 {
  background-color: var(--color_pale03);
}
.c-bg-pale04 {
  background-color: var(--color_pale04);
}

/* ボーダー */
.c-border-deep01 {
  border: 2px solid var(--color_deep01);
}
.c-border-deep02 {
  border: 2px solid var(--color_deep02);
}
.c-border-deep03 {
  border: 2px solid var(--color_deep03);
}
.c-border-deep04 {
  border: 2px solid var(--color_deep04);
}

/* ボタン */
.c-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--color_main);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: all 0.3s ease;
  font-family: var(--font-family-sub);
}

.c-btn:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.c-btn--outline {
  background-color: transparent;
  border: 2px solid var(--color_main);
  color: var(--color_main);
}

.c-btn--sm {
  padding: 8px 16px;
  font-size: 0.9em;
}

.c-btn--lg {
  padding: 16px 32px;
  font-size: 1.1em;
}

/* セクションヘッダー */
.c-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.c-section-header__title {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: var(--font-family-main);
}
@media (max-width: 991px) {
  .c-section-header__title {
    font-size: 1.8em;
  }
}

.c-section-header__subtitle {
  color: var(--color_main);
  font-size: 1em;
  letter-spacing: 2px;
}

.p-breadcrumb {
  color: #6c757d;
}

.p-breadcrumb a {
  color: var(--color_main);
  text-decoration: none;
}

/* Noto Sans JPを使用するクラス */
.c-font-sub {
  font-family: var(--font-family-sub);
}

/* トップに戻るボタンを非表示 */
.c-fixBtn {
  display: none !important;
}

/* -------------------------------------------------------
   7. CTAセクション
-------------------------------------------------------- */
.p-cta-section {
  padding-block-start: 90px;
  text-align: center;
  color: #fff;
  width: auto;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
}
.p-cta-section__contents {
  padding-block: 30px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  width: 960px;
  height: fit-content;
  background-color: #fff;
  background-image: linear-gradient(to bottom, #00a280 9px, transparent 9px);
}
.p-cta-section__bg {
  background: linear-gradient(to left, #00a280, #02c39a);
  width: auto;
  height: 230px;
}
@media (max-width: 991px) {
  .p-cta-section__contents {
    padding-block: 50px 30px;
    width: calc(100% - 30px);
    padding-inline: 10px;
    background-image: linear-gradient(
      to bottom,
      #00a280 36px,
      transparent 36px
    );
  }
  .p-cta-section__bg {
    height: 280px;
  }
}

/* ヘッダーエリア */
.p-cta-section__header {
  position: absolute;
  top: -14px;
  right: 0;
  left: 0;
  margin-inline: auto;
}

.p-cta-section__title {
  font-size: 16px;
  font-family: var(--font-family-sub);
  padding-inline: 2.5em;
  padding-block: 2px;
  border: 2px solid var(--color_pale03);
  border-radius: 100px;
  color: var(--color_pale03);
  width: fit-content;
  margin-inline: auto;
  background-color: #fff;
}
@media (max-width: 991px) {
  .p-cta-section__title {
    padding-inline: 1em;
    padding-block: 2px;
    border: 1px solid var(--color_pale03);
  }
}

/* 電話番号エリア */
.p-cta-section__tel {
  margin-bottom: 12px;
}

.p-cta-section__tel-link {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
}

.p-cta-section__tel-icon {
  width: 34px;
  height: 34px;
  background-image: url("images/l-header__tel-icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-cta-section__tel-number {
  font-size: 44px;
  font-family: var(--font-family-sub);
  line-height: 1;
  text-decoration: none;
  color: var(--color_text);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.p-cta-section__hours {
  font-size: 16px;
  color: var(--color_text);
  font-family: var(--font-family-sub);
  line-height: 1;
  padding-inline-start: 35px;
  margin-block-start: -4px;
  margin-block-end: 16px;
}
@media (max-width: 991px) {
  .p-cta-section__tel-icon {
    width: 27px;
    height: 27px;
  }
  .p-cta-section__tel-number {
    font-size: 33px;
  }

  .p-cta-section__hours {
    font-size: 12px;
  }
}

/* ボタンエリア */
.p-cta-section__buttons {
  display: flex;
  justify-content: center;
  gap: 46px;
  margin: 0 auto;
}

.p-cta-section__button {
  flex: 0 1 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  text-decoration: none;
  border-radius: 8px;
  transition: opacity 0.3s ease;
  font-family: var(--font-family-sub);
  border: 2px solid #fff;
  filter: drop-shadow(0 0 5px rgb(0 0 0 / 0.2));
  position: relative;
}

.p-cta-section__button:hover {
  opacity: 0.9;
}

.p-cta-section__button--line {
  background-image: linear-gradient(to bottom, #12d212, #00c300);
}

.p-cta-section__button--mail {
  background-image: linear-gradient(to bottom, #ffc757, #fc782d);
}

.p-cta-section__button-icon {
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-cta-section__button--line .p-cta-section__button-icon {
  background-image: url("images/l-header__line-icon.png");
}

.p-cta-section__button--mail .p-cta-section__button-icon {
  background-image: url("images/mail-icon.png");
}

.p-cta-section__button-text {
  font-size: 19px;
  color: #fff;
}

@media (max-width: 991px) {
  .p-cta-section__buttons {
    flex-wrap: wrap;
    gap: 20px;
  }

  .p-cta-section__button {
    flex: 0 1 345px;
    padding: 15px;
    border: none;
    filter: drop-shadow(0 0 5px rgb(0 0 0 / 0.3));
  }
  .p-cta-section__button::before {
    content: "";
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border: 1px solid #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 8px;
  }
  .p-cta-section__button::after {
    content: "";
    position: absolute;
    width: 92%;
    height: 30%;
    top: 0;
    right: 0;
    background-color: #fff;
    opacity: 0.4;
    filter: blur(11px);
  }
  .p-cta-section__button-icon {
    width: 20px;
    height: 20px;
  }

  .p-cta-section__button-text {
  }
}
/* =============================
  お問い合わせページCTAセクション (タイプ2)
============================= */
/* 既存のp-cta-sectionスタイルはそのままに、type2のカスタマイズを追加 */

/* タイプ2のベーススタイル */
.p-cta-section[data-type="type2"] {
  text-align: center;
  margin-bottom: clamp(25px, calc(50 / 750 * 100vw), 50px);
  background: none;
  width: auto;
  margin-inline: auto;
  padding-block-start: 0;
}

/* ヘッダーエリア */
.p-cta-section[data-type="type2"] .p-cta-section__header {
  position: relative;
  top: 0;
  margin-block-end: clamp(15px, calc(30 / 750 * 100vw), 30px);
}

.p-cta-section[data-type="type2"] .p-cta-section__title {
  font-size: 28px;
}
@media (max-width: 991px) {
  .p-cta-section[data-type="type2"] .p-cta-section__title {
    font-size: clamp(17px, calc(34 / 750 * 100vw), 34px);
  }
}

/* 電話番号エリア */
.p-cta-section[data-type="type2"] .p-cta-section__tel {
  margin-block-end: clamp(15px, calc(30 / 750 * 100vw), 30px);
}

.p-cta-section[data-type="type2"] .p-cta-section__tel-number {
}

.p-cta-section[data-type="type2"] .p-cta-section__hours {
}

/* ボタンエリア */
.p-cta-section[data-type="type2"] .p-cta-section__buttons {
  gap: 0;
}

.p-cta-section[data-type="type2"] .p-cta-section__button {
  flex: 0 1 450px;
}
@media (max-width: 991px) {
  .p-cta-section[data-type="type2"] .p-cta-section__button {
    flex: 0 1 700px;
  }
  .p-cta-section[data-type="type2"] .p-cta-section__button-icon {
    width: 30px;
    height: 30px;
  }
}

.p-cta-section[data-type="type2"] .p-cta-section__button-text {
  font-size: 23px;
}
@media (max-width: 991px) {
  .p-cta-section[data-type="type2"] .p-cta-section__button-text {
    font-size: clamp(18px, calc(36 / 750 * 100vw), 36px);
  }
}

/* サービスリスト */
.p-service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 991px) {
  .p-service-list {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(15px, calc(30 / 750 * 100vw), 30px);
  }
}

.p-service-list__item {
  font-size: 22px;
  font-family: var(--font-family-sub);
  font-weight: 600;
  line-height: 1.2;
  background-color: #fff;
  background-image: linear-gradient(165deg, transparent 50%, #feefef 50%);
  border-radius: 0.45em;
  transition: transform 0.3s;
  overflow: hidden;
  height: 70px;
  box-shadow: 0 0.1em 0.3em rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .p-service-list__item {
    font-size: clamp(17px, calc(34 / 750 * 100vw), 34px);
    height: clamp(50px, calc(100 / 750 * 100vw), 100px);
    border-radius: 0.3em;
  }
}

.p-service-list__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.p-service-list__link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: var(--color_text);
  height: 100%;
}

.p-service-list__text {
  text-shadow: 4px 4px 8px rgba(255, 255, 255, 1),
    4px -4px 8px rgba(255, 255, 255, 1);
}

.p-service-list__link:hover .p-service-list__text {
  color: var(--color_main);
}
