@charset "UTF-8";
/* =========================================================
   かめ福オンプレイス TOPリニューアル用CSS
   変更対象：/wp-content/themes/kamefuku/inc/css/renewal.css（新規）
   既存 styles.css / sp.css の後に読み込んで上書きします。
   基準：html { font-size: 62.5% } → 1.6rem = 16px
   ========================================================= */

:root {
  --kf-navy: #1d2b4a;
  --kf-navy-deep: #16223c;
  --kf-navy-light: #2a3c62;
  --kf-gold: #b6903f;
  --kf-gold-dark: #9d7a33;
  --kf-gold-light: #ccab63;
  --kf-ivory: #f3efe6;
  --kf-white: #ffffff;
  --kf-text: #22293a;
  --kf-text-sub: #5a6472;
  --kf-line: #e4ddcd;
  --kf-serif: "Shippori Mincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  --kf-sans: "Noto Sans JP", "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "Meiryo", "メイリオ", sans-serif;
}

/* テキスト選択色 */
::selection {
  background: var(--kf-gold);
  color: #fff;
}

/* スクロールバー（対応ブラウザのみ・上品な細身） */
::-webkit-scrollbar {
  width: 11px;
}
::-webkit-scrollbar-track {
  background: #eeeae0;
}
::-webkit-scrollbar-thumb {
  background: #9aa3b5;
  border-radius: 6px;
  border: 2px solid #eeeae0;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--kf-gold);
}

/* ---------------------------------------------------------
   共通（全ページ）：ヘッダーを黒→深ネイビーへ
   --------------------------------------------------------- */
.header {
  background: rgba(29, 43, 74, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}
/* ▼PCメニュー（835px以上）専用。SPのドロワーは既存sp.cssのレイアウトを尊重 */
@media screen and (min-width: 835px) {
  .header-menu {
    flex-wrap: nowrap;
  }
  .header-menu__item {
    margin-left: clamp(14px, 2.4vw, 38px);
  }
  .header-menu__item > a {
    font-family: var(--kf-serif);
    font-weight: 500;
    font-size: clamp(1.2rem, 1.15vw, 1.5rem);
    letter-spacing: 0;
    white-space: nowrap;
    position: relative;
    padding-bottom: 8px;
    transition: color 0.25s;
  }
  .header-menu__item > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--kf-gold), var(--kf-gold-light));
    transition: width 0.3s ease;
  }
  .header-menu__item > a:hover {
    color: var(--kf-gold-light);
  }
  .header-menu__item > a:hover::after {
    width: 100%;
  }
  /* 現在地（ホーム）の金色下線 */
  .header-menu__item.current-menu-item > a,
  .header-menu__item.current_page_item > a {
    color: var(--kf-gold-light);
  }
  .header-menu__item.current-menu-item > a::after,
  .header-menu__item.current_page_item > a::after {
    width: 100%;
  }
}

/* ▼SPドロワー：レイアウトはsp.cssのまま、書体だけ明朝に統一 */
@media screen and (max-width: 834px) {
  .header-menu__item > a {
    font-family: var(--kf-serif);
    font-weight: 500;
  }
}
/* PCロゴ：正方形ロゴマークに変更（メニューとの重なり解消・SPは従来どおり） */
@media screen and (min-width: 835px) {
  .header-logo {
    width: 52px;
    flex: 0 0 auto;
  }
  .header-logo .pc img {
    width: 52px;
    height: 52px;
    display: block;
  }
  .header-nav {
    width: calc(100% - 52px);
  }
}

/* ヘッダー右CTA：宿泊予約→お問い合わせ（金） */
.header-btn {
  background: var(--kf-gold);
  width: auto;
  min-width: 92px;
  padding: 0 14px;
  margin-left: clamp(14px, 1.8vw, 32px);
  transition: background 0.25s;
}
.header-btn .inn .txt {
  display: block;
  white-space: nowrap;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.header-btn:hover {
  background: var(--kf-gold-light);
  opacity: 1;
}
.header-btn .inn .txt,
.header-btn .inn .txt span {
  color: #fff;
  font-family: var(--kf-serif);
}
.header-btn .kf-ico-mail {
  display: inline-block;
  width: 26px;
  height: 26px;
  color: #fff;
}

/* ---------------------------------------------------------
   TOPページ土台
   --------------------------------------------------------- */
.page-index {
  background: var(--kf-ivory);
  font-family: var(--kf-serif);
  color: var(--kf-text);
}
.kf-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}
.kf-section-ttl {
  font-family: var(--kf-serif);
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--kf-text);
  margin-bottom: 40px;
}
.kf-section-ttl .en {
  display: block;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--kf-gold-dark);
  margin-bottom: 10px;
}
.kf-section-ttl::after {
  content: "";
  display: block;
  width: 46px;
  height: 2px;
  background: linear-gradient(90deg, var(--kf-gold), var(--kf-gold-light));
  margin-top: 16px;
}
.kf-btn {
  font-family: var(--kf-serif);
  border-radius: 4px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 15px 26px;
  border: 1px solid var(--kf-gold);
  color: var(--kf-text);
  background: #fff;
  transition: background 0.25s, color 0.25s;
}
.kf-btn:hover {
  background: var(--kf-gold);
  color: #fff;
}
.kf-btn--gold {
  background: linear-gradient(135deg, #c59e4d 0%, var(--kf-gold) 55%, #a5802f 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(182, 144, 63, 0.32);
}
.kf-btn--gold:hover {
  background: linear-gradient(135deg, #d0ab5c 0%, var(--kf-gold-light) 55%, #b28d3c 100%);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(182, 144, 63, 0.4);
}
.kf-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}
.kf-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.kf-arr {
  display: inline-block;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */
.page-index .sec-mv {
  position: relative;
  overflow: hidden;
}
.page-index .sec-mv .mv-item {
  animation: kfZoom 14s ease-out both;
}
@keyframes kfZoom {
  from {
    transform: scale(1.07);
  }
  to {
    transform: scale(1);
  }
}
.page-index .sec-mv .mv-item {
/*
  height: 640px;
*/
  background-size: cover;
  background-position: center;
}
/* 文字を読みやすくする黒系グラデーション */
/*
.page-index .sec-mv .mv-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
      to right,
      rgba(6, 12, 22, 0.72) 0%,
      rgba(6, 12, 22, 0.35) 45%,
      rgba(6, 12, 22, 0.15) 70%,
      rgba(6, 12, 22, 0.45) 100%
    ),
    linear-gradient(to top, rgba(6, 12, 22, 0.55) 0%, rgba(6, 12, 22, 0) 40%);
  z-index: 1;
}
*/
.page-index .sec-mv::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      to right,
      rgba(6, 12, 22, 0.72) 0%,
      rgba(6, 12, 22, 0.35) 45%,
      rgba(6, 12, 22, 0.15) 70%,
      rgba(6, 12, 22, 0.45) 100%
    ),
    linear-gradient(
      to top,
      rgba(6, 12, 22, 0.55) 0%,
      rgba(6, 12, 22, 0) 40%
    );
  z-index: 1;
}
.kf-mv__cnt {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.kf-mv__ttl {
  color: #fff;
}
.kf-mv__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  color: var(--kf-gold-light);
  margin-bottom: 22px;
  animation: kfFadeUp 0.9s ease both;
}
.kf-mv__eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--kf-gold-light);
}
.kf-mv__copy,
.kf-mv__name {
  animation: kfFadeUp 0.9s ease both;
}
.kf-mv__copy {
  animation-delay: 0.15s;
}
.kf-mv__name {
  animation-delay: 0.35s;
}
.kf-onn {
  animation: kfFadeUp 0.9s ease 0.55s both;
}
@keyframes kfFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .kf-mv__eyebrow,
  .kf-mv__copy,
  .kf-mv__name,
  .kf-onn,
  .page-index .sec-mv .mv-item {
    animation: none;
  }
}
.kf-mv__copy {
  display: block;
  font-family: var(--kf-serif);
  font-size: 5.2rem;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}
.kf-mv__name {
  display: block;
  margin-top: 26px;
  font-family: var(--kf-serif);
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}
/* お宿Onn 案内カード（控えめ・小さめ） */
.kf-onn {
  border-radius: 8px;
  border-top: 3px solid var(--kf-gold);
  transition: transform 0.3s, box-shadow 0.3s;
  position: absolute;
  z-index: 3;
  right: 40px;
  bottom: 44px;
  width: 300px;
  background: #fff;
  padding: 20px 22px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.kf-onn__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.kf-onn__txt {
  font-size: 1.4rem;
  line-height: 1.7;
  color: var(--kf-text);
}
.kf-onn__tag {
  border-radius: 3px;
  flex: 0 0 auto;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--kf-gold-dark);
  border: 1px solid var(--kf-gold);
  padding: 3px 8px;
}
.kf-onn .kf-btn {
  width: 100%;
  font-size: 1.4rem;
  padding: 13px 12px;
}
.kf-onn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.3);
}

/* 既存MVのロゴ・説明文・ページャは新デザインでは非表示 */
.page-index .sec-mv .pagingInfo,
.page-index .sec-mv .slick-dots,
.page-index .sec-mv .slick-arrow {
  display: none !important;
}

/* ---------------------------------------------------------
   目的から探す（クイックナビ）
   --------------------------------------------------------- */
.kf-quick {
  background: var(--kf-navy);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='60'%3E%3Cg fill='none' stroke='%23d9bc7a' stroke-opacity='0.07' stroke-width='1.2'%3E%3Ccircle cx='0' cy='60' r='58'/%3E%3Ccircle cx='0' cy='60' r='44'/%3E%3Ccircle cx='0' cy='60' r='30'/%3E%3Ccircle cx='0' cy='60' r='16'/%3E%3Ccircle cx='120' cy='60' r='58'/%3E%3Ccircle cx='120' cy='60' r='44'/%3E%3Ccircle cx='120' cy='60' r='30'/%3E%3Ccircle cx='120' cy='60' r='16'/%3E%3Ccircle cx='60' cy='30' r='58'/%3E%3Ccircle cx='60' cy='30' r='44'/%3E%3Ccircle cx='60' cy='30' r='30'/%3E%3Ccircle cx='60' cy='30' r='16'/%3E%3C/g%3E%3C/svg%3E");
  padding: 34px 0;
}
.kf-quick .kf-inner {
  display: flex;
  align-items: center;
  gap: 36px;
}
.kf-quick__ttl {
  flex: 0 0 auto;
  color: #fff;
  font-family: var(--kf-serif);
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--kf-gold);
}
.kf-quick__list {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.kf-quick__item {
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--kf-navy-light);
  border: 1px solid rgba(182, 144, 63, 0.55);
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  padding: 18px 16px;
  transition: background 0.25s, border-color 0.25s;
}
.kf-quick__item:hover {
  background: var(--kf-navy-deep);
  border-color: var(--kf-gold-light);
  color: #fff;
}
.kf-quick__item .ico svg {
  transition: filter 0.3s;
}
.kf-quick__item:hover .ico svg {
  filter: drop-shadow(0 0 6px rgba(204, 171, 99, 0.85));
}
.kf-quick__item .ico {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  color: var(--kf-gold-light);
}
.kf-quick__item .txt {
  flex: 1 1 auto;
  line-height: 1.4;
  white-space: nowrap;
}
.kf-quick__item .kf-arr {
  color: var(--kf-gold-light);
}

/* ---------------------------------------------------------
   NEWS ＋ かめ福オンプレイスでできること
   --------------------------------------------------------- */
.kf-topics {
  padding: 88px 0 0;
}
.kf-topics .kf-inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 28px;
  align-items: stretch;
}
.kf-news {
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--kf-line);
  padding: 32px 36px 30px;
  display: flex;
  flex-direction: column;
}
.kf-news__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 18px;
}
.kf-news__head .jp {
  font-family: var(--kf-serif);
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.kf-news__head .en {
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  color: var(--kf-gold-dark);
}
.kf-news__list {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.kf-news__list li {
  flex: 1 1 auto;
  display: flex;
  border-bottom: 1px solid var(--kf-line);
}
.kf-news__list li:first-child {
  border-top: 1px solid var(--kf-line);
}
.kf-news__link {
  border-radius: 6px;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 4px;
  color: var(--kf-text);
  transition: background 0.2s;
}
.kf-news__link:hover {
  background: var(--kf-ivory);
}
.kf-news__date {
  flex: 0 0 auto;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--kf-text-sub);
  font-feature-settings: "tnum";
}
.kf-news__cat {
  border-radius: 3px;
  flex: 0 0 auto;
  min-width: 96px;
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--kf-gold-dark);
  border: 1px solid var(--kf-gold);
  padding: 4px 10px;
  line-height: 1.3;
}
.kf-news__ttl {
  flex: 1 1 auto;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.kf-news__new {
  border-radius: 3px;
  flex: 0 0 auto;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: #c0392b;
  border: 1px solid #c0392b;
  padding: 2px 8px;
}
.kf-news__more {
  margin-top: 22px;
  text-align: center;
}
.kf-news__more .kf-btn {
  min-width: 220px;
}
/* 右：ブランドブロック（写真＋重なりパネル） */
.kf-brand {
  position: relative;
  display: flex;
  flex-direction: column;
}
.kf-brand__photo {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 10px 26px rgba(29, 43, 74, 0.16);
}
.kf-brand__photo .kf-brand__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.kf-brand__photo .kf-brand__slide.is-active {
  opacity: 1;
}
/* 内側の金ヘアライン額縁（下辺はパネルの裏へ潜り込み、奥行きを表現） */
.kf-brand__photo::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(204, 171, 99, 0.75);
  border-radius: 5px;
  pointer-events: none;
  z-index: 0; /* パネル(z-index:1)の下・写真の上。下辺はパネル裏へ潜る */
}
/* スライド進行ドット（renewal.jsが生成。JS無効時は表示されない） */
.kf-brand__dots {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 3;
  display: flex;
  gap: 7px;
}
.kf-brand__dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  transition: background 0.4s, transform 0.4s;
}
.kf-brand__dots span.is-active {
  background: var(--kf-gold-light);
  transform: scale(1.25);
}
.kf-brand__panel {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  width: calc(100% - 44px);
  margin: -56px auto 0;
  background: var(--kf-navy);
  border-radius: 10px;
  border-top: 3px solid var(--kf-gold);
  padding: 28px 28px 26px;
  color: #fff;
  box-shadow: 0 16px 34px rgba(19, 30, 54, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.kf-brand__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--kf-gold-light);
  margin-bottom: 14px;
}
.kf-brand__eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--kf-gold-light);
}
.kf-brand__ttl {
  font-family: var(--kf-serif);
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.08em;
  white-space: nowrap;
  margin-bottom: 16px;
}
.kf-brand__txt {
  font-size: 1.4rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.88);
}
.kf-brand__txt + .kf-brand__txt {
  margin-top: 12px;
}
.kf-brand__words {
  display: flex;
  align-items: center;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(204, 171, 99, 0.35);
}
.kf-brand__words li {
  font-family: var(--kf-serif);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--kf-gold-light);
  line-height: 1;
}
.kf-brand__words li + li {
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid rgba(204, 171, 99, 0.45);
}

/* ---------------------------------------------------------
   施設・サービスのご案内（主要4）
   --------------------------------------------------------- */
.kf-services {
  padding: 96px 0 0;
  position: relative;
  overflow: hidden;
}
.kf-services::before {
  content: "SERVICES";
  position: absolute;
  top: 34px;
  right: -10px;
  font-family: var(--kf-serif);
  font-size: 11rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(29, 43, 74, 0.07);
  pointer-events: none;
  user-select: none;
}
.kf-services__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.kf-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--kf-line);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
.kf-card__mainlink {
  color: inherit;
}
.kf-card__mainlink::after {
  content: "";
  position: absolute;
  inset: 0;
}
.kf-card__btns {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.kf-card:hover {
  box-shadow: 0 12px 28px rgba(29, 43, 74, 0.14);
  border-color: var(--kf-gold-light);
  transform: translateY(-3px);
}
.kf-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.kf-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.kf-card:hover .kf-card__img img {
  transform: scale(1.04);
}
.kf-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 24px 24px 26px;
}
.kf-card__ttl {
  font-family: var(--kf-serif);
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.kf-card__txt {
  font-size: 1.4rem;
  line-height: 1.9;
  color: var(--kf-text-sub);
  flex: 1 1 auto;
  margin-bottom: 20px;
}
.kf-card__txt strong {
  color: var(--kf-gold-dark);
  font-weight: 500;
}
.kf-card .kf-btn {
  width: 100%;
  font-size: 1.35rem;
  padding: 13px 8px;
}

/* ---------------------------------------------------------
   サブサービス（カフェ・もみほぐし・売店）
   --------------------------------------------------------- */
.kf-sub {
  padding: 40px 0 0;
}
.kf-sub__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.kf-subcard {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--kf-line);
  display: flex;
  min-height: 132px;
  transition: box-shadow 0.25s;
}
.kf-subcard:hover {
  box-shadow: 0 10px 24px rgba(14, 28, 48, 0.1);
}
.kf-subcard__img {
  flex: 0 0 40%;
  overflow: hidden;
}
.kf-subcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kf-subcard__body {
  flex: 1 1 auto;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
}
.kf-subcard__ttl {
  font-family: var(--kf-serif);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.kf-subcard__txt {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--kf-text-sub);
  flex: 1 1 auto;
}
.kf-subcard__link {
  white-space: nowrap;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 1.3rem;
  color: var(--kf-gold-dark);
  border-bottom: 1px solid var(--kf-gold);
  padding-bottom: 2px;
}
.kf-subcard__link:hover {
  color: var(--kf-gold-light);
}

/* ---------------------------------------------------------
   宴会・会議CTA
   --------------------------------------------------------- */
.kf-banquet {
  margin-top: 72px;
}
.kf-banquet__box {
  position: relative;
  border-radius: 12px;
  background: var(--kf-navy);
  color: #fff;
  display: grid;
  grid-template-columns: 1.15fr 1.5fr auto;
  gap: 36px;
  align-items: center;
  padding: 44px 48px;
}
.kf-banquet__box::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(204, 171, 99, 0.45);
  border-radius: 8px;
  pointer-events: none;
}
.kf-banquet__ttl {
  font-family: var(--kf-serif);
  font-size: 2.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.6;
  white-space: nowrap;
  margin-bottom: 14px;
}
.kf-banquet__strong {
  font-family: var(--kf-serif);
  white-space: nowrap;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--kf-gold-light);
  margin-bottom: 12px;
}
.kf-banquet__txt {
  font-size: 1.35rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
}
.kf-banquet__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  padding: 6px 20px;
}
.kf-banquet__feature {
  text-align: center;
}
.kf-banquet__feature .ico {
  display: inline-block;
  width: 34px;
  height: 34px;
  color: var(--kf-gold-light);
  margin-bottom: 10px;
}
.kf-banquet__feature .name {
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.kf-banquet__feature .desc {
  display: block;
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}
.kf-banquet__btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 250px;
}
.kf-banquet__btns .kf-btn {
  width: 100%;
}

/* ---------------------------------------------------------
   アクセス
   --------------------------------------------------------- */
.kf-access {
  padding: 64px 0 96px;
}
.kf-access__box {
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--kf-line);
  padding: 32px 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 40px;
  align-items: center;
}
.kf-access__info {
  min-width: 0;
}
.kf-access__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 22px;
}
.kf-access__head .jp {
  font-family: var(--kf-serif);
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.kf-access__head .en {
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  color: var(--kf-gold-dark);
}
.kf-access__addr {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: -6px 0 14px;
}
.kf-access__addr .ico {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--kf-gold);
}
.kf-access__addr .txt {
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  line-height: 1.6;
}
.kf-copy {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--kf-serif);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--kf-gold-dark);
  background: #fff;
  border: 1px solid var(--kf-gold);
  border-radius: 999px;
  padding: 5px 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.kf-copy svg {
  width: 13px;
  height: 13px;
}
.kf-copy:hover {
  background: var(--kf-gold);
  color: #fff;
}
.kf-copy.is-done {
  background: var(--kf-gold);
  border-color: var(--kf-gold);
  color: #fff;
}
.kf-access__list {
  display: flex;
  flex-direction: column;
}
.kf-unit {
  display: inline-block;
}
.kf-access__item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.45rem;
  line-height: 1.7;
  padding: 13px 0;
  border-bottom: 1px solid var(--kf-line);
}
.kf-access__item:first-child {
  border-top: 1px solid var(--kf-line);
}
.kf-access__item .ico {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  color: var(--kf-gold);
}
.kf-access__map {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.kf-access__map iframe {
  display: block;
  width: 100%;
  height: 200px;
  border: 0;
  filter: grayscale(35%);
}
.kf-access__map .kf-btn {
  position: absolute;
  right: 12px;
  bottom: 12px;
  font-size: 1.3rem;
  padding: 11px 16px;
  background: var(--kf-navy);
  color: #fff;
  border-color: var(--kf-navy);
}
.kf-access__map .kf-btn:hover {
  background: var(--kf-navy-light);
}

/* ---------------------------------------------------------
   サービスページの関連お知らせ（parts/pageNews.php）
   --------------------------------------------------------- */
.kf-pagenews {
  background: var(--kf-ivory);
  padding: 64px 0 72px;
  font-family: var(--kf-serif);
  color: var(--kf-text);
}
.kf-pagenews__box {
  position: relative;
  background: #fff;
  border: 1px solid var(--kf-line);
  border-radius: 10px;
  border-top: 3px solid var(--kf-gold);
  padding: 32px 36px 30px;
  box-shadow: 0 8px 22px rgba(29, 43, 74, 0.06);
}
.kf-pagenews__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.kf-pagenews__ttl {
  font-family: var(--kf-serif);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.4;
}
.kf-pagenews__ttl .en {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--kf-gold-dark);
  margin-bottom: 8px;
}
.kf-pagenews__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  font-size: 1.3rem;
  color: var(--kf-gold-dark);
  border-bottom: 1px solid var(--kf-gold);
  padding-bottom: 2px;
  white-space: nowrap;
}
.kf-pagenews__more:hover {
  color: var(--kf-gold-light);
}
.kf-pagenews__more .kf-arr {
  width: 12px;
  height: 12px;
}
.kf-pagenews__list li {
  border-bottom: 1px solid var(--kf-line);
}
.kf-pagenews__list li:first-child {
  border-top: 1px solid var(--kf-line);
}
.kf-pagenews__link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 4px;
  border-radius: 6px;
  color: var(--kf-text);
  transition: background 0.2s;
}
.kf-pagenews__link:hover {
  background: var(--kf-ivory);
}
.kf-pagenews__date {
  flex: 0 0 auto;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--kf-text-sub);
}
.kf-pagenews__cat {
  flex: 0 0 auto;
  min-width: 96px;
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--kf-gold-dark);
  border: 1px solid var(--kf-gold);
  border-radius: 3px;
  padding: 4px 10px;
  line-height: 1.3;
}
.kf-pagenews__ttl-txt {
  flex: 1 1 auto;
  font-size: 1.5rem;
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.kf-pagenews__new {
  flex: 0 0 auto;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: #c0392b;
  border: 1px solid #c0392b;
  border-radius: 3px;
  padding: 2px 8px;
}

/* ---------------------------------------------------------
   お問い合わせ帯（全ページ共通 sec-contact を再設計）
   --------------------------------------------------------- */
.sec-contact {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-top: 1px solid var(--kf-line);
  color: var(--kf-text);
  padding: 60px 0 64px;
  margin-top: 0;
  font-family: var(--kf-serif);
}
.sec-contact .inner {
  display: block;
  max-width: 1240px;
  padding: 0 40px;
}
.sec-contact::before {
  content: "CONTACT";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--kf-serif);
  font-size: 10rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(29, 43, 74, 0.06);
  pointer-events: none;
  user-select: none;
}
.kf-contact__lead {
  position: relative;
  text-align: center;
  font-family: var(--kf-serif);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 30px;
}
.kf-contact__stay {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 1.35rem;
  color: var(--kf-text-sub);
  margin-top: 28px;
}
.kf-contact__stay a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--kf-gold-dark);
  border-bottom: 1px solid var(--kf-gold);
  padding-bottom: 1px;
  transition: color 0.2s;
}
.kf-contact__stay a:hover {
  color: var(--kf-gold-light);
}
.kf-contact__stay a svg {
  width: 12px;
  height: 12px;
}
.kf-contact__cols {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.kf-contact__tel {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--kf-text);
}
.kf-contact__tel .ico {
  width: 40px;
  height: 40px;
  color: var(--kf-gold);
}
.kf-contact__tel .num {
  font-size: 3.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-feature-settings: "tnum";
  line-height: 1.1;
}
.kf-contact__tel .time {
  display: block;
  font-size: 1.3rem;
  color: var(--kf-text-sub);
  margin-top: 6px;
}
.kf-contact__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.kf-contact__btns .kf-btn {
  min-width: 250px;
  padding: 18px 24px;
}

/* ---------------------------------------------------------
   フッター
   --------------------------------------------------------- */
.footer {
  position: relative;
  padding: 0; /* 既存CSSの上下120pxを打ち消し。余白は下の .kf-ft 側で管理 */
  background: var(--kf-navy-deep);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--kf-serif);
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--kf-gold), transparent);
  opacity: 0.7;
}
.footer .kf-ft {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  padding: 46px 0 34px;
}
.footer .kf-ft__logo img {
  width: 200px;
  height: auto;
}
.footer .kf-ft__addr {
  font-size: 1.3rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 18px;
}
.footer .kf-ft__copy {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 14px;
}
.footer .kf-ft__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.footer .kf-ft__col-ttl {
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--kf-gold-light);
  padding-bottom: 10px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(176, 141, 79, 0.4);
}
.footer .kf-ft__col li {
  margin-bottom: 10px;
}
.footer .kf-ft__col li a {
  display: inline-block;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s, transform 0.2s;
}
.footer .kf-ft__col li a:hover {
  color: var(--kf-gold-light);
  transform: translateX(3px);
}
.footer .kf-ft__sns {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}
.footer .kf-ft__sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #fff;
  transition: border-color 0.2s, color 0.2s;
}
.footer .kf-ft__sns a:hover {
  border-color: var(--kf-gold-light);
  color: var(--kf-gold-light);
}
.footer .kf-ft__sns a i {
  font-size: 1.7rem;
  color: inherit;
}
.footer .kf-ft__group {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 26px 0 32px;
}
.footer .kf-ft__group-ttl {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}
.footer .kf-ft__group-ttl .en {
  font-size: 1.05rem;
  letter-spacing: 0.3em;
  color: var(--kf-gold-light);
}
.footer .kf-ft__group-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.footer .kf-ft__group-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(204, 171, 99, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.footer .kf-ft__group-list a:hover {
  border-color: var(--kf-gold-light);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
.footer .kf-ft__group-list .name {
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 4px;
}
.footer .kf-ft__group-list .desc {
  display: block;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}
.footer .kf-ft__group-list .kf-arr {
  flex: 0 0 auto;
  color: var(--kf-gold-light);
}

.footer .kf-ft__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 1.2rem;
}
.footer .kf-ft__bottom a {
  color: rgba(255, 255, 255, 0.6);
}
.footer .kf-ft__bottom a:hover {
  color: var(--kf-gold-light);
}

/* 画面下の追従バー（既存 cv-fixed）は新デザインでは使用しない
   ※parts/footer/fixed.php 自体は残しています（既存JSが参照するため）。
     HTMLには出力されますが、下記で常に非表示になります。 */
.cv-fixed {
  display: none !important;
}

/* スクロール表示アニメーション（renewal.jsがクラスを付与。JS無効時は通常表示） */
.kf-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.kf-reveal.is-view {
  opacity: 1;
  transform: none;
}
.kf-services__list .kf-card.kf-reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.kf-services__list .kf-card.kf-reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.kf-services__list .kf-card.kf-reveal:nth-child(4) {
  transition-delay: 0.24s;
}
.kf-sub__list .kf-subcard.kf-reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.kf-sub__list .kf-subcard.kf-reveal:nth-child(3) {
  transition-delay: 0.16s;
}
@media (prefers-reduced-motion: reduce) {
  .kf-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* SP用固定CTA（PCでは非表示） */
.kf-spfix {
  display: none;
}

/* ヘッダー:さらに狭いPC・タブレット横 */
@media screen and (min-width: 835px) and (max-width: 1000px) {
  .header-menu__item {
    margin-left: 10px;
  }
  .header-menu__item > a {
    font-size: 1.1rem;
  }
  .header-btn {
    min-width: 80px;
    padding: 0 10px;
  }
  .header-btn .inn .txt {
    font-size: 1.05rem;
  }
}

/* ---------------------------------------------------------
   中間幅PC・タブレット横（835〜1100px）
   --------------------------------------------------------- */
@media screen and (min-width: 835px) and (max-width: 1100px) {
  .kf-quick__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .kf-topics .kf-inner {
    grid-template-columns: 1fr;
  }
  .kf-brand__panel {
    margin-top: -46px;
  }
  .kf-services__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .kf-sub__list {
    grid-template-columns: 1fr;
  }
  .kf-subcard__img {
    flex: 0 0 220px;
  }
  .kf-banquet__box {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .kf-banquet__features {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 22px 0;
  }
  .kf-banquet__btns {
    flex-direction: row;
  }
  .kf-banquet__btns .kf-btn {
    width: auto;
    flex: 1 1 50%;
  }
  .kf-access__box {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

/* ---------------------------------------------------------
   スマートフォン（834px以下）
   --------------------------------------------------------- */
@media screen and (max-width: 834px) {
  .page-index .kf-inner {
    padding: 0 20px;
  }
  .kf-section-ttl {
    font-size: 2.2rem;
    margin-bottom: 24px;
  }

  /* HERO */
  .page-index .sec-mv .mv-item {
    height: 560px;
  }
  .kf-services::before {
    font-size: 5.4rem;
    top: 26px;
  }
  .sec-contact::before {
    font-size: 4.6rem;
  }
  .kf-mv__cnt {
    top: 40%;
  }
  .kf-mv__eyebrow {
    font-size: 1.05rem;
    letter-spacing: 0.2em;
    gap: 10px;
    margin-bottom: 14px;
  }
  .kf-mv__eyebrow::before {
    width: 28px;
  }
  .kf-mv__copy {
    font-size: clamp(2.2rem, 7vw, 2.8rem);
    line-height: 1.6;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }
  .kf-mv__name {
    font-size: 1.6rem;
    margin-top: 16px;
  }
  .kf-onn {
    right: 16px;
    left: 16px;
    bottom: 14px;
    width: auto;
    padding: 10px 12px 12px;
  }
  .kf-onn__head {
    margin-bottom: 8px;
    align-items: center;
  }
  .kf-onn__txt {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .kf-onn__txt br {
    display: none;
  }
  .kf-onn__tag {
    font-size: 1rem;
    padding: 2px 7px;
  }
  .kf-onn .kf-btn {
    padding: 9px 10px;
    font-size: 1.25rem;
  }

  /* 目的から探す：2×2 */
  .kf-quick {
    padding: 26px 0;
  }
  .kf-quick .kf-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .kf-quick__ttl {
    font-size: 1.7rem;
    padding-bottom: 8px;
  }
  .kf-quick__list {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .kf-quick__item {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 13px 8px 12px;
    font-size: clamp(1.05rem, 2.9vw, 1.25rem);
    gap: 7px;
  }
  .kf-quick__item .ico {
    width: 24px;
    height: 24px;
  }
  .kf-quick__item .txt {
    flex: 0 0 auto;
  }
  .kf-quick__item .kf-arr {
    display: none;
  }

  /* NEWS＋ブランド：縦積み */
  .kf-topics {
    padding: 60px 0 0;
  }
  .kf-topics .kf-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .kf-news {
    padding: 22px 18px 22px;
  }
  .kf-news__list li {
    flex: 0 0 auto;
  }
  .kf-news__link {
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 13px 2px;
  }
  .kf-news__ttl {
    flex-basis: 100%;
    -webkit-line-clamp: 2;
    order: 5;
  }
  .kf-brand__photo::after {
    inset: 8px;
  }
  .kf-brand__dots {
    top: 14px;
    right: 16px;
  }
  .kf-brand__panel {
    width: calc(100% - 28px);
    margin-top: -42px;
    padding: 22px 20px 22px;
  }
  .kf-brand__ttl {
    font-size: 1.9rem;
  }
  .kf-brand__words li {
    font-size: 1.5rem;
    letter-spacing: 0.18em;
  }
  .kf-brand__words li + li {
    margin-left: 14px;
    padding-left: 14px;
  }

  /* 主要4サービス：横並びカード（縦に巨大化させない） */
  .kf-services {
    padding: 64px 0 0;
  }
  .kf-services__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .kf-services__list .kf-card {
    flex-direction: row;
    min-height: 150px;
  }
  .kf-services__list .kf-card__img {
    flex: 0 0 36%;
    aspect-ratio: auto;
  }
  .kf-services__list .kf-card__body {
    padding: 14px 14px 16px;
  }
  .kf-card__ttl {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
  .kf-card__txt {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 12px;
  }
  .kf-card .kf-btn {
    width: auto;
    align-self: flex-start;
    border: none;
    background: transparent;
    color: var(--kf-gold-dark);
    padding: 0 0 2px;
    border-bottom: 1px solid var(--kf-gold);
    border-radius: 0;
    font-size: 1.25rem;
    gap: 5px;
  }
  .kf-card .kf-btn:hover {
    background: transparent;
    color: var(--kf-gold-light);
  }
  .kf-card__btns {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 16px;
  }
  .kf-card .kf-btn.kf-btn--gold {
    background: var(--kf-gold);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 1.15rem;
  }
  .kf-card .kf-btn.kf-btn--gold:hover {
    background: var(--kf-gold-light);
    color: #fff;
  }
  .kf-card__txt br {
    display: none;
  }

  /* サブサービス */
  .kf-sub {
    padding: 32px 0 0;
  }
  .kf-sub__list {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .kf-subcard {
    min-height: 110px;
  }

  /* 宴会CTA */
  .kf-banquet {
    margin-top: 56px;
  }
  .kf-banquet__box {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 30px 22px;
  }
  .kf-banquet__ttl {
    font-size: 1.9rem;
  }
  .kf-banquet__strong {
    font-size: 1.5rem;
    white-space: normal;
  }
  .kf-banquet__features {
    grid-template-columns: 1fr;
    gap: 16px;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 18px 2px;
  }
  .kf-banquet__feature {
    display: grid;
    grid-template-columns: 26px 1fr;
    column-gap: 12px;
    align-items: start;
    text-align: left;
  }
  .kf-banquet__feature .ico {
    grid-row: 1 / span 2;
    width: 26px;
    height: 26px;
    margin-bottom: 0;
  }
  .kf-banquet__feature .name {
    margin-bottom: 2px;
  }
  .kf-banquet__feature .desc br {
    display: none;
  }
  .kf-banquet__btns {
    min-width: 0;
  }

  /* アクセス */
  .kf-access {
    padding: 48px 0 72px;
  }
  .kf-access__box {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 20px;
  }
  .kf-access__addr {
    flex-wrap: wrap;
    gap: 8px 10px;
    margin: -2px 0 12px;
  }
  .kf-access__addr .txt {
    font-size: 1.35rem;
  }
  .kf-access__item {
    padding: 11px 0;
    font-size: 1.35rem;
  }

  /* サービスページの関連お知らせ */
  .kf-pagenews {
    padding: 44px 0 48px;
  }
  .kf-pagenews__box {
    padding: 22px 18px 20px;
  }
  .kf-pagenews__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
  }
  .kf-pagenews__ttl {
    font-size: 1.7rem;
  }
  .kf-pagenews__link {
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 13px 2px;
  }
  .kf-pagenews__ttl-txt {
    flex-basis: 100%;
    -webkit-line-clamp: 2;
    order: 5;
    font-size: 1.35rem;
  }

  /* お問い合わせ帯 */
  .sec-contact {
    padding: 44px 0 48px;
  }
  .sec-contact .inner {
    padding: 0 20px;
  }
  .kf-contact__lead {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 22px;
  }
  .kf-contact__stay {
    font-size: 1.2rem;
    margin-top: 22px;
  }
  .kf-contact__cols {
    flex-direction: column;
    gap: 24px;
  }
  .kf-contact__tel .num {
    font-size: 2.8rem;
  }
  .kf-contact__btns {
    width: 100%;
    flex-direction: column;
  }
  .kf-contact__btns .kf-btn {
    width: 100%;
    min-width: 0;
  }

  /* フッター */
  .footer .kf-ft {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 0 24px;
  }
  .footer .kf-ft__nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .footer .kf-ft__group-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .footer .kf-ft__bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-bottom: 90px; /* SP固定CTAと重ならないように */
  }

  /* SP固定CTA */
  .kf-spfix {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.18);
  }
  .kf-spfix a {
    font-family: var(--kf-serif);
    flex: 1 1 33.33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 4px 9px;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
    color: #fff;
    background: var(--kf-navy);
    line-height: 1.2;
  }
  .kf-spfix a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }
  .kf-spfix a.is-gold {
    background: var(--kf-gold);
  }
  .kf-spfix .ico {
    width: 18px;
    height: 18px;
  }
}

/* ---------------------------------------------------------
   極小スマートフォン（374px以下）
   --------------------------------------------------------- */
@media screen and (max-width: 374px) {
  .kf-services__list .kf-card__img {
    flex: 0 0 32%;
  }
  .kf-card .kf-btn {
    font-size: 1.15rem;
  }
  .kf-onn__txt {
    font-size: 1.1rem;
  }
}
