@charset "UTF-8";
/*
Theme Name: Jonan Clinic
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-brown: #2d1810;
  --secondary-brown: #4a3428;
  --accent-gold: #d4af37;
  --light-beige: #f5f1ed;
  --white: #ffffff;
  --maroon: #6b2737;
}

body {
  font-family: "Noto Serif JP", serif;
  color: var(--primary-brown);
  line-height: 1.8;
  overflow-x: hidden;
}

/* ヘッダー */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

nav {
  max-width: 1500px;
  margin: 0 auto;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--primary-brown);
}
.logo a {
  display: block;
  width: 150px;
  height: 40px;
  background-image: url("/img/logo.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--primary-brown);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--primary-brown);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -3px);
}

/* ヒーローセクション */
.hero {
  height: 790px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden; /* はみ出し非表示 */
}

/* YouTube iframe を背景全体に引き伸ばす */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none; /* クリック無効 */
}

.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* アスペクト比を維持しつつ全体を覆う */
  width: 100vw;
  height: 56.25vw; /* 16:9 → 幅の56.25% */
  min-height: 100%;
  min-width: 177.78vh; /* 16:9 → 高さの177.78% */
  transform: translate(-50%, -50%);
}

/* 暗めのオーバーレイ（文字を読みやすくする） */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.05);
}

/* コンテンツは最前面に */
.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-bottom: 3rem;
}

.hero-subtitle {
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  margin-bottom: 0;
}

/* コンセプトセクション */
.concept-section {
  background: var(--light-beige);
  padding: 8rem 2rem;
}

.concept-container {
  max-width: 1500px;
  margin: 0 auto;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.concept-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.concept-image {
  background: url("/img/intro.jpg") center/cover;
  min-height: 500px;
  position: relative;
}

.concept-text {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.concept-label {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--secondary-brown);
  margin-bottom: 2rem;
}

.concept-title {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.concept-description {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--secondary-brown);
}

/* 専門医チーム スライダーセクション */
.team-section {
  background: var(--secondary-brown);
  padding: 8rem 2rem;
  position: relative;
}

.team-header {
  text-align: center;
  color: var(--white);
  margin-bottom: 5rem;
}

.team-icon {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.diamond {
  width: 20px;
  height: 20px;
  background: var(--accent-gold);
  transform: rotate(45deg);
}

.diamond:nth-child(2) {
  animation-delay: 0.5s;
}

@keyframes float {
  0%, 100% {
    transform: rotate(45deg) translateY(0);
  }
  50% {
    transform: rotate(45deg) translateY(-10px);
  }
}
.team-title {
  font-size: 1.5rem;
  letter-spacing: 0.15em;
}

.slider-container {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
}

.slider-wrapper {
  overflow: hidden;
  border-radius: 8px;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.slider-controls {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.slider-btn {
  width: 50px;
  height: 50px;
  background: transparent;
  border: 2px solid var(--accent-gold);
  transform: rotate(45deg);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: var(--accent-gold);
  transform: rotate(45deg) scale(1.1);
}

.slider-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 20px;
  height: 20px;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
}

.slider-btn.prev::before {
  transform: translate(-40%, -50%) rotate(180deg);
}

.slider-btn.next::before {
  transform: translate(-60%, -50%) rotate(0deg);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(45deg);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--accent-gold);
  transform: rotate(45deg) scale(1.3);
}

/* よくある質問 */
.faq-section {
  background: url("<?php echo get_template_directory_uri(); ?>/assets/images/faq-bg.jpg") center/cover;
  padding: 8rem 2rem;
  position: relative;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}

.faq-container {
  max-width: 1500px;
  margin: 0 auto;
  background: var(--white);
  padding: 4rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.faq-subtitle {
  text-align: center;
  color: var(--secondary-brown);
  margin-bottom: 3rem;
  font-size: 0.95rem;
}

.faq-btn {
  display: block;
  margin: 0 auto;
  background: var(--maroon);
  color: var(--white);
  border: none;
  padding: 1rem 3rem;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-btn:hover {
  background: var(--primary-brown);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(107, 39, 55, 0.3);
}

/* フッター */
footer {
  background: var(--primary-brown);
  color: var(--white);
  padding: 5rem 2rem 2rem;
}

.footer-content {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-map iframe {
  width: 100%;
}

.footer-map img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer-diamond {
  width: 40px;
  height: 40px;
  background: var(--accent-gold);
  transform: rotate(45deg);
  margin-bottom: 1rem;
}

.footer-section h3 {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.footer-section p {
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0.9;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

/* アニメーション */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ========================================
   下層ページ用スタイル
======================================== */
/* 下層ページ用ヘッダー（背景色あり） */
.page-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--primary-brown);
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.page-header nav {
  max-width: 1500px;
  margin: 0 auto;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}

.page-header .logo {
  color: var(--white);
}
.page-header .logo a {
  display: block;
  width: 150px;
  height: 40px;
  background-image: url("/img/logo_w.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.page-header .nav-links a {
  color: var(--white);
}

.page-header .nav-links a::after {
  background: var(--accent-gold);
}

.page-header .hamburger span {
  background: var(--white);
}

/* ページヒーロー */
.page-hero {
  height: 300px;
  background: linear-gradient(rgba(45, 24, 16, 0.5), rgba(45, 24, 16, 0.5)), url("<?php echo get_template_directory_uri(); ?>/assets/images/page-hero-bg.jpg") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin-top: 70px;
}

.page-hero-content {
  animation: fadeInUp 1s ease;
}

.page-hero-title {
  font-size: clamp(20px, 3.33vw, 35px);
  font-weight: 300;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.page-hero-subtitle {
  font-size: 1rem;
  letter-spacing: 0.3em;
  opacity: 0.9;
}

/* イントロセクション */
.intro-section {
  padding: 4rem 2rem;
  background: var(--white);
  text-align: center;
}

.intro-container {
  max-width: 800px;
  margin: 0 auto;
}

.intro-text {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.intro-subtext {
  font-size: 0.95rem;
  color: var(--secondary-brown);
  line-height: 1.8;
}

/* サービスカード */
.services-section {
  padding: 6rem 2rem;
  background: var(--light-beige);
}

.services-container {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.service-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 100%;
  height: 200px;
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 4px;
}

.service-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.service-subtitle {
  font-size: 0.9rem;
  color: var(--secondary-brown);
  margin-bottom: 1.5rem;
}

.service-description {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--secondary-brown);
}

/* 医師紹介セクション */
.doctor-section {
  background: var(--primary-brown);
  padding: 6rem 2rem;
  color: var(--white);
}

.doctor-header {
  text-align: center;
  margin-bottom: 4rem;
}

.doctor-main-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.doctor-subtitle {
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  opacity: 0.9;
}

.doctor-container {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  margin-bottom: 4rem;
}

.doctor-image {
  width: 100%;
}

.doctor-image img {
  width: 100%;
  height: auto;
  display: block;
}

.doctor-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.doctor-name-section {
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding-bottom: 1.5rem;
}

.doctor-role {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.doctor-name {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.doctor-bio p {
  font-size: 0.95rem;
  line-height: 2;
  opacity: 0.9;
}

.credential-title {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.credential-list {
  list-style: none;
  font-size: 0.9rem;
  line-height: 2.2;
  opacity: 0.9;
}

.credential-list li {
  padding-left: 1rem;
  position: relative;
}

.credential-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--accent-gold);
}

.doctor-philosophy {
  max-width: 1500px;
  margin: 0 auto;
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.doctor-philosophy p {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 0.5rem;
}

.philosophy-sub {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* アクセス・初診セクション */
.access-section {
  background: var(--light-beige);
  padding: 6rem 2rem;
}

.access-header {
  text-align: center;
  margin-bottom: 4rem;
}

.access-main-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
  color: var(--primary-brown);
}

.access-subtitle {
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--secondary-brown);
}

.flow-container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.flow-step {
  text-align: center;
  position: relative;
}

.flow-number {
  font-size: 0.75rem;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.flow-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--white);
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.flow-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.flow-label {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--primary-brown);
}

.flow-arrow {
  font-size: 1.5rem;
  color: var(--accent-gold);
  margin: 0 1rem;
}

/* レスポンシブ（下層ページ） */
@media (max-width: 1024px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .doctor-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .flow-container {
    flex-wrap: wrap;
  }
  .flow-arrow {
    display: none;
  }
  .flow-step {
    width: calc(50% - 1rem);
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .page-hero {
    height: 180px;
    margin-top: 60px;
  }
  .page-hero-subtitle {
    font-size: 0.85rem;
  }
  .services-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .doctor-main-title,
  .access-main-title {
    font-size: 2rem;
  }
  .doctor-name {
    font-size: 1.5rem;
  }
  .flow-step {
    width: 100%;
  }
}
@media (max-width: 1000px) {
  .page-header nav {
    padding: 1rem 1.5rem;
    justify-content: space-between;
  }
  .page-header .nav-links {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: var(--primary-brown);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 3rem;
    gap: 2rem;
    transition: left 0.3s ease;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
  }
  .page-header .nav-links.active {
    left: 0;
  }
  .page-header .hamburger {
    display: flex;
  }
  .intro-section {
    padding: 3rem 1.5rem;
  }
  .services-section {
    padding: 3rem 1.5rem;
  }
  .service-card {
    padding: 2rem 1.5rem;
  }
  .doctor-section {
    padding: 3rem 1.5rem;
  }
  .doctor-container {
    gap: 2rem;
  }
  .access-section {
    padding: 3rem 1.5rem;
  }
}
/* レスポンシブ */
@media (max-width: 768px) {
  .concept-content {
    grid-template-columns: 1fr;
  }
  .concept-image {
    min-height: 300px;
  }
  .concept-text {
    padding: 3rem 2rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .team-title {
    font-size: 1.2rem;
  }
}
@media (max-width: 1000px) {
  nav {
    padding: 1rem 1.5rem;
    justify-content: space-between;
  }
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 3rem;
    gap: 2rem;
    transition: left 0.3s ease;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
  }
  .nav-links.active {
    left: 0;
  }
  .nav-links a {
    font-size: 1.1rem;
  }
  .hamburger {
    display: flex;
  }
  .hero {
    height: 500px;
  }
  .hero-title {
    font-size: 2rem;
    letter-spacing: 0.15em;
  }
  .hero-subtitle {
    font-size: 0.8rem;
  }
  .concept-section,
  .team-section,
  .faq-section {
    padding: 4rem 1rem;
  }
  .concept-text {
    padding: 2rem 1.5rem;
  }
  .concept-title {
    font-size: 1.4rem;
  }
  .faq-container {
    padding: 2rem 1.5rem;
  }
  .faq-title {
    font-size: 1.5rem;
  }
  .slide img {
    height: 400px;
  }
  .slider-btn {
    width: 40px;
    height: 40px;
  }
  footer {
    padding: 3rem 1.5rem 1.5rem;
  }
  .footer-info {
    gap: 2rem;
  }
}
/* モバイルメニュー */
.mobile-menu {
  position: fixed;
  top: 70px;
  left: -100%;
  width: 100%;
  height: calc(100vh - 70px);
  background: #fff;
  backdrop-filter: blur(10px);
  transition: left 0.3s ease;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  z-index: 999;
}

.mobile-menu.active {
  left: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 3rem;
  gap: 2rem;
  list-style: none;
}

.mobile-nav-links a {
  text-decoration: none;
  color: var(--primary-brown);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
  color: var(--accent-gold);
}

/* デスクトップではモバイルメニューを非表示 */
@media (min-width: 999px) {
  .mobile-menu {
    display: none;
  }
}
/* モバイルでは通常のnav-linksを非表示 */
@media (max-width: 600px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
.page_content_wrap {
  padding: 4rem 2rem;
  background: var(--white);
}
.page_content_wrap .container {
  max-width: 800px;
  margin: 0 auto;
}
.page_content_wrap .container p {
  margin-bottom: 10px;
}
.page_content_wrap .container p + h2 {
  margin-top: 10px;
}
.page_content_wrap .container h2 {
  font-family: "Shippori Mincho", serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: #2c1a0e;
  text-align: center;
  position: relative;
  padding-bottom: 22px;
  margin-bottom: 30px;
}
.page_content_wrap .container h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
  background: #c9a84c;
}
.page_content_wrap .container h2::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #c9a84c;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.page_content_wrap .container h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.page_content_wrap .container h3::before {
  content: "";
  flex-shrink: 0;
  width: 3px;
  height: 1.4em;
  background: linear-gradient(to bottom, #c9a84c, transparent);
}
.page_content_wrap .container h3::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, #c9a84c, transparent);
}
.page_content_wrap .container h4 {
  font-family: "Shippori Mincho", serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.page_content_wrap .container h4::before {
  content: "◆";
  color: #c9a84c;
  font-size: 0.55rem;
  flex-shrink: 0;
  line-height: 1;
}
.page_content_wrap .container ul.list-d {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.page_content_wrap .container ul.list-d li {
  position: relative;
  padding: 13px 0 13px 28px;
  font-size: 0.9rem;
  line-height: 1.9;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
.page_content_wrap .container ul.list-d li:first-child {
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}
.page_content_wrap .container ul.list-d li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.42rem;
  color: #c9a84c;
  line-height: 1;
}

.mb30 {
  margin-bottom: 30px;
}/*# sourceMappingURL=style.css.map */