/*
Theme Name: Garden
Theme URI: https://garden-kushiro.jp
Author: Garden
Description: 自立援助ホーム「ガーデン」公式サイト用WordPressテーマ
Version: 2.0.0
License: GPLv2 or later
Text Domain: garden
*/

:root {
  --white: #ffffff;
  --off-white: #fafafa;
  --light-gray: #f5f5f5;
  --mid-gray: #e0e0e0;
  --dark-gray: #333333;
  --black: #111111;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans JP', sans-serif; color: var(--black); background: var(--white); line-height: 1.9; font-size: 15px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
ul, ol { list-style: none; }

/* Header */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(10px); border-bottom: 1px solid var(--mid-gray); }
.header-inner { max-width: 1400px; margin: 0 auto; padding: 1.2rem 3rem; display: flex; justify-content: space-between; align-items: center; }
.site-logo { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.15em; }
.site-logo img { max-height: 50px; width: auto; }
.main-navigation ul { display: flex; gap: 2.5rem; }
.main-navigation a { font-size: 0.75rem; letter-spacing: 0.1em; position: relative; }
.main-navigation a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--black); transition: width 0.3s ease; }
.main-navigation a:hover::after { width: 100%; }
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.mobile-menu-btn span { width: 20px; height: 1px; background: var(--black); }

/* Hero */
.hero-section { height: 100vh; position: relative; display: flex; align-items: flex-end; justify-content: flex-start; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; animation: heroZoom 25s ease-in-out infinite alternate; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.3) 100%); }
@keyframes heroZoom { from { transform: scale(1.02); } to { transform: scale(1); } }
.hero-content { position: relative; z-index: 2; text-align: left; color: var(--white); padding: 0 4rem 5rem; max-width: 800px; }
.hero-subtitle { font-family: 'Noto Sans JP', sans-serif; font-size: 0.75rem; letter-spacing: 0.3em; margin-bottom: 1.5rem; opacity: 0.85; animation: fadeInUp 1s ease-out 0.3s both; }
.hero-title { font-family: 'Shippori Mincho', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 500; letter-spacing: 0.08em; line-height: 2; animation: fadeInUp 1s ease-out 0.5s both; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-scroll { position: absolute; bottom: 3rem; right: 4rem; color: var(--white); font-size: 0.65rem; letter-spacing: 0.2em; }
.hero-scroll::after { content: ''; display: block; width: 1px; height: 50px; background: var(--white); margin: 1rem auto 0; animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%, 100% { transform: scaleY(1); opacity: 0.8; } 50% { transform: scaleY(0.5); opacity: 0.4; } }

/* Sections */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 7rem 3rem; }
.section-label { font-family: 'Noto Sans JP', sans-serif; font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--dark-gray); margin-bottom: 0.8rem; }
.section-heading { font-family: 'Shippori Mincho', serif; font-size: clamp(1.4rem, 3vw, 1.8rem); font-weight: 500; line-height: 1.6; margin-bottom: 2.5rem; letter-spacing: 0.05em; }

/* About */
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-image { aspect-ratio: 4/3; overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.about-image:hover img { transform: scale(1.03); }
.about-text p { margin-bottom: 1.5rem; color: var(--dark-gray); font-size: 0.95rem; }

/* Message */
.message-section { background: var(--black); color: var(--white); text-align: center; }
.message-section .section-label { color: rgba(255,255,255,0.5); }
.message-quote { font-family: 'Shippori Mincho', serif; font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 400; line-height: 2.4; letter-spacing: 0.08em; margin-bottom: 2rem; }
.message-author { font-family: 'Noto Sans JP', sans-serif; font-size: 0.8rem; letter-spacing: 0.15em; opacity: 0.6; }

/* Facility */
.facility-section { background: var(--off-white); }
.facility-intro { text-align: center; max-width: 650px; margin: 0 auto 4rem; }
.facility-intro p { color: var(--dark-gray); font-size: 0.95rem; }
.facility-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.facility-item { background: var(--white); overflow: hidden; }
.facility-item.large { grid-column: span 2; }
.facility-item-image { width: 100%; overflow: hidden; background: var(--light-gray); }
.facility-item-image img { width: 100%; height: auto; display: block; transition: transform 0.5s ease; }
.facility-item:hover .facility-item-image img { transform: scale(1.05); }
.facility-item-content { padding: 1.2rem 1.5rem; }
.facility-item-content h3 { font-size: 0.9rem; font-weight: 500; margin-bottom: 0.4rem; }
.facility-item-content p { font-size: 0.8rem; color: var(--dark-gray); line-height: 1.7; }

/* Support Cards */
.support-section { background: var(--white); }
.support-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.support-card { padding: 2rem 1.5rem; border: 1px solid var(--mid-gray); transition: border-color 0.3s ease; }
.support-card:hover { border-color: var(--black); }
.support-card-num { font-size: 0.7rem; letter-spacing: 0.1em; color: var(--dark-gray); margin-bottom: 1.2rem; }
.support-card h3 { font-size: 1rem; font-weight: 500; margin-bottom: 1rem; }
.support-card p { font-size: 0.85rem; color: var(--dark-gray); line-height: 1.8; }

/* Gallery */
.gallery-section { background: var(--black); color: var(--white); }
.gallery-section .section-label { color: rgba(255,255,255,0.5); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin-top: 3rem; }
.gallery-item { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); font-size: 0.75rem; opacity: 0; transition: opacity 0.3s ease; }
.gallery-item:hover .gallery-caption { opacity: 1; }

/* Info */
.info-section { background: var(--light-gray); }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid var(--mid-gray); }
.info-table th, .info-table td { padding: 1.2rem 0; text-align: left; font-size: 0.9rem; font-weight: 400; }
.info-table th { width: 35%; color: var(--dark-gray); }
.info-map { aspect-ratio: 4/3; overflow: hidden; }
.info-map iframe { width: 100%; height: 100%; border: 0; }

/* Flow */
.flow-section { background: var(--white); }
.flow-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.flow-step { text-align: center; position: relative; }
.flow-step:not(:last-child)::after { content: ''; position: absolute; top: 1.5rem; right: -1rem; width: 2rem; height: 1px; background: var(--mid-gray); }
.flow-step-num { width: 3rem; height: 3rem; border: 1px solid var(--black); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 500; margin: 0 auto 1.5rem; }
.flow-step h3 { font-size: 0.95rem; font-weight: 500; margin-bottom: 0.8rem; }
.flow-step p { font-size: 0.85rem; color: var(--dark-gray); }

/* Contact */
.contact-section { background: var(--black); color: var(--white); text-align: center; }
.contact-section .section-label { color: rgba(255,255,255,0.5); }
.contact-section .section-inner > p { opacity: 0.7; margin-bottom: 3rem; font-size: 0.95rem; }
.contact-grid { display: flex; justify-content: center; gap: 5rem; margin-bottom: 3rem; }
.contact-item h3 { font-size: 0.65rem; letter-spacing: 0.2em; margin-bottom: 0.6rem; opacity: 0.5; }
.contact-item p { font-size: 1rem; letter-spacing: 0.05em; }
.contact-item a:hover { opacity: 0.7; }
.contact-btn { display: inline-block; padding: 1rem 3rem; border: 1px solid var(--white); color: var(--white); font-size: 0.85rem; letter-spacing: 0.15em; transition: all 0.3s ease; }
.contact-btn:hover { background: var(--white); color: var(--black); }

/* News Section */
.news-section { background: var(--white); border-top: 1px solid var(--mid-gray); }
.news-list { margin-top: 2rem; }
.news-item { display: flex; align-items: flex-start; padding: 1.5rem 0; border-bottom: 1px solid var(--mid-gray); gap: 2rem; }
.news-item:first-child { padding-top: 0; }
.news-date { font-size: 0.8rem; color: var(--dark-gray); white-space: nowrap; min-width: 100px; }
.news-category { display: inline-block; font-size: 0.65rem; padding: 0.2rem 0.6rem; background: var(--black); color: var(--white); margin-right: 1rem; }
.news-title { font-size: 0.95rem; flex: 1; }
.news-title a:hover { opacity: 0.6; }
.news-more { text-align: center; margin-top: 2.5rem; }
.news-more a { display: inline-block; padding: 0.8rem 2.5rem; border: 1px solid var(--black); font-size: 0.85rem; transition: all 0.3s ease; }
.news-more a:hover { background: var(--black); color: var(--white); }

/* Footer */
.site-footer { background: var(--black); color: var(--white); border-top: 1px solid rgba(255,255,255,0.1); }
.footer-main { max-width: 1100px; margin: 0 auto; padding: 4rem 3rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-about .footer-logo { font-size: 1rem; letter-spacing: 0.15em; margin-bottom: 1rem; }
.footer-about p { font-size: 0.8rem; opacity: 0.6; line-height: 1.8; margin-bottom: 0.5rem; }
.footer-nav h4, .footer-contact h4, .footer-sns h4 { font-size: 0.7rem; letter-spacing: 0.2em; margin-bottom: 1.5rem; opacity: 0.5; }
.footer-nav ul li { margin-bottom: 0.8rem; }
.footer-nav ul a { font-size: 0.85rem; opacity: 0.8; transition: opacity 0.3s ease; }
.footer-nav ul a:hover { opacity: 1; }
.footer-contact p { font-size: 0.85rem; opacity: 0.8; margin-bottom: 0.5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 3rem; text-align: center; }
.footer-copy { font-size: 0.65rem; opacity: 0.4; letter-spacing: 0.1em; }

/* Blog */
.blog-header { padding-top: 120px; padding-bottom: 3rem; background: var(--light-gray); text-align: center; }
.blog-header h1 { font-size: 1.5rem; font-weight: 500; letter-spacing: 0.1em; }
.blog-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card { background: var(--white); border: 1px solid var(--mid-gray); transition: border-color 0.3s ease; }
.blog-card:hover { border-color: var(--black); }
.blog-card-image { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-content { padding: 1.5rem; }
.blog-card-date { font-size: 0.7rem; color: var(--dark-gray); margin-bottom: 0.5rem; }
.blog-card-title { font-size: 1rem; font-weight: 500; line-height: 1.6; margin-bottom: 0.8rem; }
.blog-card-excerpt { font-size: 0.85rem; color: var(--dark-gray); line-height: 1.7; }

/* Single Post */
.single-post-header { padding-top: 120px; padding-bottom: 2rem; background: var(--black); color: var(--white); }
.single-post-header .section-inner { padding-top: 3rem; padding-bottom: 3rem; }
.single-post-header .section-label { color: rgba(255,255,255,0.5); }
.single-post-meta { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-bottom: 1rem; letter-spacing: 0.1em; }
.single-post-title { font-family: 'Shippori Mincho', serif; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 500; line-height: 1.6; letter-spacing: 0.05em; }
.single-post-content { max-width: 800px; margin: 0 auto; padding: 4rem 3rem; }
.single-post-content .post-thumbnail { margin: -2rem -1rem 3rem; }
.single-post-content .post-thumbnail img { width: 100%; height: auto; border-radius: 8px; }

/* 記事本文のスタイル */
.single-post-content p { margin-bottom: 2rem; line-height: 2.2; font-size: 1rem; }
.single-post-content h2 { font-family: 'Shippori Mincho', serif; font-size: 1.4rem; font-weight: 500; margin: 4rem 0 1.5rem; padding: 1rem 0 1rem 1.2rem; border-left: 4px solid var(--black); background: var(--light-gray); }
.single-post-content h3 { font-size: 1.15rem; font-weight: 600; margin: 3rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--mid-gray); }
.single-post-content h4 { font-size: 1rem; font-weight: 600; margin: 2rem 0 0.8rem; }

/* 強調 */
.single-post-content strong { background: linear-gradient(transparent 60%, #fff59d 60%); padding: 0 0.2em; font-weight: 500; }

/* リスト */
.single-post-content ul, .single-post-content ol { margin: 1.5rem 0 2rem 1.5rem; }
.single-post-content ul { list-style: none; margin-left: 0; }
.single-post-content ul li { position: relative; padding-left: 1.5rem; margin-bottom: 0.8rem; line-height: 1.9; }
.single-post-content ul li::before { content: ''; position: absolute; left: 0; top: 0.7rem; width: 8px; height: 8px; background: var(--black); border-radius: 50%; }
.single-post-content ol { list-style: decimal; padding-left: 1.5rem; }
.single-post-content ol li { margin-bottom: 0.8rem; line-height: 1.9; padding-left: 0.5rem; }

/* テーブル */
.single-post-content table { width: 100%; border-collapse: collapse; margin: 2rem 0; font-size: 0.95rem; }
.single-post-content table th, .single-post-content table td { padding: 1rem 1.2rem; text-align: left; border: 1px solid var(--mid-gray); }
.single-post-content table th { background: var(--black); color: var(--white); font-weight: 500; }
.single-post-content table td { background: var(--white); }
.single-post-content table tbody tr:nth-child(even) td { background: var(--light-gray); }

/* 引用 */
.single-post-content blockquote { background: var(--light-gray); border-left: 4px solid var(--black); padding: 1.5rem 2rem; margin: 2rem 0; font-style: normal; line-height: 2; }
.single-post-content blockquote p { margin-bottom: 1rem; }
.single-post-content blockquote p:last-child { margin-bottom: 0; }

/* リンク */
.single-post-content a { color: var(--black); text-decoration: underline; text-underline-offset: 3px; transition: opacity 0.3s; }
.single-post-content a:hover { opacity: 0.6; }

/* CTAボックス */
.single-post-content div[style*="background:#f5f5f5"], .single-post-content div[style*="background: #f5f5f5"], .single-post-content .cta-box { background: var(--light-gray) !important; padding: 2rem !important; border-radius: 8px !important; margin: 3rem 0 !important; border-left: 4px solid var(--black); }
.single-post-content div[style*="background:#f5f5f5"] h3, .single-post-content .cta-box h3 { margin-top: 0 !important; font-size: 1.1rem; border: none; background: none; padding: 0; margin-bottom: 1rem !important; }
.single-post-content div[style*="background:#f5f5f5"] a, .single-post-content .cta-box a { display: inline-block; margin-top: 1rem; padding: 0.8rem 2rem; background: var(--black); color: var(--white) !important; text-decoration: none; border-radius: 4px; font-size: 0.9rem; transition: all 0.3s; }
.single-post-content div[style*="background:#f5f5f5"] a:hover, .single-post-content .cta-box a:hover { background: var(--dark-gray); opacity: 1; }

/* small */
.single-post-content small { font-size: 0.85rem; color: var(--dark-gray); }

/* Page */
.page-header { padding-top: 120px; background: var(--light-gray); text-align: center; }
.page-header .section-inner { padding-top: 3rem; padding-bottom: 3rem; }
.page-header h1 { font-size: 1.8rem; font-weight: 500; letter-spacing: 0.1em; }
.page-content { max-width: 800px; margin: 0 auto; }

/* Director */
.director-message { display: grid; grid-template-columns: 300px 1fr; gap: 4rem; align-items: start; }
.director-photo { aspect-ratio: 3/4; overflow: hidden; }
.director-photo img { width: 100%; height: 100%; object-fit: cover; }
.director-info h2 { font-size: 0.7rem; letter-spacing: 0.2em; color: var(--dark-gray); margin-bottom: 0.5rem; }
.director-info h3 { font-size: 1.5rem; font-weight: 500; margin-bottom: 2rem; }
.director-info p { margin-bottom: 1.5rem; line-height: 2; }

/* Contact Form */
.contact-form-section { background: var(--white); }
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 2rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 0.5rem; }
.form-group label .required { color: #c00; margin-left: 0.3rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 1rem; border: 1px solid var(--mid-gray); font-family: inherit; font-size: 1rem; transition: border-color 0.3s ease; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--black); }
.form-group textarea { min-height: 200px; resize: vertical; }
.form-submit { text-align: center; }
.form-submit button { display: inline-block; padding: 1rem 4rem; background: var(--black); color: var(--white); border: 1px solid var(--black); font-family: inherit; font-size: 0.9rem; cursor: pointer; transition: all 0.3s ease; }
.form-submit button:hover { background: var(--white); color: var(--black); }

/* ============================================
   Page Common Styles
============================================ */
.page-intro { text-align: center; font-size: 1.05rem; line-height: 2.2; color: var(--dark-gray); margin-bottom: 4rem; font-family: 'Shippori Mincho', serif; }
.page-cta { text-align: center; margin-top: 5rem; padding: 3.5rem; background: var(--light-gray); border-radius: 4px; }
.page-cta h3 { font-family: 'Shippori Mincho', serif; font-size: 1.2rem; margin-bottom: 1rem; }
.page-cta p { color: var(--dark-gray); margin-bottom: 2rem; }
.btn-primary { display: inline-block; padding: 1rem 3rem; background: var(--black); color: var(--white); font-size: 0.9rem; letter-spacing: 0.1em; border: 1px solid var(--black); transition: all 0.3s ease; text-decoration: none; }
.btn-primary:hover { background: var(--white); color: var(--black); }

/* ============================================
   Director Message Page (案4: 縦並び丸写真)
============================================ */
.director-content-section {
  background: var(--white);
  padding: 5rem 0;
}
.director-content-section .section-inner {
  max-width: 700px;
  text-align: center;
}
.director-photo-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 3rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}
.director-photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.director-message-area {
  position: relative;
}
.director-message-text {
  text-align: left;
  font-size: 1rem;
  line-height: 2.4;
  position: relative;
}
.director-message-text p {
  margin-bottom: 2rem;
}
.director-message-text p:last-of-type {
  margin-bottom: 0;
}
.quote-mark {
  font-family: 'Shippori Mincho', serif;
  font-size: 3rem;
  color: var(--mid-gray);
  line-height: 1;
  user-select: none;
}
.quote-open {
  position: absolute;
  top: -0.5rem;
  left: -2.5rem;
}
.quote-close {
  position: absolute;
  bottom: 0;
  right: -2.5rem;
}
.director-signature {
  margin-top: 3rem;
  font-family: 'Shippori Mincho', serif;
  font-size: 1.1rem;
  text-align: center;
}
.director-cta {
  background: var(--light-gray);
  text-align: center;
}
.director-cta .section-inner {
  padding: 4rem 2rem;
}
.director-cta p {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.1rem;
  line-height: 2;
  margin-bottom: 2rem;
  color: var(--dark-gray);
}
.director-cta .btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.director-cta .btn-primary:hover {
  background: var(--white);
  color: var(--black);
}

/* ============================================
   Support Page
============================================ */
.support-intro-section { background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%); }
.support-intro-content { text-align: center; padding: 2rem 0; }
.support-lead { font-family: 'Shippori Mincho', serif; font-size: 1.4rem; line-height: 2.2; margin-bottom: 1.5rem; color: var(--black); }
.support-sub { color: var(--dark-gray); font-size: 0.95rem; }
.support-types { background: var(--white); }
.support-types .section-inner { padding-top: 5rem; padding-bottom: 5rem; }
.support-type-item { display: grid; grid-template-columns: 100px 1fr; gap: 3rem; padding: 3rem 0; border-bottom: 1px solid var(--mid-gray); }
.support-type-item:last-child { border-bottom: none; }
.support-type-icon { width: 80px; height: 80px; background: var(--light-gray); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.support-type-content h2 { font-family: 'Shippori Mincho', serif; font-size: 1.3rem; margin-bottom: 1rem; }
.support-type-content > p { color: var(--dark-gray); line-height: 1.9; margin-bottom: 1.5rem; }
.support-detail-box { background: var(--light-gray); padding: 1.5rem 2rem; border-radius: 4px; margin-top: 1rem; }
.support-detail-box h4 { font-size: 0.85rem; color: var(--dark-gray); margin-bottom: 0.8rem; letter-spacing: 0.1em; }
.support-detail-box p { font-size: 0.95rem; line-height: 1.8; margin: 0; }
.support-detail-box ul { margin: 0; padding-left: 1.2rem; }
.support-detail-box li { font-size: 0.9rem; line-height: 1.8; margin-bottom: 0.3rem; color: var(--dark-gray); }
.support-cta-section { background: var(--light-gray); }
.support-cta-box { background: var(--white); padding: 3.5rem; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.support-cta-box h3 { font-family: 'Shippori Mincho', serif; font-size: 1.3rem; margin-bottom: 1rem; }
.support-cta-box > p { color: var(--dark-gray); margin-bottom: 2rem; }
.support-cta-contact { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.support-cta-tel { text-align: center; }
.support-cta-tel .label { display: block; font-size: 0.75rem; color: var(--dark-gray); margin-bottom: 0.3rem; }
.support-cta-tel a { font-family: 'Shippori Mincho', serif; font-size: 1.5rem; color: var(--black); }

/* ============================================
   Organization Page
============================================ */
.org-vision-section { background: var(--black); color: var(--white); }
.org-vision-box { text-align: center; padding: 3rem 0; }
.org-vision-label { font-size: 0.7rem; letter-spacing: 0.3em; opacity: 0.5; margin-bottom: 1.5rem; }
.org-vision-title { font-family: 'Shippori Mincho', serif; font-size: clamp(1.3rem, 3vw, 1.8rem); line-height: 2.2; margin-bottom: 2rem; font-weight: 400; }
.org-vision-text { font-size: 0.95rem; opacity: 0.8; line-height: 2; }
.org-section-title { font-family: 'Shippori Mincho', serif; font-size: 1.3rem; margin-bottom: 2.5rem; display: flex; align-items: center; gap: 1rem; }
.org-section-title span { font-size: 0.65rem; letter-spacing: 0.2em; color: var(--dark-gray); text-transform: uppercase; }
.org-info-section { background: var(--white); }
.org-info-table dl { border-top: 1px solid var(--mid-gray); }
.org-info-row { display: grid; grid-template-columns: 140px 1fr; border-bottom: 1px solid var(--mid-gray); }
.org-info-row dt { padding: 1.3rem 0; font-size: 0.9rem; color: var(--dark-gray); }
.org-info-row dd { padding: 1.3rem 0; font-size: 0.95rem; }
.org-business-section { background: var(--light-gray); }
.org-business-list { display: flex; flex-direction: column; gap: 1.5rem; }
.org-business-item { display: grid; grid-template-columns: 60px 1fr; gap: 2rem; background: var(--white); padding: 2rem; border-radius: 4px; }
.org-business-num { font-family: 'Shippori Mincho', serif; font-size: 1.8rem; color: var(--mid-gray); font-weight: 500; }
.org-business-content h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.org-business-content p { font-size: 0.9rem; color: var(--dark-gray); line-height: 1.8; margin: 0; }
.org-history-section { background: var(--white); }
.org-history-timeline { position: relative; padding-left: 2rem; border-left: 2px solid var(--mid-gray); }
.org-history-item { position: relative; padding: 1.5rem 0 1.5rem 2rem; }
.org-history-item::before { content: ''; position: absolute; left: -2rem; top: 1.8rem; width: 12px; height: 12px; background: var(--black); border-radius: 50%; transform: translateX(-5px); }
.org-history-year { font-family: 'Shippori Mincho', serif; font-size: 1.1rem; font-weight: 500; margin-bottom: 0.3rem; }
.org-history-content { color: var(--dark-gray); font-size: 0.95rem; }

/* ============================================
   FAQ Page
============================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--mid-gray); padding: 2rem 0; }
.faq-item:first-child { border-top: 1px solid var(--mid-gray); }
.faq-question { display: flex; align-items: flex-start; gap: 1.2rem; font-weight: 500; font-size: 1rem; line-height: 1.7; }
.faq-question::before { content: 'Q'; display: flex; align-items: center; justify-content: center; min-width: 2.2rem; height: 2.2rem; background: var(--black); color: var(--white); font-size: 0.85rem; font-weight: 500; flex-shrink: 0; border-radius: 2px; }
.faq-answer { display: flex; align-items: flex-start; gap: 1.2rem; margin-top: 1.2rem; color: var(--dark-gray); line-height: 1.9; font-size: 0.95rem; }
.faq-answer::before { content: 'A'; display: flex; align-items: center; justify-content: center; min-width: 2.2rem; height: 2.2rem; border: 1px solid var(--black); font-size: 0.85rem; font-weight: 500; flex-shrink: 0; border-radius: 2px; }

/* ============================================
   Contact Page
============================================ */
.contact-info-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-bottom: 4rem; }
.contact-info-card { background: var(--light-gray); padding: 2.5rem; text-align: center; border-radius: 4px; }
.contact-info-icon { font-size: 2rem; margin-bottom: 1rem; }
.contact-info-label { display: block; font-size: 0.8rem; color: var(--dark-gray); margin-bottom: 0.8rem; }
.contact-info-value { display: block; font-family: 'Shippori Mincho', serif; font-size: 1.6rem; color: var(--black); margin-bottom: 0.5rem; }
.contact-info-value.email { font-size: 1.1rem; font-family: 'Noto Sans JP', sans-serif; }
.contact-info-value:hover { opacity: 0.7; }
.contact-info-note { font-size: 0.8rem; color: var(--dark-gray); }
.contact-form-section { max-width: 700px; margin: 0 auto; }
.contact-form-section h2 { font-family: 'Shippori Mincho', serif; font-size: 1.2rem; text-align: center; margin-bottom: 0.8rem; }
.contact-form-note { text-align: center; font-size: 0.9rem; color: var(--dark-gray); margin-bottom: 3rem; }
.contact-form { background: var(--light-gray); padding: 3rem; border-radius: 4px; }
.form-group { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 500; margin-bottom: 0.5rem; }
.form-group label .required { color: #c00; margin-left: 0.3rem; font-size: 0.8rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 1rem; border: 1px solid var(--mid-gray); background: var(--white); font-family: inherit; font-size: 1rem; transition: border-color 0.3s ease; border-radius: 4px; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--black); }
.form-group textarea { min-height: 180px; resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #bbb; }
.form-privacy { margin: 2rem 0; text-align: center; }
.form-privacy label { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; cursor: pointer; }
.form-privacy input[type="checkbox"] { width: 18px; height: 18px; cursor: pointer; }
.form-privacy a { color: var(--black); text-decoration: underline; }
.form-submit { text-align: center; margin-top: 2rem; }
.form-submit button { display: inline-block; padding: 1.2rem 5rem; background: var(--black); color: var(--white); border: 1px solid var(--black); font-family: inherit; font-size: 1rem; cursor: pointer; transition: all 0.3s ease; border-radius: 4px; }
.form-submit button:hover { background: var(--white); color: var(--black); }

/* ============================================
   Privacy Page
============================================ */
.privacy-content { max-width: 800px; margin: 0 auto; }
.privacy-intro { font-size: 1rem; line-height: 2; margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--mid-gray); }
.privacy-section { margin-bottom: 2.5rem; }
.privacy-section h2 { font-family: 'Shippori Mincho', serif; font-size: 1.1rem; font-weight: 500; margin-bottom: 1rem; }
.privacy-section p { line-height: 2; color: var(--dark-gray); }
.privacy-section ul { padding-left: 1.5rem; margin-top: 1rem; }
.privacy-section li { margin-bottom: 0.5rem; line-height: 1.8; color: var(--dark-gray); }
.privacy-contact { margin-top: 1.5rem; padding: 1.5rem 2rem; background: var(--light-gray); border-radius: 4px; }
.privacy-contact p { margin-bottom: 0.3rem; color: var(--black); }
.privacy-date { margin-top: 3rem; text-align: right; font-size: 0.85rem; color: var(--dark-gray); }

/* ============================================
   Page Content - WordPress Blocks
============================================ */
.page-content { margin-top: 3rem; }
.page-content p { margin-bottom: 1.5rem; line-height: 2; }
.page-content h2 { font-family: 'Shippori Mincho', serif; font-size: 1.3rem; margin: 3rem 0 1.5rem; }
.page-content h3 { font-size: 1.1rem; margin: 2rem 0 1rem; }
.page-content ul, .page-content ol { margin: 1.5rem 0; padding-left: 1.5rem; }
.page-content li { margin-bottom: 0.5rem; line-height: 1.8; }
.page-content img { max-width: 100%; height: auto; }

/* ============================================
   Responsive - Pages
============================================ */
@media (max-width: 1024px) {
  .director-container { grid-template-columns: 1fr; gap: 3rem; }
  .director-photo-area { max-width: 300px; margin: 0 auto; }
  .support-type-item { grid-template-columns: 1fr; gap: 1.5rem; }
  .support-type-icon { margin: 0 auto; }
  .support-type-content { text-align: center; }
  .support-detail-box { text-align: left; }
  .org-business-item { grid-template-columns: 1fr; gap: 1rem; text-align: center; }
  .org-business-num { font-size: 1.2rem; }
}

@media (max-width: 768px) {
  .page-intro { font-size: 0.95rem; margin-bottom: 3rem; }
  .director-photo-circle { width: 150px; height: 150px; margin-bottom: 2rem; }
  .quote-mark { font-size: 2.5rem; }
  .quote-open { left: -1.5rem; }
  .quote-close { right: -1.5rem; }
  .director-signature { margin-top: 2rem; }
  .contact-info-cards { grid-template-columns: 1fr; }
  .contact-info-value { font-size: 1.3rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 2rem 1.5rem; }
  .org-info-row { grid-template-columns: 1fr; }
  .org-info-row dt { padding-bottom: 0.3rem; border-bottom: none; }
  .org-info-row dd { padding-top: 0; }
  .org-section-title { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
  .org-section-title span { order: -1; }
  .support-lead { font-size: 1.2rem; }
  .faq-question, .faq-answer { font-size: 0.9rem; }
}

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; }
.pagination a, .pagination span { display: inline-block; padding: 0.5rem 1rem; border: 1px solid var(--mid-gray); font-size: 0.85rem; transition: all 0.3s ease; }
.pagination a:hover { border-color: var(--black); }
.pagination .current { background: var(--black); color: var(--white); border-color: var(--black); }

/* Animations */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
  .support-grid, .flow-steps { grid-template-columns: repeat(2, 1fr); }
  .flow-step:not(:last-child)::after { display: none; }
  .facility-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .blog-list { grid-template-columns: repeat(2, 1fr); }
  .director-message, .org-greeting-content { grid-template-columns: 1fr; gap: 2rem; }
  .director-photo, .org-greeting-photo { max-width: 250px; margin: 0 auto; }
  .support-items { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header-inner { padding: 1rem 1.5rem; }
  .mobile-menu-btn { display: flex; }
  .main-navigation { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--mid-gray); padding: 1.5rem; }
  .main-navigation.active { display: block; }
  .main-navigation ul { flex-direction: column; gap: 1rem; }
  .hero-content { padding: 0 1.5rem 4rem; }
  .hero-title { font-size: 1.6rem; line-height: 2.2; }
  .hero-scroll { right: 1.5rem; bottom: 2rem; }
  .section-inner { padding: 5rem 1.5rem; }
  .about-grid, .info-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .support-grid, .flow-steps, .facility-grid { grid-template-columns: 1fr; }
  .facility-item.large { grid-column: span 1; }
  .contact-grid { flex-direction: column; gap: 2rem; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .blog-list { grid-template-columns: 1fr; }
  .news-item { flex-direction: column; gap: 0.5rem; }
  .page-content .wp-block-columns { flex-direction: column; }
  .page-content .wp-block-buttons { flex-direction: column; align-items: center; }
}

/* WP */
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }

/* ============================================
   Contact Form 7 Styles
============================================ */
.wpcf7-form p {
  margin-bottom: 1.5rem;
}
.wpcf7-form .required {
  color: #c00;
  font-size: 0.8rem;
  margin-left: 0.3rem;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--mid-gray);
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  transition: border-color 0.3s;
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--black);
}
.wpcf7-form textarea {
  min-height: 200px;
  resize: vertical;
}
.wpcf7-form select {
  cursor: pointer;
}
.wpcf7-form input[type="submit"] {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 2rem auto 0;
  padding: 1rem 2rem;
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s;
}
.wpcf7-form input[type="submit"]:hover {
  background: var(--white);
  color: var(--black);
}
.wpcf7-spinner {
  display: none;
}
.wpcf7-response-output {
  margin-top: 2rem;
  padding: 1rem;
  border-radius: 4px;
}
.wpcf7-mail-sent-ok {
  background: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}
.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
  background: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}
.wpcf7-not-valid-tip {
  color: #c00;
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

/* ============================================
   Blog CTA Box (案2: 左右分割)
============================================ */
.blog-cta-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  overflow: hidden;
  margin: 3rem 0;
}
.blog-cta-left {
  background: var(--black);
  color: var(--white);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-cta-left .cta-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  opacity: 0.5;
  margin-bottom: 1.5rem;
}
.blog-cta-left h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.blog-cta-left p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 2;
}
.blog-cta-right {
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-cta-right .info-row {
  display: flex;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--mid-gray);
}
.blog-cta-right .info-row:last-of-type {
  border-bottom: none;
}
.blog-cta-right .info-label {
  width: 70px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  flex-shrink: 0;
}
.blog-cta-right .info-value {
  flex: 1;
  font-size: 0.9rem;
  color: var(--dark-gray);
}
.blog-cta-right .cta-btn {
  display: block;
  margin-top: 2rem;
  padding: 1rem;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  text-align: center;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.blog-cta-right .cta-btn:hover {
  background: var(--dark-gray);
}
@media (max-width: 768px) {
  .blog-cta-card {
    grid-template-columns: 1fr;
  }
  .blog-cta-left, .blog-cta-right {
    padding: 2rem;
  }
}
