/*
Theme Name: Shizuku
Theme URI: https://fukui-kaitai.com
Author: Shizuku Salon
Description: リラクゼーションサロン雫のオリジナルテーマ
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: shizuku
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500&family=Noto+Sans+JP:wght@300;400&family=Cormorant+Garamond:ital,wght@0,300;1,300&display=swap');

:root {
  --cream: #faf7f2;
  --beige: #e8ddd0;
  --beige-dark: #c9b99a;
  --brown: #8b6f5e;
  --brown-dark: #5c4437;
  --text: #3a2e28;
  --text-light: #7a6a60;
  --white: #ffffff;
  --accent: #a8876a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-weight: 300;
  line-height: 1.8;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--beige);
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo a {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--brown-dark);
  letter-spacing: 0.05em;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.site-logo span {
  font-family: 'Noto Serif JP', serif;
  font-style: normal;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--text-light);
  margin-top: -4px;
}

.main-navigation { display: flex; gap: 32px; align-items: center; }

.main-navigation ul { list-style: none; display: flex; gap: 32px; align-items: center; }

.main-navigation ul li a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  transition: color 0.3s;
  font-family: 'Noto Serif JP', serif;
}

.main-navigation ul li a:hover { color: var(--accent); }

.main-navigation ul li.menu-contact a {
  background: var(--brown-dark);
  color: var(--white);
  padding: 10px 20px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  transition: background 0.3s;
}

.main-navigation ul li.menu-contact a:hover { background: var(--accent); }

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

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--brown-dark);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--beige);
  padding: 20px 40px;
  flex-direction: column;
  gap: 16px;
  z-index: 99;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  padding: 8px 0;
  border-bottom: 1px solid var(--beige);
  font-family: 'Noto Serif JP', serif;
}

/* ===== MAIN CONTENT ===== */
.site-main { padding-top: 70px; }

/* ===== SECTION COMMON ===== */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 100px 40px; }

.section-header { text-align: center; margin-bottom: 64px; }

.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.3em;
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--brown-dark);
  line-height: 1.5;
}

.section-line {
  width: 40px;
  height: 1px;
  background: var(--beige-dark);
  margin: 24px auto 0;
}

/* ===== HERO ===== */
.hero { min-height: calc(100vh - 70px); display: flex; flex-direction: column; }

.hero-main {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 70px - 80px);
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
}

.hero-label {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--accent);
  margin-bottom: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--brown-dark);
  margin-bottom: 32px;
}

.hero-title em {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3em;
  color: var(--accent);
}

.hero-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 2;
  margin-bottom: 48px;
  max-width: 360px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  background: var(--brown-dark);
  color: var(--white);
  padding: 14px 32px;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  font-family: 'Noto Serif JP', serif;
  transition: background 0.3s;
  display: inline-block;
}

.btn-primary:hover { background: var(--accent); color: var(--white); }

.btn-secondary {
  border: 1px solid var(--beige-dark);
  color: var(--brown);
  padding: 14px 32px;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  font-family: 'Noto Serif JP', serif;
  transition: all 0.3s;
  display: inline-block;
}

.btn-secondary:hover { background: var(--beige); }

.hero-image {
  background: var(--beige);
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.hero-image-inner {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(135deg, #d4c4b0 0%, #e8ddd0 40%, #c9b99a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.hero-image-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 5rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  z-index: 1;
}

.info-bar {
  background: var(--brown-dark);
  color: var(--white);
  padding: 20px 80px;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.info-item { display: flex; flex-direction: column; gap: 4px; }

.info-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--beige);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.info-value {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

/* ===== PRICE TABLE ===== */
.price-section { background: var(--white); padding: 80px 40px; }
.price-section .section-inner { padding: 0; max-width: 900px; margin: 0 auto; }

.price-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; margin-top: 48px; }

.price-table thead tr { background: var(--brown-dark); color: var(--white); }

.price-table th {
  padding: 16px 24px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.price-table th:first-child { text-align: left; }
.price-table th:nth-child(2) { text-align: center; }
.price-table th:last-child { text-align: right; }

.price-table td { padding: 18px 24px; }
.price-table td:first-child { color: var(--brown-dark); font-family: 'Noto Serif JP', serif; }
.price-table td:nth-child(2) { text-align: center; color: var(--text-light); }
.price-table td:last-child { text-align: right; color: var(--accent); font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; }

.price-table tbody tr { border-bottom: 1px solid var(--beige); }
.price-table tbody tr:nth-child(even) { background: var(--cream); }

.price-note { font-size: 0.75rem; color: var(--text-light); margin-top: 16px; text-align: right; }

/* ===== STRENGTH ===== */
.strength-section { background: var(--cream); padding: 80px 40px; }

.strength-list { display: flex; flex-direction: column; gap: 2px; background: var(--beige); }

.strength-item {
  background: var(--white);
  padding: 32px 40px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.strength-icon { font-size: 2rem; flex-shrink: 0; }

.strength-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  color: var(--brown-dark);
  margin-bottom: 8px;
}

.strength-desc { font-size: 0.8rem; color: var(--text-light); line-height: 1.8; }

/* ===== FACILITIES ===== */
.facilities-section { background: var(--beige); padding: 80px 40px; }

.facilities-list { display: flex; flex-direction: column; gap: 24px; }

.facility-block { background: var(--white); padding: 40px; }

.facility-block-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 12px;
}

.facility-block-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem;
  color: var(--brown-dark);
  margin-bottom: 24px;
  font-weight: 400;
}

.facility-items { display: flex; flex-direction: column; }

.facility-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--beige);
  font-size: 0.85rem;
  color: var(--text);
}

.facility-item:last-child { border-bottom: none; }

.facility-item::before {
  content: '✦';
  color: var(--accent);
  flex-shrink: 0;
}

/* ===== RENTAL ===== */
.rental-section { background: var(--white); padding: 80px 40px; }
.rental-intro { text-align: center; font-size: 0.9rem; color: var(--text-light); margin-bottom: 48px; line-height: 2; }

.rental-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.rental-table thead tr { background: var(--brown-dark); color: var(--white); }
.rental-table th { padding: 16px 24px; font-family: 'Noto Serif JP', serif; font-weight: 400; letter-spacing: 0.1em; }
.rental-table th:first-child { text-align: left; }
.rental-table th:nth-child(2) { text-align: center; }
.rental-table th:last-child { text-align: left; }
.rental-table td { padding: 16px 24px; }
.rental-table td:first-child { color: var(--brown-dark); font-family: 'Noto Serif JP', serif; }
.rental-table td:nth-child(2) { text-align: center; color: var(--accent); font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; }
.rental-table td:last-child { font-size: 0.8rem; color: var(--text-light); }
.rental-table tbody tr { border-bottom: 1px solid var(--beige); }
.rental-table tbody tr:nth-child(even) { background: var(--cream); }
.rental-note { font-size: 0.75rem; color: var(--text-light); margin-top: 16px; text-align: right; }

/* ===== SERVICE PAGE ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--beige);
}

.service-card { background: var(--cream); padding: 48px 36px; transition: background 0.3s; }
.service-card:hover { background: var(--white); }

.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--beige-dark);
  line-height: 1;
  margin-bottom: 20px;
}

.service-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem;
  color: var(--brown-dark);
  margin-bottom: 12px;
  font-weight: 400;
}

.service-desc { font-size: 0.85rem; color: var(--text-light); line-height: 1.9; margin-bottom: 24px; }

.service-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  border-top: 1px solid var(--beige);
  padding-top: 20px;
}

.price-from { font-size: 0.7rem; color: var(--text-light); letter-spacing: 0.1em; }
.price-num { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--accent); }
.price-unit { font-size: 0.75rem; color: var(--text-light); }

.service-note {
  background: var(--beige);
  padding: 32px 48px;
  margin-top: 48px;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  background: var(--beige);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}

.about-image-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #e8ddd0, #c9b99a);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.about-image-inner span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 4rem;
  color: rgba(255,255,255,0.5);
}

.about-image-badge {
  position: absolute;
  bottom: 0; right: 0;
  background: var(--brown-dark);
  color: var(--white);
  padding: 24px 28px;
}

.about-image-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  line-height: 1;
}

.about-image-badge-text {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--beige);
  margin-top: 4px;
}

.about-text h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--brown-dark);
  line-height: 1.7;
  margin-bottom: 24px;
}

.about-text p { font-size: 0.9rem; color: var(--text-light); line-height: 2.1; margin-bottom: 20px; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.about-feature {
  padding: 20px;
  background: var(--beige);
  border-left: 2px solid var(--accent);
}

.about-feature-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.85rem;
  color: var(--brown-dark);
  margin-bottom: 6px;
}

.about-feature-desc { font-size: 0.75rem; color: var(--text-light); line-height: 1.7; }

/* ===== ACCESS PAGE ===== */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.map-wrap { aspect-ratio: 1; background: var(--beige); overflow: hidden; }
.map-wrap iframe { width: 100%; height: 100%; border: none; }
.map-wrap .map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-light);
}

.map-placeholder-icon { font-size: 2.5rem; }
.map-placeholder-text { font-size: 0.8rem; letter-spacing: 0.2em; font-family: 'Noto Serif JP', serif; }

.access-info { display: flex; flex-direction: column; gap: 24px; }

.access-item-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  margin-bottom: 8px;
}

.access-item-value {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.95rem;
  color: var(--brown-dark);
  line-height: 1.7;
}

.access-item-sub { font-size: 0.8rem; color: var(--text-light); margin-top: 4px; }

.access-divider { height: 1px; background: var(--beige); }

/* ===== CONTACT PAGE ===== */
.contact-wrap { max-width: 680px; margin: 0 auto; }

.contact-intro { text-align: center; color: var(--text-light); font-size: 0.9rem; line-height: 2; margin-bottom: 48px; }

.form-group { margin-bottom: 28px; }

.form-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--brown);
  margin-bottom: 10px;
  font-family: 'Noto Serif JP', serif;
}

.form-label .required { color: var(--accent); margin-left: 6px; font-size: 0.65rem; }

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--beige);
  color: var(--text);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--accent); }
.form-textarea { height: 150px; resize: vertical; }

.form-submit { text-align: center; margin-top: 40px; }

.form-submit input[type="submit"] {
  background: var(--brown-dark);
  color: var(--white);
  border: none;
  padding: 16px 60px;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  font-family: 'Noto Serif JP', serif;
  cursor: pointer;
  transition: background 0.3s;
}

.form-submit input[type="submit"]:hover { background: var(--accent); }
.form-note { text-align: center; font-size: 0.75rem; color: var(--text-light); margin-top: 20px; line-height: 1.8; }

/* ===== FOOTER ===== */
.site-footer { background: var(--brown-dark); color: var(--white); padding: 60px 80px 40px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-logo span {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-style: normal;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--beige);
  margin-top: -4px;
}

.footer-desc { font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.9; }

.footer-col-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--beige);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--white); }

.footer-contact-item { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
.footer-contact-label { font-size: 0.65rem; color: var(--beige-dark); letter-spacing: 0.2em; }
.footer-contact-value { font-family: 'Noto Serif JP', serif; font-size: 0.85rem; color: rgba(255,255,255,0.8); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .site-header { padding: 0 20px; }
  .main-navigation { display: none; }
  .hamburger { display: flex; }

  .hero-main { grid-template-columns: 1fr; }
  .hero-text { padding: 40px 24px; }
  .hero-image { display: none; }
  .info-bar { padding: 20px 24px; gap: 24px; }
  .hero-buttons { flex-direction: column; }

  .section-inner { padding: 60px 24px; }
  .price-section, .strength-section, .facilities-section, .rental-section { padding: 60px 24px; }

  .service-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-features { grid-template-columns: 1fr; }
  .access-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer { padding: 48px 24px 32px; }
  .mobile-nav { padding: 20px; }
}
/* WordPress 記事ページ用スタイル — メインカラー 
#2d6a4f */

.entry-content, .post-content, .page-content, article .content, .wp-block-post-content { font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif; font-size: 1.0625rem; line-height: 1.9; color: 
#2b2b2b; letter-spacing: 0.02em; word-break: break-word; padding: 0 0.25rem; }

.entry-content > * + *, .post-content > * + *, .page-content > * + *, article .content > * + *, .wp-block-post-content > * + * { margin-top: 1.75em; }

.entry-content p, .post-content p, .page-content p, article .content p, .wp-block-post-content p { margin-top: 0; margin-bottom: 1.25em; }

/* H2 — 左ボーダー + 背景 */ .entry-content h2, .post-content h2, .page-content h2, article .content h2, .wp-block-post-content h2 { font-size: 1.5rem; font-weight: 700; line-height: 1.5; color: 
#1b4332; background-color: 
#f0f7f4; border-left: 5px solid 
#2d6a4f; padding: 0.85em 1em 0.85em 1.1em; margin-top: 3em; margin-bottom: 1.25em; }

.entry-content h2:first-child, .post-content h2:first-child, .page-content h2:first-child, article .content h2:first-child, .wp-block-post-content h2:first-child { margin-top: 0; }

/* H3 — 下線 */ .entry-content h3, .post-content h3, .page-content h3, article .content h3, .wp-block-post-content h3 { font-size: 1.25rem; font-weight: 700; line-height: 1.55; color: 
#2d6a4f; padding-bottom: 0.45em; margin-top: 2.25em; margin-bottom: 1em; border-bottom: 2px solid 
#95d5b2; }

/* リスト */ .entry-content ul, .entry-content ol, .post-content ul, .post-content ol, .page-content ul, .page-content ol, article .content ul, article .content ol, .wp-block-post-content ul, .wp-block-post-content ol { margin: 1.5em 0; padding-left: 1.75em; }

.entry-content li, .post-content li, .page-content li, article .content li, .wp-block-post-content li { margin-bottom: 0.75em; padding-left: 0.35em; line-height: 1.9; }

.entry-content li::marker, .post-content li::marker, .page-content li::marker, article .content li::marker, .wp-block-post-content li::marker { color: 
#2d6a4f; }

.entry-content ul ul, .entry-content ol ol, .post-content ul ul, .post-content ol ol, .wp-block-post-content ul ul, .wp-block-post-content ol ol { margin-top: 0.75em; margin-bottom: 0.5em; }

/* 重要な数字・金額（HTMLに class を付与） */ .entry-content .price, .entry-content .amount, .entry-content .num-highlight, .post-content .price, .post-content .amount, .post-content .num-highlight, .page-content .price, .page-content .amount, .page-content .num-highlight, article .content .price, article .content .amount, article .content .num-highlight, .wp-block-post-content .price, .wp-block-post-content .amount, .wp-block-post-content .num-highlight { font-weight: 700; font-size: 1.1em; color: 
#2d6a4f; background: linear-gradient(transparent 60%, 
#d8f3dc 60%); padding: 0 0.15em; }

/* strong 内の金額表記も目立たせる（任意） */ .entry-content strong, .post-content strong, .page-content strong, article .content strong, .wp-block-post-content strong { font-weight: 700; color: 
#1b4332; }

/* リンク */ .entry-content a, .post-content a, .page-content a, article .content a, .wp-block-post-content a { color: 
#2d6a4f; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }

.entry-content a:hover, .post-content a:hover, .page-content a:hover, article .content a:hover, .wp-block-post-content a:hover { color: 
#1b4332; }

/* 引用・テーブルなどの余白 */ .entry-content blockquote, .post-content blockquote, .wp-block-post-content blockquote { margin: 2em 0; padding: 1.25em 1.5em; border-left: 4px solid 
#2d6a4f; background-color: 
#f8fbf9; color: 
#3d3d3d; }

.entry-content table, .post-content table, .wp-block-post-content table { margin: 2em 0; border-collapse: collapse; width: 100%; }

.entry-content th, .entry-content td, .post-content th, .post-content td, .wp-block-post-content th, .wp-block-post-content td { padding: 0.75em 1em; border: 1px solid 
#b7e4c7; }

.entry-content th, .post-content th, .wp-block-post-content th { background-color: 
#2d6a4f; color: #fff; font-weight: 700; }

/* 画像・メディア */ .entry-content img, .post-content img, .wp-block-post-content img { margin: 2em auto; max-width: 100%; height: auto; }

/* スマホ調整 */ @media (max-width: 767px) { .entry-content, .post-content, .page-content, article .content, .wp-block-post-content { font-size: 1rem; line-height: 1.85; }

.entry-content h2, .post-content h2, .page-content h2, article .content h2, .wp-block-post-content h2 { font-size: 1.3rem; padding: 0.75em 0.85em; margin-top: 2.5em; }

.entry-content h3, .post-content h3, .page-content h3, article .content h3, .wp-block-post-content h3 { font-size: 1.125rem; margin-top: 2em; }

.entry-content ul, .entry-content ol, .post-content ul, .post-content ol, .wp-block-post-content ul, .wp-block-post-content ol { padding-left: 1.35em; } }
