/*
Theme Name: classy-a002 Child
Template: classy-a002
Version: 3.0.2
Description: さらに読みやすく改善版
*/
@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;600&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Amiri&display=swap);

:root {
  --header-height: 70px;
  --color-black: #0f0f0f;
  --color-dark: #1a1a1a;
  --color-white: #f5f5f5;
  --color-accent: #8c1d18;
  --color-gold: #c9a876;
  --color-gold-soft: #e2d3b3;
  --color-border: rgba(201, 168, 118, 0.35);
  --color-text-main: #eaeaea;
  --color-text-sub: #b8b8b8;
  --transition-base: 0.3s ease;
}

* {
  box-sizing: border-box;
  font-family: "Shippori Mincho", serif;
}

body {
  margin: 0;
  font-family:
    "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 19px; /* 18px→19px */
  line-height: 1.8; /* 行間を広げる */
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity var(--transition-base);
}

a:hover {
  opacity: 0.7;
}

/* ヘッダー */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.92)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  transition: opacity var(--transition-base);
}

.brand:hover {
  opacity: 0.85;
}

.brand img {
  height: 54px; /* 52px→54px */
  width: auto;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.25));
}

/* グローバルナビ */
.global-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.global-nav ul {
  display: flex;
  align-items: stretch;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.global-nav li {
  position: relative;
  margin: 0;
}

.global-nav li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.global-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  line-height: 1.1;
  white-space: nowrap;
  transition: all var(--transition-base);
  position: relative;
}

.global-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transform: translateX(-50%);
  transition: width var(--transition-base);
}

.global-nav a:hover {
  background: rgba(255, 255, 255, 0.05);
  opacity: 1;
}

.global-nav a:hover::after {
  width: 80%;
}

.global-nav .jp {
  font-size: 16px; /* 15px→16px */
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.global-nav .en {
  font-size: 11px; /* 10px→11px */
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* 右側CTA */
.header-cta {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-cta .tel {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-gold);
  text-decoration: none;
  font-size: 15px; /* 14px→15px */
  letter-spacing: 0.08em;
  transition: color var(--transition-base);
}

.header-cta .tel:hover {
  color: var(--color-gold-soft);
  opacity: 1;
}

.header-cta .tel-label {
  font-weight: 500;
  opacity: 0.9;
}

.header-cta .tel b {
  font-size: 18px; /* 17px→18px */
  font-weight: 700;
}

.header-cta .reserve {
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
  padding: 13px 28px; /* 12px 26px→13px 28px */
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px; /* 15px→16px */
  letter-spacing: 0.08em;
  border: 2px solid var(--color-accent);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.header-cta .reserve:hover {
  background: transparent;
  color: var(--color-accent);
  opacity: 1;
}

/* モバイルメニュー */
.mobile-menu {
  display: none;
  flex: 0 0 auto;
}

.mobile-menu input[type="checkbox"] {
  display: none;
}

.hamburger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  cursor: pointer;
  z-index: 1002;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  transition: background var(--transition-base);
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
  position: absolute;
  width: 30px;
  height: 2px;
  background: var(--color-gold);
  transition: all 0.3s;
  border-radius: 2px;
}

.hamburger span::before,
.hamburger span::after {
  content: "";
  display: block;
}

.hamburger span::before {
  transform: translateY(-6px);
}

.hamburger span::after {
  transform: translateY(6px);
}

.mobile-menu input:checked ~ .hamburger span {
  background: transparent;
}

.mobile-menu input:checked ~ .hamburger span::before {
  transform: rotate(45deg);
  background: #fff;
}

.mobile-menu input:checked ~ .hamburger span::after {
  transform: rotate(-45deg);
  background: #fff;
}

.sp-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  padding: 80px 24px 40px;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
}

.mobile-menu input:checked ~ .sp-nav {
  right: 0;
}

.mobile-menu input:checked ~ .sp-nav::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
  backdrop-filter: blur(4px);
}

.sp-nav ul {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.sp-nav ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0;
}

.sp-nav ul li:last-child {
  border-bottom: none;
}

.sp-nav ul a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0; /* 16px→18px */
  color: var(--color-text-main);
  font-size: 17px; /* 16px→17px */
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: all var(--transition-base);
}

.sp-nav ul a:hover {
  color: var(--color-gold);
  padding-left: 8px;
  opacity: 1;
}

.sp-nav .en-small {
  font-size: 12px; /* 11px→12px */
  font-weight: 300;
  letter-spacing: 0.12em;
  opacity: 0.6;
  text-transform: uppercase;
}

.sp-info {
  margin-bottom: 24px;
}

.sp-hours,
.sp-tel,
.sp-pay {
  padding: 18px; /* 16px→18px */
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 118, 0.2);
  border-radius: 6px;
  text-align: center;
  margin-bottom: 16px;
}

.sp-hours p,
.sp-tel p,
.sp-pay p {
  margin: 0;
  font-size: 15px; /* 14px→15px */
  color: var(--color-text-sub);
}

.sp-hours .time {
  margin-top: 4px;
  font-size: 20px; /* 18px→20px */
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.08em;
}

.sp-tel a {
  font-weight: 700;
  font-size: 20px; /* 18px→20px */
  color: var(--color-gold);
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sp-tel i {
  font-size: 22px; /* 20px→22px */
}

.sp-pay img {
  max-width: 200px;
  margin-bottom: 8px;
}

.sp-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.sp-cta .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 18px; /* 16px→18px */
  border-radius: 6px;
  font-weight: 700;
  font-size: 17px; /* 16px→17px */
  letter-spacing: 0.08em;
  transition: all var(--transition-base);
}

.btn--reserve {
  background: var(--color-accent);
  color: #fff;
  border: 2px solid var(--color-accent);
}

.btn--reserve:hover {
  background: transparent;
  color: var(--color-accent);
  opacity: 1;
}

.btn--line {
  background: #06c755;
  color: #fff;
  padding: 0;
  border: none;
}

.btn--line img {
  height: 48px;
  width: auto;
}

.language-switch {
  display: block;
  width: 100%;
  padding: 18px; /* 16px→18px */
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 17px; /* 16px→17px */
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.12em;
  transition: all var(--transition-base);
}

.language-switch:hover {
  background: var(--color-gold);
  color: var(--color-dark);
  border-color: var(--color-gold);
  opacity: 1;
}

/* ヒーロー */
.hero--kv {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #0b0b0b 0%, #1f1f1f 55%, #111 100%);
}

.hero__kv {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.hero__kv .vegas-slide,
.hero__kv .vegas-slide-inner {
  background-position: 50% 50% !important;
  background-size: cover !important;
}

.hero__kv::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.hero__text {
  position: absolute;
  z-index: 2;
  width: min(1100px, calc(100% - 120px));
  height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 60px;
  color: #fff;
}

.hero__title {
  margin: 0 0 18px;
  font-size: 104px; /* 96px→104px */
  font-style: italic;
  line-height: 1.05;
  letter-spacing: 0em;
  color: var(--color-gold);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.75);
}

.hero__subtitle {
  margin: 0;
  font-size: 22px; /* 20px→22px */
  letter-spacing: 0.12em;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.75);
}

/* サイト全体 */

main.p-bg,
main {
  background-image: url(../img/bg_pc.jpg) !important;
}
h1 {
  color: #000;
  text-align: center !important;
  margin: 10px auto 20px !important;
  font-size: 40px !important;
  letter-spacing: 0.05em !important;
  font-weight: 500 !important;
}


/* 三層セクション */
.layered {
  position: relative;
  overflow: hidden;
}

.layered__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  background: radial-gradient(circle at bottom right, #2a1a1a 0%, #0f0f0f 60%);
}

.layered__frame {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  border: 1px solid rgba(201, 168, 118, 0.25);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.92);
}

.layered .inner,
.layered .inner-s {
  padding: 0;
}

.layered__frame h2,
.layered__frame h3,
.layered__frame p,
.layered__frame li {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.inner,
.inner-s {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 24px; /* 20px→24px */
}

.section {
  padding: 36px 0; /* 32px→36px */
}

h2 {
  margin: 0 0 24px;
  font-size: 34px; /* 32px→34px */
  line-height: 1.3;
}

section {
  padding: 0 0;
}

.section-title {
  font-size: 34px; /* 32px→34px */
  position: relative;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 48px;
  text-align: center;
}

.section-title::after {
  position: absolute;
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  margin-top: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, var(--color-gold), transparent);
}

.section-title .section-sub {
  display: block;
  margin-top: 6px;
  font-size: 15px; /* 14px→15px */
  letter-spacing: 0.2em;
  color: var(--color-gold);
  opacity: 0.85;
}

.section-body {
  margin-top: 16px;
}

.section-cta {
  margin-top: 24px;
  text-align: center;
}

/* コンセプト */
section.pay-banner {
  margin: 96px auto 32px;
  padding: 36px 0 32px;
}

#concept .layered__bg {
  background: radial-gradient(circle at top left, #3a1b1b 0%, #0f0f0f 70%);
}

#concept .layered__frame {
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.55);
}

#system .layered__frame::before,
#concept .layered__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  opacity: 0.7;
  filter: saturate(0.5) contrast(0.6) blur(0.5px);
  z-index: 0;
}
#concept .layered__frame::before {
  background: url("/wp-content/themes/classy-a002-child/img/concept-bg.jpg")
    left center no-repeat;
}

#concept .layered__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(73, 62, 62, 0.1) 0%,
    rgba(0, 0, 0, 0.1) 55%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
}

#concept .layered__frame > * {
  position: relative;
  z-index: 2;
}

.concept-lead {
  font-size: 20px; /* 18px→20px */
  line-height: 1.85;
  margin-bottom: 24px;
}

.concept-points {
  margin-top: 32px;
}

.concept-point + .concept-point {
  margin-top: 24px;
}

.concept-point h3 {
  font-size: 22px; /* 20px→22px */
  margin-bottom: 14px; /* 12px→14px */
  color: var(--color-gold);
}

.concept-point p {
  font-size: 20px; /* 18px→20px */
  line-height: 1.85;
}

/* システム */
.system-blocks {
  display: grid;
  gap: 40px;
}

.system-block {
  border-top: 1px solid rgba(201, 168, 118, 0.3);
  padding-top: 24px;
}

.system-block:first-child {
  border-top: none;
  padding-top: 0;
}

.system-title {
  margin-bottom: 16px;
  font-size: 24px; /* 22px→24px */
  color: var(--color-gold);
}

.system-message {
  font-size: 20px; /* 18px→20px */
  line-height: 1.85;
}

/* ===== 共通：見た目の統一 ===== */
.system-dl,
.system-list {
  margin: 16px 0;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
  font-size: 20px;
  line-height: 1.8;
}

/* ===== UL（コース用：1カラムの箇条書き） ===== */
.system-list {
  list-style: none;
  padding: 0;
}

.system-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 500;
}

/* ■ は span で */
.system-bullet {
  color: var(--color-gold);
  font-size: 0.8em;
  line-height: 1.8;
  flex: 0 0 auto;
}

/* コースは2カラムにしたいならこれ（必要なら） */
.system-list--course {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
}

/* grid化した時に li が崩れないように */
.system-list--course li {
  margin-bottom: 10px;
}

/* SPは1列に戻す */
@media (max-width: 767px) {
  .system-list--course {
    grid-template-columns: 1fr;
  }
}

/* ===== DL（オプション/交通費：2カラム必要） ===== */
.system-row {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 10px;
  margin-bottom: 10px;
  align-items: start;
}

.system-dl dt {
  font-weight: 500;
}

.system-dl dd {
  margin: 0;
}

/* 右側を揃えたいとき用（オプション料金） */
.system-dl--price .system-price {
  text-align: right;
  font-weight: 600;
}

/* 交通費は右寄せしない（文章長いから） */
.system-dl--area .system-price {
  text-align: left;
  font-weight: 600; /* いるなら */
}

.system-note {
  margin-top: 16px;
  font-size: 17px; /* 16px→17px */
  color: var(--color-text-sub);
}

/* レスポンシブ */
@media (max-width: 1200px) {
  .global-nav .jp {
    font-size: 15px;
  }

  .global-nav a {
    padding: 12px 14px;
  }

  .header-inner {
    gap: 20px;
  }
}

@media (max-width: 980px) {
  body {
    font-size: 17px; /* 16px→17px */
  }

  .header-inner {
    padding: 0 16px;
    justify-content: space-between;
  }

  .brand img {
    height: 46px; /* 44px→46px */
  }

  .global-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero--kv {
    min-height: 420px;
  }

  .hero__kv,
  .hero__text {
    width: calc(100% - 36px);
    height: 380px;
  }

  .hero__text {
    padding-left: 0;
    align-items: center;
    text-align: center;
  }

  .hero__title {
    font-size: 56px; /* 52px→56px */
  }

  .hero__subtitle {
    font-size: 17px; /* 16px→17px */
  }

  .hero__kv::after {
    background: rgba(0, 0, 0, 0.35);
  }

  section {
    padding: 48px 0;
  }

  h2 {
    font-size: 28px; /* 26px→28px */
  }

  .section-title {
    margin-bottom: 36px;
    font-size: 30px; /* 28px→30px */
  }

  .layered {
    padding: 48px 0;
  }

  .layered__frame {
    width: calc(100% - 20px);
    padding: 32px 20px;
  }

  .system-blocks {
    gap: 32px;
  }

  .system-title {
    font-size: 22px;
  }

  .concept-lead,
  .concept-point p,
  .system-message,
  .system-list li {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .hero__title {
    font-size: 44px; /* 42px→44px */
  }

  .hero__subtitle {
    font-size: 15px; /* 14px→15px */
  }

  h2 {
    font-size: 26px; /* 24px→26px */
  }

  .section-title {
    font-size: 26px; /* 24px→26px */
  }

  .sp-nav {
    width: 100%;
    max-width: 100%;
  }

  .concept-lead,
  .concept-point p,
  .system-message,
  .system-list li {
    font-size: 17px;
  }
}

/* フッター */
footer,
.site-footer,
.p-footer,
.l-footer,
#footer,
#contact,
.p-footer__copyright {
  background: radial-gradient(
    circle at bottom right,
    #2a1a1a 0%,
    #0f0f0f 60%
  ) !important;
  color: rgba(255, 255, 255, 0.92) !important;
}

footer a,
.site-footer a,
.p-footer a,
.l-footer a,
#footer a,
#contact a,
.p-footer__copyright a {
  color: var(--color-gold) !important;
  text-decoration: none;
}

footer a:hover,
.site-footer a:hover,
.p-footer a:hover,
.l-footer a:hover,
#footer a:hover,
#contact a:hover,
.p-footer__copyright a:hover {
  color: var(--color-gold-soft) !important;
  opacity: 1;
}

footer *,
.site-footer *,
.p-footer *,
.l-footer *,
#footer *,
#contact * {
  border-color: rgba(255, 255, 255, 0.08) !important;
}

footer,
.site-footer,
.p-footer,
.l-footer,
#footer,
#contact {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

footer img,
.site-footer img,
.p-footer img,
.l-footer img,
#footer img {
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.6));
}

footer .btn,
.site-footer .btn,
.p-footer .btn,
.l-footer .btn,
#contact .btn {
  background: rgba(0, 0, 0, 0.35) !important;
  border: 1px solid rgba(201, 168, 118, 0.25) !important;
  color: rgba(255, 255, 255, 0.92) !important;
}

footer .btn:hover,
.site-footer .btn:hover,
.p-footer .btn:hover,
.l-footer .btn:hover,
#contact .btn:hover {
  border-color: rgba(201, 168, 118, 0.5) !important;
}

.p-footer__copyright {
  font-size: 13px; /* 12px→13px */
  letter-spacing: 0.08em;
  opacity: 0.85;
}

/* Payment Banner */
.pay-banner-img {
  align-items: center;
  justify-content: center;
}

.pay-banner-img img {
  height: 100%;
  min-width: 600px;
  width: 100%;
}

.pay-banner {
  position: relative;
  z-index: 10;
  width: min(1100px, calc(100% - 40px));
  margin: 28px auto 56px;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 26, 0.92),
    rgba(15, 15, 15, 0.95)
  );
  border: 1px solid rgba(201, 168, 118, 0.25);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.pay-banner__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.pay-banner__col {
  padding: 24px 24px 20px; /* 22px→24px */
  position: relative;
}

.pay-banner__col + .pay-banner__col {
  border-left: 1px solid rgba(201, 168, 118, 0.25);
}

.pay-banner__title {
  margin: 0 0 14px;
  font-size: 30px; /* 28px→30px */
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.92);
}

.pay-banner__logos {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 8px 0 14px;
}

.pay-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 18px;
  background: rgba(201, 168, 118, 0.18);
  border: 1px solid rgba(201, 168, 118, 0.45);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.08em;
  border-radius: 6px;
  text-decoration: none;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.2s ease;
}

.pay-banner__cta:hover,
.pay-banner__cta:focus {
  background: rgba(201, 168, 118, 0.42);
  border-color: rgba(201, 168, 118, 0.85);
  color: #fff;
  transform: translateY(-2px);
  opacity: 1;
}

.pay-banner__rightTitle {
  margin: 0 0 8px;
  font-size: 24px; /* 22px→24px */
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.06em;
}

.pay-banner__tel {
  margin: 0 0 10px;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--color-gold);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

/* tel:リンクで囲んでも見た目を維持 */
.pay-banner__tel a {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-decoration: none;
  text-shadow: inherit;
}

.pay-banner__note {
  margin: 0;
  font-size: 17px; /* 16px→17px */
  color: var(--color-text-sub);
  letter-spacing: 0.06em;
}

@media (max-width: 1200px) {
  .pay-banner__inner {
    grid-template-columns: 1fr;
  }
  .pay-banner__col + .pay-banner__col {
    border-left: none;
    border-top: 1px solid rgba(201, 168, 118, 0.25);
  }
  .pay-banner__tel {
    font-size: 40px; /* 36px→40px */
  }
  .pay-banner__title {
    font-size: 26px;
  }
  .pay-banner__rightTitle {
    font-size: 22px;
  }
}

/* single-news.php */
/* 親テーマの背景がnewsページに乗ってくるのを潰す（応急処置） */

/* ===============================
   NEWS Archive Layout (2 columns)
================================ */

.news-archive--clean {
  background: #fff;
  color: #111;
  padding: 64px 0 96px;
}

.news-archive__head {
  max-width: 1040px;
  margin: 0 auto 28px;
  padding: 0 24px;
  text-align: center;
}

.news-archive__eyebrow {
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #111; /* “名古屋寄せ”なら赤系 */
  margin: 0 0 8px;
}

.news-archive__title {
  font-size: 22px;
  margin: 0;
}

.news-archive__grid {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

/* カード */
.news-card__link {
  display: block; /* aタグブロック上書き対策にもなる */
  text-decoration: none;
  min-height: 350px;
  color: inherit;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  position: relative;
}

.news-card__thumb,
.news-card__body {
  height: 50%;
}
.news-card__thumb img {
  width: 100%;
  max-width: max-content;
  margin-inline: auto;
  height: auto;
  max-height: 200px;
  display: block;
}

.news-card__body {
  position: absolute;
  top: 50%;
  padding: 14px 14px 16px;
}

.news-card__date {
  display: inline-block;
  font-size: 16px;
  color: #666;
  margin-block: 8px;
}

.news-card__title {
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 10px;
}

.news-card__excerpt {
  font-size: 14px;
  color: #333;
  line-height: 1.7;
  margin: 0;
}

.news-archive__pagination {
  margin-top: 26px;
  text-align: center;
}

/* SP */
@media (max-width: 767px) {
  .news-archive__grid {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   NEWS Archive - text color fix
================================= */

.news-archive--clean,
.news-archive--clean * {
  color: #111;
}

.news-archive__date {
  color: #666;
}

.news-archive__title {
  color: #000;
  font-weight: 600;
}

.news-archive__excerpt {
  color: #333;
  line-height: 1.7;
}

/* single-blog.php */
/* 親テーマの背景がnewsページに乗ってくるのを潰す（応急処置） */

/* ===============================
   NEWS / BLOG Single
================================ */
.news-single-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px 96px;
  color: #111;
}

.news-single__head {
  margin-bottom: 32px;
  border-bottom: 2px solid #b38b2d;
  padding-bottom: 16px;
}

.news-single__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  margin: 8px 0 0;
  color: #111;
}

.news-single__thumb {
  margin-bottom: 36px;
  border-radius: 6px;
  overflow: hidden;
}

.news-single__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.news-single__body {
  font-size: 17px;
  line-height: 2;
  color: #333;
}

.news-single__body img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 16px 0;
}

.news-single__nav {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.news-single__back {
  font-size: 14px;
  color: #b38b2d;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: opacity 0.2s;
}

.news-single__back:hover {
  opacity: 0.7;
}

@media (max-width: 600px) {
  .news-single-article {
    padding: 40px 16px 72px;
  }

  .news-single__title {
    font-size: 22px;
  }

  .news-single__body {
    font-size: 16px;
  }
}
