/*
Theme Name: Lightning-child
Text Domain: lightning
Theme URI: https://lightning.vektor-inc.co.jp/en/
Description: Lightning is a very simple & easy to customize theme which is based on the Bootstrap. It is also very friendly with custom post types and custom taxonomies. When you add a new one, the breadcrumbs will be adjusted and posts will look beautifully without editing or adding a template files.
Author: Vektor,Inc.
Author URI: https://www.vektor-inc.co.jp
Version: 15.33.1
Requires at least: 6.5
Tested up to: 6.9
Requires PHP: 7.4
Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready, block-styles, wide-blocks
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Lightning WordPress theme, Copyright (C) 2015-2026 Vektor,Inc.
Lightning WordPress theme is licensed under the GPL.

Lightning WordPress Theme bundles the following third-party resources:

Font Awesome icon font, Copyright 2012 Fonticons, Inc.
its fonts are licensed under the terms of the SIL OFL License 1.1, and its code is licensed under the terms of the MIT license
Source: https://fontawesome.com/

Bootstrap framework, Copyright 2011 Bootstrap Authors and Twitter, Inc.
Bootstrap is licensed under the terms of the MIT license
Source: https://getbootstrap.com/

CSS Simple Tree Shaking
CSS Simple Tree Shaking is licensed under the terms of the GNU General Public License v2 license
Source: https://celtislab.net/
*/

/*
 * Theme Name: Tokyo Catering Link - Lightning Child
 * Template: lightning
 * Version: 1.0
 * Description: 東京ケータリングリンク カスタムスタイル
 */

/* ============================================================
   カラー変数
============================================================ */
:root {
    --tcl-orange:  #e8692a;
    --tcl-dark:    #1a1a1a;
    --tcl-gray:    #f5f5f5;
    --tcl-text:    #333;
    --tcl-white:   #ffffff;
    /* サイト全体：ヒラギノ角ゴ ProN 優先（macOS は和名、Windows 等は Yu Gothic / Meiryo にフォールバック） */
    --tcl-font-ja:'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic UI', YuGothic, 'メイリオ', Meiryo, sans-serif;
    --tcl-font-en: var(--tcl-font-ja);
  }

  html {
    font-family: var(--tcl-font-ja);
  }

  /* ============================================================
     グローバルリセット・基本
  ============================================================ */
  body {
    font-family: var(--tcl-font-ja);
    color: var(--tcl-text);
    background-color: var(--tcl-white);
    margin: 0;
  }

  /* Rodin-light 風の見出し用 */
  .tcl-subpage__title,
  .tcl-section-title--sm,
  .tcl-section-title,
  .tcl-services__label{
    font-family: var(--tcl-font-ja);
    font-weight: 300;
    letter-spacing: 0.06em;
    border:none;
  }
  
  *, *::before, *::after {
    box-sizing: border-box;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  a {
    color: var(--tcl-orange);
    text-decoration: none;
  }
  a:hover {
    text-decoration: underline;
  }
  
  /* ============================================================
     共通コンテナ
  ============================================================ */
  .tcl-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0px 24px;
  }
  
  /* ============================================================
     共通セクションタイトル
  ============================================================ */
  .tcl-section-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-align: center;
    color: var(--tcl-dark);
    margin: 0 0 16px;
    padding-top: 72px;
    border:none;
  }
  
  .tcl-section-title--sm {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--tcl-dark);
    padding-left: 12px;
    margin: 56px 0 24px;
    border-top: none;
  }
  
/* ヘッダー全体 */
.site-header {
  background: #fff;
  border-bottom: none;
  box-shadow: none;
  padding: 12px 0;
}

/* ============================================================
   カスタムヘッダー
============================================================ */
.tcl-header {
  background: #fff;
}

.tcl-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 32px;
  height: 80px;
}

/* ロゴ */
.tcl-header__logo a {
  display: block;
  text-decoration: none;
}

.tcl-header__logo .custom-logo {
  max-height: 120px;
  width: auto;
}

.tcl-header__logo-img {
  max-height: 120px;
  width: auto;
  margin-top: 20px;
}

.tcl-header__sitename {
  font-size: 14px;
  font-weight: 500;
  color: var(--tcl-dark);
}

/* ナビ */
.tcl-nav__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.tcl-nav__list .menu-item a {
  display: block;
  font-family: var(--tcl-font-en);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #333 !important;
  text-decoration: none;
  line-height: 80px;   /* ← ヘッダーの高さに合わせる */
  transition: color .2s;
}

.tcl-nav__list .menu-item a:hover,
.tcl-nav__list .current-menu-item > a {
  color: var(--tcl-orange) !important;
}

/* ハンバーガー */
.tcl-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.tcl-header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--tcl-dark);
  transition: transform .3s, opacity .3s;
}

.tcl-header__burger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.tcl-header__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.tcl-header__burger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

#menu-cooking{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}


/* ============================================================
   レスポンシブ
============================================================ */
@media screen and (max-width: 768px) {
  .tcl-header__nav {
    display: none;
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 999;
    padding: 80px 0;
  }

  .tcl-header__nav.is-open {
    display: block;
  }

  .tcl-nav__list {
    flex-direction: column;
  }

  .tcl-nav__list .menu-item a {
    line-height: 1;
    padding: 16px 24px;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
  }

  .tcl-header__burger {
    display: flex;
    position: relative;
    z-index: 1000;
  }

  .tcl-drawer-overlay.is-open {
    display: block;
  }

  body.tcl-drawer-open {
    overflow: hidden;
  }
}


  /* ============================================================
     ヒーロースライダー
  ============================================================ */
  .tcl-hero {
    position: relative;
    width: 100%;
    background: var(--tcl-dark);
  }
  
  .tcl-hero-swiper {
    width: 100%;
    height: 854px;
  }
  
  .tcl-hero__img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  
  /* オーバーレイ全体（スライダーの上に乗る） */
  .tcl-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;  /* スライダー操作を妨げない */
  }
  
  /* 半透明白枠ボックス */
  .tcl-hero__overlay-box {
    text-align: center;
  }
  
  /* ボックス内ロゴ */
  .tcl-hero__overlay-logo {
    width: 400px;
    height: auto;
  }
  
  /* キャッチコピー */
  .tcl-hero__catchcopy {
    margin-top: 24px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.15em;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  }
  
  /* レスポンシブ */
  @media screen and (max-width: 768px) {
    .tcl-hero-swiper,
    .tcl-hero__img {
      height: 300px;
    }
  
    .tcl-hero__overlay-box {
      padding: 24px 32px;
    }
  
    .tcl-hero__overlay-logo {
      width: 180px;
    }
  
    .tcl-hero__catchcopy {
      font-size: 13px;
    }
  }

  .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{
    display: none;
  }

  .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
    display: none;
  }
/* ============================================================
   SERVICESセクション
============================================================ */
.tcl-services {
    padding-bottom: 72px;
  }
  
  .tcl-services__subtitle {
    text-align: center;
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    margin: 0 0 40px;
  }

  .tcl-services__lead{
    text-align: center;
    padding-bottom: 40px;
    font-size: 18px;
  }
  

  /* モバイル: 画像1→文1→画像2→文2（flex column） / PC: 2列グリッド */
  .tcl-services__body {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .tcl-services__img-wrap {
    position: relative;
    height: 500px;
    overflow: hidden;
  }

  .tcl-services__img-inner {
    position: absolute;
    inset: -80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    transition: transform 0.4s ease-out;
  }

  .tcl-services__detail-item {
    padding: 40px 10% 48px;
    text-align: center;
  }

  /* PC: 2列グリッド（上段: 画像1 | 画像2、下段: 文1 | 文2） */
  @media screen and (min-width: 769px) {
    .tcl-services__body {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 20px 20px;
      width: 90%;
      margin: 0 auto;
    }
    .tcl-services__body > .tcl-services__img-wrap:nth-child(1) { grid-column: 1; grid-row: 1; }
    .tcl-services__body > .tcl-services__detail-item:nth-child(2) { grid-column: 1; grid-row: 2;}
    .tcl-services__body > .tcl-services__img-wrap:nth-child(3) { grid-column: 2; grid-row: 1; }
    .tcl-services__body > .tcl-services__detail-item:nth-child(4) { grid-column: 2; grid-row: 2; }
  }

  .tcl-services__text {
    font-size: 14px;
    line-height: 2;
    color: #555;
    margin: 0 0 20px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  /* 本文リード用タイポ（トップ SERVICES 紹介文・.tcl-subpage__lead 共通） */
  .tcl-services__intro,
  .tcl-subpage__lead {
    font-family: var(--tcl-font-ja);
    font-weight: 300;
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0.06em;
    color: #444;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  .tcl-services__intro {
    margin: 0 auto 20px;
    max-width: 520px;
  }
  
  .tcl-services__label {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--tcl-dark);
    margin: 60px auto;
  }
  
  /* 黒ボタン */
  .tcl-btn-dark {
    display: inline-block;
    background: var(--tcl-dark);
    color: var(--tcl-white) !important;
    text-decoration: none !important;
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    border: 2px solid var(--tcl-dark);
    transition: background 0.2s, color 0.2s;
  }
  
  .tcl-btn-dark:hover {
    background: var(--tcl-white);
    color: var(--tcl-dark) !important;
  }
  
  /* SNS */
  .tcl-sns {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 120px;
  }
  
  .tcl-sns__link{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 18px;  
    transition: border-color 0.2s, color 0.2s;
  }

  .tcl-sns__link-ig {
    border: 1px solid #ccc;
    color: var(--tcl-dark) !important;
  }

  .tcl-sns__link-fb {
    background: #000;
    color: #fff;
  }
  
  

  .tcl-sns__link:hover {
    border-color: var(--tcl-orange);
    color: var(--tcl-orange) !important;
    text-decoration: none !important;
  }
  
  /* --- レスポンシブ（モバイル: 画像1→文1→画像2→文2） --- */
  @media screen and (max-width: 768px) {
    .tcl-services__img-wrap {
      height: auto;
      aspect-ratio: 4 / 3;
    }

    .tcl-services__detail-item {
      padding: 32px 24px 40px;
      border-bottom: 1px solid #e8e8e8;
      border-right: none;
    }

    .tcl-services__detail-item:last-child {
      border-bottom: none;
    }
  }
/* ============================================================
   トップ：プロモーション動画（STAFFの前）
============================================================ */
.tcl-home-video {
  background: #fff;
  padding: 48px 0;
}

.tcl-home-video__media {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: block;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .tcl-home-video {
    padding: 32px 0;
  }
}

/* ============================================================
   STAFFセクション
============================================================ */
  
  /* --- 上部：背景画像エリア --- */
  .tcl-staff__hero {
    background-image:
      url("../images/bg_staff.avif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .tcl-staff__hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(40, 40, 40, 0.45);
    z-index: 0;
  }
  
  .tcl-staff__hero-content {
    position: relative;
    z-index: 1;
    padding-top: 0;
    padding-bottom: 0;

  }
  
  .tcl-staff__hero-content .tcl-section-title {
    color: #fff;
    padding-top: 0; /* ヒーロー内なのでリセット */
  }
  
  .tcl-staff__lead {
    text-align: center;
    font-size: 15px;
    line-height: 1.9;
    color: #fff;
    max-width: 720px;
    margin: 0 auto;
  }
  
  /* --- 下部：カードエリア --- */
  .tcl-staff__cards {
    background: #fff;
    padding: 80px 0;
  }
  
  .tcl-staff__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap:40px 0;
  }

    @media screen and (max-width: 480px) {
      .tcl-staff__grid {
        display: grid;
        grid-template-columns: 1fr;
        margin: 0 auto;
    }
  }
  
  .tcl-staff-card {
    text-align: center;
    width: 260px;
  }
  
  .tcl-staff-card__photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 3px solid #f0f0f0;
    box-shadow: 0 2px 12px rgba(0,0,0,.12);
  }

  
  .tcl-staff-card__name {
    font-size: 15px;
    font-weight: 500;
    color: var(--tcl-dark);  /* 白背景なので黒文字 */
    margin: 0 0 4px;
    display: block;
  }
  
  a.tcl-staff-card__name:hover {
    color: var(--tcl-orange);
    text-decoration: none;
  }
  
  .tcl-staff-card__role {
    font-size: 12px;
    color: #888;
    margin: 0;
  }
  
  .tcl-staff__note {
    text-align: center;
    font-size: 13px;
    color: #000;
    margin-top: 40px;
  }
  
  /* レスポンシブ */
  @media screen and (max-width: 768px) {
    .tcl-staff__hero {
      padding: 48px 0;
    }
  }
  /* ============================================================
     SDGsセクション
  ============================================================ */
  .tcl-sdgs {
    padding-bottom: 80px;
    background: #F8F8F8;
  }
  
  .tcl-sdgs__lead {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 48px;
  }
  
  .tcl-sdgs__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  
  .tcl-sdgs__logo {
    width:100%;
  }

  .tcl-sdgs__text {
    flex: 1 1 0%;
    min-width: 0;
  }
  
  .tcl-sdgs__text h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
  }
  
  .tcl-sdgs__text p {
    font-size: 15px;
    line-height: 2;
  }
  
  /* ============================================================
     提携企業セクション
  ============================================================ */
  .tcl-partners {
    background: #fff;
    padding-bottom: 80px;
  }
  
  .tcl-partners__lead {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-bottom: 40px;
  }
  
  .tcl-partners__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px 48px;
  }

  @media screen and (max-width: 480px) {
    .tcl-partners__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
  }
  
  .tcl-partner-item img {
    max-height: 80px;
    width: auto;
    filter: grayscale(30%);
    transition: filter .2s;
  }
  .tcl-partner-item img:hover {
    filter: grayscale(0%);
  }
  
  /* ============================================================
     内部ページ共通
  ============================================================ */
  .tcl-page {
    padding-bottom: 80px;
  }
  
  .tcl-page-header {
    text-align: center;
    padding: 72px 0 40px;
    border-bottom: 1px solid #eee;
    margin-bottom: 0;
  }
  
  .tcl-page-title {
    font-family: var(--tcl-font-en);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 500;
    letter-spacing: 0.1em;
    margin: 0 0 24px;
    color: var(--tcl-dark);
  }
  
  .tcl-page-lead {
    font-size: 15px;
    line-height: 2;
    color: #555;
    max-width: 760px;
    margin: 0 auto;
  }
  
  /* Info ブロック（RESERVATION/PRICE/DELIVERY）横並び用ラッパー */
  .tcl-info-sections-row {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
  }
  
  .tcl-info-sections-row .tcl-info-section {
    flex: 1;
    min-width: 260px;
  }
  
  .tcl-info-sections-row .tcl-info-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 0;
  }
  
  .tcl-info-sections-row .tcl-info-block__img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
  }
  
  .tcl-info-sections-row .tcl-info-block__text {
    min-width: 0;
  }
  
  /* Info ブロック（通常・単体） */
  .tcl-info-block {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }
  
  .tcl-info-block__img img {
    width: 300px;
    height: 240px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
  }
  
  .tcl-info-block__text {
    flex: 1;
    min-width: 240px;
  }
  
  .tcl-info-block__text h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 16px;
    border:none;
  }

  .tcl-info-block__text h3:after {
    border:none;
  }
  
  .tcl-info-block__text p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 12px;
  }
  
  .tcl-info-block__text a {
    color: var(--tcl-orange);
  }
  
  /* メニューアイテム */
  .tcl-menu-section__lead {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 48px;
    color: #555;
  }
  
  .tcl-menu-item {
    margin-bottom: 56px;
  }
  
  .tcl-menu-item__title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--tcl-dark);
  }
  
  .tcl-menu-item__img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
  }
  
  .tcl-menu-item__items {
    font-size: 14px;
    line-height: 2.2;
    color: #444;
    background: var(--tcl-gray);
    padding: 24px 28px;
    border-radius: 4px;
  }
  
  /* ============================================================
     ヘッダー上書き（Lightning固有）
  ============================================================ */
  /* ナビ文字色 */
  .vk-mobile-nav .menu-item a,
  #main-navigation .menu-item a {
    font-family: var(--tcl-font-en);
    font-weight: 500;
    letter-spacing: 0.05em;
    font-size: 13px;
  }
  
  /* Lightningのヘッダー背景を白/半透明に */
  .site-header {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 1px 8px rgba(0,0,0,.08);
  }
  
  /* アクティブナビリンクにオレンジ下線 */
  #main-navigation .current-menu-item > a,
  #main-navigation .current_page_item > a {
    color: var(--tcl-orange);
    border-bottom: 2px solid var(--tcl-orange);
  }
  
  /* ============================================================
     フッター上書き
  ============================================================ */
  .site-footer {
    background: var(--tcl-dark);
    color: #aaa;
    font-size: 12px;
    text-align: center;
    padding: 24px 0;
  }
  
  /* ============================================================
     レスポンシブ
  ============================================================ */
  

  .tcl-hero__img {
    height: 854px;
  }

  @media screen and (max-width: 768px) {
    .tcl-hero__img {
      height: 300px;
    }
  
    .tcl-services__grid {
      grid-template-columns: 1fr;
    }
  
    .tcl-staff__grid {
      gap: 20px;
      margin: 0 auto;
      width: 280px;
    }
  
    .tcl-sdgs__inner {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .tcl-sdgs__logo {
      width: 200px;
    }
  
    .tcl-info-block {
      flex-direction: column;
    }
  
    .tcl-info-block__img img {
      width: 100%;
      height: 200px;
    }
  
    /* 横並びセクションをスマホで縦積み */
    .tcl-info-sections-row {
      flex-direction: column;
    }
  
    .tcl-info-sections-row .tcl-info-section {
      min-width: 0;
    }
  
    .tcl-section-title {
      padding-top: 48px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .tcl-container {
      padding: 0 16px;
    }
  
    .tcl-sns {
      flex-direction: column;
      align-items: center;
    }
  }

  .tcl-footer{
    text-align: center;
  }

  /* ============================================================
   下層ページ共通
============================================================ */
.tcl-subpage {
  padding-bottom: 80px;
}

/* 下層ページ（CATERING/BENTO/WELFARE/FARMER/ABOUT US）をふわっと表示 */
.tcl-subpage--soft-in {
  opacity: 0;
  transform: translateY(14px);
  animation: tcl-subpage-soft-in 900ms ease-out forwards;
}

.tcl-subpage--soft-in .tcl-subpage__title,
.tcl-subpage--soft-in .tcl-subpage__lead {
  opacity: 0;
  transform: translateY(10px);
  animation: tcl-subpage-soft-in 900ms ease-out forwards;
}

.tcl-subpage--soft-in .tcl-subpage__lead {
  animation-delay: 120ms;
}

@keyframes tcl-subpage-soft-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tcl-subpage--soft-in,
  .tcl-subpage--soft-in .tcl-subpage__title,
  .tcl-subpage--soft-in .tcl-subpage__lead {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* CATERING / BENTO：上から全体をふわっと（要素ごとに順番） */
.tcl-subpage--from-top {
  /* 親はそのまま表示（子要素を順にアニメ） */
  opacity: 1;
  transform: none;
  animation: none;
}

/* Progressive enhancement:
   JS が動く環境だけ最初に隠してスクロール表示。
   JS が読めない/エラーでも本文が消えないようにする。 */
.tcl-subpage--from-top .tcl-container > * {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

html.tcl-reveal-enabled .tcl-subpage--from-top .tcl-container > * {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 950ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 950ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

/* スクロールで表示されたらふわっと */
.tcl-subpage--from-top .tcl-container > *.tcl-reveal--visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* JS 有効時は html にクラスが付くため、同等以上の優先度で「表示」を上書き */
html.tcl-reveal-enabled .tcl-subpage--from-top .tcl-container > *.tcl-reveal--visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* トップページ：ヒーロー以外の各セクションをスクロールでふわっと（JS有効時のみ） */
#tcl-home > section:not(.tcl-hero) {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

html.tcl-reveal-enabled #tcl-home > section:not(.tcl-hero) {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 1000ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1000ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

#tcl-home > section:not(.tcl-hero).tcl-reveal--visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

html.tcl-reveal-enabled #tcl-home > section:not(.tcl-hero).tcl-reveal--visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* WELFARE：背景はそのまま、文字だけふわっと */
.tcl-subpage--reveal-text .tcl-container > section {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

.tcl-subpage--reveal-text .tcl-welfare__section-hero-inner {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 950ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 950ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.tcl-subpage--reveal-text .tcl-welfare__section-hero-inner.tcl-reveal--visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .tcl-subpage--reveal-text .tcl-welfare__section-hero-inner {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* 上から少しずつ遅延（テンプレートのDOM順でだいたい揃う） */
.tcl-subpage--from-top .tcl-container > *:nth-child(1) {
  transition-delay: 0ms;
}
.tcl-subpage--from-top .tcl-container > *:nth-child(2) {
  transition-delay: 0ms;
}
.tcl-subpage--from-top .tcl-container > *:nth-child(3) {
  transition-delay: 0ms;
}
.tcl-subpage--from-top .tcl-container > *:nth-child(4) {
  transition-delay: 0ms;
}
.tcl-subpage--from-top .tcl-container > *:nth-child(5) {
  transition-delay: 0ms;
}
.tcl-subpage--from-top .tcl-container > *:nth-child(6) {
  transition-delay: 0ms;
}
.tcl-subpage--from-top .tcl-container > *:nth-child(7) {
  transition-delay: 0ms;
}

@media (prefers-reduced-motion: reduce) {
  .tcl-subpage--from-top .tcl-container > * {
    opacity: 1;
    transform: none;
    transition: none;
  }

  #tcl-home > section:not(.tcl-hero) {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
  
  #tcl-bento .tcl-info-sections-row .tcl-info-section .tcl-section-title--sm,
  #tcl-bento .tcl-info-sections-row .tcl-info-section .tcl-info-block__img,
  #tcl-bento .tcl-info-sections-row .tcl-info-section .tcl-info-block__text h3,
  #tcl-bento .tcl-info-sections-row .tcl-info-section .tcl-info-block__text > p,
  #tcl-catering .tcl-info-sections-row .tcl-info-section .tcl-section-title--sm,
  #tcl-catering .tcl-info-sections-row .tcl-info-section .tcl-info-block__img,
  #tcl-catering .tcl-info-sections-row .tcl-info-section .tcl-info-block__text h3,
  #tcl-catering .tcl-info-sections-row .tcl-info-section .tcl-info-block__text > p {
    opacity: 1;
    transform: none;
    transition: none;
    filter: none;
  }

  #tcl-bento .tcl-info-sections-row .tcl-info-section .tcl-info-block__img img,
  #tcl-catering .tcl-info-sections-row .tcl-info-section .tcl-info-block__img img {
    transform: none;
    transition: none;
  }
}

.site-footer-title:after, .sub-section-title:after, h3:where(:not(.wp-block-post-title)):after{
  border:none;
}

/* RESERVATION/PRICE/DELIVERY：ラッパー常時表示。各カラム内は上から（英見出し→画像→h3→本文） */
#tcl-bento .tcl-container > .tcl-info-sections-row,
#tcl-catering .tcl-container > .tcl-info-sections-row {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

#tcl-bento .tcl-info-sections-row .tcl-info-section,
#tcl-catering .tcl-info-sections-row .tcl-info-section {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

#tcl-bento .tcl-info-sections-row .tcl-info-section .tcl-section-title--sm,
#tcl-catering .tcl-info-sections-row .tcl-info-section .tcl-section-title--sm,
#tcl-bento .tcl-info-sections-row .tcl-info-section .tcl-info-block__text h3,
#tcl-catering .tcl-info-sections-row .tcl-info-section .tcl-info-block__text h3,
#tcl-bento .tcl-info-sections-row .tcl-info-section .tcl-info-block__text > p,
#tcl-catering .tcl-info-sections-row .tcl-info-section .tcl-info-block__text > p {
  opacity: 1;
  transform: none;
  transition: none;
}

/* 画像ブロック：ふわっと（ブラー解除＋わずかにズームアウト） */
#tcl-bento .tcl-info-sections-row .tcl-info-section .tcl-info-block__img,
#tcl-catering .tcl-info-sections-row .tcl-info-section .tcl-info-block__img {
  overflow: hidden;
  border-radius: 4px;
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}

/* JS 有効時のみ、最初に隠してスクロールで表示 */
html.tcl-reveal-enabled #tcl-bento .tcl-info-sections-row .tcl-info-section .tcl-section-title--sm,
html.tcl-reveal-enabled #tcl-catering .tcl-info-sections-row .tcl-info-section .tcl-section-title--sm,
html.tcl-reveal-enabled #tcl-bento .tcl-info-sections-row .tcl-info-section .tcl-info-block__text h3,
html.tcl-reveal-enabled #tcl-catering .tcl-info-sections-row .tcl-info-section .tcl-info-block__text h3,
html.tcl-reveal-enabled #tcl-bento .tcl-info-sections-row .tcl-info-section .tcl-info-block__text > p,
html.tcl-reveal-enabled #tcl-catering .tcl-info-sections-row .tcl-info-section .tcl-info-block__text > p {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.tcl-reveal-enabled #tcl-bento .tcl-info-sections-row .tcl-info-section .tcl-info-block__img,
html.tcl-reveal-enabled #tcl-catering .tcl-info-sections-row .tcl-info-section .tcl-info-block__img {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  filter: blur(6px);
  transition:
    opacity 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.05s cubic-bezier(0.22, 1, 0.36, 1);
}

#tcl-bento .tcl-info-sections-row .tcl-info-section .tcl-info-block__img img,
#tcl-catering .tcl-info-sections-row .tcl-info-section .tcl-info-block__img img {
  display: block;
  transform: scale(1.04);
  transform-origin: center center;
  transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

#tcl-bento .tcl-info-sections-row .tcl-info-section.tcl-reveal--visible .tcl-section-title--sm,
#tcl-catering .tcl-info-sections-row .tcl-info-section.tcl-reveal--visible .tcl-section-title--sm {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0ms;
}

html.tcl-reveal-enabled #tcl-bento .tcl-info-sections-row .tcl-info-section.tcl-reveal--visible .tcl-section-title--sm,
html.tcl-reveal-enabled #tcl-catering .tcl-info-sections-row .tcl-info-section.tcl-reveal--visible .tcl-section-title--sm {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0ms;
}

#tcl-bento .tcl-info-sections-row .tcl-info-section.tcl-reveal--visible .tcl-info-block__img,
#tcl-catering .tcl-info-sections-row .tcl-info-section.tcl-reveal--visible .tcl-info-block__img {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
  transition-delay: 130ms;
}

html.tcl-reveal-enabled #tcl-bento .tcl-info-sections-row .tcl-info-section.tcl-reveal--visible .tcl-info-block__img,
html.tcl-reveal-enabled #tcl-catering .tcl-info-sections-row .tcl-info-section.tcl-reveal--visible .tcl-info-block__img {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
  transition-delay: 130ms;
}

#tcl-bento .tcl-info-sections-row .tcl-info-section.tcl-reveal--visible .tcl-info-block__img img,
#tcl-catering .tcl-info-sections-row .tcl-info-section.tcl-reveal--visible .tcl-info-block__img img {
  transform: scale(1);
  transition-delay: 130ms;
}

#tcl-bento .tcl-info-sections-row .tcl-info-section.tcl-reveal--visible .tcl-info-block__text h3,
#tcl-catering .tcl-info-sections-row .tcl-info-section.tcl-reveal--visible .tcl-info-block__text h3 {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 260ms;
}

html.tcl-reveal-enabled #tcl-bento .tcl-info-sections-row .tcl-info-section.tcl-reveal--visible .tcl-info-block__text h3,
html.tcl-reveal-enabled #tcl-catering .tcl-info-sections-row .tcl-info-section.tcl-reveal--visible .tcl-info-block__text h3 {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 260ms;
}

#tcl-bento .tcl-info-sections-row .tcl-info-section.tcl-reveal--visible .tcl-info-block__text > p:nth-child(2),
#tcl-catering .tcl-info-sections-row .tcl-info-section.tcl-reveal--visible .tcl-info-block__text > p:nth-child(2) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 390ms;
}

html.tcl-reveal-enabled #tcl-bento .tcl-info-sections-row .tcl-info-section.tcl-reveal--visible .tcl-info-block__text > p:nth-child(2),
html.tcl-reveal-enabled #tcl-catering .tcl-info-sections-row .tcl-info-section.tcl-reveal--visible .tcl-info-block__text > p:nth-child(2) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 390ms;
}

#tcl-bento .tcl-info-sections-row .tcl-info-section.tcl-reveal--visible .tcl-info-block__text > p:nth-child(3),
#tcl-catering .tcl-info-sections-row .tcl-info-section.tcl-reveal--visible .tcl-info-block__text > p:nth-child(3) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 480ms;
}

html.tcl-reveal-enabled #tcl-bento .tcl-info-sections-row .tcl-info-section.tcl-reveal--visible .tcl-info-block__text > p:nth-child(3),
html.tcl-reveal-enabled #tcl-catering .tcl-info-sections-row .tcl-info-section.tcl-reveal--visible .tcl-info-block__text > p:nth-child(3) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 480ms;
}

#tcl-bento .tcl-info-sections-row .tcl-info-section.tcl-reveal--visible .tcl-info-block__text > p:nth-child(4),
#tcl-catering .tcl-info-sections-row .tcl-info-section.tcl-reveal--visible .tcl-info-block__text > p:nth-child(4) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 570ms;
}

html.tcl-reveal-enabled #tcl-bento .tcl-info-sections-row .tcl-info-section.tcl-reveal--visible .tcl-info-block__text > p:nth-child(4),
html.tcl-reveal-enabled #tcl-catering .tcl-info-sections-row .tcl-info-section.tcl-reveal--visible .tcl-info-block__text > p:nth-child(4) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 570ms;
}

#tcl-bento .tcl-info-sections-row .tcl-info-section.tcl-reveal--visible .tcl-info-block__text > p:nth-child(5),
#tcl-catering .tcl-info-sections-row .tcl-info-section.tcl-reveal--visible .tcl-info-block__text > p:nth-child(5) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 660ms;
}

html.tcl-reveal-enabled #tcl-bento .tcl-info-sections-row .tcl-info-section.tcl-reveal--visible .tcl-info-block__text > p:nth-child(5),
html.tcl-reveal-enabled #tcl-catering .tcl-info-sections-row .tcl-info-section.tcl-reveal--visible .tcl-info-block__text > p:nth-child(5) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 660ms;
}

/* CATERING menu：親セクションは常時表示（親子でopacityを重ねるとスクロール時に合成が重くカクつく） */
#tcl-catering .tcl-container > .tcl-catering-menu {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

/* メニュー項目のみふわっと（will-change は常時付与しない） */
#tcl-catering .tcl-catering-menu .tcl-menu-item,
#tcl-catering .tcl-menu-item {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 2700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 2700ms cubic-bezier(0.22, 1, 0.36, 1);
}

#tcl-catering .tcl-catering-menu .tcl-menu-item.tcl-reveal--visible,
#tcl-catering .tcl-menu-item.tcl-reveal--visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

html.tcl-reveal-enabled #tcl-catering .tcl-catering-menu .tcl-menu-item.tcl-reveal--visible,
html.tcl-reveal-enabled #tcl-catering .tcl-menu-item.tcl-reveal--visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  #tcl-catering .tcl-catering-menu .tcl-menu-item,
  #tcl-catering .tcl-menu-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.tcl-subpage__hero {
  width: 100%;
  max-height: auto;
  overflow: hidden;
}

.tcl-subpage__hero-img {
  width: 100%;
  max-height: auto;
  max-width: 1100px;
  margin: 0 auto;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.tcl-subpage__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--tcl-dark);
  margin: 64px 0 24px;
}

.tcl-subpage__lead {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 80px;
}

@media screen and (max-width: 480px) {
  .tcl-subpage__lead {
    font-size: 12px;
  }
}

/* Coming soon */
.tcl-coming-soon {
  text-align: center;
  padding: 80px 0;
  font-size: 18px;
  color: #aaa;
  letter-spacing: 0.1em;
}

/* ABOUT US */
.tcl-about__info {
  max-width: 600px;
  margin: 0 auto;
}

.tcl-about__block {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}

.tcl-about__block:last-child {
  border-bottom: none;
}

.tcl-about__block p {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 8px;
}

.tcl-about__block a:last-child {
  margin-top: 30px;
}

/* BENTO ページ：RESERVATION/PRICE/DELIVERY・メニュー周り（リードと同じタイポ） */
#tcl-bento .tcl-info-block__text,
#tcl-bento .tcl-bento__menu-dl {
  font-family: var(--tcl-font-ja);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

#tcl-bento .tcl-info-section .tcl-section-title--sm {
  font-family: var(--tcl-font-ja);
  font-weight: 400;
  letter-spacing: 0.06em;
}

#tcl-bento .tcl-info-block__text h3 {
  font-weight: 400;
  letter-spacing: 0.06em;
}

#tcl-bento .tcl-info-block__text p {
  font-weight: 300;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  color: #444;
}

#tcl-bento #menu .tcl-bento__menu-dl:not(.tcl-bento__menu-dl--hero) p {
  font-weight: 300;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  color: #444;
}

#tcl-bento .tcl-bento__menu-dl--hero .tcl-bento__menu-dl-title,
#tcl-bento .tcl-bento__menu-dl--hero h2 {
  font-family: var(--tcl-font-ja);
  font-weight: 400;
}

/* CATERING ページ：情報ブロック・区切りヒーロー・メニュー一覧（BENTO と同じタイポ） */
#tcl-catering .tcl-info-block__text,
#tcl-catering .tcl-catering__divider .tcl-catering__menu-dl-inner {
  font-family: var(--tcl-font-ja);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

#tcl-catering .tcl-catering-menu {
  font-family: var(--tcl-font-ja);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  text-align: left;
}

#tcl-catering .tcl-info-section .tcl-section-title--sm {
  font-family: var(--tcl-font-ja);
  font-weight: 400;
  letter-spacing: 0.06em;
}

#tcl-catering .tcl-info-block__text h3 {
  font-weight: 400;
  letter-spacing: 0.06em;
}

#tcl-catering .tcl-info-block__text p {
  font-weight: 300;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  color: #444;
}

#tcl-catering .tcl-catering__divider .tcl-catering__menu-dl-title {
  font-family: var(--tcl-font-ja);
}

#tcl-catering .tcl-catering__divider .tcl-catering__menu-dl-inner p {
  font-weight: 300;
  letter-spacing: 0.06em;
}

#tcl-catering .tcl-menu-item__title {
  font-weight: 400;
  letter-spacing: 0.06em;
  border:none;
}

#tcl-catering .tcl-menu-item__content {
  font-weight: 300;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  color: #444;
}

#tcl-catering .tcl-catering-menu__lead {
  font-weight: 300;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  color: #444;
}

/* BENTO メニューDL */
.tcl-bento__menu-img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 24px;
}

.tcl-bento__menu-dl, .tcl-catering__menu-dl {
  text-align: center;
  padding: 40px 0;
}

.tcl-bento__menu-dl p, .tcl-catering__menu-dl p {
  font-size: 15px;
  margin-bottom: 24px;
}

/* 弁当メニューDL：背景画像＋見出しのみ白文字 */
.tcl-bento__menu-dl--hero, .tcl-catering__menu-dl--hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.tcl-bento__menu-dl--hero::before,
.tcl-catering__menu-dl--hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}

.tcl-bento__menu-dl--hero .tcl-bento__menu-dl-title,
.tcl-bento__menu-dl--hero h2,
.tcl-catering__menu-dl--hero .tcl-catering__menu-dl-title,
.tcl-catering__menu-dl--hero h2 {
  position: relative;
  z-index: 1;
  color: #fff;
  margin: 0;
}

/* CATERING 区切り：全幅ヒーロー＋白文字 */
.tcl-catering__divider {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 48px;
  margin-bottom: 48px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.tcl-catering__divider .tcl-catering__menu-dl--hero {
  min-height: 320px;
  border-radius: 0;
  padding: 64px 24px;
}

.tcl-catering__divider .tcl-catering__menu-dl--hero::before {
  background: rgba(0, 0, 0, 0.1);
}

.tcl-catering__divider .tcl-catering__menu-dl-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.tcl-catering__divider .tcl-catering__menu-dl-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  line-height: 1.3;
  border:none;
}

.tcl-catering__divider .tcl-catering__menu-dl-title--lower {
  text-transform: lowercase;
  font-weight: 400;
}

.tcl-catering__divider .tcl-catering__menu-dl-inner p {
  color: #fff;
  font-size: 15px;
  line-height: 2;
  margin-bottom: 12px;
}

.tcl-catering__divider .tcl-catering__menu-dl-inner p:last-child {
  margin-bottom: 0;
}

/* WELFARE */
/* 親テーマ（origin3 等）の body / .site-body より強く、本文・見出しをヒラギノ角ゴ ProN 系に統一 */
#tcl-welfare,
#tcl-welfare .tcl-container,
#tcl-welfare .tcl-subpage__title,
#tcl-welfare .tcl-subpage__lead,
#tcl-welfare .tcl-welfare__intro,
#tcl-welfare .tcl-welfare__intro p,
#tcl-welfare .tcl-welfare__section,
#tcl-welfare .tcl-welfare__section-hero-inner,
#tcl-welfare .tcl-welfare__section--hero .tcl-section-title--sm,
#tcl-welfare .tcl-welfare__section--hero h2,
#tcl-welfare .tcl-welfare__section--hero .tcl-welfare__section-hero-inner p,
#tcl-welfare .tcl-welfare__section p {
  font-family: var(--tcl-font-ja);
}

.tcl-welfare__intro {
  margin-bottom: 56px;
}

.tcl-welfare__intro p {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 32px;
  color: #444;
  font-weight: 300;
}

.tcl-welfare__intro img,
.tcl-welfare__section img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  border-radius: 4px;
  margin-top: 32px;
}

.tcl-welfare__section {
  margin-bottom: 56px;
  @media screen and (max-width: 480px) {
    margin-bottom: 0;
  }
}

/* 理由1：背景写真の上に白文字 */
.tcl-welfare__section--hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.tcl-welfare__section--hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 0;
}

.tcl-welfare__section--hero .tcl-welfare__section-hero-inner {
  position: relative;
  z-index: 1;
  padding: 56px 48px;
}

.tcl-welfare__section--hero .tcl-section-title--sm,
.tcl-welfare__section--hero h2 {
  color: #fff;
  margin-bottom: 24px;
}

.tcl-welfare__section--hero .tcl-welfare__section-hero-inner p {
  color: #fff;
  font-size: 15px;
  line-height: 2;
  margin-bottom: 16px;
}

.tcl-welfare__section p {
  font-size: 15px;
  line-height: 2;
  color: #444;
  margin-bottom: 16px;
 
}

@media screen and (max-width: 480px) {
  .tcl-welfare__section--hero .tcl-welfare__section-hero-inner p {
    font-size: 14px;
  }
}

/* ============================================================
   BLOGページ（縦リスト・左画像・右テキスト）
============================================================ */
.tcl-blog__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.tcl-blog__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tcl-blog__cat-link {
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  font-family: var(--tcl-font-ja);
  color: #666;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  transition: color .2s, background .2s;
}

.tcl-blog__cat-link:hover,
.tcl-blog__cat-link.is-active {
  background: transparent;
  color: var(--tcl-dark);
  font-weight: 600;
  text-decoration: none;
}

.tcl-blog__search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #666;
  text-decoration: none;
  transition: color .2s;
}

.tcl-blog__search:hover {
  color: var(--tcl-dark);
}

/* 記事リスト（1列・カードは横並び） */
.tcl-blog__list {
  margin-bottom: 56px;
}

.tcl-blog-card {
  margin-bottom: 32px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow .2s;
}

.tcl-blog-card:last-child {
  margin-bottom: 0;
}

.tcl-blog-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.tcl-blog-card__link {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 200px;
  text-decoration: none !important;
  color: var(--tcl-dark);
  border: none !important;
}

.tcl-blog-card__link:hover {
  text-decoration: none !important;
  border-bottom: none !important;
}

.tcl-blog-card__img-wrap {
  flex: 0 0 42%;
  max-width: 42%;
  min-height: 200px;
  overflow: hidden;
  background: #f0f0f0;
}

.tcl-blog-card__img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform .4s;
}

/* カード内のリンク（ネストは無いがテーマのa:hover対策） */
.tcl-blog-card__link a,
.tcl-blog-card__link a:hover {
  border: none !important;
  text-decoration: none !important;
}

.tcl-blog-card__noimg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 200px;
  color: #aaa;
  font-size: 13px;
}

.tcl-blog-card__body {
  flex: 1;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.tcl-blog-card__meta {
  font-size: 13px;
  color: #999;
  margin: 0 0 8px;
  line-height: 1.5;
}

.tcl-blog-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 12px;
  color: var(--tcl-dark);
  border:none;
}

.tcl-blog-card__excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

.tcl-blog__empty {
  text-align: center;
  color: #aaa;
  padding: 48px 0;
}

/* ページネーション */
.tcl-blog__pagination {
  text-align: center;
  margin-top: 40px;
}

.tcl-blog__pagination .page-numbers {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 2px;
  border: 1px solid #ccc;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: background .2s;
}

.tcl-blog__pagination .page-numbers.current,
.tcl-blog__pagination .page-numbers:hover {
  background: var(--tcl-dark);
  color: #fff;
  border-color: var(--tcl-dark);
}

/* ============================================================
   記事個別ページ
============================================================ */
.tcl-single__thumb {
  margin-bottom: 32px;
}

.tcl-single__thumb-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 4px;
}

.tcl-single__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.tcl-single__date {
  font-size: 13px;
  color: #aaa;
}

.tcl-single__cat {
  font-size: 12px;
  background: var(--tcl-dark);
  color: #fff;
  padding: 4px 12px;
  text-decoration: none;
  border-radius: 2px;
}

.tcl-single__title {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
}

.tcl-single__content {
  font-size: 15px;
  line-height: 2;
  color: #444;
  margin-bottom: 56px;
}

.tcl-single__content img {
  max-width: 100%;
  height: auto;
  margin: 16px 0;
}

/* Gutenberg ギャラリーブロック：最後の1枚だけ大きくなるのを防ぐ */
.tcl-single__content .wp-block-gallery,
.tcl-single__content .wp-block-gallery.has-nested-images {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

/* 新しいギャラリー（has-nested-images） */
.tcl-single__content .wp-block-gallery.has-nested-images > figure.wp-block-image {
  width: auto !important;
  margin: 0 !important;
  grid-column: auto !important;
}

/* 旧ギャラリー（blocks-gallery-grid） */
.tcl-single__content .wp-block-gallery .blocks-gallery-grid {
  display: contents;
}
.tcl-single__content .wp-block-gallery .blocks-gallery-item {
  width: auto !important;
  margin: 0 !important;
  grid-column: auto !important;
}

.tcl-single__content .wp-block-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
}

.tcl-single__content .wp-block-gallery figure {
  margin: 0;
}

@media screen and (max-width: 480px) {
  .tcl-single__content .wp-block-gallery,
  .tcl-single__content .wp-block-gallery.has-nested-images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.tcl-single__tags {
  margin: -24px 0 56px; /* 本文（margin-bottom:56px）の分を相殺して、タグを画像直下に寄せる */
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tcl-single__tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #ddd;
  color: var(--tcl-dark);
  background: #fff;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
}

.tcl-single__tag:hover {
  border-color: var(--tcl-orange);
  color: var(--tcl-orange);
  text-decoration: none;
}

.tcl-single__nav {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: 40px;
  font-size: 13px;
}

.tcl-single__nav a {
  color: var(--tcl-dark);
  text-decoration: none;
}

.tcl-single__nav a:hover {
  color: var(--tcl-orange);
}

.tcl-single__back {
  text-align: center;
  margin-top: 40px;
}

/* レスポンシブ（ブログ） */
@media screen and (max-width: 768px) {
  .tcl-blog-card__link {
    flex-direction: column;
    min-height: 0;
  }

  .tcl-blog-card__img-wrap {
    flex: none;
    max-width: 100%;
    min-height: 200px;
    aspect-ratio: 16 / 10;
  }

  .tcl-blog-card__img {
    min-height: 200px;
  }

  .tcl-blog-card__body {
    padding: 20px;
  }

  .tcl-blog-card__title {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .tcl-blog__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .tcl-blog-card__title {
    font-size: 15px;
  }
}


/* ============================================================
   SP固定：予約/お問い合わせボタン
============================================================ */
.tcl-mobile-sticky-cta {
  display: none;
}

@media screen and (max-width: 768px) {
  body.tcl-has-mobile-sticky-cta {
    padding-bottom: 90px; /* 固定ボタン分のスペース */
  }

  .tcl-mobile-sticky-cta {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: env(safe-area-inset-bottom);
    z-index: 10000;
    height: 76px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.12);
  }

  .tcl-mobile-sticky-cta__reserve,
  .tcl-mobile-sticky-cta__contact {
    flex: 1;
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
  }

  .tcl-mobile-sticky-cta__reserve {
    background: #e98a45;
  }

  .tcl-mobile-sticky-cta__contact {
    background: #0d2d57;
  }

  .tcl-mobile-sticky-cta__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  .tcl-mobile-sticky-cta__icon svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
  }
}

