@charset "utf-8";
/*--------------------

	ＴＯＰページ
	
--------------------*/
:root {
  --cream: #e7e1e2;
  --warm-white: #f8f3f3;
  --beige: #E2ECF7;
  --sand: #ece9e9;
  --olive: #3f4d57;
  --dark-olive: #dfd2d2;
  --gold: #b85c5c;
  --gold-light: #e6dfd3;
  --rust: #C04030;
  --text-main: #262828;
  --text-sub: #3f4d57;
  --text-light: #C1AF90;
  --border: #e3d4d4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--sand);
  color: var(--text-main);
  line-height: 1.8;
  font-weight: 300;
  -moz-font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  /*background: #ffffff;*/
}

.text-ctr { text-align: center; }

/* ============ HEADER NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
}
.nav.scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(38, 40, 40, 0.08);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  width: 250px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links-sp-only {
  display: none;
}
.nav-links a {
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--text-sub);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: white;
  padding: 10px 24px;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background 0.2s;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--gold); opacity: 1; }
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  margin: 5px auto;
  background: var(--gold);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sp-floating-cta {
  display: none;
}

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  background: #fff;
}
.hero-left {
  background: var(--sand);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 64px 80px;
  position: relative;
}
.hero-eyebrow {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  letter-spacing: 0.35em;
  color: var(--gold);
  /*font-style: italic;*/
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  /*font-family: 'Noto Serif JP', serif;*/
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: #a6625c;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--text-main);
  font-weight: 500;
  letter-spacing: 0.1em;
}
.hero-sub {
  font-size: 15px;
  color: #b6928f;
  line-height: 2;
  margin-bottom: 48px;
  max-width: 380px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}
.badge {
  font-size: 15px;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  color: var(--text-main);
  background: white;
  border-radius: 8px;
  font-weight: 500;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 280px;
}
.btn-primary {
  display: block;
  text-align: center;
  background: var(--gold);
  color: white;
  padding: 16px 32px;
  font-size: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  font-weight: 500;
  border-top-right-radius: 28px;
}
.btn-primary:hover { background: var(--dark-olive); transform: translateY(-1px); }
.btn-outline {
  display: block;
  text-align: center;
  border: 1px solid var(--text-main);
  color: var(--text-main);
  padding: 14px 32px;
  font-size: 15px;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: all 0.2s;
  border-top-right-radius: 28px;
}
.btn-outline:link,.btn-outline:visited {
  color: var(--text-main);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-right {
  background: var(--sand);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.hero-visual {
  position: absolute;
  inset: 0;
  background-image: url(../images/top/fv.webp);
  background-size: cover;
  background-position: center;
  top: 50%;
  transform: translatey(-50%);
  padding: 60px 0;
  height: calc(100% - 120px);
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
}
/*.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(210,228,248,0.35) 0%, rgba(190,215,242,0.55) 100%),
    radial-gradient(ellipse at 60% 40%, rgba(184,150,62,0.18) 0%, transparent 60%);
}*/
.hero-stat-grid {
  position: relative;
  z-index: 2;
  padding: 110px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  width: 100%;
  margin-top: auto;
}
.stat-box {
  background: rgba(255,250,255,0.88);
  backdrop-filter: blur(4px);
  padding: 28px 24px;
  text-align: center;
  transition: background 0.2s;
  border-radius: 12px;
}
.stat-box:hover { background: rgba(255,250,255,0.97); }
.stat-num {
  font-family: "Oswald", sans-serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num sub {
  font-size: 18px;
  font-weight: 600;
    /* vertical-align: middle;*/
}
.stat-label {
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--text-sub);
  font-weight: 500;
}
.hero-brand-mark {
  position: absolute;
  top: 100px;
  left: 30px;
  font-family: "Raleway", sans-serif;
  font-size: 72px;
  font-style: italic;
  color: var(--sand);
  letter-spacing: 0em;
  line-height: 1;
  pointer-events: none;
  font-weight: 500;
}

/* ============ SECTIONS ============ */
section { padding: 96px 0; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

.section-label {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  letter-spacing: 0.35em;
  color: var(--gold);
  /*font-style: italic;*/
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label.non-label-line{
  justify-content: center;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.section-label.non-label-line::before {
  display: none;
}

.section-title {
  /*font-family: 'Noto Serif JP', serif;*/
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--text-main);
  margin-bottom: 40px;
}

/* ============ INTRO SECTION ============ */
.intro {
  background: white;
  margin: 0 5% 0 0;
  padding-left: 5%;
  border-radius: 0 80px 80px 0;
  overflow: hidden;
}
@media (min-width: 1200px){}
.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-text p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 2.1;
  margin-bottom: 20px;
}
.intro-accent-block {
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin-top: 32px;
}
.intro-accent-block p {
  /*font-family: 'Noto Serif JP', serif;*/
  font-size: 15px;
  font-weight: 400;
  color: var(--olive);
  line-height: 2;
}
.intro-image-box {
  position: relative;
  overflow: hidden;
  min-height: 460px;
}
.intro-image-box img.intro-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.intro-image-box-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,45,80,0.50) 0%, rgba(13,45,80,0.05) 100%);
  z-index: 1;
}
.intro-image-box-content {
  position: relative;
  z-index: 2;
  padding: 48px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/*.intro-image-box::before {
  content: 'TCL';
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  color: rgba(255,255,255,0.06);
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  z-index: 3;
  pointer-events: none;
}*/
.keyword-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.keyword-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  letter-spacing: 0.05em;
}
.keyword-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============ CONCERNS ============ */
.concerns {
  background: var(--sand);
}
.concerns-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 48px;
  border-radius: 17px;
}
.concern-item {
  background: var(--warm-white);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: background 0.2s;
}
.concern-item:first-of-type {
  border-top-left-radius: 16px;
}
.concern-item:nth-of-type(2) {
  border-top-right-radius: 16px;
}
.concern-item:nth-of-type(9) {
  border-bottom-left-radius: 16px;
}
.concern-item:last-of-type {
  border-bottom-right-radius: 16px;
}
.concern-item:hover { background: var(--cream); }
.concern-check {
  width: 20px;
  height: 20px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.concern-check::after {
  content: '';
  display: block;
  width: 10px;
  height: 8px;
  background: url(../images/top/check.svg) no-repeat center center;
  background-size: contain;
}
.concern-item p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.7;
}
.concerns-note {
  color: var(--gold);
  margin: 32px auto;
  font-size: 17px;
  line-height: 2;
  text-align: center;
  /*font-family: 'Noto Serif JP', serif;*/
  font-weight: 500;
  text-decoration-line: underline;
  text-decoration-style: dashed;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

/* ============ REASONS ============ */
.reasons {
  position: relative;
  background: var(--warm-white);
  overflow: hidden;
}
.reasons::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, var(--sand), var(--warm-white));
  pointer-events: none;
  z-index: 0;
}
.reasons::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, var(--sand), var(--warm-white));
  pointer-events: none;
  z-index: 0;
}
.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.reason-item {
  display: grid;
  align-items: start;
  grid-template-columns: 120px 1fr;
  background: var(--warm-white);
  overflow: hidden;
  transition: transform 0.2s;
  gap: 16px;
}
.reason-item:hover { transform: translateX(4px); }
.reason-num {
  /*background: var(--olive);*/
  border: 1px dashed var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px 20px;
  border-radius: 9999px;
}
.reason-num span {
  font-family: "Oswald", sans-serif;
  font-size: 48px;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  display: block;
  letter-spacing: 0.03em;
}
.reason-num strong {
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  color: var(--olive);
  letter-spacing: 0.03em;
  font-weight: 400;
}
.reason-body h3 {
  /*font-family: 'Noto Serif JP', serif;*/
  font-size: 17px;
  font-weight: 500;
  color: var(--olive);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}
.reason-body p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 2;
}

/* ============ COMPARISON ============ */
.comparison {
  background: rgba(249, 249, 249);
  color: white;
  border-radius: 80px 0 0 80px;
  margin-left: 5%;
  padding-right: 5%;
}
.comparison .section-title { color: var(--olive); }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  background: #fff;
  border-radius: 17px;
}
.compare-table thead th {
  padding: 16px 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.compare-table thead th:first-child { text-align: left; color: white; font-size: 14px; background: var(--olive); border-top-left-radius: 17px; }
.compare-table thead th:nth-child(2) {
  background: var(--gold);
  color: white;
  text-align: center;
}
.compare-table thead th:last-child { text-align: center; color: white; background: var(--olive); border-top-right-radius: 17px; }
.compare-table tbody td {
  padding: 16px 24px;
  font-size: 13px;
  border-bottom: 1px dashed #e0e6ea;
}
.compare-table tbody tr:last-of-type td { border-bottom: none; }
.compare-table tbody td:first-child { color: var(--olive); font-size: 15px; letter-spacing: 0.06em; font-weight: 500; background-color: #eaecee; }
.compare-table tbody tr:last-of-type td:first-child { border-bottom-left-radius: 17px; }
.compare-table tbody td:nth-child(2) {
  text-align: center;
  color: var(--gold);
  background: rgba(184,150,62,0.08);
  font-weight: 500;
  font-size: 15px;
}
.compare-table tbody td:last-child { text-align: center; color: var(--olive); font-size: 15px; font-weight: 500; }
.compare-table tbody tr:hover td {
  box-shadow:
    inset 0 3px 0 #ad9b7f,
    inset 0 -3px 0 #ad9b7f;
}
.compare-table tbody tr:hover td:first-child {
  box-shadow:
    inset 3px 0 0 #ad9b7f,
    inset 0 3px 0 #ad9b7f,
    inset 0 -3px 0 #ad9b7f;
}
.compare-table tbody tr:hover td:last-child {
  box-shadow:
    inset -3px 0 0 #ad9b7f,
    inset 0 3px 0 #ad9b7f,
    inset 0 -3px 0 #ad9b7f;
}
.compare-note {
  margin-top: 50px;
    /* padding: 28px 32px; */
    /* border: 1px solid rgba(184, 150, 62, 0.3); */
  font-size: 17px;
  color: var(--olive);
  line-height: 2;
  font-weight: 500;
}
.compare-note em {
  border-bottom: 1px dashed var(--olive);
  padding-bottom: 5px;
  font-weight: 500;
}

/* ============ SERVICES ============ */
.services {
  background: var(--sand);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--sand);
  padding: 0;
  transition: background 0.2s;
  overflow: hidden;
}
.service-card:hover { background: var(--sand); }
.service-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  filter: brightness(0.88) saturate(0.85);
  transition: filter 0.3s, transform 0.4s;
  border-radius: 17px;
}
.service-card:hover .service-card-img {
  filter: brightness(0.95) saturate(0.95);
  transform: scale(1.03);
  border-radius: 17px;
}
.service-card-body {
  padding: 24px 0 32px;
}
.service-card-ttl{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 16px;
}
.service-num {
  font-family: "Oswald", sans-serif;
  font-size: 36px;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  opacity: 0.6;
  letter-spacing: 0.03em;
}
.service-card p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 2;
}
.service-card-ttl h3{
  font-weight: 500;
}

/* ============ FLOW ============ */
.flow {
  background: white;
  border-radius: 80px 80px 0 0;
}
.flow-steps {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 0;
}
.flow-steps::before {
  content: '';
  position: absolute;
  left: 45px;
  top: 70px;
  bottom: 40px;
  width: 1px;
  background: var(--sand);
  height: calc(100% - 140px);
}
.flow-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  padding: 28px 0;
  align-items: flex-start;
  align-items: center;
}
.step-num {
  width: 90px;
  height: 90px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border-radius: 17px;
}
.flow-step:nth-of-type(2) .step-num{ background: var(--dark-olive); }
.flow-step:nth-of-type(3) .step-num{ background: #6282a1; }
.flow-step:nth-of-type(4) .step-num{ background: #65417C; }
.flow-step:nth-of-type(5) .step-num{ background: #B69C95; }
.step-num span {
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: white;
  display: block;
  text-align: center;
}
.step-num strong {
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  color: white;
  font-weight: 300;
  display: block;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.03em;
}
.step-content { padding: 24px 24px 24px 32px;
  background: rgba(249, 249, 249);
  border-radius: 17px; }
.step-content h3 {
  /*font-family: 'Noto Serif JP', serif;*/
  font-size: 21px;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 8px;
}
.step-content p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 2;
}
.flow-cta { margin-top: 48px; text-align: center; }

/* ============ TESTIMONIALS ============ */
.testimonials {
  background: var(--sand);
  overflow: hidden;
  position: relative;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: url(../images/top/sand-radius.webp) no-repeat top right;
  background-size: contain;
  pointer-events: none;
}
.testimonials::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background: url(../images/top/sand-radius.webp) no-repeat top right;
  background-size: contain;
  pointer-events: none;
  transform: rotate(270deg);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial {
  background: white;
  padding: 36px 32px;
  transition: background 0.2s;
  border-radius: 17px;
}
.testimonial:hover { background: var(--warm-white); }
.testimonial-tag {
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.testimonial p {
  font-size: 16px;
  color: var(--text-sub);
  line-height: 2.1;
}
.testimonial-author {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-light);
  letter-spacing: 0.08em;
}

/* ============ TRAINER ============ */
.trainer {
  background: white;
  color: var(--text-main);
  width: 1200px;
  margin: 0 auto;
  border-radius: 80px;
}
.trainer .section-title { color: var(--text-main); }
.trainer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.trainer-photo {
  background: rgba(255,255,255,0.06);
  padding: 90px 40px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.trainer-photo::before {
  content: 'TRAINER';
  position: absolute;
  bottom: -2px;
  right: 2px;
  font-family: "Oswald", sans-serif;
  font-size: 56px;
  color: var(--sand);
  letter-spacing: 0.1em;
  font-style: italic;
  line-height: 1;
  z-index: 3;
}
.trainer-name {
  /*font-family: 'Noto Serif JP', serif;*/
  font-size: 24px;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.trainer-title {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.12em;
}
.trainer-body p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 2.1;
  margin-bottom: 24px;
}
.qualifications {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px dashed var(--border);
}
.qualifications li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-sub);
  letter-spacing: 0.06em;
}
.qualifications li::before {
  content: '';
  display: block;
  width: 6px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============ PRICING ============ */
.pricing { background: var(--sand); }
.fee-box {
  background: white;
  flex: 1;
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.fee-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 500;
}
.fee-amount {
  font-family: "Oswald", sans-serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--olive);
  line-height: 1;
}
.fee-unit {
  font-size: 15px;
  color: var(--text-sub);
  margin-top: 4px;
}
.fee-unit-small {
  font-size: 13px;
}
.fee-box.highlight {
  background: var(--olive);
}
.fee-box.highlight .fee-label { color: rgba(255,255,255,1); }
.fee-box.highlight .fee-amount { color: var(--gold-light); }
.fee-box.highlight .fee-unit { color: rgba(255,255,255,1); }

.pricing-quote {
  background: var(--olive);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.pricing-quote p {
  /*font-family: 'Noto Serif JP', serif;*/
  font-size: 17px;
  color: rgba(255,255,255,1);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.12em;
}

/* ============ ACCESS ============ */
.access { background: var(--sand); position: relative; }
/*.access::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, var(--sand), var(--warm-white));
  pointer-events: none;
}
.access::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, var(--sand), var(--warm-white));
  pointer-events: none;
}*/
.access-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.access-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.info-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.info-label {
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--text-light);
  padding-top: 2px;
}
.info-value {
  font-size: 16px;
  color: var(--text-sub);
  line-height: 1.9;
}
.map-placeholder {
  background: var(--beige);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 39px, var(--sand) 39px, var(--sand) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, var(--sand) 39px, var(--sand) 40px);
  opacity: 0.4;
}
.map-pin {
  position: relative;
  z-index: 1;
  text-align: center;
}
.map-pin-icon {
  width: 48px;
  height: 48px;
  background: var(--olive);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-pin-icon::after {
  content: '';
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  transform: rotate(45deg);
}
.map-caption {
  font-size: 12px;
  color: var(--text-sub);
  letter-spacing: 0.08em;
}
.access-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

/* ============ FAQ ============ */
.faq { 
  background: white; 
  border-radius: 80px 0 0 80px;
  margin-left: 5%;
  padding-right: 5%;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  /*background: var(--border);
  border: 1px solid var(--border);*/
}
.faq-item {
  background: var(--warm-white);
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  cursor: pointer;
  transition: background 0.2s;
  gap: 16px;
}
.faq-q:hover { background: var(--cream); }
.faq-q-text {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.7;
}
.faq-q-badge {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1.4;
}
.faq-icon {
  width: 20px;
  height: 20px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  padding-left: 4px;
  padding-bottom: 2px;
  color: var(--text-light);
  transition: transform 0.2s, background 0.2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--olive);
  border-color: var(--olive);
  color: white;
}
.faq-a {
  padding: 0 28px 0 60px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 20px;
}
.faq-a p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 2;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ============ FINAL CTA ============ */
.final-cta {
  background: url(../images/top/cta-bg.webp) no-repeat center center;
  background-size: cover;
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 80px 80px 0 0;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
  radial-gradient(ellipse at 0% 20%, rgb(126 81 94 / 80%) 0%, transparent 50%), radial-gradient(ellipse at 20% 50%, rgb(184 126 62 / 80%) 0%, transparent 50%), radial-gradient(ellipse at 80% 50%, rgb(184 122 62 / 70%) 0%, transparent 50%), radial-gradient(ellipse at 100% 80%, rgba(100, 56, 48, 0.7) 0%, transparent 50%);
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta .section-label { justify-content: center; }
.final-cta .section-label::before { display: none; }
.final-cta h2 {
  /*font-family: 'Noto Serif JP', serif;*/
  font-size: clamp(19px, 2.5vw, 32px);
  color: white;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  line-height: 1.7;
}
.final-cta-concerns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 32px auto;
  max-width: 600px;
}
.concern-bubble {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-main);
  padding: 8px 16px;
  letter-spacing: 0.04em;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.concern-bubble img{
  width: 16px;
}
.final-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 2;
}
.final-cta-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: white;
  padding: 18px 48px;
  font-size: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.15em;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s;
}
.btn-gold:hover { background: var(--text-main); transform: translateY(-2px); opacity: 1; }
.btn-outline-light {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
  padding: 17px 48px;
  font-size: 15px;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline-light:hover { border-color: var(--text-main); color: var(--text-main); opacity: 1; }

/* ============ FOOTER ============ */
footer {
  background: var(--text-main);
  padding: 60px 0 32px;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 48px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-brand h3 {
  /*font-family: 'Noto Serif JP', serif;*/
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.footer-brand span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.2em;
}
.footer-brand p {
  margin-top: 16px;
  font-size: 15px;
  color: rgba(255,255,255,0.35);
  line-height: 2;
}
.footer-brand .footer-brand-sns{
  display: flex;
  gap: 24px;
  margin-top: 30px;
  opacity: 0.8;
}
.footer-brand .footer-brand-sns li{
  width: 24px;
  height: 24px;
}
.footer-brand .footer-brand-sns li a{
  display: block;
}
.footer-brand .footer-brand-sns li a img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em;
}

/* ============ PRICE TABLE ============ */
.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  /*border: 1px solid var(--border);*/
  font-size: 15px;
  background: white;
  border-radius: 8px;
}
.price-table th, .price-table td {
  /*border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);*/
  padding: 14px 18px;
  vertical-align: middle;
}
.price-table tr:not(:last-child) td {
  border-bottom: 1px dashed #e0e6ea;
}
.price-table tr td:not(:last-child){
  border-right: 0.5px solid #e0e6ea;
}
.price-table tr td.pt-plan-name{
  border-right: 0.5px solid white;
}
.price-table thead tr:first-child > th:first-child {
  border-top-left-radius: 8px;
}
.price-table thead tr:first-child > th:last-child {
  border-top-right-radius: 8px;
}
.pt-plan-spot .pt-plan-name {
  border-bottom-left-radius: 8px;
}
.price-table tbody tr:last-child > td:last-child {
  border-bottom-right-radius: 8px;
}
.pt-row-head, .pt-sub-head {
  background: var(--olive);
  width: 80px;
}
.pt-col-head {
  background: var(--olive);
  color: white;
  text-align: center;
  font-size: 15px;
  letter-spacing: 0.1em;
  font-weight: 500;
  position: relative;
}
.pt-col-head.pt-best {
  background: var(--gold);
  color: white;
}
.pt-badge {
  display: inline-block;
  font-size: 15px;
  background: white;
  color: var(--gold);
  padding: 1px 6px;
  border-radius: 2px;
  margin-left: 6px;
  font-weight: 700;
  vertical-align: middle;
}
.pt-plan-name {
  /*font-family: 'Noto Serif JP', serif;*/
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  letter-spacing: 0.08em;
  color: var(--text-main);
  width: 72px;
}
.pt-plan-name:not(.pt-plan-spot .pt-plan-name),.pt-sub:not(.pt-plan-spot:last-of-type .pt-sub) { border-bottom: 1px dashed white; }
.pt-plan-8 .pt-plan-name { background: #eaecee; }
.pt-plan-4 .pt-plan-name { background: #eaecee; }
.pt-plan-2 .pt-plan-name { background: #eaecee; }
.pt-plan-spot .pt-plan-name { background: #eaecee; }

.pt-sub {
  font-size: 15px;
  color: var(--text-sub);
  background: #eaecee;
  letter-spacing: 0.03em;
  white-space: nowrap;
  width: 160px;
}
.pt-val {
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text-main);
  /*background: var(--warm-white);*/
  letter-spacing: 0.03em;
}
.pt-val.pt-best { background: rgba(184,150,62,0.08); }
.pt-val.pt-monthly { font-size: 17px; color: var(--text-sub); letter-spacing: 0.03em; }
.pt-val.pt-best.pt-monthly, .pt-val.pt-best { color: var(--gold); }
.pt-val.pt-accent { color: var(--rust); font-weight: 500; letter-spacing: 0.03em; }
.pt-val.pt-gray { color: var(--text-light); /*background: var(--beige);*/ font-size: 18px; }
.pt-val.pt-spot { color: var(--text-main); }

/* ============ INLINE STYLE MIGRATION ============ */
.service-card-feature {
  background: var(--olive);
  cursor: default;
}
.service-card-feature-visual {
  height: 180px;
  background:
    linear-gradient(135deg, rgba(13,45,80,0.5) 0%, rgba(13,45,80,0.8) 100%),
    url('https://images.unsplash.com/photo-1481277542470-605612bd2d61?auto=format&fit=crop&w=600&q=80') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card-feature-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-style: italic;
  color: rgba(184,150,62,0.5);
  font-weight: 300;
}
.service-num-feature {
  color: var(--gold-light);
}
.service-card-feature-title {
  color: white;
  border-bottom-color: rgba(255,255,255,0.15);
}
.service-card-feature-text {
  color: rgba(255,255,255,0.65);
}

.flow-intro,
.access-intro {
  font-size: 16px;
  /*color: var(--text-sub);*/
  margin-bottom: 48px;
}
.btn-primary-olive-wide {
  display: inline-block;
  background: var(--text-main);
  padding: 12px 48px;
}
.btn-primary-olive-wide:hover { background: var(--gold); opacity: 1; }
.trainer-photo-cover {
  background-size: cover;
  background-position: center top;
}
.trainer-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.trainer-photo-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 80px;
  background: rgba(255, 255, 255, 0.7);
  padding: 16px 0;
}
/*.trainer-photo-badge {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  margin: 0 auto 24px;
  border: 1px solid rgba(184,150,62,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}*/
.trainer-photo-initial {
  font-family: "Oswald", sans-serif;
  font-size: 42px;
  color: rgba(255,255,255,0.35);
  font-style: italic;
}
.trainer-heading {
  color: white;
  font-size: 24px;
  margin-bottom: 20px;
}

.pricing-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  /*background: var(--border);
  border: 1px solid var(--border);*/
  margin-bottom: 40px;
}
.fee-amount-unit-large {
  font-size: 18px;
}
.price-table-wrap {
  overflow-x: auto;
  margin-bottom: 40px;
}

.pricing-compare {
  margin-bottom: 40px;
}
.pricing-compare-header {
  margin-bottom: 16px;
}
.pricing-compare-label {
  margin-bottom: 8px;
}
.pricing-compare-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.02em;
}
.pricing-compare-title-accent {
  color: var(--gold);
  /*font-family: 'Noto Serif JP', serif;*/
  font-weight: 600;
}
.pricing-compare-title-em {
  font-weight: 700;
  font-size: 22px;
  border-bottom: 1px dashed var(--gold);
  padding-bottom: 4px;
}
.pricing-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
  /*background: var(--border);
  border: 1px solid var(--border);*/
}
.pricing-compare-card {
  padding: 28px 20px;
  text-align: center;
}
.pricing-compare-card-feature {
  background: var(--olive);
}
.pricing-compare-card-standard {
  background: rgb(245 243 243);
}
.pricing-compare-card-alt {
  background: white;
}
.pricing-compare-card-title {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--text-light);
  margin-bottom: 20px;
}
.pricing-compare-card-title-feature {
  color: rgba(255,255,255,0.55);
}
.pricing-compare-block {
  margin-bottom: 20px;
}
.pricing-compare-meta {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 6px;
}
.pricing-compare-card-feature .pricing-compare-meta{
  margin-bottom: 0;
}
.pricing-compare-meta-feature {
  color: rgba(255,255,255,0.5);
}
.pricing-compare-price {
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  color: var(--text-sub);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.03em;
}
.pricing-compare-price-feature {
  font-size: 36px;
  color: var(--gold-light);
}
.pricing-compare-unit {
  font-size: 15px;
}
.pricing-compare-unit-feature {
  font-size: 16px;
}
.pricing-compare-note {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 10px;
}

.pricing-quote-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 180px;
}
.pricing-quote-btn {
  display: block;
  text-align: center;
  font-size: 15px;
  text-decoration: none;
}
.pricing-quote-btn-primary {
  background: var(--gold);
  color: white;
  padding: 14px 24px;
  letter-spacing: 0.12em;
}
.pricing-quote-btn-secondary {
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.65);
  padding: 12px 24px;
  letter-spacing: 0.1em;
}

.access-btn-primary {
  display: block;
  text-align: center;
  background: var(--text-main);
}
.map-pin-foreground iframe{ width: 450px; height: 325px;}
.access-btn-primary:hover { background: var(--gold); opacity: 1; }
.access-btn-outline {
  display: block;
  text-align: center;
  border: 1px solid var(--text-main);
  color: var(--text-sub);
  padding: 14px 32px;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: all 0.2s;
}
.access-btn-outline:link,.access-btn-outline:visited { color: var(--text-main); }
.access-btn-outline:hover { border: 1px solid var(--gold); color: var(--gold); opacity: 1; }
.access-map {
  background-size: cover;
  background-position: center;
}
.access-map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,45,80,0.45);
}
.map-pin-foreground {
  position: relative;
  z-index: 2;
}
.map-caption-light {
  color: white;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.footer-brand-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.footer-brand-logo {
  width: 296px;
  height: 80px;
  object-fit: contain;
  padding: 2px;
}
.footer-brand-title {
  margin-bottom: 2px;
}
/* ============ 共通 ============ */
.pc_br {
  display: block;
}
.sp_br {
  display: none;
}

/*--------------------

	BLOG ARCHIVE
	
--------------------*/
section.page-title {
  padding-top: 160px;
}
section.page-title .section-title {
  font-size: clamp(24px, 2.8vw, 36px);
}
.sub-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.blog-archive-content{
  padding-top: 40px;
}
.blog-archive-content .sub-container,.blog-single-content .sub-container,.\34 04-error-content .sub-container{
  display: flex;
  gap: 80px;
}
.blog-archive-list-wrapper,.blog-single-content-wrapper,.\34 04-error-content-wrapper{
  width: calc(100% - 300px - 80px);
}
.blog-archive-list{
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.blog-archive-item{
  border-bottom: 1px solid var(--border);
  padding-bottom: 30px;
}
.blog-archive-item a{
  display: flex;
  align-items: center;
  gap: 24px;
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.3s ease;
}
.blog-archive-item a:hover{
  background: var(--cream);
  transform: translateY(-5px);
  opacity: 1;
}
.blog-archive-item-head{
  width: 200px;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  overflow: hidden;
}
.blog-archive-item-head img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-archive-item a:hover .blog-archive-item-head img{
  transform: scale(1.05);
}
.blog-archive-item-body{
  width: calc(100% - 200px - 24px);
}
.blog-archive-item-title{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.15em;
  line-height: 1.5;
  transition: all 0.3s ease;
}
.blog-archive-item a:hover .blog-archive-item-title{
  color: var(--gold);
}
.blog-archive-item-meta{
  margin-top: 8px;
}
.blog-archive-item-date{
  font-weight: 500;
  font-size: 15px;
  color: var(--text-sub);
  letter-spacing: 0.05em;
}
.blog-archive-item-category{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.blog-archive-item-category-item{
  font-size: 14px;
  color: var(--olive);
  letter-spacing: 0.05em;
  padding: 0px 10px 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(63,77,87,0.4);
  position: relative;
}
.blog-archive-item-category-item::before{
  content: '#';
  position: absolute;
  left: 10px;
  top: -1px;
  width: 12px;
  height: 14px;
  font-size: 14px;
  color: var(--olive);
}
.blog-sidebar-wrapper{
  width: 300px;
  flex-shrink: 0;
  align-self: flex-start;
  position: sticky;
  top: 120px;
}
.blog-sidebar-title{
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: var(--gold);
  padding-left: 28px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--border);
  position: relative;
  font-family: "Oswald", sans-serif;
}
.blog-sidebar-title::before{
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 20px;
  height: 20px;
  background: url('../../common/images/blog/cat-ttl.svg') no-repeat center center / contain;
}
.blog-sidebar-list{
  margin-bottom: 60px;
}
.blog-sidebar-item{
  padding: 4px 0;
}
.blog-sidebar-item a{
  color: var(--text-main);
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
  font-size: 15px;
}
.blog-sidebar-item a::before{
  content: '#';
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 16px;
  font-size: 15px;
  color: var(--olive);
  font-weight: 500;
}
.blog-sidebar-item a:hover{
  transform: translateY(-2px);
  opacity: 1;
  color: var(--gold);
}
.blog-sidebar-sns-list{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-sidebar-sns-item a{
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  transition: all 0.3s ease;
  background: var(--olive);
  padding: 8px 20px;
  border-radius: 999px;
}
.blog-sidebar-sns-item a:hover{
  opacity: 1;
  background: var(--gold);
}
.blog-sidebar-sns-item a img{
  width: 24px;
  height: 24px;
  object-fit: contain;
}
/* ページャー */
.wp-pagenavi {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 60px;
  text-align: center;
}
.wp-pagenavi .first, .wp-pagenavi .last, .wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
  position: relative;
}
.wp-pagenavi a {
  color: white;
  background: var(--text-sub);
  text-decoration: none;
  box-sizing: border-box;
}
.wp-pagenavi a, .wp-pagenavi span {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0 5px 10px 5px;
  font-weight: 600;
  border-radius: 50%;
  line-height: 1;
}
.wp-pagenavi .first:hover, .wp-pagenavi .last:hover, .wp-pagenavi .previouspostslink:hover, .wp-pagenavi .nextpostslink:hover{
  background: var(--text-light);
  opacity: 1;
}
.wp-pagenavi .first:before, .wp-pagenavi .last:before {
  content: "";
  width: 18px;
  height: 15px;
  background: url('../images/icon/arrow-w.svg') center / contain no-repeat;
}
.wp-pagenavi .first:before, .wp-pagenavi .last:before, .wp-pagenavi .previouspostslink:before, .wp-pagenavi .nextpostslink:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.wp-pagenavi .previouspostslink:before, .wp-pagenavi .nextpostslink:before {
  content: "";
  width: 15px;
  height: 15px;
  background: url('../images/icon/arrow.svg') center / contain no-repeat;
}
.wp-pagenavi .extend {
  width: 10px;
  padding: 4px;
  color: var(--text-main);
}
.wp-pagenavi .current {
  color: white;
  background: var(--gold);
  border: 1px solid var(--border);
  box-sizing: border-box;
}
.wp-pagenavi .previouspostslink:before,.wp-pagenavi .first:before{
  transform: translateX(-50%) translateY(-50%) rotate(180deg);
}
.wp-pagenavi .page.smaller,.wp-pagenavi .page.larger{
  background: white;
  color: var(--text-main);
}
.wp-pagenavi .page.smaller:hover,.wp-pagenavi .page.larger:hover{
  background: var(--cream);
  opacity: 1;
}

/*--------------------

	BLOG SINGLE
	
--------------------*/
.blog-single-content{
  padding-top: 0;
}
.blog-single-content-main-visual{
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 17px;
  overflow: hidden;
}
.blog-single-content-main-visual img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-single-content-main-body {
  padding-top: 60px;
}
.blog-single-content-main-body h2{
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
  margin-top: 50px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: var(--gold);
}
.blog-single-content-main-body h2:first-of-type{
  margin-top: 30px;
}
.blog-single-content-main-body h3{
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: var(--text-main);
  padding-left: 14px;
  position: relative;
}
.blog-single-content-main-body h3::before{
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: calc(100% - 12px);
  border-radius: 3px;
  background: var(--gold);
}
.blog-single-content-main-body p{
  margin-bottom: 30px;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
.blog-single-content-main-body img{
  margin-bottom: 30px;
}
.blog-single-content-main-body ul{
  margin-bottom: 30px;
  padding-left: 20px;
}
.blog-single-content-main-body ul li{
  margin-bottom: 10px;
  position: relative;
  color: var(--text-main);
  letter-spacing: 0.08em;
  line-height: 1.8;
}
.blog-single-content-main-body ul li::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 13px;
  width: 10px;
  height: 2px;
  background: var(--text-light);
}
.blog-single-content-main-body ol{
  margin-bottom: 30px;
  padding-left: 20px;
}
.blog-single-content-main-body ol li{
  list-style:decimal;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
.blog-single-content-main-body ol li::marker{
  color: var(--text-light);
  font-family: "Oswald", sans-serif;
}
.blog-single-content-main-body strong{
  font-weight: 500;
  letter-spacing: 0.08em;
  background: linear-gradient(transparent 60%, var(--border) 60%);
}
.blog-single-content-main-body a{
  color: var(--gold);
  text-decoration: underline;
  letter-spacing: 0.08em;
  line-height: 1.8;
  transition: all 0.3s ease;
}
.blog-single-content-main-body a:hover{
  opacity: 1;
  color: var(--text-sub);
}
.blog-single-content-main-body blockquote{
  margin-bottom: 30px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 20px 20px 50px;
  color: var(--text-main);
  letter-spacing: 0.08em;
  line-height: 1.8;
  position: relative;
}
.blog-single-content-main-body blockquote::before{
  content: '”';
  position: absolute;
  left: 20px;
  top: 45px;
  transform: translateY(-50%);
  font-size: 50px;
  font-weight: 500;
  color: var(--border);
  font-family: "Oswald", sans-serif;
}
.blog-single-content-main-body table{
  border: 1px solid var(--border);
  width: 100%;
}
.blog-single-content-main-body .wp-block-table th, .blog-single-content-main-body .wp-block-table td{
  border: 1px solid var(--border);
}
.blog-single-content-main-body table thead tr th{
  background: var(--border);
  text-align: center!important;
  color: var(--text-sub);
  font-weight: 500;
}
.blog-single-content-main-body table thead tr th:not(:first-of-type){
  border-left: 1px solid white;
}
.post_prevnext{
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--olive);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.post_prevnext_item{
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.3s ease;
}
.post_prevnext_item:hover{
  opacity: 1;
}
.post_prevnext_item .post_prevnext_item_title{
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.3s ease;
}
.post_prevnext_item:hover .post_prevnext_item_title{
  color: var(--text-sub);
}
.post_prevnext_item a {
  position: relative;
  color: var(--text-sub);
  padding-left: 46px;
}
.post_prevnext_item a:hover{
  color: var(--text-light);
  opacity: 1;
}
.post_prevnext_item a::after{
  content: '';
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0;
  top: -8px;
  z-index: 1;
  background: var(--olive);
  border-radius: 50%;
  padding: 5px;
  flex-shrink: 0;
  transform: scale(1);
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.post_prevnext_item a:hover::after{
  transform: scale(1.2);
  opacity: 1;
}
.post_prevnext_item.post_prevnext_item_icon_right a{
  padding-left: 0;
  padding-right: 46px;
}
.post_prevnext_item.post_prevnext_item_icon_right a::after{
  left: auto;
  right: 0;
}
.post_prevnext_item a::before{
  content: '';
  width: 18px;
  height: 15px;
  position: absolute;
  z-index: 2;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: url('../images/icon/arrow.svg') center / contain no-repeat;
}
.post_prevnext_item.post_prevnext_item_icon_left a::before{
  transform: translateY(-50%) rotate(180deg);
}
.post_prevnext_item.post_prevnext_item_icon_right a::before{
  left: auto;
  right: 10px;
}