/*
 * ======================================
 * 追加クラス一覧（共通SCSS取り込み検討用）
 * ======================================
 *
 * .ysp-brand / __jp / __en          - ヘッダーテキストロゴ（JP名+EN名）
 * .ysp-header-tel / __lab / __num   - ヘッダー電話番号エリア
 * .ysp-btn-tel                      - オレンジ電話CTAボタン
 * .ysp-eyebrow                      - セクション英語ラベル（オレンジ前線+青文字）
 * .ysp-sec-head / __title           - セクション見出しブロック
 * .ysp-mv / -slides / -slide / etc  - TOPメインビジュアル
 * .ysp-reasons / .ysp-reason        - 選ばれる理由カードグリッド
 * .ysp-svc-feature-grid / etc       - サービス特集（左写真+右青パネル）
 * .ysp-touring / etc                - ツーリングセクション（ダークブルー）
 * .ysp-menu-cards / .ysp-menu-card  - メニューカード（画像+タブ）
 * .ysp-contact-cta / etc            - お問い合わせCTA（全幅背景写真）
 * .ysp-footer / etc                 - フッター（ダークブルー）
 * .ysp-footer-map                   - 全幅Googleマップ
 * .ysp-page-hero                    - 下層ページヒーロー（青グラデ）
 * .ysp-breadcrumb                   - パンくず
 * .ysp-price-table / .ysp-price-block - 料金表
 * .ysp-info-table                   - 店舗情報テーブル
 *
 * ======================================
 * 共通SCSSに不足していたもの
 * ======================================
 *
 * 構造不足：
 * - ヘッダー電話番号エリア（label+番号の縦積み）
 * - MV全画面スライドショー（JS連動Ken Burns）
 * - サービス特集グリッド（左写真+右ブルーリスト、ホバー画像切替）
 * - ツーリングセクション（clip-pathポリゴン写真）
 * - メニューカード（画像+底面スライドインタブ）
 * - お問い合わせCTAボックス（枠線ボックスhoverで反転）
 * - フッターテキストロゴ（JP+EN縦積み）
 * - ページヒーロー（独自グラデ+円形デコ）
 * - 料金ブロック見出し（Aタグ付き小ラベル+h3）
 *
 * 値の粒度不足：
 * - .section が120px、デザインは104px（tight: 78px）
 * - .container が1200px、デザインは1180px
 *
 */

/* ===================================================
   CSS Variables
   =================================================== */
:root {
  --ysp-blue:       #1977c2;
  --ysp-blue-dark:  #125a96;
  --ysp-blue-deep:  #0e4373;
  --ysp-blue-tint:  #eaf3fb;
  --ysp-orange:     #e55b00;
  --ysp-orange-dark:#c44d00;
  --ysp-ink:        #1d2a35;
  --ysp-ink-soft:   #48586a;
  --ysp-paper:      #f4f7fa;
  --ysp-line:       #e0e7ee;
  --ysp-line-strong:#c9d6e2;
  --ysp-shadow:     0 18px 48px -28px rgba(18,90,150,.45);
}

/* ===================================================
   Base overrides
   =================================================== */
body {
  font-family: 'Lato', 'Zen Kaku Gothic New', sans-serif;
  color: var(--ysp-ink);
  background: #fff;
  font-size: 16px;
  line-height: 1.85;
  min-width: 1240px;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p, ul { margin: 0; }
ul { list-style: none; padding: 0; }

/* ===================================================
   Container override（1300px ＋ 32px padding）
   =================================================== */
.container {
  max-width: 1300px;
  padding-left: 32px;
  padding-right: 32px;
}

/* ===================================================
   Cover image utility（background-image 代替）
   =================================================== */
.ysp-cover-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ===================================================
   Section overrides
   =================================================== */
.section {
  padding: 104px 0;
}
.section.ysp-tight {
  padding: 78px 0;
}
.section.ysp-paper {
  background: var(--ysp-paper);
}

/* ===================================================
   Eyebrow（セクション英語ラベル）
   =================================================== */
.ysp-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ysp-blue);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.ysp-eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--ysp-orange);
  display: inline-block;
}
.ysp-eyebrow--light {
  color: #cfe4f6;
}
.ysp-eyebrow--light::before {
  background: var(--ysp-orange);
}

/* ===================================================
   Sec-head（セクション見出しブロック）
   =================================================== */
.ysp-sec-head {
  margin-bottom: 46px;
}
.ysp-sec-head .ysp-eyebrow {
  margin-bottom: 14px;
  display: flex;
}
.ysp-sec-head--center {
  text-align: center;
}
.ysp-sec-head--center .ysp-eyebrow {
  justify-content: center;
}
.ysp-sec-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: .02em;
  color: var(--ysp-ink);
}

/* ===================================================
   Lead text
   =================================================== */
.ysp-lead {
  font-size: 17px;
  color: var(--ysp-ink-soft);
  line-height: 2.1;
  max-width: 760px;
}

/* ===================================================
   Buttons
   =================================================== */
.ysp-btn-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 4px;
  font-size: 15px;
  transition: .2s;
  cursor: pointer;
  border: none;
  line-height: 1.4;
  white-space: nowrap;
  background: var(--ysp-orange);
  color: #fff;
  box-shadow: 0 10px 26px -12px rgba(229,91,0,.7);
  text-decoration: none;
}
.ysp-btn-tel:hover {
  background: var(--ysp-orange-dark);
  transform: translateY(-2px);
  color: #fff;
}

.ysp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 4px;
  font-size: 15px;
  transition: .2s;
  cursor: pointer;
  line-height: 1.4;
  white-space: nowrap;
  background: transparent;
  color: var(--ysp-blue);
  border: 1.5px solid var(--ysp-line-strong);
  text-decoration: none;
}
.ysp-btn-ghost:hover {
  border-color: var(--ysp-blue);
  color: var(--ysp-blue-dark);
  background: var(--ysp-blue-tint);
}

/* ===================================================
   HEADER
   =================================================== */
/* 共通CSSにモディファイアがない場合のフォールバック */
.header__inner {
  display: flex;
  align-items: center;
  width: 100%;
}
.header__inner--spread {
  justify-content: space-between;
}
.header__inner--flush-right {
  margin-left: auto;
}

.header.header-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--ysp-line);
  box-shadow: none;
}
.header__inner {
  height: 84px;
  gap: 28px;
  flex-wrap: nowrap;
  padding: 0 32px;
  max-width: 1180px;
  margin: 0 auto;
}

.header.header-bar.is-scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

/* --- ブランドロゴ（テキスト） --- */
.ysp-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  text-decoration: none;
}
.ysp-brand__jp {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: .04em;
  color: var(--ysp-ink);
  white-space: nowrap;
}
.ysp-brand__en {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--ysp-blue);
  text-transform: uppercase;
  white-space: nowrap;
}

/* --- PC ナビ --- */
.header__nav {
  display: flex;
  align-items: flex-end;
  gap: 30px;
}
.header__nav-item > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  position: relative;
  padding: 4px 0 6px;
  transition: .15s;
  white-space: nowrap;
  text-decoration: none;
}
.header__nav-en {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: .07em;
  color: var(--ysp-blue);
  text-transform: uppercase;
  line-height: 1;
}
.header__nav-ja {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .02em;
  color: var(--ysp-ink-soft);
  line-height: 1;
}
.header__nav-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--ysp-orange);
  transform: scaleX(0);
  transition: .2s;
  transform-origin: center;
}
.header__nav-item > a:hover .header__nav-en,
.header__nav-item--current > a .header__nav-en {
  color: var(--ysp-orange-dark);
}
.header__nav-item > a:hover .header__nav-ja,
.header__nav-item--current > a .header__nav-ja {
  color: var(--ysp-ink);
}
.header__nav-item > a:hover::after,
.header__nav-item--current > a::after {
  transform: scaleX(1);
}

/* --- ヘッダー右：電話 + CTA --- */
.header__right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.ysp-header-tel {
  text-align: right;
  line-height: 1.15;
}
.ysp-header-tel__lab {
  font-size: 10.5px;
  color: var(--ysp-ink-soft);
  letter-spacing: .1em;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
}
.ysp-header-tel__num {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 23px;
  color: var(--ysp-blue-deep);
  letter-spacing: .01em;
  white-space: nowrap;
  text-decoration: none;
}

/* ===================================================
   SP NAV（表示はPC固定viewportのため実質非表示）
   =================================================== */
.sp-nav {
  background: linear-gradient(160deg, var(--ysp-blue-deep), var(--ysp-blue));
}
.sp-nav__bottom {
  padding: 24px 20px;
}

/* ===================================================
   お問い合わせ CTA（全幅背景写真）
   =================================================== */
.ysp-contact-cta {
  position: relative;
  overflow: hidden;
  padding: 108px 0;
  color: #fff;
  text-align: center;
}
.ysp-contact-cta__bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.ysp-contact-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(8,24,38,.72), rgba(8,24,38,.78));
  z-index: 1;
}
.ysp-contact-cta .container {
  position: relative;
  z-index: 2;
}
.ysp-contact-cta__en {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 46px;
  letter-spacing: .06em;
  line-height: 1.1;
}
.ysp-contact-cta__jp {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .2em;
  margin-top: 10px;
  color: #dbe8f4;
}
.ysp-contact-cta__lead {
  color: #e6f0f8;
  font-size: 16px;
  margin: 24px auto 0;
  max-width: 660px;
  line-height: 2.05;
}
.ysp-contact-cta__row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 42px;
  flex-wrap: wrap;
}
.ysp-contact-cta__box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 340px;
  padding: 26px 40px;
  border: 1px solid rgba(255,255,255,.55);
  color: #fff;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 16px;
  transition: .2s;
  white-space: nowrap;
  text-decoration: none;
}
.ysp-contact-cta__ic {
  font-size: 22px;
  flex: none;
}
.ysp-contact-cta__num {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 27px;
  letter-spacing: .02em;
}
.ysp-contact-cta__box:hover {
  background: #fff;
  color: var(--ysp-blue-deep);
  border-color: #fff;
}
.ysp-contact-cta__hours {
  margin-top: 26px;
  font-size: 14px;
  color: #dbe8f4;
  letter-spacing: .1em;
}

/* ===================================================
   FOOTER MAP
   =================================================== */
.ysp-footer-map {
  width: 100%;
  height: 360px;
  line-height: 0;
  background: var(--ysp-paper);
}
.ysp-footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(.15);
}

/* ===================================================
   FOOTER
   =================================================== */
.ysp-footer {
  background: var(--ysp-blue-deep);
  color: #cfe0ef;
}
.ysp-footer__main {
  padding: 64px 0 52px;
  text-align: center;
}
.ysp-footer-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 26px;
  text-decoration: none;
}
.ysp-footer-brand__jp {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: #fff;
  letter-spacing: .04em;
}
.ysp-footer-brand__en {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .24em;
  color: #8fbfe6;
  text-transform: uppercase;
  white-space: nowrap;
}
.ysp-footer__addr {
  color: #cfe0ef;
  font-size: 15px;
  letter-spacing: .02em;
}
.ysp-footer__tel-line {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #e3eef8;
  letter-spacing: .04em;
  margin-top: 6px;
}
.ysp-footer-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 8px;
  background: var(--ysp-orange);
  color: #fff;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 34px;
  border-radius: 50px;
  transition: .2s;
  box-shadow: 0 12px 28px -12px rgba(229,91,0,.8);
  white-space: nowrap;
  text-decoration: none;
}
.ysp-footer-phone-btn:hover {
  background: var(--ysp-orange-dark);
  transform: translateY(-2px);
  color: #fff;
}
.ysp-footer-phone-btn__num {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: .02em;
}
.ysp-footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 36px;
  margin-top: 34px;
}
.ysp-footer-nav a {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #cfe0ef;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: rgba(255,255,255,.25);
  transition: .15s;
  white-space: nowrap;
}
.ysp-footer-nav a:hover {
  color: #fff;
  text-decoration-color: var(--ysp-orange);
}
.ysp-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 20px 0;
  text-align: center;
  background: var(--ysp-blue-deep);
}
.ysp-footer__bottom .footer-bottom__copyright {
  color: #7fa6c6;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .06em;
  font-size: 12px;
}

/* ===================================================
   PAGE HERO（下層ページヒーロー）
   =================================================== */
.ysp-page-hero {
  background: var(--ysp-blue-deep);
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 64px 0 58px;
}
.ysp-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, var(--ysp-blue-deep) 0%, var(--ysp-blue) 100%);
  opacity: .96;
}
.ysp-page-hero::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -40px;
  width: 380px;
  height: 380px;
  border: 60px solid rgba(255,255,255,.05);
  border-radius: 50%;
}
.ysp-page-hero .container {
  position: relative;
  z-index: 1;
}
.ysp-page-hero h1 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 40px;
  letter-spacing: .03em;
  margin-top: 14px;
  line-height: 1.3;
}

/* --- パンくず --- */
.ysp-breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12.5px;
  color: #a9c9e6;
  margin-top: 18px;
}
.ysp-breadcrumb a:hover {
  color: #fff;
}
.ysp-breadcrumb span {
  color: #6f99bf;
}

/* ===================================================
   PAGE-TOP ボタン
   =================================================== */
.page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
  display: none;
}
.page-top.is-visible {
  display: block;
}
.page-top__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--ysp-blue);
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: .2s;
  box-shadow: 0 4px 16px rgba(25,119,194,.4);
}
.page-top__link:hover {
  background: var(--ysp-blue-dark);
  transform: translateY(-2px);
}

/* ===================================================
   TOP：MV キャッチコピー 文字アニメーション（design_base_source 準拠）
   =================================================== */
.glowAnime span {
  opacity: 0;
}
.glowAnime.glow span {
  animation: glow_anime_on 1s ease-out forwards;
}

@keyframes glow_anime_on {
  0% {
    opacity: 0;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 10px #fff, 0 0 15px #fff;
  }
  100% {
    opacity: 1;
  }
}

/* ===================================================
   TOP：メインビジュアル（MV）
   =================================================== */
.ysp-mv {
  position: relative;
  height: calc(100vh - 84px);
  min-height: 560px;
  max-height: 860px;
  overflow: hidden;
  background: #0e2233;
}

/* スライドショー外枠（CMSスライダー差し替え対応） */
#slideshow {
  position: absolute;
  inset: 0;
  height: 100%; /* CMSスライダーが height:100% で外枠に追従するため明示 */
}

/* スライド（CMS差し替え後も効くよう .swiper-slide に当てる） */
#slideshow .swiper-slide {
  height: 100%;
  overflow: hidden;
}
#slideshow .main_slider__inner {
  height: 100%;
}
#slideshow .main_slider__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ysp-mv-inner {
  position: relative;
  z-index: 2;
  height: 100%;
}
.ysp-mv-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.6) 0%, rgba(0,0,0,.3) 55%, transparent 100%);
  z-index: 0;
}
.ysp-mv-copy {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  padding-bottom: 80px;
  padding-left: 60px;
  position: relative;
  z-index: 1;
  margin-left: 0;
  margin-right: auto;
  max-width: none;
}
.ysp-mv-est {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: .14em;
  color: #fff;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 22px;
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(0,0,0,.8), 0 3px 16px rgba(0,0,0,.6);
}
.ysp-mv-est b {
  background: var(--ysp-orange);
  color: #fff;
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 12px;
  letter-spacing: .08em;
}
.ysp-mv-copy h1 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 60px;
  line-height: 1.3;
  letter-spacing: .02em;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,.75);
  white-space: nowrap;
  background: none;
  padding: 0;
  position: relative;
}
.ysp-mv-copy p {
  margin-top: 22px;
  font-size: 17px;
  line-height: 2.05;
  color: #dde9f5;
  max-width: 520px;
  text-shadow: 0 1px 6px rgba(0,0,0,.85), 0 3px 18px rgba(0,0,0,.65);
  margin-left: 0;
  margin-right: 0;
}
.ysp-mv-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  align-items: center;
  justify-content: center;
}
.ysp-mv-actions .ysp-btn-ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.6);
  backdrop-filter: blur(2px);
}
.ysp-mv-actions .ysp-btn-ghost:hover {
  background: #fff;
  color: var(--ysp-blue-dark);
  border-color: #fff;
}
.ysp-mv-scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 3;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: .85;
}
.ysp-mv-scroll-line {
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,.7);
  animation: yspScrollLine 1.8s ease-in-out infinite;
}
@keyframes yspScrollLine {
  0%,100% { transform: scaleY(.4); opacity: .4; transform-origin: top; }
  50%      { transform: scaleY(1);  opacity: 1;  transform-origin: top; }
}

/* ===================================================
   TOP：ご挨拶（design_base_source/css/basis.css 移植）
   =================================================== */

/* --- コンテナ --- */
.single1 {
  margin: 0 auto;
  padding: 80px 50px;
}
@media all and (max-width: 1300px) {
  .single1 {
    width: 95%;
    margin: 0 auto;
    padding: 40px 0;
  }
}

/* --- note-side --- */
.note-side {
  position: relative;
}
@media all and (max-width: 639px) {
  .note-side {
    padding: 0 5px;
  }
}

/* --- top-service レイアウト --- */
.top-service {
  margin: 0 auto;
}
.top-service .inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.top-service .inner .top-service-img {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 48%;
}
.top-service .inner .top-service-img .img01,
.top-service .inner .top-service-img .img02 {
  width: 48%;
}
.top-service .inner .top-service-img .img01 img {
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 15%);
  width: 100%;
  height: auto;
  display: block;
}
.top-service .inner .top-service-img .img02 {
  margin-top: 40px;
}
.top-service .inner .top-service-img .img02 img {
  clip-path: polygon(100% 0, 100% 85%, 85% 100%, 0 100%, 0 0);
  width: 100%;
  height: auto;
  display: block;
}
.top-service .inner .top-service-txt {
  width: 48%;
  z-index: 2;
}
@media all and (max-width: 1200px) {
  .top-service .inner .top-service-img { width: 42%; }
  .top-service .inner .top-service-txt { width: 55%; }
}
@media all and (max-width: 896px) {
  .top-service .inner {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
  .top-service .inner .top-service-img {
    width: 100%;
    margin-bottom: 30px;
    order: -1;
  }
  .top-service .inner .top-service-txt {
    width: 100%;
    margin: auto;
    padding: 0 5px;
  }
}
@media all and (max-width: 639px) {
  .top-service .inner { max-width: 100%; }
  .top-service .inner .top-service-img .img02 { margin-top: 20px; }
}

/* --- title-big（basis.css 62.5%ベースのremをpx換算） --- */
.title-big {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
  text-align: center;
}
.title-big.left {
  text-align: left;
}
.title-big .eng {
  font-size: 75px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--ysp-orange);
}
.title-big .ja {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  letter-spacing: 0.18em;
  font-size: 32px;
  display: block;
  color: var(--ysp-ink);
}
.title-big.type2 .eng {
  display: inline-block;
  background: linear-gradient(90deg, var(--ysp-orange), var(--ysp-blue));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--ysp-orange);
}
@media all and (max-width: 1200px) {
  .title-big .eng { font-size: 60px; }
}
@media all and (max-width: 896px) {
  .title-big { margin-bottom: 30px; }
  .title-big.left { text-align: center; }
  .title-big .eng { font-size: 45px; }
  .title-big .ja { font-size: 26px; }
}
@media all and (max-width: 639px) {
  .title-big .eng { font-size: 40px; }
  .title-big .ja { font-size: 20px; }
}

/* --- title22 --- */
.title22 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  letter-spacing: 0.18em;
  font-size: 22px;
  margin-bottom: 24px;
  color: var(--ysp-ink);
  line-height: 1.7;
}
@media all and (max-width: 896px) {
  .title22 { font-size: 18px; }
}
@media all and (max-width: 639px) {
  .title22 { font-size: 15px; letter-spacing: 0.15em; }
}

/* --- sentence（段落間余白） --- */
.sentence p + p {
  margin-top: 20px;
}
.top-service-txt p {
  color: var(--ysp-ink-soft);
  font-size: 15.5px;
  line-height: 2.1;
}

/* ===================================================
   TOP：選ばれる3つの理由
   =================================================== */
.ysp-reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.ysp-reason {
  padding: 0;
  border: 1px solid var(--ysp-line);
  border-radius: 8px;
  background: #fff;
  transition: .25s;
  position: relative;
  overflow: hidden;
}
.ysp-reason:hover {
  box-shadow: var(--ysp-shadow);
  transform: translateY(-4px);
  border-color: var(--ysp-line-strong);
}
.ysp-reason__photo {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.ysp-reason__photo .ysp-cover-img {
  transition: transform .55s ease;
}
.ysp-reason:hover .ysp-reason__photo .ysp-cover-img {
  transform: scale(1.06);
}
.ysp-reason__body {
  padding: 32px 32px 38px;
  position: relative;
}
.ysp-reason__no {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 54px;
  color: var(--ysp-blue-tint);
  line-height: 1;
  position: absolute;
  top: 14px;
  right: 22px;
}
.ysp-reason__icon {
  width: 48px;
  height: 48px;
  color: var(--ysp-blue);
  margin-bottom: 20px;
  position: relative;
}
.ysp-reason h3 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 21px;
  color: var(--ysp-ink);
  line-height: 1.5;
  margin-bottom: 14px;
  position: relative;
}
.ysp-reason p {
  font-size: 14.5px;
  color: var(--ysp-ink-soft);
  line-height: 1.95;
  position: relative;
}

/* ===================================================
   bg-polygon 背景（design_base_source/css/basis.css 準拠）
   色はサイト変数に適合
   =================================================== */
.bg-polygon {
  position: relative;
  background: linear-gradient(-45deg, var(--ysp-blue-deep), var(--ysp-blue), var(--ysp-blue-deep));
}
.bg-polygon::before,
.bg-polygon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 81px;
  background: #ffffff;
  z-index: 1;
}
.bg-polygon::before {
  top: -1px;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.bg-polygon::after {
  bottom: -1px;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
@media all and (max-width: 896px) {
  .bg-polygon::before,
  .bg-polygon::after {
    height: 41px;
  }
}

/* bg-polygon内コンテンツの前面配置とテキスト色 */
.bg-polygon .container {
  position: relative;
  z-index: 2;
}
.bg-polygon .ysp-eyebrow {
  color: #cfe4f6;
}
.bg-polygon .ysp-eyebrow::before {
  background: var(--ysp-orange);
}
.bg-polygon .ysp-sec-title {
  color: #fff;
}

/* ===================================================
   TOP：サービス紹介（左写真+右ブルーリスト）
   =================================================== */
.ysp-svc-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  align-items: stretch;
  box-shadow: var(--ysp-shadow);
  border-radius: 5px;
  overflow: hidden;
}
.ysp-svc-photo {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.ysp-svc-pic {
  position: absolute;
  inset: 0;
}
.ysp-svc-pic-top {
  opacity: 0;
  transition: opacity .45s ease;
}
.ysp-svc-panel {
  background: linear-gradient(160deg, var(--ysp-blue) 0%, var(--ysp-blue-deep) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ysp-svc-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 36px;
  color: #fff;
  transition: .2s;
  border-bottom: 1px solid rgba(255,255,255,.15);
  text-decoration: none;
}
.ysp-svc-item:last-child {
  border-bottom: none;
}
.ysp-svc-item__ic {
  width: 32px;
  height: 32px;
  flex: none;
  color: #bcdcf6;
  transition: .2s;
}
.ysp-svc-item__txt {
  flex: 1;
}
.ysp-svc-item__t {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 18px;
  display: block;
  line-height: 1.3;
  color: #fff;
}
.ysp-svc-item__arrow {
  flex: none;
  color: #bcdcf6;
  font-size: 18px;
  transition: .2s;
}
.ysp-svc-item:hover {
  background: #fff;
}
.ysp-svc-item:hover .ysp-svc-item__t { color: var(--ysp-blue-deep); }
.ysp-svc-item:hover .ysp-svc-item__ic,
.ysp-svc-item:hover .ysp-svc-item__arrow { color: var(--ysp-orange); }
.ysp-svc-item:hover .ysp-svc-item__arrow { transform: translateX(5px); }

/* ===================================================
   TOP：ツーリング・交流（ダークブルー）
   =================================================== */
.ysp-touring {
  background: var(--ysp-blue-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ysp-touring::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--ysp-blue-deep), var(--ysp-blue));
  opacity: .97;
}
.ysp-touring-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 56px;
  align-items: center;
}
.ysp-touring-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.ysp-tp {
  position: relative;
  overflow: hidden;
  height: 240px;
  box-shadow: 0 30px 60px -26px rgba(0,0,0,.65);
}
.ysp-tp-1 {
  margin-right: 40px;
}
.ysp-tp-2 {
  margin-left: 40px;
}
.ysp-touring-text h2 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 38px;
  line-height: 1.45;
  margin: 16px 0 24px;
  letter-spacing: .02em;
}
.ysp-touring-text p {
  color: #d2e4f4;
  font-size: 16px;
  line-height: 2.15;
}
.ysp-tour-tags {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.ysp-tour-tags span {
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 30px;
  padding: 7px 18px;
  font-size: 13px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
}

/* ===================================================
   TOP：メニューカード
   =================================================== */
.ysp-menu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ysp-menu-card {
  position: relative;
  display: block;
  height: 340px;
  overflow: hidden;
  background: #dfe6ee;
  text-decoration: none;
}
.ysp-menu-card__img {
  position: absolute;
  inset: 0;
  transition: transform .55s ease;
}
.ysp-menu-card:hover .ysp-menu-card__img {
  transform: scale(1.06);
}
.ysp-menu-card__tab {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: #fff;
  padding: 20px 46px 20px 28px;
  min-width: 74%;
  transition: .2s;
}
.ysp-menu-card:hover .ysp-menu-card__tab {
  background: var(--ysp-blue-deep);
}
.ysp-menu-card__en {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ysp-orange-dark);
  line-height: 1;
}
.ysp-menu-card:hover .ysp-menu-card__en {
  color: #7fc0f5;
}
.ysp-menu-card__jp {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 9px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--ysp-ink);
  line-height: 1;
}
.ysp-menu-card:hover .ysp-menu-card__jp {
  color: #fff;
}
.ysp-menu-card__jp::after {
  content: "\2192";
  color: var(--ysp-orange);
  font-weight: 600;
  transition: .2s;
}
.ysp-menu-card:hover .ysp-menu-card__jp::after {
  transform: translateX(4px);
  color: #fff;
}

/* ===================================================
   TOP：アクセスセクション
   =================================================== */
.ysp-access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.ysp-access-map {
  border: 1px solid var(--ysp-line);
  border-radius: 10px;
  overflow: hidden;
  height: 380px;
  background: var(--ysp-paper);
}
.ysp-access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.ysp-access-info h3 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--ysp-ink);
  margin-bottom: 20px;
}
.ysp-access-info table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  margin-bottom: 24px;
}
.ysp-access-info th {
  width: 140px;
  text-align: left;
  padding: 14px 16px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  color: var(--ysp-blue-deep);
  background: var(--ysp-paper);
  border-bottom: 1px solid var(--ysp-line);
  vertical-align: top;
}
.ysp-access-info td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--ysp-line);
  color: var(--ysp-ink);
}

/* ===================================================
   About：お店の紹介
   =================================================== */
.ysp-intro {
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 520px;
}
.ysp-intro .container {
  display: contents;
}
.ysp-intro-text {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ysp-intro-photo {
  position: relative;
  overflow: hidden;
  height: auto;
  border-radius: 0;
}
.ysp-intro-text h2 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 33px;
  line-height: 1.5;
  color: var(--ysp-ink);
  margin: 16px 0 22px;
}
.ysp-intro-text p {
  color: var(--ysp-ink-soft);
  font-size: 16px;
  line-height: 2.15;
}
@media (max-width: 896px) {
  .ysp-intro {
    display: block;
    padding: 80px 32px;
  }
  .ysp-intro .container {
    display: block;
  }
  .ysp-intro-text {
    padding: 0 0 40px;
  }
  .ysp-intro-photo {
    height: 300px;
    border-radius: 6px;
  }
}

/* ===================================================
   About：店主のストーリー
   =================================================== */
.ysp-story .container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.ysp-story-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.ysp-story-ph {
  position: relative;
  overflow: hidden;
  height: 240px;
  box-shadow: 0 30px 60px -26px rgba(0,0,0,.65);
}
.ysp-story-ph--tall {
  height: 240px;
  margin-right: 40px;
}
.ysp-story-ph:not(.ysp-story-ph--tall) {
  margin-left: 40px;
}
.ysp-story-body h2 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 30px;
  line-height: 1.5;
  color: var(--ysp-ink);
  margin: 14px 0 8px;
}
.ysp-story-body .ysp-kicker {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--ysp-blue);
  margin: 28px 0 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ysp-story-body .ysp-kicker::before {
  content: "";
  width: 26px;
  height: 3px;
  background: var(--ysp-orange);
}
.ysp-story-body p {
  color: var(--ysp-ink-soft);
  font-size: 15.5px;
  line-height: 2.1;
  margin-bottom: 18px;
}
.ysp-pull {
  border-left: 4px solid var(--ysp-orange);
  background: var(--ysp-paper);
  padding: 24px 30px;
  border-radius: 0 8px 8px 0;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--ysp-ink);
  line-height: 1.7;
  margin: 6px 0 30px;
}

/* ===================================================
   About：こだわり・想い（ダークブルー）
   =================================================== */
.ysp-belief {
  background: var(--ysp-blue-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ysp-belief::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--ysp-blue-deep), var(--ysp-blue));
  opacity: .97;
}
.ysp-belief .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.ysp-belief h2 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 34px;
  line-height: 1.55;
  margin: 16px 0 22px;
}
.ysp-belief p {
  color: #d2e4f4;
  font-size: 16px;
  line-height: 2.15;
}
.ysp-belief-photo {
  position: relative;
  overflow: hidden;
  height: 340px;
  border-radius: 6px;
}

/* ===================================================
   About：お客様との関係性
   =================================================== */
.ysp-rel .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ysp-rel-photo {
  position: relative;
  overflow: hidden;
  height: 360px;
  border-radius: 6px;
}
.ysp-rel-text h2 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 30px;
  line-height: 1.5;
  color: var(--ysp-ink);
  margin: 16px 0 20px;
}
.ysp-rel-text p {
  color: var(--ysp-ink-soft);
  font-size: 15.5px;
  line-height: 2.15;
}
.ysp-rel-tags {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.ysp-rel-tags span {
  background: var(--ysp-blue-tint);
  color: var(--ysp-blue-dark);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 13px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
}

/* ===================================================
   About/Contact：店舗情報テーブル
   =================================================== */
.ysp-info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--ysp-line);
}
.ysp-info-table th {
  width: 170px;
  text-align: left;
  vertical-align: top;
  padding: 18px 20px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  color: var(--ysp-blue-deep);
  background: var(--ysp-paper);
  border-bottom: 1px solid var(--ysp-line);
}
.ysp-info-table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--ysp-line);
  color: var(--ysp-ink);
}
.ysp-info-table .ysp-tel-num {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--ysp-orange-dark);
}

/* ===================================================
   Service：リード
   =================================================== */
.ysp-svc-lead {
  text-align: center;
}
.ysp-svc-lead h2 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 30px;
  line-height: 1.6;
  color: var(--ysp-ink);
  margin-bottom: 20px;
}
.ysp-svc-lead p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ysp-ink-soft);
  font-size: 16px;
  line-height: 2.1;
}

/* ===================================================
   Service：サービス行
   =================================================== */
.ysp-svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 54px 0;
  border-bottom: 1px solid var(--ysp-line);
}
.ysp-svc-row:last-child {
  border-bottom: none;
}
.ysp-svc-row--rev .ysp-svc-text {
  order: 2;
}
.ysp-svc-row--rev .ysp-svc-img {
  order: 1;
}
.ysp-svc-img-ph {
  position: relative;
  overflow: hidden;
  height: 320px;
  border-radius: 6px;
}
.ysp-svc-no {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--ysp-orange);
  letter-spacing: .12em;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.ysp-svc-no::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--ysp-line);
}
.ysp-svc-text h3 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 27px;
  color: var(--ysp-ink);
  margin-bottom: 8px;
}
.ysp-svc-en-sub {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--ysp-blue);
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.ysp-svc-text p {
  color: var(--ysp-ink-soft);
  font-size: 15px;
  line-height: 2.05;
}
.ysp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}
.ysp-chips li {
  background: var(--ysp-blue-tint);
  color: var(--ysp-blue-dark);
  border-radius: 5px;
  padding: 7px 14px;
  font-size: 13px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
}

/* ===================================================
   Service：一台まるごと点検（ダークブルー）
   =================================================== */
.ysp-whole-check {
  background: var(--ysp-blue-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ysp-whole-check::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--ysp-blue-deep), var(--ysp-blue));
  opacity: .97;
}
.ysp-whole-check .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ysp-whole-check h2 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 34px;
  line-height: 1.5;
  margin: 16px 0 22px;
}
.ysp-whole-check p {
  color: #d2e4f4;
  font-size: 16px;
  line-height: 2.15;
}
.ysp-whole-check-steps {
  margin-top: 26px;
  display: grid;
  gap: 14px;
}
.ysp-whole-check-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 15px;
  color: #d2e4f4;
}
.ysp-whole-check-steps .ysp-step-n {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  background: var(--ysp-orange);
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  flex: none;
  font-size: 14px;
  color: #fff;
}
.ysp-whole-check-photo {
  position: relative;
  overflow: hidden;
  height: 380px;
  border-radius: 6px;
}

/* ===================================================
   Price：リード
   =================================================== */
.ysp-price-lead {
  text-align: center;
}
.ysp-price-lead h2 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 30px;
  color: var(--ysp-ink);
  margin-bottom: 18px;
}
.ysp-price-lead p {
  max-width: 760px;
  margin: 0 auto 10px;
  color: var(--ysp-ink-soft);
  font-size: 15.5px;
  line-height: 2.05;
}
.ysp-note {
  font-size: 13px;
  color: var(--ysp-ink-soft);
  margin-top: 12px;
  line-height: 1.8;
}
.ysp-note--warn {
  color: var(--ysp-orange-dark);
}

/* anchor nav */
.ysp-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
}
.ysp-anchor-nav a {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ysp-blue-dark);
  border: 1.5px solid var(--ysp-line-strong);
  border-radius: 30px;
  padding: 8px 18px;
  transition: .15s;
  text-decoration: none;
}
.ysp-anchor-nav a:hover {
  background: var(--ysp-blue);
  color: #fff;
  border-color: var(--ysp-blue);
}

/* カテゴリバンド */
.ysp-cat-band {
  background: var(--ysp-paper);
  border-top: 1px solid var(--ysp-line);
  border-bottom: 1px solid var(--ysp-line);
}
.ysp-cat-band .container {
  padding-top: 30px;
  padding-bottom: 30px;
}
.ysp-cat-band h2 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 25px;
  color: var(--ysp-ink);
  margin-top: 8px;
}
.ysp-cat-band .ysp-tax {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: var(--ysp-orange);
  font-size: 13px;
  letter-spacing: .08em;
}

/* 料金ブロック */
.ysp-price-block {
  margin-bottom: 54px;
}
.ysp-price-block-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.ysp-price-block-head .ysp-tag {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: #fff;
  background: var(--ysp-orange);
  width: 34px;
  height: 34px;
  border-radius: 5px;
  display: grid;
  place-items: center;
  font-size: 15px;
  flex: none;
}
.ysp-price-block-head h3 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 21px;
  color: var(--ysp-ink);
}

/* 料金テーブル */
.ysp-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  background: #fff;
}
.ysp-price-table th,
.ysp-price-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--ysp-line);
}
.ysp-price-table thead th {
  background: var(--ysp-blue);
  color: #fff;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .04em;
  border-bottom: none;
}
.ysp-price-table thead th.ysp-num,
.ysp-price-table td.ysp-num {
  text-align: right;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
}
.ysp-price-table tbody tr:nth-child(even) {
  background: var(--ysp-paper);
}
.ysp-price-table tbody tr:hover {
  background: var(--ysp-blue-tint);
}
.ysp-yen {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: var(--ysp-blue-deep);
}
td.ysp-num .ysp-yen {
  font-size: 16px;
}

/* 2列グリッド（価格表内） */
.ysp-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* ===================================================
   Contact：電話ヒーロー
   =================================================== */
.ysp-tel-hero {
  text-align: center;
}
.ysp-tel-hero h2 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: var(--ysp-ink);
  margin-bottom: 16px;
}
.ysp-tel-hero > .container > p {
  max-width: 640px;
  margin: 0 auto 40px;
  color: var(--ysp-ink-soft);
  font-size: 16px;
  line-height: 2.05;
}
.ysp-tel-card {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--ysp-line);
  border-radius: 14px;
  box-shadow: var(--ysp-shadow);
  padding: 48px 40px;
  text-align: center;
  border-top: 5px solid var(--ysp-orange);
}
.ysp-tel-card__lab {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--ysp-blue);
  font-size: 14px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ysp-tel-card__lab::before,
.ysp-tel-card__lab::after {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--ysp-orange);
}
.ysp-tel-card__num {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 58px;
  color: var(--ysp-blue-deep);
  line-height: 1.1;
  margin: 14px 0 4px;
  letter-spacing: .01em;
  text-decoration: none;
}
.ysp-tel-card__hours {
  color: var(--ysp-ink-soft);
  font-size: 15px;
  margin-bottom: 0;
}
.ysp-tel-card__hours b {
  color: var(--ysp-ink);
  font-weight: 700;
}
.ysp-tel-card__micro {
  margin-top: 18px;
  font-size: 13px;
  color: var(--ysp-ink-soft);
}

/* Contact：グリッド（情報+地図） */
.ysp-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: start;
}
.ysp-info-head {
  margin-bottom: 20px;
}
.ysp-info-head .ysp-eyebrow {
  margin-bottom: 10px;
}
.ysp-info-head h2 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--ysp-ink);
}
.ysp-map-frame {
  border: 1px solid var(--ysp-line);
  border-radius: 10px;
  overflow: hidden;
  height: 420px;
  background: var(--ysp-paper);
}
.ysp-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.ysp-map-note {
  font-size: 12.5px;
  color: var(--ysp-ink-soft);
  margin-top: 10px;
}
.ysp-map-note a {
  color: var(--ysp-blue);
}

/* ===================================================
   About：代表者プロフィール
   =================================================== */
.ysp-story-body__owner {
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid var(--ysp-line);
  border-radius: 6px;
  background: #fff;
}
.ysp-story-body__owner p {
  margin: 0;
  font-size: 15px;
  color: var(--ysp-ink);
}

/* ===================================================
   Price：末尾 CTA
   =================================================== */
.ysp-price-end {
  text-align: center;
  padding: 42px 0 8px;
  border-top: 1px solid var(--ysp-line);
}
.ysp-price-end p {
  color: var(--ysp-ink-soft);
  font-size: 15px;
  margin-bottom: 22px;
}

/* ===================================================
   Contact：電話CTAボタン（大サイズ）
   =================================================== */
.ysp-btn-tel--lg {
  font-size: 18px;
  padding: 18px 44px;
}
