@charset "UTF-8";
/*
明朝体フォント設定 - お寺らしい上品なタイポグラフィ
*/
/* Google Fonts - 明朝体の読み込み */
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");
/* A Modern CSS Reset */
* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  border-style: solid;
  box-sizing: border-box;
  border-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  text-decoration-skip-ink: auto;
}

address {
  font-style: initial;
}

img {
  width: 100%;
  display: block;
}

input,
button,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 0;
  background: transparent;
  font: inherit;
  outline: none;
}

textarea {
  resize: none;
}

input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* Utility Classes - スマートフォンファースト */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/* Spacing - モバイルベース */
.mb-4 {
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .mb-4 {
    margin-bottom: 16px;
  }
}

.mb-6 {
  margin-bottom: 18px;
}
@media screen and (min-width: 768px) {
  .mb-6 {
    margin-bottom: 24px;
  }
}

.mb-8 {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .mb-8 {
    margin-bottom: 32px;
  }
}

.mt-4 {
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .mt-4 {
    margin-top: 16px;
  }
}

.mt-6 {
  margin-top: 18px;
}
@media screen and (min-width: 768px) {
  .mt-6 {
    margin-top: 24px;
  }
}

.mt-8 {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .mt-8 {
    margin-top: 32px;
  }
}

.p-4 {
  padding: 12px;
}
@media screen and (min-width: 768px) {
  .p-4 {
    padding: 16px;
  }
}

.p-6 {
  padding: 18px;
}
@media screen and (min-width: 768px) {
  .p-6 {
    padding: 24px;
  }
}

.p-8 {
  padding: 24px;
}
@media screen and (min-width: 768px) {
  .p-8 {
    padding: 32px;
  }
}

/* Colors */
.text-emerald {
  color: #047857;
}

.text-gray {
  color: #6b7280;
}

.text-white {
  color: #ffffff;
}

.bg-emerald {
  background: #047857;
}

.bg-emerald-light {
  background: #ecfdf5;
}

.bg-white {
  background: #ffffff;
}

.border-emerald {
  border-color: #d1fae5;
}

/* Border Radius */
.rounded {
  border-radius: 6px;
}

.rounded-lg {
  border-radius: 8px;
}

/* Shadows */
.shadow {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive Text Sizes */
.text-sm {
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .text-sm {
    font-size: 0.875rem;
  }
}

.text-base {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .text-base {
    font-size: 1rem;
  }
}

.text-lg {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .text-lg {
    font-size: 1.125rem;
  }
}

.text-xl {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .text-xl {
    font-size: 1.25rem;
  }
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 1024px) {
  html {
    font-size: 1.2658227848vw;
  }
}
@media (min-width: 1264px) {
  html {
    font-size: 16px;
  }
}

a.temple-link {
  display: inline-block;
  transition: all 0.3s ease 0s;
  text-decoration: none;
  color: #047857;
}
a.temple-link:hover {
  transform: scale(1.05);
  color: #065f46;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn.btn-primary {
  background-color: #047857;
  color: #ffffff;
}
.btn.btn-primary:hover {
  background-color: #065f46;
  transform: translateY(-2px);
}
.btn.btn-secondary {
  background-color: transparent;
  color: #047857;
  border: 2px solid #047857;
}
.btn.btn-secondary:hover {
  background-color: #047857;
  color: #ffffff;
}
.btn.btn-outline {
  background-color: transparent;
  color: #047857;
  border: 1px solid #047857;
}
.btn.btn-outline:hover {
  background-color: #ecfdf5;
}

.section {
  padding: 3rem 0;
}
@media screen and (min-width: 1024px) {
  .section {
    padding: 5rem 0;
  }
}
.section.section-bg-light {
  background-color: #ecfdf5;
}
.section.section-bg-white {
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 1024px) {
  .container {
    padding: 0 32px;
  }
}

.section-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  color: #047857;
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .section-title {
    margin-bottom: 3rem;
  }
}
.section-title.h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}
.section-title.h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}
.section-title.h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.text-content {
  line-height: 1.7;
  color: #374151;
}
.text-content p {
  margin-bottom: 1rem;
}
.text-content p:last-child {
  margin-bottom: 3rem;
}

.img-responsive {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
}

/* Header Styles - スマートフォンファースト */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid #e5e7eb;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .header-content {
    height: 64px;
    padding: 0 32px;
  }
}

.header-logo {
  margin-bottom: 0 !important;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
}

.logo-icon {
  width: 28px;
  height: 28px;
  background: #047857;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  margin-right: 6px;
}
@media screen and (min-width: 768px) {
  .logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    margin-right: 8px;
  }
}

.site-title {
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .site-title {
    font-size: 1.25rem;
  }
}

/* Navigation - スマートフォンファースト */
.main-navigation {
  display: none;
  list-style: none;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .main-navigation {
    display: flex;
    gap: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .main-navigation {
    gap: 24px;
  }
}

.main-navigation a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .main-navigation a {
    font-size: 16px;
  }
}

.main-navigation a:hover {
  color: #047857;
}

/* Mobile Menu - スマートフォンファースト */
.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
}
@media screen and (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.main-navigation {
  display: none;
}
@media screen and (min-width: 1024px) {
  .main-navigation {
    display: block;
  }
}
.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .main-navigation ul {
    display: flex !important;
    align-items: center;
    gap: 1.25rem;
  }
}
.main-navigation ul li {
  position: relative;
}
.main-navigation ul li a {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  color: #374151;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.main-navigation ul li a:hover {
  color: #047857;
  background: rgba(4, 120, 87, 0.1);
}
.main-navigation ul li a:focus {
  outline: 2px solid rgba(4, 120, 87, 0.5);
  outline-offset: 2px;
}
.main-navigation ul li a.current-menu-item, .main-navigation ul li a.current_page_item {
  color: #047857;
  background: rgba(4, 120, 87, 0.1);
  font-weight: 600;
}
.main-navigation ul li a.current-menu-item::after, .main-navigation ul li a.current_page_item::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: #047857;
  border-radius: 1px;
}
@media screen and (min-width: 1024px) {
  .main-navigation ul li a {
    padding: 0.625rem 1rem;
    font-size: 1rem;
  }
}
.main-navigation.mobile-active ul {
  display: block !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70vh;
  background: white;
  z-index: 1000;
  padding: 80px 1.25rem 1.25rem;
  overflow-y: auto;
  flex-direction: column;
  gap: 0;
}
.main-navigation.mobile-active ul li {
  width: 100%;
  margin-bottom: 4px;
}
.main-navigation.mobile-active ul li a {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  border-radius: 8px;
  min-height: 48px;
  display: flex;
  align-items: center;
}
.main-navigation.mobile-active ul li a:hover {
  background: #f9fafb;
  color: #047857;
}
.main-navigation.mobile-active ul li a.current-menu-item, .main-navigation.mobile-active ul li a.current_page_item {
  background: #ecfdf5;
  color: #047857;
  font-weight: 600;
}
.main-navigation.mobile-active ul li a.current-menu-item::after, .main-navigation.mobile-active ul li a.current_page_item::after {
  display: none;
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1001;
}
.mobile-menu-toggle:hover {
  background: rgba(4, 120, 87, 0.1);
  color: #047857;
}
.mobile-menu-toggle:focus {
  outline: 2px solid rgba(4, 120, 87, 0.5);
  outline-offset: 2px;
}
@media screen and (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 768px) {
  .mobile-menu-overlay {
    display: none;
  }
}

.site-header {
  position: relative;
}
.site-header .container {
  position: relative;
}
.site-header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
@media screen and (min-width: 768px) {
  .site-header .header-content {
    padding: 1.5rem 0;
  }
}

@media screen and (max-width: 767px) {
  .main-navigation.mobile-active ul li a {
    border-bottom: 1px solid #f3f4f6;
  }
  .main-navigation.mobile-active ul li a:last-child {
    border-bottom: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .main-navigation,
  .mobile-menu-toggle,
  .mobile-menu-overlay {
    transition: none;
  }
}
@media (prefers-contrast: high) {
  .main-navigation ul li a {
    border: 1px solid transparent;
  }
  .main-navigation ul li a:hover, .main-navigation ul li a:focus {
    border-color: #000;
    background: #fff;
    color: #000;
  }
  .main-navigation ul li a.current-menu-item, .main-navigation ul li a.current_page_item {
    border-color: #000;
    background: #000;
    color: #fff;
  }
}
@media print {
  .mobile-menu-toggle,
  .mobile-menu-overlay {
    display: none;
  }
  .main-navigation {
    display: block;
  }
  .main-navigation ul {
    display: flex !important;
  }
  .main-navigation ul li a {
    color: #000;
    background: none;
  }
}
/* Footer - スマートフォンファースト */
.site-footer {
  background: #047857;
  border-top: 1px solid #d1fae5;
  padding: 32px 0 16px;
}
@media screen and (min-width: 768px) {
  .site-footer {
    padding: 40px 0 20px;
  }
}
@media screen and (min-width: 1024px) {
  .site-footer {
    padding: 48px 0 24px;
  }
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 28px;
  }
}
@media screen and (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 32px;
  }
}

.footer-section h3 {
  font-weight: 700;
  margin-bottom: 12px;
  color: #047857;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .footer-section h3 {
    margin-bottom: 14px;
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1024px) {
  .footer-section h3 {
    margin-bottom: 16px;
    font-size: 1.25rem;
  }
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 6px;
}
@media screen and (min-width: 768px) {
  .footer-links li {
    margin-bottom: 8px;
  }
}

.footer-links a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .footer-links a {
    font-size: 1rem;
  }
}

.footer-links a:hover {
  color: #047857;
}

.footer-bottom {
  border-top: 1px solid #d1fae5;
  padding-top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer-bottom {
    padding-top: 20px;
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
  }
}
@media screen and (min-width: 1024px) {
  .footer-bottom {
    padding-top: 24px;
  }
}

.sidebar {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sidebar {
    width: 280px;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 1024px) {
  .sidebar {
    width: 320px;
  }
}
@media screen and (min-width: 1200px) {
  .sidebar {
    width: 360px;
  }
}

.sidebar-widget {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}
.sidebar-widget:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-color: #d1fae5;
}
.sidebar-widget:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .sidebar-widget {
    margin-bottom: 24px;
    border-radius: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .sidebar-widget {
    margin-bottom: 32px;
  }
}

.widget-header {
  padding: 16px 20px;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}
@media screen and (min-width: 768px) {
  .widget-header {
    padding: 20px 24px;
  }
}
.widget-header .widget-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #064e3b;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .widget-header .widget-title {
    font-size: 1.25rem;
    gap: 10px;
  }
}
.widget-header .widget-title .widget-icon {
  color: #047857;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .widget-header .widget-title .widget-icon {
    font-size: 1.125rem;
  }
}

.widget-content {
  padding: 16px 20px;
}
@media screen and (min-width: 768px) {
  .widget-content {
    padding: 20px 24px;
  }
}

.widget-search .search-form {
  position: relative;
}
.widget-search .search-form .search-input {
  width: 100%;
  padding: 10px 40px 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.9rem;
  background: #ffffff;
  transition: all 0.3s ease;
}
.widget-search .search-form .search-input:focus {
  outline: none;
  border-color: #047857;
  box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.1);
}
.widget-search .search-form .search-input::placeholder {
  color: #9ca3af;
}
@media screen and (min-width: 768px) {
  .widget-search .search-form .search-input {
    padding: 12px 44px 12px 16px;
    font-size: 1rem;
  }
}
.widget-search .search-form .search-button {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: #047857;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.widget-search .search-form .search-button:hover {
  background: #065f46;
}
@media screen and (min-width: 768px) {
  .widget-search .search-form .search-button {
    width: 36px;
    height: 36px;
    right: 6px;
  }
}
.widget-search .search-form .search-button .search-icon {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .widget-search .search-form .search-button .search-icon {
    font-size: 1rem;
  }
}

.widget-categories .category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget-categories .category-list .category-item {
  border-bottom: 1px solid #f3f4f6;
}
.widget-categories .category-list .category-item:last-child {
  border-bottom: none;
}
.widget-categories .category-list .category-item .category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #6b7280;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.widget-categories .category-list .category-item .category-link:hover {
  color: #047857;
  padding-left: 8px;
}
@media screen and (min-width: 768px) {
  .widget-categories .category-list .category-item .category-link {
    padding: 12px 0;
    font-size: 0.9rem;
  }
}
.widget-categories .category-list .category-item .category-link .category-name {
  display: flex;
  align-items: center;
  gap: 8px;
}
.widget-categories .category-list .category-item .category-link .category-name .category-icon {
  font-size: 0.875rem;
  color: #9ca3af;
}
.widget-categories .category-list .category-item .category-link .category-count {
  background: #f3f4f6;
  color: #6b7280;
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .widget-categories .category-list .category-item .category-link .category-count {
    padding: 3px 8px;
    font-size: 0.8rem;
  }
}
.widget-categories .category-list .category-item .category-link:hover .category-count {
  background: #ecfdf5;
  color: #047857;
}

.widget-recent-posts .recent-posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget-recent-posts .recent-posts-list .recent-post-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
}
.widget-recent-posts .recent-posts-list .recent-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.widget-recent-posts .recent-posts-list .recent-post-item:first-child {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .widget-recent-posts .recent-posts-list .recent-post-item {
    gap: 16px;
    padding: 16px 0;
  }
}
.widget-recent-posts .recent-posts-list .recent-post-item .post-thumbnail {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .widget-recent-posts .recent-posts-list .recent-post-item .post-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
  }
}
.widget-recent-posts .recent-posts-list .recent-post-item .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.widget-recent-posts .recent-posts-list .recent-post-item .post-thumbnail:hover img {
  transform: scale(1.05);
}
.widget-recent-posts .recent-posts-list .recent-post-item .post-info {
  flex: 1;
  min-width: 0;
}
.widget-recent-posts .recent-posts-list .recent-post-item .post-info .post-title {
  margin: 0 0 4px 0;
}
.widget-recent-posts .recent-posts-list .recent-post-item .post-info .post-title a {
  color: #374151;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}
.widget-recent-posts .recent-posts-list .recent-post-item .post-info .post-title a:hover {
  color: #047857;
}
@media screen and (min-width: 768px) {
  .widget-recent-posts .recent-posts-list .recent-post-item .post-info .post-title a {
    font-size: 0.9rem;
  }
}
.widget-recent-posts .recent-posts-list .recent-post-item .post-info .post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 4px;
}
@media screen and (min-width: 768px) {
  .widget-recent-posts .recent-posts-list .recent-post-item .post-info .post-meta {
    font-size: 0.8rem;
  }
}
.widget-recent-posts .recent-posts-list .recent-post-item .post-info .post-meta .post-date {
  display: flex;
  align-items: center;
  gap: 4px;
}
.widget-recent-posts .recent-posts-list .recent-post-item .post-info .post-meta .post-date .date-icon {
  font-size: 0.75rem;
}
.widget-recent-posts .recent-posts-list .recent-post-item .post-info .post-meta .post-category {
  display: flex;
  align-items: center;
  gap: 4px;
}
.widget-recent-posts .recent-posts-list .recent-post-item .post-info .post-meta .post-category .category-icon {
  font-size: 0.75rem;
}
.widget-recent-posts .recent-posts-list .recent-post-item .post-info .post-meta .post-category a {
  color: inherit;
  text-decoration: none;
}
.widget-recent-posts .recent-posts-list .recent-post-item .post-info .post-meta .post-category a:hover {
  color: #047857;
}
.widget-recent-posts .recent-posts-list .recent-post-item .post-info .post-excerpt {
  color: #6b7280;
  font-size: 0.75rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .widget-recent-posts .recent-posts-list .recent-post-item .post-info .post-excerpt {
    font-size: 0.8rem;
  }
}

.widget-tag-cloud .tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .widget-tag-cloud .tag-cloud {
    gap: 8px;
  }
}
.widget-tag-cloud .tag-cloud .tag-link {
  display: inline-block;
  padding: 4px 8px;
  background: #f3f4f6;
  color: #6b7280;
  text-decoration: none;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.widget-tag-cloud .tag-cloud .tag-link:hover {
  background: #ecfdf5;
  color: #047857;
  border-color: #bbf7d0;
  transform: translateY(-1px);
}
@media screen and (min-width: 768px) {
  .widget-tag-cloud .tag-cloud .tag-link {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}
.widget-tag-cloud .tag-cloud .tag-link.tag-size-1 {
  font-size: 0.7rem;
}
.widget-tag-cloud .tag-cloud .tag-link.tag-size-2 {
  font-size: 0.75rem;
}
.widget-tag-cloud .tag-cloud .tag-link.tag-size-3 {
  font-size: 0.8rem;
}
.widget-tag-cloud .tag-cloud .tag-link.tag-size-4 {
  font-size: 0.85rem;
}
.widget-tag-cloud .tag-cloud .tag-link.tag-size-5 {
  font-size: 0.9rem;
}
@media screen and (min-width: 768px) {
  .widget-tag-cloud .tag-cloud .tag-link.tag-size-1 {
    font-size: 0.75rem;
  }
  .widget-tag-cloud .tag-cloud .tag-link.tag-size-2 {
    font-size: 0.8rem;
  }
  .widget-tag-cloud .tag-cloud .tag-link.tag-size-3 {
    font-size: 0.85rem;
  }
  .widget-tag-cloud .tag-cloud .tag-link.tag-size-4 {
    font-size: 0.9rem;
  }
  .widget-tag-cloud .tag-cloud .tag-link.tag-size-5 {
    font-size: 1rem;
  }
}

.widget-archives .archive-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget-archives .archive-list .archive-item {
  border-bottom: 1px solid #f3f4f6;
}
.widget-archives .archive-list .archive-item:last-child {
  border-bottom: none;
}
.widget-archives .archive-list .archive-item .archive-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #6b7280;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.widget-archives .archive-list .archive-item .archive-link:hover {
  color: #047857;
  padding-left: 8px;
}
@media screen and (min-width: 768px) {
  .widget-archives .archive-list .archive-item .archive-link {
    padding: 12px 0;
    font-size: 0.9rem;
  }
}
.widget-archives .archive-list .archive-item .archive-link .archive-date {
  display: flex;
  align-items: center;
  gap: 8px;
}
.widget-archives .archive-list .archive-item .archive-link .archive-date .date-icon {
  font-size: 0.875rem;
  color: #9ca3af;
}
.widget-archives .archive-list .archive-item .archive-link .archive-count {
  background: #f3f4f6;
  color: #6b7280;
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .widget-archives .archive-list .archive-item .archive-link .archive-count {
    padding: 3px 8px;
    font-size: 0.8rem;
  }
}
.widget-archives .archive-list .archive-item .archive-link:hover .archive-count {
  background: #ecfdf5;
  color: #047857;
}

.widget-calendar .calendar-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}
@media screen and (min-width: 768px) {
  .widget-calendar .calendar-table {
    font-size: 0.875rem;
  }
}
.widget-calendar .calendar-table .calendar-header {
  background: #f9fafb;
}
.widget-calendar .calendar-table .calendar-header th {
  padding: 8px 4px;
  text-align: center;
  font-weight: 600;
  color: #6b7280;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .widget-calendar .calendar-table .calendar-header th {
    padding: 10px 6px;
    font-size: 0.8rem;
  }
}
.widget-calendar .calendar-table .calendar-body td {
  padding: 6px;
  text-align: center;
  border-bottom: 1px solid #f3f4f6;
  vertical-align: middle;
  height: 32px;
}
@media screen and (min-width: 768px) {
  .widget-calendar .calendar-table .calendar-body td {
    padding: 8px;
    height: 36px;
  }
}
.widget-calendar .calendar-table .calendar-body td a {
  display: block;
  color: #047857;
  text-decoration: none;
  font-weight: 500;
  padding: 2px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.widget-calendar .calendar-table .calendar-body td a:hover {
  background: #ecfdf5;
}
.widget-calendar .calendar-table .calendar-body td.other-month {
  color: #d1d5db;
}
.widget-calendar .calendar-table .calendar-body td.today {
  background: #ecfdf5;
  color: #047857;
  font-weight: 600;
}
.widget-calendar .calendar-table .calendar-body td.has-posts {
  position: relative;
}
.widget-calendar .calendar-table .calendar-body td.has-posts::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #10b981;
  border-radius: 50%;
}

.widget-memorial-guide .memorial-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget-memorial-guide .memorial-list .memorial-item {
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
}
.widget-memorial-guide .memorial-list .memorial-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.widget-memorial-guide .memorial-list .memorial-item:first-child {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .widget-memorial-guide .memorial-list .memorial-item {
    padding: 16px 0;
  }
}
.widget-memorial-guide .memorial-list .memorial-item .memorial-type {
  font-size: 0.875rem;
  font-weight: 600;
  color: #064e3b;
  margin-bottom: 4px;
}
@media screen and (min-width: 768px) {
  .widget-memorial-guide .memorial-list .memorial-item .memorial-type {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }
}
.widget-memorial-guide .memorial-list .memorial-item .memorial-description {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.4;
  margin-bottom: 6px;
}
@media screen and (min-width: 768px) {
  .widget-memorial-guide .memorial-list .memorial-item .memorial-description {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }
}
.widget-memorial-guide .memorial-list .memorial-item .memorial-price {
  font-size: 0.8rem;
  color: #047857;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .widget-memorial-guide .memorial-list .memorial-item .memorial-price {
    font-size: 0.85rem;
  }
}
.widget-memorial-guide .memorial-cta {
  margin-top: 12px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .widget-memorial-guide .memorial-cta {
    margin-top: 16px;
  }
}
.widget-memorial-guide .memorial-cta .cta-link {
  display: inline-block;
  padding: 8px 16px;
  background: #047857;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.widget-memorial-guide .memorial-cta .cta-link:hover {
  background: #065f46;
  transform: translateY(-1px);
}
@media screen and (min-width: 768px) {
  .widget-memorial-guide .memorial-cta .cta-link {
    padding: 10px 20px;
    font-size: 0.875rem;
  }
}

.widget-contact-info .contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget-contact-info .contact-list .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
}
.widget-contact-info .contact-list .contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.widget-contact-info .contact-list .contact-item:first-child {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .widget-contact-info .contact-list .contact-item {
    gap: 12px;
    padding: 10px 0;
  }
}
.widget-contact-info .contact-list .contact-item .contact-icon {
  flex-shrink: 0;
  width: 16px;
  text-align: center;
  color: #047857;
  font-size: 1rem;
  margin-top: 2px;
}
@media screen and (min-width: 768px) {
  .widget-contact-info .contact-list .contact-item .contact-icon {
    width: 18px;
    font-size: 1.125rem;
  }
}
.widget-contact-info .contact-list .contact-item .contact-content {
  flex: 1;
}
.widget-contact-info .contact-list .contact-item .contact-content .contact-label {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
@media screen and (min-width: 768px) {
  .widget-contact-info .contact-list .contact-item .contact-content .contact-label {
    font-size: 0.8rem;
  }
}
.widget-contact-info .contact-list .contact-item .contact-content .contact-value {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .widget-contact-info .contact-list .contact-item .contact-content .contact-value {
    font-size: 0.9rem;
  }
}
.widget-contact-info .contact-list .contact-item .contact-content .contact-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.widget-contact-info .contact-list .contact-item .contact-content .contact-value a:hover {
  color: #047857;
}

.widget-business-hours .hours-table {
  width: 100%;
  font-size: 0.8rem;
}
@media screen and (min-width: 768px) {
  .widget-business-hours .hours-table {
    font-size: 0.875rem;
  }
}
.widget-business-hours .hours-table .hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid #f3f4f6;
}
.widget-business-hours .hours-table .hours-row:last-child {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .widget-business-hours .hours-table .hours-row {
    padding: 8px 0;
  }
}
.widget-business-hours .hours-table .hours-row .day {
  font-weight: 500;
  color: #374151;
}
.widget-business-hours .hours-table .hours-row .time {
  color: #6b7280;
  text-align: right;
}
.widget-business-hours .hours-table .hours-row.closed .time {
  color: #ef4444;
  font-style: italic;
}
.widget-business-hours .hours-table .hours-row.special .time {
  color: #f59e0b;
}
.widget-business-hours .hours-table .hours-row.today {
  background: #ecfdf5;
  margin: 0 -16px;
  padding: 6px 16px;
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .widget-business-hours .hours-table .hours-row.today {
    margin: 0 -20px;
    padding: 8px 20px;
  }
}
.widget-business-hours .hours-table .hours-row.today .day {
  color: #047857;
  font-weight: 600;
}
.widget-business-hours .hours-table .hours-row.today .time {
  color: #047857;
}
.widget-business-hours .hours-note {
  margin-top: 12px;
  padding: 8px;
  background: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: 4px;
  font-size: 0.75rem;
  color: #92400e;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .widget-business-hours .hours-note {
    margin-top: 16px;
    padding: 10px;
    font-size: 0.8rem;
  }
}

.widget-social-feed .social-posts {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget-social-feed .social-posts .social-post {
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
}
.widget-social-feed .social-posts .social-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.widget-social-feed .social-posts .social-post:first-child {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .widget-social-feed .social-posts .social-post {
    padding: 16px 0;
  }
}
.widget-social-feed .social-posts .social-post .post-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
@media screen and (min-width: 768px) {
  .widget-social-feed .social-posts .social-post .post-header {
    gap: 10px;
    margin-bottom: 8px;
  }
}
.widget-social-feed .social-posts .social-post .post-header .platform-icon {
  font-size: 1rem;
  color: #6b7280;
}
@media screen and (min-width: 768px) {
  .widget-social-feed .social-posts .social-post .post-header .platform-icon {
    font-size: 1.125rem;
  }
}
.widget-social-feed .social-posts .social-post .post-header .platform-icon.twitter {
  color: #1da1f2;
}
.widget-social-feed .social-posts .social-post .post-header .platform-icon.facebook {
  color: #1877f2;
}
.widget-social-feed .social-posts .social-post .post-header .platform-icon.instagram {
  color: #e4405f;
}
.widget-social-feed .social-posts .social-post .post-header .post-time {
  font-size: 0.75rem;
  color: #9ca3af;
}
@media screen and (min-width: 768px) {
  .widget-social-feed .social-posts .social-post .post-header .post-time {
    font-size: 0.8rem;
  }
}
.widget-social-feed .social-posts .social-post .post-content {
  font-size: 0.8rem;
  color: #374151;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .widget-social-feed .social-posts .social-post .post-content {
    font-size: 0.875rem;
  }
}
.widget-social-feed .social-follow {
  margin-top: 12px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .widget-social-feed .social-follow {
    margin-top: 16px;
  }
}
.widget-social-feed .social-follow .follow-link {
  display: inline-block;
  padding: 6px 12px;
  background: #f3f4f6;
  color: #6b7280;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.widget-social-feed .social-follow .follow-link:hover {
  background: #047857;
  color: white;
}
@media screen and (min-width: 768px) {
  .widget-social-feed .social-follow .follow-link {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

@media screen and (min-width: 768px) {
  .sidebar.sticky {
    position: sticky;
    top: 80px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
}
.sidebar.sticky::-webkit-scrollbar {
  width: 4px;
}
.sidebar.sticky::-webkit-scrollbar-track {
  background: #f3f4f6;
}
.sidebar.sticky::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .sidebar-widget,
  .category-link,
  .tag-link,
  .recent-post-item .post-thumbnail img {
    transition: none;
  }
  .sidebar-widget:hover,
  .category-link:hover,
  .tag-link:hover {
    transform: none;
  }
}
@media (prefers-contrast: high) {
  .sidebar-widget {
    border: 2px solid #000;
  }
  .widget-title {
    color: #000;
  }
  .category-link,
  .tag-link,
  .recent-post-item .post-title a {
    border: 1px solid transparent;
  }
  .category-link:hover,
  .tag-link:hover,
  .recent-post-item .post-title a:hover {
    border-color: #000;
    background: #fff;
    color: #000;
  }
}
@media print {
  .sidebar {
    width: 100%;
    margin-top: 20px;
  }
  .sidebar-widget {
    box-shadow: none;
    border: 1px solid #000;
    margin-bottom: 20px;
    break-inside: avoid;
  }
  .widget-search,
  .widget-social-feed {
    display: none;
  }
  .recent-post-item .post-thumbnail {
    display: none;
  }
}
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
@media screen and (min-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 720px;
    padding: 0 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .container {
    max-width: 960px;
    padding: 0 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media screen and (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.container-fluid {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .container-fluid {
    padding: 0 24px;
  }
}
@media screen and (min-width: 1024px) {
  .container-fluid {
    padding: 0 32px;
  }
}

.grid {
  display: grid;
  gap: 16px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .grid {
    gap: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .grid {
    gap: 32px;
  }
}

.grid-1 {
  grid-template-columns: 1fr;
}

.grid-2 {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3 {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 480px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 480px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.grid-5 {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 480px) {
  .grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .grid-5 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .grid-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

.grid-6 {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 480px) {
  .grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .grid-6 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .grid-6 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .grid-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}

.grid-auto-fit {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 480px) {
  .grid-auto-fit {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
@media screen and (min-width: 768px) {
  .grid-auto-fit {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
@media screen and (min-width: 1024px) {
  .grid-auto-fit {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

.grid-auto-fill-sm {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 480px) {
  .grid-auto-fill-sm {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}
@media screen and (min-width: 768px) {
  .grid-auto-fill-sm {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}
@media screen and (min-width: 1024px) {
  .grid-auto-fill-sm {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

.flex {
  display: flex;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .flex {
    gap: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .flex {
    gap: 32px;
  }
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-col-md {
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .flex-col-md {
    flex-direction: row;
  }
}

.flex-row-md {
  flex-direction: row;
}
@media screen and (min-width: 768px) {
  .flex-row-md {
    flex-direction: column;
  }
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.items-baseline {
  align-items: baseline;
}

.items-stretch {
  align-items: stretch;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-1 {
  flex: 1;
}

.flex-auto {
  flex: auto;
}

.flex-none {
  flex: none;
}

.flex-grow {
  flex-grow: 1;
}

.flex-shrink {
  flex-shrink: 1;
}

.flex-no-shrink {
  flex-shrink: 0;
}

.col-span-1 {
  grid-column: span 1;
}

.col-span-2 {
  grid-column: span 2;
}

.col-span-3 {
  grid-column: span 3;
}

.col-span-4 {
  grid-column: span 4;
}

.col-span-5 {
  grid-column: span 5;
}

.col-span-6 {
  grid-column: span 6;
}

.col-span-full {
  grid-column: 1/-1;
}

.row-span-1 {
  grid-row: span 1;
}

.row-span-2 {
  grid-row: span 2;
}

.row-span-3 {
  grid-row: span 3;
}

.row-span-4 {
  grid-row: span 4;
}

.row-span-5 {
  grid-row: span 5;
}

.row-span-6 {
  grid-row: span 6;
}

.row-span-full {
  grid-row: 1/-1;
}

@media screen and (min-width: 768px) {
  .md\:col-span-1 {
    grid-column: span 1;
  }
  .md\:col-span-2 {
    grid-column: span 2;
  }
  .md\:col-span-3 {
    grid-column: span 3;
  }
  .md\:col-span-4 {
    grid-column: span 4;
  }
  .md\:col-span-5 {
    grid-column: span 5;
  }
  .md\:col-span-6 {
    grid-column: span 6;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
}
@media screen and (min-width: 1024px) {
  .lg\:col-span-1 {
    grid-column: span 1;
  }
  .lg\:col-span-2 {
    grid-column: span 2;
  }
  .lg\:col-span-3 {
    grid-column: span 3;
  }
  .lg\:col-span-4 {
    grid-column: span 4;
  }
  .lg\:col-span-5 {
    grid-column: span 5;
  }
  .lg\:col-span-6 {
    grid-column: span 6;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
}
.gap-0 {
  gap: 0;
}

.gap-1 {
  gap: 4px;
}

.gap-2 {
  gap: 8px;
}

.gap-3 {
  gap: 12px;
}

.gap-4 {
  gap: 16px;
}

.gap-5 {
  gap: 20px;
}

.gap-6 {
  gap: 24px;
}

.gap-8 {
  gap: 32px;
}

.gap-10 {
  gap: 40px;
}

.gap-12 {
  gap: 48px;
}

.gap-16 {
  gap: 64px;
}

.gap-x-0 {
  column-gap: 0;
}

.gap-x-1 {
  column-gap: 4px;
}

.gap-x-2 {
  column-gap: 8px;
}

.gap-x-3 {
  column-gap: 12px;
}

.gap-x-4 {
  column-gap: 16px;
}

.gap-x-5 {
  column-gap: 20px;
}

.gap-x-6 {
  column-gap: 24px;
}

.gap-x-8 {
  column-gap: 32px;
}

.gap-y-0 {
  row-gap: 0;
}

.gap-y-1 {
  row-gap: 4px;
}

.gap-y-2 {
  row-gap: 8px;
}

.gap-y-3 {
  row-gap: 12px;
}

.gap-y-4 {
  row-gap: 16px;
}

.gap-y-5 {
  row-gap: 20px;
}

.gap-y-6 {
  row-gap: 24px;
}

.gap-y-8 {
  row-gap: 32px;
}

.layout-with-sidebar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .layout-with-sidebar {
    grid-template-columns: 1fr 280px;
    gap: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .layout-with-sidebar {
    grid-template-columns: 1fr 320px;
    gap: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .layout-with-sidebar {
    grid-template-columns: 1fr 360px;
    gap: 48px;
  }
}
.layout-with-sidebar .main-content {
  min-width: 0;
}
.layout-with-sidebar .sidebar {
  order: -1;
}
@media screen and (min-width: 768px) {
  .layout-with-sidebar .sidebar {
    order: 0;
  }
}
@media screen and (min-width: 768px) {
  .layout-with-sidebar.sidebar-left {
    grid-template-columns: 280px 1fr;
  }
}
@media screen and (min-width: 1024px) {
  .layout-with-sidebar.sidebar-left {
    grid-template-columns: 320px 1fr;
  }
}
@media screen and (min-width: 1200px) {
  .layout-with-sidebar.sidebar-left {
    grid-template-columns: 360px 1fr;
  }
}
.layout-with-sidebar.sidebar-left .sidebar {
  order: -1;
}

.layout-with-both-sidebars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  .layout-with-both-sidebars {
    grid-template-columns: 250px 1fr 250px;
    gap: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .layout-with-both-sidebars {
    grid-template-columns: 280px 1fr 280px;
    gap: 40px;
  }
}
.layout-with-both-sidebars .main-content {
  min-width: 0;
}
.layout-with-both-sidebars .sidebar-left,
.layout-with-both-sidebars .sidebar-right {
  order: -1;
}
@media screen and (min-width: 1024px) {
  .layout-with-both-sidebars .sidebar-left,
  .layout-with-both-sidebars .sidebar-right {
    order: 0;
  }
}

.layout-full-height {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.layout-full-height .site-header {
  flex-shrink: 0;
}
.layout-full-height .main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.layout-full-height .site-footer {
  flex-shrink: 0;
}

.section-spacing {
  padding: 32px 0;
}
@media screen and (min-width: 768px) {
  .section-spacing {
    padding: 48px 0;
  }
}
@media screen and (min-width: 1024px) {
  .section-spacing {
    padding: 64px 0;
  }
}
@media screen and (min-width: 1200px) {
  .section-spacing {
    padding: 80px 0;
  }
}

.section-spacing-sm {
  padding: 20px 0;
}
@media screen and (min-width: 768px) {
  .section-spacing-sm {
    padding: 32px 0;
  }
}
@media screen and (min-width: 1024px) {
  .section-spacing-sm {
    padding: 40px 0;
  }
}

.section-spacing-lg {
  padding: 48px 0;
}
@media screen and (min-width: 768px) {
  .section-spacing-lg {
    padding: 64px 0;
  }
}
@media screen and (min-width: 1024px) {
  .section-spacing-lg {
    padding: 80px 0;
  }
}
@media screen and (min-width: 1200px) {
  .section-spacing-lg {
    padding: 100px 0;
  }
}

.cards-grid {
  display: grid;
  gap: 16px;
}
@media screen and (min-width: 480px) {
  .cards-grid {
    gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .cards-grid {
    gap: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .cards-grid {
    gap: 32px;
  }
}
.cards-grid.cards-sm {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 480px) {
  .cards-grid.cards-sm {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .cards-grid.cards-sm {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .cards-grid.cards-sm {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .cards-grid.cards-sm {
    grid-template-columns: repeat(6, 1fr);
  }
}
.cards-grid.cards-md {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 480px) {
  .cards-grid.cards-md {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .cards-grid.cards-md {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1400px) {
  .cards-grid.cards-md {
    grid-template-columns: repeat(4, 1fr);
  }
}
.cards-grid.cards-lg {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .cards-grid.cards-lg {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .cards-grid.cards-lg {
    grid-template-columns: repeat(3, 1fr);
  }
}

.masonry {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media screen and (min-width: 480px) {
  .masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .masonry {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .masonry {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}
.masonry .masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .masonry .masonry-item {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .masonry .masonry-item {
    margin-bottom: 32px;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .hero-grid {
    gap: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .hero-grid {
    gap: 80px;
  }
}
.hero-grid .hero-content {
  order: 2;
}
@media screen and (min-width: 768px) {
  .hero-grid .hero-content {
    order: 1;
  }
}
.hero-grid .hero-image {
  order: 1;
}
@media screen and (min-width: 768px) {
  .hero-grid .hero-image {
    order: 2;
  }
}
.hero-grid.reverse .hero-content {
  order: 2;
}
@media screen and (min-width: 768px) {
  .hero-grid.reverse .hero-content {
    order: 2;
  }
}
.hero-grid.reverse .hero-image {
  order: 1;
}
@media screen and (min-width: 768px) {
  .hero-grid.reverse .hero-image {
    order: 1;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 480px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}
.features-grid .feature-item {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .features-grid .feature-item {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  .features-grid .feature-item .feature-icon {
    flex-shrink: 0;
  }
  .features-grid .feature-item .feature-content {
    flex: 1;
  }
}

.gallery-grid {
  display: grid;
  gap: 8px;
}
@media screen and (min-width: 480px) {
  .gallery-grid {
    gap: 12px;
  }
}
@media screen and (min-width: 768px) {
  .gallery-grid {
    gap: 16px;
  }
}
.gallery-grid.gallery-square {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 480px) {
  .gallery-grid.gallery-square {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .gallery-grid.gallery-square {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .gallery-grid.gallery-square {
    grid-template-columns: repeat(5, 1fr);
  }
}
.gallery-grid.gallery-square .gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .gallery-grid.gallery-square .gallery-item {
    border-radius: 6px;
  }
}
.gallery-grid.gallery-square .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-grid.gallery-square .gallery-item img:hover {
  transform: scale(1.05);
}
.gallery-grid.gallery-mosaic {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 80px;
}
@media screen and (min-width: 768px) {
  .gallery-grid.gallery-mosaic {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 120px;
  }
}
@media screen and (min-width: 1024px) {
  .gallery-grid.gallery-mosaic {
    grid-auto-rows: 150px;
  }
}
.gallery-grid.gallery-mosaic .gallery-item {
  border-radius: 4px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .gallery-grid.gallery-mosaic .gallery-item {
    border-radius: 6px;
  }
}
.gallery-grid.gallery-mosaic .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-grid.gallery-mosaic .gallery-item img:hover {
  transform: scale(1.05);
}
.gallery-grid.gallery-mosaic .gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-grid.gallery-mosaic .gallery-item.wide {
  grid-column: span 2;
}
.gallery-grid.gallery-mosaic .gallery-item.tall {
  grid-row: span 2;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.grid {
  display: grid;
}

.inline-grid {
  display: inline-grid;
}

@media screen and (min-width: 768px) {
  .md\:hidden {
    display: none;
  }
  .md\:block {
    display: block;
  }
  .md\:inline {
    display: inline;
  }
  .md\:inline-block {
    display: inline-block;
  }
  .md\:flex {
    display: flex;
  }
  .md\:inline-flex {
    display: inline-flex;
  }
  .md\:grid {
    display: grid;
  }
  .md\:inline-grid {
    display: inline-grid;
  }
}
@media screen and (min-width: 1024px) {
  .lg\:hidden {
    display: none;
  }
  .lg\:block {
    display: block;
  }
  .lg\:inline {
    display: inline;
  }
  .lg\:inline-block {
    display: inline-block;
  }
  .lg\:flex {
    display: flex;
  }
  .lg\:inline-flex {
    display: inline-flex;
  }
  .lg\:grid {
    display: grid;
  }
  .lg\:inline-grid {
    display: inline-grid;
  }
}
.mobile-only {
  display: block;
}
@media screen and (min-width: 768px) {
  .mobile-only {
    display: none;
  }
}

.desktop-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .desktop-only {
    display: block;
  }
}

.aspect-square {
  aspect-ratio: 1/1;
}

.aspect-video {
  aspect-ratio: 16/9;
}

.aspect-photo {
  aspect-ratio: 4/3;
}

.aspect-wide {
  aspect-ratio: 21/9;
}

.max-w-xs {
  max-width: 320px;
}

.max-w-sm {
  max-width: 384px;
}

.max-w-md {
  max-width: 448px;
}

.max-w-lg {
  max-width: 512px;
}

.max-w-xl {
  max-width: 576px;
}

.max-w-2xl {
  max-width: 672px;
}

.max-w-3xl {
  max-width: 768px;
}

.max-w-4xl {
  max-width: 896px;
}

.max-w-5xl {
  max-width: 1024px;
}

.max-w-6xl {
  max-width: 1152px;
}

.max-w-7xl {
  max-width: 1280px;
}

.max-w-full {
  max-width: 100%;
}

.max-w-none {
  max-width: none;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

@media (prefers-reduced-motion: reduce) {
  .gallery-item img {
    transition: none;
  }
  .gallery-item img:hover {
    transform: none;
  }
}
@media print {
  .container,
  .container-fluid {
    max-width: none;
    padding: 0;
  }
  .grid,
  .flex,
  .cards-grid,
  .features-grid {
    display: block;
  }
  .grid > *,
  .flex > *,
  .cards-grid > *,
  .features-grid > * {
    margin-bottom: 20px;
    break-inside: avoid;
  }
  .mobile-only,
  .desktop-only {
    display: block;
  }
  .hidden {
    display: none;
  }
}
/* Buttons - スマートフォンファースト */
.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .btn {
    padding: 12px 20px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .btn {
    padding: 12px 24px;
  }
}

.btn-primary {
  background: #047857;
  color: #ffffff;
}

.btn-primary:hover {
  background: #065f46;
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 500px) {
  .btn-group {
    flex-direction: row;
    gap: 16px;
  }
}
@media screen and (min-width: 768px) {
  .btn-group {
    gap: 20px;
  }
}

/* Card Styles - スマートフォンファースト */
.card {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #d1fae5;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-header {
  padding: 16px;
  background: #ecfdf5;
}
@media screen and (min-width: 768px) {
  .card-header {
    padding: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .card-header {
    padding: 24px;
  }
}

.card-title {
  color: #047857;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .card-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
  }
}

.card-content {
  padding: 16px;
}
@media screen and (min-width: 768px) {
  .card-content {
    padding: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .card-content {
    padding: 24px;
  }
}

/* Event Cards - スマートフォンファースト */
.event-card {
  position: relative;
}

.event-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .event-image {
    height: 180px;
  }
}
@media screen and (min-width: 1024px) {
  .event-image {
    height: 200px;
  }
}

.event-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #047857;
  color: #ffffff;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .event-badge {
    top: 16px;
    left: 16px;
    padding: 4px 12px;
    font-size: 0.875rem;
  }
}

.event-meta {
  display: flex;
  gap: 12px;
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .event-meta {
    gap: 16px;
    font-size: 0.875rem;
    margin-bottom: 16px;
    flex-wrap: nowrap;
  }
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 3px;
}
@media screen and (min-width: 768px) {
  .event-meta-item {
    gap: 4px;
  }
}

.hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .hero {
    height: 500px;
  }
}
@media screen and (min-width: 1024px) {
  .hero {
    height: 600px;
  }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.3);
  z-index: 10;
}
.hero__background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-color: #047857;
  background-image: url("../images/TOP/FV.jpg");
}
@media (max-width: 768px) {
  .hero__background {
    background-image: url("../images/TOP/FV.jpg");
  }
}
.hero__content {
  position: relative;
  z-index: 20;
  text-align: center;
  color: #ffffff;
  padding: 0 20px;
  max-width: 90%;
}
@media screen and (min-width: 1024px) {
  .hero__content {
    padding: 0 32px;
    max-width: 800px;
  }
}
.hero__title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.05em;
}
@media screen and (min-width: 500px) {
  .hero__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .hero__title {
    font-size: 3.75rem;
  }
}
.hero__subtitle {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 500px) {
  .hero__subtitle {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .hero__subtitle {
    font-size: 1.5rem;
  }
}
.hero__description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 500px) {
  .hero__description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .hero__description {
    font-size: 1.125rem;
  }
}
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .hero__actions {
    flex-direction: row;
    gap: 1rem;
  }
}
.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: 0.9rem;
  min-width: 140px;
}
@media screen and (min-width: 500px) {
  .hero__button {
    font-size: 1rem;
    min-width: 160px;
  }
}
.hero__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.hero__button--primary {
  background-color: #047857;
  color: #ffffff;
}
.hero__button--primary:hover {
  background-color: #065f46;
}
.hero__button--primary:active {
  transform: translateY(0);
}
.hero__button--outline {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #ffffff;
  background-color: transparent;
}
.hero__button--outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}
.hero__button--outline:active {
  transform: translateY(0);
}
@media (max-width: 479px) {
  .hero__button {
    width: 100%;
    max-width: 280px;
  }
}
.hero--parallax .hero__background {
  will-change: transform;
  transition: transform 0.1s ease-out;
}
.hero--dark .hero__overlay {
  background: rgba(0, 0, 0, 0.6);
}
.hero--light .hero__overlay {
  background: rgba(0, 0, 0, 0.2);
}
.hero--light .hero__title,
.hero--light .hero__subtitle,
.hero--light .hero__description {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* 超小画面対応 (320px以下) */
@media screen and (max-width: 320px) {
  .hero {
    height: 350px;
  }
  .hero__title {
    font-size: 1.75rem;
  }
  .hero__subtitle {
    font-size: 0.95rem;
  }
  .hero__description {
    font-size: 0.85rem;
  }
  .hero__button {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    min-width: 120px;
  }
}
/* 横向きスマートフォン対応 */
@media screen and (max-width: 768px) and (orientation: landscape) {
  .hero {
    height: 300px;
  }
  .hero__content {
    padding: 0 20px;
  }
  .hero__title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }
  .hero__description {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
  .hero__actions {
    gap: 0.5rem;
  }
  .hero__button {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}
/* 大画面対応 (1400px以上) */
@media screen and (min-width: 1400px) {
  .hero {
    height: 700px;
  }
  .hero__title {
    font-size: 4.5rem;
  }
  .hero__subtitle {
    font-size: 1.75rem;
  }
  .hero__description {
    font-size: 1.25rem;
  }
  .hero__button {
    padding: 1rem 2rem;
    font-size: 1.125rem;
  }
}
.hero__button:focus {
  outline: 3px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

@media (prefers-contrast: high) {
  .hero__overlay {
    background: rgba(0, 0, 0, 0.8);
  }
  .hero__title, .hero__subtitle, .hero__description {
    text-shadow: 3px 3px 6px rgb(0, 0, 0);
  }
  .hero__button--outline {
    border-color: #ffffff;
    border-width: 3px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__button {
    transition: none;
  }
  .hero__button:hover {
    transform: none;
    box-shadow: none;
  }
  .hero--parallax .hero__background {
    will-change: auto;
    transition: none;
  }
}
@media print {
  .hero {
    height: auto;
    padding: 2rem 0;
  }
  .hero__background, .hero__overlay {
    display: none;
  }
  .hero__content {
    color: #333;
  }
  .hero__title, .hero__subtitle, .hero__description {
    color: #333;
    text-shadow: none;
  }
  .hero__actions {
    display: none;
  }
}
@media (hover: none) and (pointer: coarse) {
  .hero__button {
    min-height: 44px;
  }
  .hero__button:hover {
    transform: none;
    box-shadow: none;
  }
  .hero__button:active {
    transform: scale(0.95);
  }
}
.temple-intro {
  padding: 2.5rem 0;
  background: #ffffff;
}
@media screen and (min-width: 1024px) {
  .temple-intro {
    padding: 4rem 0;
  }
}
.temple-intro__header {
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .temple-intro__header {
    margin-bottom: 3rem;
  }
}
.temple-intro__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #065f46;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 1024px) {
  .temple-intro__title {
    font-size: 1.875rem;
  }
}
.temple-intro__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 1024px) {
  .temple-intro__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
  }
}
.temple-intro__text p {
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #374151;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 1024px) {
  .temple-intro__text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }
}
.temple-intro__text p:last-child {
  margin-bottom: 0;
}
.temple-intro__image-wrapper {
  background: #ffffff;
  border: 1px solid #d1fae5;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.temple-intro__image-wrapper:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-color: #d1fae5;
}
.temple-intro__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.temple-intro__image:hover {
  transform: scale(1.02);
}
.temple-intro__cta {
  text-align: center;
  margin-top: 4rem;
}
.temple-intro__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background-color: #047857;
  color: #ffffff;
  font-weight: 500;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
@media screen and (min-width: 1024px) {
  .temple-intro__button {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
}
.temple-intro__button:hover {
  background-color: #065f46;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(4, 120, 87, 0.3);
}
.temple-intro__button:active {
  transform: translateY(0);
}

.temple-features {
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .temple-features {
    margin-bottom: 3rem;
  }
}
.temple-features__header {
  text-align: center;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .temple-features__header {
    margin-bottom: 2rem;
  }
}
.temple-features__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #065f46;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 1024px) {
  .temple-features__title {
    font-size: 1.5rem;
  }
}
.temple-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .temple-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .temple-features__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.temple-features__card {
  background: #ffffff;
  border: 1px solid #d1fae5;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}
.temple-features__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: #d1fae5;
}
.temple-features__card-image {
  width: 100%;
  height: 10rem;
  object-fit: cover;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .temple-features__card-image {
    height: 12rem;
  }
}
.temple-features__card-image:hover {
  transform: scale(1.05);
}
.temple-features__card-content {
  padding: 1rem;
}
@media screen and (min-width: 1024px) {
  .temple-features__card-content {
    padding: 1.5rem;
  }
}
.temple-features__card-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}
@media screen and (min-width: 1024px) {
  .temple-features__card-icon {
    font-size: 2.5rem;
  }
}
.temple-features__card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #065f46;
  margin-bottom: 0.5rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 1024px) {
  .temple-features__card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
}
.temple-features__card-description {
  color: #6b7280;
  line-height: 1.6;
  font-size: 0.875rem;
}
@media screen and (min-width: 1024px) {
  .temple-features__card-description {
    font-size: 1rem;
  }
}

.temple-actions {
  text-align: center;
}
.temple-actions__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .temple-actions__buttons {
    flex-direction: row;
    gap: 1rem;
  }
}
.temple-actions__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
@media screen and (min-width: 1024px) {
  .temple-actions__button {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
}
.temple-actions__button--primary {
  background-color: #047857;
  color: #ffffff;
}
.temple-actions__button--primary:hover {
  background-color: #065f46;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(4, 120, 87, 0.3);
}
.temple-actions__button--outline {
  border: 1px solid #047857;
  color: #047857;
  background-color: transparent;
}
.temple-actions__button--outline:hover {
  background-color: #ecfdf5;
  border-color: #065f46;
  color: #065f46;
}
.temple-actions__button:active {
  transform: translateY(0);
}
@media (max-width: 479px) {
  .temple-actions__button {
    width: 100%;
    max-width: 280px;
  }
}

/* スマートフォン対応 (320px - 768px) */
@media screen and (max-width: 768px) {
  .temple-intro {
    padding: 2rem 0;
  }
  .temple-intro__content {
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .temple-intro__text p {
    font-size: 0.9rem;
    margin-bottom: 0.875rem;
  }
  .temple-features {
    margin-bottom: 1.5rem;
  }
  .temple-features__grid {
    gap: 1rem;
  }
  .temple-features__card-content {
    padding: 0.875rem;
  }
  .temple-features__card-icon {
    font-size: 1.75rem;
  }
  .temple-features__card-title {
    font-size: 1rem;
  }
  .temple-features__card-description {
    font-size: 0.8rem;
  }
}
/* 小さなスマートフォン対応 (320px - 480px) */
@media screen and (max-width: 480px) {
  .temple-intro__title {
    font-size: 1.25rem;
  }
  .temple-intro__text p {
    font-size: 0.85rem;
  }
  .temple-intro__button {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
  .temple-features__title {
    font-size: 1.125rem;
  }
  .temple-features__card-content {
    padding: 0.75rem;
  }
  .temple-features__card-icon {
    font-size: 1.5rem;
  }
}
.temple-intro__button:focus,
.temple-actions__button:focus {
  outline: 2px solid #047857;
  outline-offset: 2px;
}

.temple-features__card:focus-within {
  outline: 2px solid #047857;
  outline-offset: 2px;
}

@media (prefers-contrast: high) {
  .temple-intro__image-wrapper,
  .temple-intro .temple-features__card {
    border: 2px solid #333;
  }
  .temple-intro__button,
  .temple-intro .temple-actions__button--primary {
    background: #374151;
    border: 2px solid #333;
  }
  .temple-intro .temple-actions__button--outline {
    border: 2px solid #333;
    color: #333;
  }
}
@media (prefers-reduced-motion: reduce) {
  .temple-intro__image,
  .temple-features__card,
  .temple-features__card-image,
  .temple-intro__button,
  .temple-actions__button {
    transition: none;
  }
  .temple-intro__image:hover,
  .temple-features__card:hover,
  .temple-features__card-image:hover,
  .temple-intro__button:hover,
  .temple-actions__button:hover {
    transform: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
}
@media print {
  .temple-intro__cta,
  .temple-intro .temple-actions {
    display: none;
  }
  .temple-intro__image-wrapper {
    box-shadow: none;
    border: 1px solid #ccc;
  }
  .temple-features__card {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
  }
}
@media (hover: none) and (pointer: coarse) {
  .temple-intro__button,
  .temple-actions__button {
    min-height: 44px;
  }
  .temple-intro__button:hover,
  .temple-actions__button:hover {
    transform: none;
    box-shadow: none;
  }
  .temple-features__card:hover {
    transform: none;
  }
}
.events-section {
  padding: 40px 0;
  background: #ecfdf5;
  position: relative;
  overflow: hidden;
}
.events-section::before, .events-section::after {
  content: "";
  display: none;
}
.events-section .container {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 480px) {
  .events-section {
    padding: 48px 0;
  }
}
@media screen and (min-width: 768px) {
  .events-section::before {
    display: block;
    position: absolute;
    top: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
  }
  .events-section::after {
    display: block;
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(4, 120, 87, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
  }
}
@media screen and (min-width: 1024px) {
  .events-section {
    padding: 64px 0;
  }
}

.events-header {
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .events-header {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .events-header {
    margin-bottom: 48px;
  }
}
.events-header .section-title {
  font-size: clamp(1.5rem, 5vw, 1.75rem);
  font-weight: 600;
  color: #064e3b;
  margin-bottom: 12px;
  position: relative;
}
.events-header .section-title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #047857, #10b981);
  border-radius: 2px;
}
@media screen and (min-width: 768px) {
  .events-header .section-title {
    font-size: clamp(1.75rem, 4vw, 2rem);
    margin-bottom: 16px;
  }
  .events-header .section-title::after {
    width: 80px;
    height: 3px;
    bottom: -8px;
  }
}
@media screen and (min-width: 1024px) {
  .events-header .section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
  }
}
.events-header .section-description {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .events-header .section-description {
    font-size: 1.125rem;
  }
}

.events-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
@media screen and (min-width: 480px) {
  .events-filter {
    gap: 12px;
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 768px) {
  .events-filter {
    margin-bottom: 40px;
  }
}
.events-filter .filter-btn {
  padding: 6px 16px;
  border: 1px solid #d1fae5;
  background: #ffffff;
  color: #4a5568;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.events-filter .filter-btn:hover {
  background: #f0fdf4;
  border-color: #10b981;
  color: #047857;
  transform: translateY(-1px);
}
.events-filter .filter-btn.active {
  background: #047857;
  border-color: #047857;
  color: white;
  box-shadow: 0 2px 8px rgba(4, 120, 87, 0.3);
}
@media screen and (min-width: 480px) {
  .events-filter .filter-btn {
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.875rem;
  }
  .events-filter .filter-btn:hover {
    transform: translateY(-2px);
  }
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
@media screen and (min-width: 480px) {
  .events-grid {
    gap: 24px;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 768px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    margin-bottom: 48px;
  }
}

.event-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d1fae5;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #10b981;
}
@media screen and (min-width: 768px) {
  .event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }
}
.event-card .event-image-wrapper {
  position: relative;
  overflow: hidden;
}
.event-card .event-image-wrapper .event-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.event-card .event-image-wrapper:hover .event-image {
  transform: scale(1.05);
}
@media screen and (min-width: 480px) {
  .event-card .event-image-wrapper .event-image {
    height: 200px;
  }
}
.event-card .event-image-wrapper .event-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 8px;
  border-radius: 16px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}
.event-card .event-image-wrapper .event-badge.badge-workshop {
  background: #047857;
  color: white;
}
.event-card .event-image-wrapper .event-badge.badge-experience {
  background: #10b981;
  color: white;
}
.event-card .event-image-wrapper .event-badge.badge-festival {
  background: #f59e0b;
  color: white;
}
.event-card .event-image-wrapper .event-badge.badge-regular {
  background: #6b7280;
  color: white;
}
@media screen and (min-width: 480px) {
  .event-card .event-image-wrapper .event-badge {
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
  }
}
.event-card .event-image-wrapper .event-status {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 3px 6px;
  border-radius: 10px;
  font-size: 0.65rem;
  font-weight: 600;
  z-index: 2;
}
.event-card .event-image-wrapper .event-status.status-available {
  background: rgba(16, 185, 129, 0.9);
  color: white;
}
.event-card .event-image-wrapper .event-status.status-full {
  background: rgba(239, 68, 68, 0.9);
  color: white;
}
.event-card .event-image-wrapper .event-status.status-few-left {
  background: rgba(245, 158, 11, 0.9);
  color: white;
}
@media screen and (min-width: 480px) {
  .event-card .event-image-wrapper .event-status {
    top: 16px;
    right: 16px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
  }
}
.event-card .event-content {
  padding: 16px;
}
@media screen and (min-width: 480px) {
  .event-card .event-content {
    padding: 20px;
  }
}
@media screen and (min-width: 768px) {
  .event-card .event-content {
    padding: 24px;
  }
}
.event-card .event-content .event-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: #6b7280;
}
@media screen and (min-width: 480px) {
  .event-card .event-content .event-meta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.875rem;
  }
}
.event-card .event-content .event-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.event-card .event-content .event-meta .meta-item .meta-icon {
  color: #047857;
  font-size: 0.9rem;
}
@media screen and (min-width: 480px) {
  .event-card .event-content .event-meta .meta-item .meta-icon {
    font-size: 1rem;
  }
}
.event-card .event-content .event-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #064e3b;
  margin-bottom: 10px;
  line-height: 1.4;
}
.event-card .event-content .event-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.event-card .event-content .event-title a:hover {
  color: #047857;
}
@media screen and (min-width: 480px) {
  .event-card .event-content .event-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }
}
.event-card .event-content .event-description {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: 0.875rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (min-width: 480px) {
  .event-card .event-content .event-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
}
.event-card .event-content .event-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 16px;
  padding: 12px;
  background: #f9fafb;
  border-radius: 8px;
}
@media screen and (min-width: 480px) {
  .event-card .event-content .event-details {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
    padding: 16px;
  }
}
.event-card .event-content .event-details .detail-item .detail-label {
  font-size: 0.7rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.event-card .event-content .event-details .detail-item .detail-value {
  font-size: 0.8rem;
  font-weight: 600;
  color: #374151;
}
@media screen and (min-width: 480px) {
  .event-card .event-content .event-details .detail-item .detail-label {
    font-size: 0.75rem;
  }
  .event-card .event-content .event-details .detail-item .detail-value {
    font-size: 0.875rem;
  }
}
.event-card .event-content .event-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 480px) {
  .event-card .event-content .event-actions {
    flex-direction: row;
    gap: 12px;
  }
}
.event-card .event-content .event-actions .btn {
  flex: 1;
  text-align: center;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.event-card .event-content .event-actions .btn.btn-primary {
  background: #047857;
  color: white;
}
.event-card .event-content .event-actions .btn.btn-primary:hover {
  background: #065f46;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(4, 120, 87, 0.3);
}
.event-card .event-content .event-actions .btn.btn-primary:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.event-card .event-content .event-actions .btn.btn-outline {
  background: transparent;
  color: #047857;
  border: 1px solid #047857;
}
.event-card .event-content .event-actions .btn.btn-outline:hover {
  background: #047857;
  color: white;
}
@media screen and (min-width: 480px) {
  .event-card .event-content .event-actions .btn {
    padding: 10px 16px;
    font-size: 0.875rem;
  }
  .event-card .event-content .event-actions .btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(4, 120, 87, 0.3);
  }
}
.event-card.featured {
  border: 2px solid #10b981;
  position: relative;
}
.event-card.featured::before {
  content: "注目";
  position: absolute;
  top: -1px;
  right: 16px;
  background: #10b981;
  color: white;
  padding: 3px 8px;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 0 0 6px 6px;
  z-index: 3;
}
@media screen and (min-width: 480px) {
  .event-card.featured::before {
    right: 20px;
    padding: 4px 12px;
    font-size: 0.75rem;
    border-radius: 0 0 8px 8px;
  }
}
.event-card.upcoming .event-image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(16, 185, 129, 0.1), transparent 60%);
}

.events-cta {
  text-align: center;
  margin-top: 24px;
}
@media screen and (min-width: 480px) {
  .events-cta {
    margin-top: 32px;
  }
}
.events-cta .cta-text {
  font-size: 1rem;
  color: #4a5568;
  margin-bottom: 16px;
}
@media screen and (min-width: 480px) {
  .events-cta .cta-text {
    font-size: 1.125rem;
    margin-bottom: 24px;
  }
}
.events-cta .btn {
  display: inline-block;
  padding: 10px 24px;
  background: #047857;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}
.events-cta .btn:hover {
  background: #065f46;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(4, 120, 87, 0.3);
}
@media screen and (min-width: 480px) {
  .events-cta .btn {
    padding: 12px 32px;
    font-size: 1rem;
  }
  .events-cta .btn:hover {
    box-shadow: 0 8px 25px rgba(4, 120, 87, 0.3);
  }
}

.events-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #d1fae5;
}
@media screen and (min-width: 480px) {
  .events-stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    padding: 24px;
  }
}
@media screen and (min-width: 768px) {
  .events-stats {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    padding: 32px;
    margin-bottom: 48px;
  }
}
.events-stats .stat-item {
  text-align: center;
}
.events-stats .stat-item .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #047857;
  display: block;
  margin-bottom: 4px;
}
@media screen and (min-width: 480px) {
  .events-stats .stat-item .stat-number {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 768px) {
  .events-stats .stat-item .stat-number {
    font-size: 2rem;
  }
}
.events-stats .stat-item .stat-label {
  font-size: 0.8rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media screen and (min-width: 480px) {
  .events-stats .stat-item .stat-label {
    font-size: 0.875rem;
  }
}

.events-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 150px;
}
@media screen and (min-width: 480px) {
  .events-loading {
    min-height: 200px;
  }
}
.events-loading .loading-spinner {
  width: 32px;
  height: 32px;
  border: 2px solid #d1fae5;
  border-top: 2px solid #047857;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@media screen and (min-width: 480px) {
  .events-loading .loading-spinner {
    width: 40px;
    height: 40px;
    border-width: 3px;
  }
}

.events-empty {
  text-align: center;
  padding: 40px 16px;
}
@media screen and (min-width: 480px) {
  .events-empty {
    padding: 48px 20px;
  }
}
@media screen and (min-width: 768px) {
  .events-empty {
    padding: 64px 20px;
  }
}
.events-empty .empty-icon {
  font-size: 3rem;
  color: #d1d5db;
  margin-bottom: 12px;
}
@media screen and (min-width: 480px) {
  .events-empty .empty-icon {
    font-size: 4rem;
    margin-bottom: 16px;
  }
}
.events-empty .empty-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}
@media screen and (min-width: 480px) {
  .events-empty .empty-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
}
.events-empty .empty-description {
  color: #6b7280;
  margin-bottom: 20px;
  font-size: 0.9rem;
}
@media screen and (min-width: 480px) {
  .events-empty .empty-description {
    font-size: 1rem;
    margin-bottom: 24px;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .event-card,
  .filter-btn,
  .btn {
    transition: none;
  }
  .event-card:hover,
  .filter-btn:hover,
  .btn:hover {
    transform: none;
  }
  .loading-spinner {
    animation: none;
  }
}
@media print {
  .events-section::before, .events-section::after {
    display: none;
  }
  .events-filter,
  .events-cta {
    display: none;
  }
  .events-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .event-card {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
  }
  .event-card:hover {
    transform: none;
  }
  .event-card .event-actions {
    display: none;
  }
}
.contact-section {
  padding: 2.5rem 0;
  background: #ffffff;
}
@media screen and (min-width: 1024px) {
  .contact-section {
    padding: 4rem 0;
  }
}
.contact-section__header {
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .contact-section__header {
    margin-bottom: 3rem;
  }
}
.contact-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #065f46;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 1024px) {
  .contact-section__title {
    font-size: 1.875rem;
  }
}
.contact-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .contact-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .contact-section__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }
}
.contact-section__method {
  background: #ffffff;
  border: 1px solid #d1fae5;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 1rem;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .contact-section__method {
    padding: 1.5rem;
  }
}
.contact-section__method:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: #d1fae5;
}
.contact-section__method-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #047857;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin: 0 auto 0.75rem;
}
@media screen and (min-width: 1024px) {
  .contact-section__method-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
.contact-section__method-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .contact-section__method-title {
    font-size: 1.25rem;
  }
}
.contact-section__method-subtitle {
  margin-bottom: 0.5rem;
  color: #6b7280;
  font-size: 0.875rem;
}
@media screen and (min-width: 1024px) {
  .contact-section__method-subtitle {
    font-size: 1rem;
  }
}
.contact-section__method-value {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #333;
}
@media screen and (min-width: 1024px) {
  .contact-section__method-value {
    font-size: 1.125rem;
  }
}
.contact-section__method-note {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 1024px) {
  .contact-section__method-note {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
}
.contact-section__method-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  background-color: #047857;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .contact-section__method-button {
    font-size: 0.875rem;
  }
}
.contact-section__method-button:hover {
  background-color: #065f46;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(4, 120, 87, 0.3);
}
.contact-section__method-button:active {
  transform: translateY(0);
}
.contact-section__cta {
  text-align: center;
}
.contact-section__main-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background-color: #047857;
  color: #ffffff;
  font-weight: 500;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
@media screen and (min-width: 1024px) {
  .contact-section__main-button {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
}
.contact-section__main-button:hover {
  background-color: #065f46;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(4, 120, 87, 0.3);
}
.contact-section__main-button:active {
  transform: translateY(0);
}
@media (max-width: 479px) {
  .contact-section__main-button {
    width: 100%;
    max-width: 280px;
  }
}

.contact-section__method:nth-child(1) .contact-section__method-icon {
  background-color: #3b82f6;
}
.contact-section__method:nth-child(2) .contact-section__method-icon {
  background-color: #10b981;
}
.contact-section__method:nth-child(3) .contact-section__method-icon {
  background-color: #f59e0b;
}

/* スマートフォン対応 (320px - 768px) */
@media screen and (max-width: 768px) {
  .contact-section {
    padding: 2rem 0;
  }
  .contact-section__grid {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .contact-section__method {
    padding: 0.875rem;
  }
  .contact-section__method-icon {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .contact-section__method-title {
    font-size: 1rem;
  }
  .contact-section__method-subtitle {
    font-size: 0.8rem;
  }
  .contact-section__method-value {
    font-size: 0.9rem;
  }
  .contact-section__method-note {
    font-size: 0.75rem;
  }
  .contact-section__method-button {
    padding: 0.375rem 0.875rem;
    font-size: 0.75rem;
  }
}
/* 小さなスマートフォン対応 (320px - 480px) */
@media screen and (max-width: 480px) {
  .contact-section__title {
    font-size: 1.25rem;
  }
  .contact-section__grid {
    grid-template-columns: 1fr;
  }
  .contact-section__method {
    padding: 0.75rem;
  }
  .contact-section__method-icon {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.875rem;
  }
  .contact-section__main-button {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
}
/* タブレット対応 (768px - 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .contact-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-section__grid::after {
    content: "";
    grid-column: 1/-1;
  }
}
.contact-section__method-button:focus,
.contact-section__main-button:focus {
  outline: 2px solid #047857;
  outline-offset: 2px;
}

.contact-section__method:focus-within {
  outline: 2px solid #047857;
  outline-offset: 2px;
}

@media (prefers-contrast: high) {
  .contact-section__method {
    border: 2px solid #333;
  }
  .contact-section__method-button, .contact-section__main-button {
    background: #374151;
    border: 2px solid #333;
  }
  .contact-section__method-icon {
    background: #374151 !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .contact-section__method, .contact-section__method-button, .contact-section__main-button {
    transition: none;
  }
  .contact-section__method:hover, .contact-section__method-button:hover, .contact-section__main-button:hover {
    transform: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
}
@media print {
  .contact-section__method-button, .contact-section__cta {
    display: none;
  }
  .contact-section__method {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
  }
  .contact-section__method-icon {
    background: #666 !important;
  }
  .contact-section__method-value::after {
    content: " (" attr(data-value) ")";
    font-size: 0.75rem;
    color: #666;
  }
}
@media (hover: none) and (pointer: coarse) {
  .contact-section__method-button, .contact-section__main-button {
    min-height: 44px;
  }
  .contact-section__method-button:hover, .contact-section__main-button:hover {
    transform: none;
    box-shadow: none;
  }
  .contact-section__method-button:active, .contact-section__main-button:active {
    transform: scale(0.95);
  }
  .contact-section__method:hover {
    transform: none;
  }
}
.contact-section__method--phone .contact-section__method-value {
  cursor: pointer;
}
.contact-section__method--phone .contact-section__method-value:hover {
  color: #047857;
  text-decoration: underline;
}
.contact-section__method--line .contact-section__method-value {
  cursor: pointer;
}
.contact-section__method--line .contact-section__method-value:hover {
  color: #047857;
  text-decoration: underline;
}

.hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .hero {
    height: 600px;
  }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 10;
}
.hero__background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url("../images/TOP/FV.jpg");
}
@media screen and (min-width: 768px) {
  .hero__background {
    background-size: 100% 150%;
    background-position: 100% 25%;
  }
}
.hero__content {
  position: relative;
  z-index: 20;
  text-align: center;
  color: #ffffff;
  padding: 0 20px;
}
@media screen and (min-width: 1024px) {
  .hero__content {
    padding: 0 32px;
  }
}
.hero__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .hero__title {
    font-size: 3.75rem;
  }
}
.hero__subtitle {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .hero__subtitle {
    font-size: 1.5rem;
  }
}
.hero__description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .hero__actions {
    flex-direction: row;
  }
}
.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.hero__button--primary {
  background-color: #047857;
  color: #ffffff;
}
.hero__button--primary:hover {
  background-color: #065f46;
}
.hero__button--outline {
  border: 1px solid #ffffff;
  color: #ffffff;
}
.hero__button--outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.temple-intro {
  padding: 4rem 0;
}
.temple-intro__header {
  text-align: center;
  margin-bottom: 3rem;
}
.temple-intro__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #065f46;
  font-family: "Noto Serif JP", serif;
}
.temple-intro__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 4rem;
}
@media screen and (min-width: 1024px) {
  .temple-intro__content {
    grid-template-columns: repeat(2, 1fr);
  }
}
.temple-intro__text p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #374151;
}
.temple-intro__image-wrapper {
  background: #ffffff;
  border: 1px solid #d1fae5;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.temple-intro__image {
  width: 100%;
  height: auto;
  display: block;
}
.temple-intro__cta {
  text-align: center;
}
.temple-intro__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background-color: #047857;
  color: #ffffff;
  font-weight: 500;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.temple-intro__button:hover {
  background-color: #065f46;
}

.temple-features {
  margin-bottom: 3rem;
}
.temple-features__header {
  text-align: center;
  margin-bottom: 2rem;
}
.temple-features__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #065f46;
  font-family: "Noto Serif JP", serif;
}
.temple-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width: 1024px) {
  .temple-features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.temple-features__card {
  background: #ffffff;
  border: 1px solid #d1fae5;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}
.temple-features__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.temple-features__card-image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}
.temple-features__card-content {
  padding: 1.5rem;
}
.temple-features__card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  display: block;
}
.temple-features__card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #065f46;
  margin-bottom: 0.75rem;
  font-family: "Noto Serif JP", serif;
}
.temple-features__card-description {
  color: #6b7280;
  line-height: 1.6;
}

.temple-actions {
  text-align: center;
}
.temple-actions__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .temple-actions__buttons {
    flex-direction: row;
  }
}
.temple-actions__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.temple-actions__button--primary {
  background-color: #047857;
  color: #ffffff;
}
.temple-actions__button--primary:hover {
  background-color: #065f46;
}
.temple-actions__button--outline {
  border: 1px solid #047857;
  color: #047857;
}
.temple-actions__button--outline:hover {
  background-color: rgba(4, 120, 87, 0.05);
}

.upcoming-schedule {
  padding: 4rem 0;
  background-color: #ecfdf5;
}
.upcoming-schedule__header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.upcoming-schedule__icon {
  height: 1.5rem;
  width: 1.5rem;
  color: #047857;
  margin-right: 0.5rem;
}
.upcoming-schedule__title {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  color: #065f46;
  font-family: "Noto Serif JP", serif;
}
.upcoming-schedule__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .upcoming-schedule__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.upcoming-schedule__card {
  background: #ffffff;
  border: 1px solid #d1fae5;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.upcoming-schedule__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.upcoming-schedule__card-content {
  padding: 1.5rem;
}
.upcoming-schedule__card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #065f46;
  margin-bottom: 0.5rem;
  font-family: "Noto Serif JP", serif;
}
.upcoming-schedule__card-date {
  color: #047857;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.upcoming-schedule__card-time {
  color: #10b981;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.upcoming-schedule__card-description {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
}
.upcoming-schedule__cta {
  text-align: center;
  margin-top: 2rem;
}
.upcoming-schedule__link {
  color: #047857;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.upcoming-schedule__link:hover {
  color: #065f46;
}

.contact-section {
  padding: 4rem 0;
}
.contact-section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.contact-section__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #065f46;
  font-family: "Noto Serif JP", serif;
}
.contact-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media screen and (min-width: 1024px) {
  .contact-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.contact-section__method {
  background: #ffffff;
  border: 1px solid #d1fae5;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.contact-section__method:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.contact-section__method-icon {
  width: 3rem;
  height: 3rem;
  background-color: #047857;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}
.contact-section__method-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}
.contact-section__method-subtitle {
  margin-bottom: 0.5rem;
  color: #6b7280;
}
.contact-section__method-value {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #333;
}
.contact-section__method-note {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}
.contact-section__method-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  background-color: #047857;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.contact-section__method-button:hover {
  background-color: #065f46;
}
.contact-section__cta {
  text-align: center;
}
.contact-section__main-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background-color: #047857;
  color: #ffffff;
  font-weight: 500;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.contact-section__main-button:hover {
  background-color: #065f46;
}

/* スマートフォン対応 (320px - 768px) */
@media screen and (max-width: 768px) {
  .hero {
    height: 400px;
  }
  .hero__title {
    font-size: 2rem;
  }
  .hero__subtitle {
    font-size: 1.125rem;
  }
  .hero__description {
    font-size: 1rem;
  }
  .temple-intro {
    padding: 2.5rem 0;
  }
  .temple-intro__content {
    gap: 1.5rem;
  }
  .temple-intro__text p {
    font-size: 1rem;
  }
  .temple-features__grid {
    gap: 1.5rem;
  }
  .temple-features__card-content {
    padding: 1rem;
  }
  .upcoming-schedule {
    padding: 2.5rem 0;
  }
  .upcoming-schedule__grid {
    gap: 1rem;
  }
  .upcoming-schedule__card-content {
    padding: 1rem;
  }
  .contact-section {
    padding: 2.5rem 0;
  }
  .contact-section__grid {
    gap: 1.5rem;
  }
  .contact-section__method {
    padding: 1rem;
  }
}
/* 小さなスマートフォン対応 (320px - 480px) */
@media screen and (max-width: 480px) {
  .hero {
    height: 350px;
  }
  .hero__title {
    font-size: 1.75rem;
  }
  .hero__actions {
    gap: 0.75rem;
  }
  .temple-intro__text p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  .temple-features__card-icon {
    font-size: 2rem;
  }
  .temple-features__card-title {
    font-size: 1.125rem;
  }
}
.temple-features__card:focus-within,
.upcoming-schedule__card:focus-within,
.contact-section__method:focus-within {
  outline: 2px solid #047857;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .temple-features__card:hover,
  .upcoming-schedule__card:hover,
  .contact-section__method:hover {
    transform: none;
  }
  * {
    transition: none !important;
  }
}
@media print {
  .hero {
    height: auto;
    padding: 2rem 0;
  }
  .hero__background, .hero__overlay {
    display: none;
  }
  .hero__content {
    color: #333;
  }
  .hero__actions {
    display: none;
  }
  .temple-actions,
  .upcoming-schedule__cta,
  .contact-section__cta {
    display: none;
  }
}
/* Form Styles - スマートフォンファースト */
.form-group {
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .form-group {
    margin-bottom: 20px;
  }
}

.form-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #374151;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .form-label {
    margin-bottom: 8px;
    font-size: 1rem;
  }
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
@media screen and (min-width: 768px) {
  .form-input,
  .form-textarea,
  .form-select {
    padding: 12px;
    font-size: 16px;
  }
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: #047857;
  box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}
@media screen and (min-width: 768px) {
  .form-textarea {
    min-height: 120px;
  }
}

/* Radio Group - スマートフォンファースト */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .radio-group {
    gap: 8px;
  }
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .radio-item {
    gap: 8px;
    font-size: 1rem;
  }
}

.upcoming-schedule {
  padding: 2.5rem 0;
  background-color: rgba(4, 120, 87, 0.05);
}
@media screen and (min-width: 1024px) {
  .upcoming-schedule {
    padding: 4rem 0;
  }
}
.upcoming-schedule__header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 1024px) {
  .upcoming-schedule__header {
    margin-bottom: 1rem;
  }
}
.upcoming-schedule__icon {
  height: 1.25rem;
  width: 1.25rem;
  color: #047857;
  margin-right: 0.5rem;
  flex-shrink: 0;
}
@media screen and (min-width: 1024px) {
  .upcoming-schedule__icon {
    height: 1.5rem;
    width: 1.5rem;
  }
}
.upcoming-schedule__title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: #065f46;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 1024px) {
  .upcoming-schedule__title {
    font-size: 1.875rem;
  }
}
.upcoming-schedule__card {
  background: #ffffff;
  border: 1px solid rgba(4, 120, 87, 0.2);
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}
.upcoming-schedule__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-color: rgba(4, 120, 87, 0.4);
}
.upcoming-schedule__card-content {
  padding: 1rem;
}
@media screen and (min-width: 1024px) {
  .upcoming-schedule__card-content {
    padding: 1.5rem;
  }
}
.upcoming-schedule__card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #065f46;
  margin-bottom: 0.5rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.3;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 1024px) {
  .upcoming-schedule__card-title {
    font-size: 1.125rem;
  }
}
.upcoming-schedule__card-date {
  color: #047857;
  font-weight: 500;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 1024px) {
  .upcoming-schedule__card-date {
    font-size: 1rem;
  }
}
.upcoming-schedule__card-time {
  color: rgba(4, 120, 87, 0.8);
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 1024px) {
  .upcoming-schedule__card-time {
    font-size: 0.875rem;
  }
}
.upcoming-schedule__card-description {
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.5;
}
@media screen and (min-width: 1024px) {
  .upcoming-schedule__card-description {
    font-size: 0.875rem;
  }
}
.upcoming-schedule__cta {
  text-align: center;
  margin-top: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .upcoming-schedule__cta {
    margin-top: 2rem;
  }
}
.upcoming-schedule__link {
  color: #047857;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}
@media screen and (min-width: 1024px) {
  .upcoming-schedule__link {
    font-size: 1rem;
  }
}
.upcoming-schedule__link:hover {
  color: #065f46;
  text-decoration-thickness: 2px;
}
.upcoming-schedule__link:active {
  color: #065f46;
}
.upcoming-schedule__card--regular {
  border-left: 4px solid #047857;
}
.upcoming-schedule__card--special {
  border-left: 4px solid #f59e0b;
  position: relative;
}
.upcoming-schedule__card--special::before {
  content: "✨";
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 1rem;
}
.upcoming-schedule__card--memorial {
  border-left: 4px solid #6366f1;
}
.upcoming-schedule__card--experience {
  border-left: 4px solid #10b981;
}

/* スマートフォン対応 (320px - 768px) */
@media screen and (max-width: 768px) {
  .upcoming-schedule {
    padding: 2rem 0;
  }
  .upcoming-schedule__grid {
    gap: 0.875rem;
  }
  .upcoming-schedule__card-content {
    padding: 0.875rem;
  }
  .upcoming-schedule__card-title {
    font-size: 0.9rem;
    margin-bottom: 0.375rem;
  }
  .upcoming-schedule__card-date {
    font-size: 0.8rem;
  }
  .upcoming-schedule__card-time {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }
  .upcoming-schedule__card-description {
    font-size: 0.75rem;
  }
  .upcoming-schedule__cta {
    margin-top: 1.25rem;
  }
  .upcoming-schedule__link {
    font-size: 0.85rem;
  }
}
/* 小さなスマートフォン対応 (320px - 480px) */
@media screen and (max-width: 480px) {
  .upcoming-schedule__title {
    font-size: 1.25rem;
  }
  .upcoming-schedule__icon {
    height: 1rem;
    width: 1rem;
  }
  .upcoming-schedule__card-content {
    padding: 0.75rem;
  }
  .upcoming-schedule__card-title {
    font-size: 0.85rem;
  }
  .upcoming-schedule__card-date {
    font-size: 0.75rem;
  }
  .upcoming-schedule__card-time {
    font-size: 0.7rem;
  }
  .upcoming-schedule__card-description {
    font-size: 0.7rem;
  }
}
/* 大画面対応 (1200px以上) */
@media screen and (min-width: 1200px) {
  .upcoming-schedule__grid {
    gap: 2rem;
  }
  .upcoming-schedule__card-content {
    padding: 2rem;
  }
  .upcoming-schedule__card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
}
.upcoming-schedule__link:focus {
  outline: 2px solid #047857;
  outline-offset: 2px;
  border-radius: 2px;
}

.upcoming-schedule__card:focus-within {
  outline: 2px solid #047857;
  outline-offset: 2px;
}
.upcoming-schedule__card--clickable {
  cursor: pointer;
}
.upcoming-schedule__card--clickable:focus {
  outline: 2px solid #047857;
  outline-offset: 2px;
}
.upcoming-schedule__card--clickable:hover .upcoming-schedule__card-title {
  color: #047857;
  text-decoration: underline;
}

@media (prefers-contrast: high) {
  .upcoming-schedule__card {
    border: 2px solid #333;
  }
  .upcoming-schedule__card--regular, .upcoming-schedule__card--special, .upcoming-schedule__card--memorial, .upcoming-schedule__card--experience {
    border-left: 6px solid #333;
  }
  .upcoming-schedule__link {
    color: #333;
    text-decoration-thickness: 2px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .upcoming-schedule__card {
    transition: none;
  }
  .upcoming-schedule__card:hover {
    transform: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  .upcoming-schedule__link {
    transition: none;
  }
}
@media print {
  .upcoming-schedule {
    background: #ffffff;
  }
  .upcoming-schedule__cta {
    display: none;
  }
  .upcoming-schedule__card {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
    margin-bottom: 1rem;
  }
  .upcoming-schedule__card--regular, .upcoming-schedule__card--special, .upcoming-schedule__card--memorial, .upcoming-schedule__card--experience {
    border-left: 4px solid #666;
  }
  .upcoming-schedule__card--special::before {
    display: none;
  }
  .upcoming-schedule__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (hover: none) and (pointer: coarse) {
  .upcoming-schedule__card:hover {
    transform: none;
  }
  .upcoming-schedule__card:active {
    transform: scale(0.98);
  }
  .upcoming-schedule__card--clickable {
    min-height: 44px;
  }
  .upcoming-schedule__link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem;
  }
}
.upcoming-schedule--spring {
  background-color: rgba(16, 185, 129, 0.03);
}
.upcoming-schedule--spring .upcoming-schedule__card--special::before {
  content: "🌸";
}
.upcoming-schedule--summer {
  background-color: rgba(59, 130, 246, 0.03);
}
.upcoming-schedule--summer .upcoming-schedule__card--special::before {
  content: "🌻";
}
.upcoming-schedule--autumn {
  background-color: rgba(245, 158, 11, 0.03);
}
.upcoming-schedule--autumn .upcoming-schedule__card--special::before {
  content: "🍁";
}
.upcoming-schedule--winter {
  background-color: rgba(99, 102, 241, 0.03);
}
.upcoming-schedule--winter .upcoming-schedule__card--special::before {
  content: "❄️";
}

.page-hero {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .page-hero {
    height: 400px;
  }
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
}
.page-hero__background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/TOP/about.jpg);
}
.page-hero__content {
  position: relative;
  z-index: 20;
  text-align: center;
  color: #ffffff;
  padding: 0 20px;
}
@media screen and (min-width: 1024px) {
  .page-hero__content {
    padding: 0 32px;
  }
}
.page-hero__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-family: "Noto Serif JP", serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 1024px) {
  .page-hero__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}
.page-hero__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 1024px) {
  .page-hero__subtitle {
    font-size: 1.25rem;
  }
}

.temple-overview {
  padding: 2.5rem 0;
  background: #ffffff;
}
@media screen and (min-width: 1024px) {
  .temple-overview {
    padding: 4rem 0;
  }
}
.temple-overview__header {
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .temple-overview__header {
    margin-bottom: 3rem;
  }
}
.temple-overview__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #065f46;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .temple-overview__title {
    font-size: 2rem;
  }
}
.temple-overview__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media screen and (min-width: 1024px) {
  .temple-overview__content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
.temple-overview__text {
  order: 2;
}
@media screen and (min-width: 1024px) {
  .temple-overview__text {
    order: 1;
  }
}
.temple-overview__description {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .temple-overview__description {
    font-size: 1.125rem;
  }
}
.temple-overview__description:last-of-type {
  margin-bottom: 2rem;
}
.temple-overview__info {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #ecfdf5;
  border-radius: 0.5rem;
  border: 1px solid #d1fae5;
}
@media screen and (min-width: 1024px) {
  .temple-overview__info {
    padding: 2rem;
  }
}
.temple-overview__info-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #065f46;
  margin-bottom: 1rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .temple-overview__info-title {
    font-size: 1.25rem;
  }
}
.temple-overview__info-list {
  display: grid;
  gap: 0.75rem;
}
.temple-overview__info-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}
.temple-overview__info-item dt {
  font-weight: 500;
  color: #047857;
  min-width: 80px;
  font-size: 0.9rem;
}
@media screen and (min-width: 1024px) {
  .temple-overview__info-item dt {
    font-size: 1rem;
  }
}
.temple-overview__info-item dd {
  color: #333;
  font-size: 0.9rem;
}
@media screen and (min-width: 1024px) {
  .temple-overview__info-item dd {
    font-size: 1rem;
  }
}
.temple-overview__cta {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .temple-overview__cta {
    text-align: left;
  }
}
.temple-overview__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background-color: #047857;
  color: #ffffff;
  font-weight: 500;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.temple-overview__button:hover {
  background-color: #065f46;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(4, 120, 87, 0.3);
}
.temple-overview__image-wrapper {
  order: 1;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 1024px) {
  .temple-overview__image-wrapper {
    order: 2;
  }
}
.temple-overview__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.temple-overview__image:hover {
  transform: scale(1.05);
}

.history-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.history-section {
  background: white;
  margin: 2.5rem 0;
  padding: 3.75rem 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.history-section-title {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
  font-family: "Noto Serif JP", serif;
}

.history-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #3498db, #2ecc71);
  border-radius: 2px;
}

.history-temple-intro {
  font-size: 1.25rem;
  color: #2c3e50;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 500;
  padding: 20px;
  background: rgba(52, 152, 219, 0.05);
  border-radius: 10px;
  border-left: 4px solid #3498db;
}

.history-content {
  display: grid;
  gap: 30px;
}

.history-item {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  border-left: 5px solid #3498db;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.history-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.history-item:nth-child(even) {
  border-left-color: #2ecc71;
}

.history-item:nth-child(3n) {
  border-left-color: #e74c3c;
}

.history-item h4 {
  color: #2c3e50;
  font-size: 1.25rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.history-item h4::before {
  content: "◉";
  margin-right: 10px;
  color: #3498db;
}

.history-item p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  text-align: left;
}

.highlight {
  background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.year {
  display: inline-block;
  background: #3498db;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: 600;
  margin-right: 10px;
}

.timeline {
  position: relative;
  margin: 40px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #3498db, #2ecc71, #e74c3c);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin: 30px 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 20px;
  width: 12px;
  height: 12px;
  background: #3498db;
  border-radius: 50%;
  transform: translateX(-50%);
  border: 3px solid white;
  box-shadow: 0 0 0 3px #3498db;
}

.timeline-content {
  width: 45%;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.timeline-content p {
  text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 55%;
}

.timeline-content::before {
  content: "";
  position: absolute;
  top: 20px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -20px;
  border-left-color: white;
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -20px;
  border-right-color: white;
}

@media (max-width: 768px) {
  .history-section {
    padding: 40px 20px;
  }
  .history-section-title {
    font-size: 1.8em;
  }
  .timeline::before {
    left: 20px;
  }
  .timeline-item::before {
    left: 20px;
  }
  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
  }
  .timeline-content::before {
    left: -20px !important;
    border-right-color: white !important;
    border-left-color: transparent !important;
  }
}
.temple-history {
  padding: 2.5rem 0;
  background: #ecfdf5;
}
@media screen and (min-width: 1024px) {
  .temple-history {
    padding: 4rem 0;
  }
}
.temple-history__header {
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .temple-history__header {
    margin-bottom: 3rem;
  }
}
.temple-history__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #065f46;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .temple-history__title {
    font-size: 2rem;
  }
}

.temple-grounds {
  padding: 2.5rem 0;
  background: #ffffff;
}
@media screen and (min-width: 1024px) {
  .temple-grounds {
    padding: 4rem 0;
  }
}
.temple-grounds__header {
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .temple-grounds__header {
    margin-bottom: 3rem;
  }
}
.temple-grounds__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #065f46;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .temple-grounds__title {
    font-size: 2rem;
  }
}
.temple-grounds__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .temple-grounds__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .temple-grounds__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.temple-grounds__area {
  background: #ffffff;
  border: 1px solid #d1fae5;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.temple-grounds__area:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.temple-grounds__area-image-wrapper {
  position: relative;
  overflow: hidden;
}
.temple-grounds__area-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .temple-grounds__area-image {
    height: 250px;
  }
}
.temple-grounds__area-image:hover {
  transform: scale(1.1);
}
.temple-grounds__area-content {
  padding: 1rem;
}
@media screen and (min-width: 1024px) {
  .temple-grounds__area-content {
    padding: 1.5rem;
  }
}
.temple-grounds__area-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #065f46;
  margin-bottom: 0.5rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .temple-grounds__area-title {
    font-size: 1.25rem;
  }
}
.temple-grounds__area-description {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .temple-grounds__area-description {
    font-size: 1rem;
  }
}

.chief-priest {
  padding: 2.5rem 0;
  background: #ecfdf5;
}
@media screen and (min-width: 1024px) {
  .chief-priest {
    padding: 4rem 0;
  }
}
.chief-priest__header {
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .chief-priest__header {
    margin-bottom: 3rem;
  }
}
.chief-priest__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #065f46;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .chief-priest__title {
    font-size: 2rem;
  }
}
.chief-priest__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .chief-priest__content {
    grid-template-columns: auto 1fr;
    gap: 3rem;
  }
}
.chief-priest__image-wrapper {
  justify-self: center;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  max-width: 250px;
}
@media screen and (min-width: 1024px) {
  .chief-priest__image-wrapper {
    max-width: 480px;
  }
}
.chief-priest__image {
  width: 100%;
  height: auto;
  display: block;
}
.chief-priest__text {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .chief-priest__text {
    text-align: left;
  }
}
.chief-priest__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #065f46;
  margin-bottom: 1rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .chief-priest__name {
    font-size: 1.5rem;
  }
}
.chief-priest__description {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .chief-priest__description {
    font-size: 1.125rem;
  }
}
.chief-priest__cta {
  margin-top: 1.5rem;
}
.chief-priest__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background-color: #047857;
  color: #ffffff;
  font-weight: 500;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.chief-priest__button:hover {
  background-color: #065f46;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(4, 120, 87, 0.3);
}

.temple-visit {
  padding: 2.5rem 0;
  background: #ecfdf5;
}
@media screen and (min-width: 1024px) {
  .temple-visit {
    padding: 4rem 0;
  }
}
.temple-visit__header {
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .temple-visit__header {
    margin-bottom: 3rem;
  }
}
.temple-visit__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #065f46;
  margin-bottom: 0.75rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .temple-visit__title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
.temple-visit__subtitle {
  font-size: 1rem;
  color: #333;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .temple-visit__subtitle {
    font-size: 1.125rem;
  }
}
.temple-visit__actions {
  text-align: center;
}
.temple-visit__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .temple-visit__buttons {
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
  }
}
.temple-visit__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 160px;
}
.temple-visit__button--primary {
  background-color: #047857;
  color: #ffffff;
}
.temple-visit__button--primary:hover {
  background-color: #065f46;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(4, 120, 87, 0.3);
}
.temple-visit__button--outline {
  border: 1px solid #047857;
  color: #047857;
  background-color: transparent;
}
.temple-visit__button--outline:hover {
  background-color: #ecfdf5;
  border-color: #065f46;
  color: #065f46;
}
@media (max-width: 479px) {
  .temple-visit__button {
    width: 100%;
    max-width: 280px;
  }
}

/* スマートフォン対応 (320px - 768px) */
@media screen and (max-width: 768px) {
  .page-hero {
    height: 250px;
  }
  .page-hero__title {
    font-size: 1.5rem;
  }
  .page-hero__subtitle {
    font-size: 0.9rem;
  }
  .temple-overview,
  .temple-history,
  .temple-grounds,
  .chief-priest,
  .temple-values,
  .temple-visit {
    padding: 2rem 0;
  }
  .temple-overview__info,
  .temple-values__item,
  .temple-history__timeline-content {
    padding: 1rem;
  }
  .temple-grounds__area-content {
    padding: 0.875rem;
  }
  .chief-priest__content {
    gap: 1.5rem;
  }
}
/* 小さなスマートフォン対応 (320px - 480px) */
@media screen and (max-width: 480px) {
  .page-hero {
    height: 220px;
  }
  .page-hero__title {
    font-size: 1.25rem;
  }
  .temple-overview__title,
  .temple-history__title,
  .temple-grounds__title,
  .chief-priest__title,
  .temple-values__title,
  .temple-visit__title {
    font-size: 1.25rem;
  }
  .temple-overview__info-item {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  .temple-overview__info-item dt {
    font-weight: 700;
  }
  .temple-history__timeline::before {
    left: 0.75rem;
  }
  .temple-history__timeline-item {
    padding-left: 2.5rem;
  }
  .temple-history__timeline-marker {
    left: 0.5rem;
  }
}
.temple-overview__button:focus,
.chief-priest__button:focus,
.temple-visit__button:focus {
  outline: 2px solid #047857;
  outline-offset: 2px;
}

.temple-grounds__area:focus-within,
.temple-values__item:focus-within {
  outline: 2px solid #047857;
  outline-offset: 2px;
}

@media (prefers-contrast: high) {
  .temple-overview__info,
  .temple-grounds__area,
  .temple-values__item,
  .temple-history__timeline-content {
    border: 2px solid #333;
  }
  .temple-overview__button,
  .chief-priest__button,
  .temple-visit__button--primary {
    background: #333;
    border: 2px solid #333;
  }
  .temple-visit__button--outline {
    border: 2px solid #333;
    color: #333;
  }
}
@media (prefers-reduced-motion: reduce) {
  .temple-overview__image,
  .temple-grounds__area,
  .temple-grounds__area-image,
  .temple-values__item,
  .temple-overview__button,
  .chief-priest__button,
  .temple-visit__button {
    transition: none;
  }
  .temple-overview__image:hover,
  .temple-grounds__area:hover,
  .temple-grounds__area-image:hover,
  .temple-values__item:hover,
  .temple-overview__button:hover,
  .chief-priest__button:hover,
  .temple-visit__button:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
}
@media print {
  .page-hero {
    height: auto;
    padding: 2rem 0;
  }
  .page-hero__background, .page-hero__overlay {
    display: none;
  }
  .page-hero__content {
    color: #333;
  }
  .temple-overview__cta,
  .chief-priest__cta,
  .temple-visit__actions {
    display: none;
  }
  .temple-overview__info,
  .temple-grounds__area,
  .temple-values__item,
  .temple-history__timeline-content {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
  }
  .temple-history__timeline::before {
    background: #666;
  }
  .temple-history__timeline-marker {
    background: #666;
  }
}
@media (hover: none) and (pointer: coarse) {
  .temple-overview__button,
  .chief-priest__button,
  .temple-visit__button {
    min-height: 44px;
  }
  .temple-overview__button:hover,
  .chief-priest__button:hover,
  .temple-visit__button:hover {
    transform: none;
    box-shadow: none;
  }
  .temple-grounds__area:hover,
  .temple-values__item:hover {
    transform: none;
  }
}
.memorial-hero {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .memorial-hero {
    height: 400px;
  }
}
.memorial-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
}
.memorial-hero__background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #047857;
}
.memorial-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.memorial-hero__content {
  position: relative;
  z-index: 20;
  text-align: center;
  color: #ffffff;
  padding: 0 20px;
}
@media screen and (min-width: 1024px) {
  .memorial-hero__content {
    padding: 0 32px;
  }
}
.memorial-hero__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-family: "Noto Serif JP", serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 1024px) {
  .memorial-hero__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}
.memorial-hero__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 1024px) {
  .memorial-hero__subtitle {
    font-size: 1.25rem;
  }
}

.priest-introduction {
  padding: 2.5rem 0;
  background: #ffffff;
}
@media screen and (min-width: 1024px) {
  .priest-introduction {
    padding: 3rem 0;
  }
}

.priest-card {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #d1fae5;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.priest-card__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2rem;
}
@media screen and (min-width: 1024px) {
  .priest-card__content {
    grid-template-columns: 150px 1fr;
    gap: 2rem;
  }
}
.priest-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #ecfdf5;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .priest-card__image {
    margin: 0;
  }
}
.priest-card__placeholder {
  font-size: 3rem;
  color: #047857;
}
.priest-card__info {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .priest-card__info {
    text-align: left;
  }
}
.priest-card__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #065f46;
  margin-bottom: 1rem;
  font-family: "Noto Serif JP", serif;
}
.priest-card__credentials {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}
.priest-card__credentials li {
  padding: 0.3rem 0;
  color: #333;
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.2rem;
}
.priest-card__credentials li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #047857;
  font-weight: bold;
}
.priest-card__description {
  color: #333;
  line-height: 1.6;
  font-size: 0.95rem;
}

.memorial-services {
  padding: 2.5rem 0;
  background: #ecfdf5;
}
@media screen and (min-width: 1024px) {
  .memorial-services {
    padding: 4rem 0;
  }
}
.memorial-services__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 1024px) {
  .memorial-services__container {
    padding: 0 32px;
  }
}
.memorial-services__title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: #065f46;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .memorial-services__title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}
.memorial-services__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .memorial-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .memorial-services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.memorial-services__note {
  text-align: center;
  margin-top: 2rem;
  color: #333;
  font-size: 0.9rem;
  font-style: italic;
}

.memorial-services__title span {
  font-size: 1rem;
}
@media screen and (min-width: 1024px) {
  .memorial-services__title span {
    font-size: 1.5rem;
  }
}

.memorial-card {
  background: #ffffff;
  border: 1px solid #d1fae5;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}
.memorial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.memorial-card__header {
  background-color: #ecfdf5;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.memorial-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #065f46;
  margin: 0;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .memorial-card__name {
    font-size: 1.25rem;
  }
}
.memorial-card__year {
  font-size: 0.875rem;
  color: #047857;
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .memorial-card__year {
    font-size: 0.95rem;
  }
}
.memorial-card__price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #065f46;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .memorial-card__price {
    font-size: 1.2rem;
  }
}
.memorial-card__content {
  padding: 1rem;
}
@media screen and (min-width: 1024px) {
  .memorial-card__content {
    padding: 1.5rem;
  }
}
.memorial-card__description {
  color: #333;
  line-height: 1.6;
  margin: 0;
  font-size: 0.9rem;
}
@media screen and (min-width: 1024px) {
  .memorial-card__description {
    font-size: 1rem;
  }
}
.memorial-card__period {
  color: #047857;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.memorial-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.memorial-card__features li {
  padding: 0.3rem 0;
  color: #333;
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.2rem;
}
.memorial-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #047857;
  font-weight: bold;
}
.memorial-card--eternal .memorial-card__header {
  background-color: rgba(45, 90, 39, 0.1);
}

.eternal-memorial {
  padding: 2.5rem 0;
  background: #ffffff;
}
@media screen and (min-width: 1024px) {
  .eternal-memorial {
    padding: 4rem 0;
  }
}
.eternal-memorial__intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  padding: 0 20px;
}
@media screen and (min-width: 1024px) {
  .eternal-memorial__intro {
    padding: 0 32px;
  }
}
.eternal-memorial__intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}
.eternal-memorial__plans {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 1024px) {
  .eternal-memorial__plans {
    grid-template-columns: repeat(3, 1fr);
  }
}

.eternal-memorial__intro.temple-funeral p:nth-child(n+2) {
  padding-top: 0.9375rem;
}
@media screen and (min-width: 1024px) {
  .eternal-memorial__intro.temple-funeral p:nth-child(n+2) {
    padding-top: 1.875rem;
  }
}

.memorial-faq {
  padding: 2.5rem 0;
  background: #ecfdf5;
}
@media screen and (min-width: 1024px) {
  .memorial-faq {
    padding: 4rem 0;
  }
}

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

.faq-item {
  background: #ffffff;
  border: 1px solid #d1fae5;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: #047857;
  color: #ffffff;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  transition: background-color 0.3s ease;
}
.faq-question:hover {
  background: #ecfdf5;
}
.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #065f46;
  font-family: "Noto Serif JP", serif;
  flex: 1;
  padding-right: 1rem;
}
@media screen and (min-width: 1024px) {
  .faq-question h3 {
    font-size: 1.2rem;
  }
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #047857;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #ffffff;
}
.faq-answer.active {
  max-height: 300px;
  padding: 0 1.5rem 1.5rem;
}
.faq-answer p {
  margin: 0;
  color: #333;
  line-height: 1.7;
  font-size: 0.95rem;
}
@media screen and (min-width: 1024px) {
  .faq-answer p {
    font-size: 1rem;
  }
}

.memorial-reservation {
  padding: 2.5rem 0;
  background-color: #ecfdf5;
}
@media screen and (min-width: 1024px) {
  .memorial-reservation {
    padding: 4rem 0;
  }
}
.memorial-reservation__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 1024px) {
  .memorial-reservation__container {
    padding: 0 32px;
  }
}
.memorial-reservation__title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: #065f46;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .memorial-reservation__title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}

.memorial-info {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.memorial-info__card {
  background: #ffffff;
  border: 1px solid #d1fae5;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.memorial-info__card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #065f46;
  margin: 0 0 1rem 0;
  padding: 1.5rem 1.5rem 0 1.5rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .memorial-info__card-title {
    font-size: 1.25rem;
  }
}
.memorial-info__card-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
}
.memorial-info__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
.memorial-info__list-item {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
  color: #333;
  font-size: 0.9rem;
}
@media screen and (min-width: 1024px) {
  .memorial-info__list-item {
    font-size: 1rem;
  }
}
.memorial-info__list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #047857;
  font-weight: bold;
}
.memorial-info__list-item:last-child {
  margin-bottom: 0;
}
.memorial-info__button-wrapper {
  margin-top: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .memorial-info__button-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
  }
}
.memorial-info__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.memorial-info__button .button__icon {
  font-size: 1rem;
}

.memorial-info__card.eternal-memorial {
  background-color: #ecfdf5;
  padding: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  min-height: 44px;
}
.button--primary {
  background-color: #047857;
  color: #ffffff;
}
.button--primary:hover {
  background-color: #065f46;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(4, 120, 87, 0.3);
}
.button--primary:focus {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}
.button--outline {
  border: 1px solid #047857;
  color: #047857;
  background-color: transparent;
}
.button--outline:hover {
  background-color: #ecfdf5;
  border-color: #065f46;
  color: #065f46;
}
.button--outline:focus {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}

/* スマートフォン対応 (320px - 768px) */
@media screen and (max-width: 768px) {
  .memorial-hero {
    height: 250px;
  }
  .memorial-hero__title {
    font-size: 1.5rem;
  }
  .memorial-hero__subtitle {
    font-size: 0.9rem;
  }
  .memorial-services,
  .memorial-reservation,
  .eternal-memorial,
  .memorial-faq {
    padding: 2rem 0;
  }
  .memorial-info__card__content,
  .memorial-card__content {
    padding: 1rem;
  }
  .memorial-info__card-title {
    padding: 1rem 1rem 0 1rem;
  }
  .memorial-info__card-content {
    padding: 0 1rem 1rem 1rem;
  }
  .eternal-memorial__plans {
    grid-template-columns: 1fr;
  }
  .faq-question {
    padding: 1rem;
  }
  .faq-question h3 {
    font-size: 1rem;
  }
  .faq-answer {
    padding: 0 1rem;
  }
  .faq-answer.active {
    padding: 0 1rem 1rem;
  }
}
/* 小さなスマートフォン対応 (320px - 480px) */
@media screen and (max-width: 480px) {
  .memorial-hero {
    height: 220px;
  }
  .memorial-hero__title {
    font-size: 1.25rem;
  }
  .memorial-services__title,
  .memorial-reservation__title {
    font-size: 1.25rem;
  }
  .memorial-services__grid {
    grid-template-columns: 1fr;
  }
  .priest-card__content {
    padding: 1.5rem;
  }
}
.js-faq-active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.5rem;
}
.js-faq-active .faq-toggle {
  transform: rotate(45deg);
  background: #047857;
  color: #ffffff;
}

.memorial-info__button:focus,
.button:focus,
.faq-question:focus {
  outline: 2px solid #047857;
  outline-offset: 2px;
}

.memorial-card:focus-within {
  outline: 2px solid #047857;
  outline-offset: 2px;
}

@media (prefers-contrast: high) {
  .memorial-card,
  .memorial-info__card,
  .faq-item {
    border: 2px solid #333;
  }
  .button--primary {
    background: #333;
    border: 2px solid #333;
  }
  .button--outline {
    border: 2px solid #333;
    color: #333;
  }
}
@media (prefers-reduced-motion: reduce) {
  .memorial-card,
  .button,
  .faq-item,
  .faq-answer {
    transition: none;
  }
  .memorial-card:hover,
  .button:hover,
  .faq-item:hover,
  .faq-answer:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
}
@media print {
  .memorial-hero {
    height: auto;
    padding: 2rem 0;
  }
  .memorial-hero__background, .memorial-hero__overlay {
    display: none;
  }
  .memorial-hero__content {
    color: #333;
  }
  .memorial-info__button-wrapper {
    display: none;
  }
  .memorial-card,
  .memorial-info__card,
  .faq-item {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
  }
  .faq-answer {
    max-height: none !important;
    padding: 0 1.5rem 1.5rem !important;
  }
}
@media (hover: none) and (pointer: coarse) {
  .button {
    min-height: 44px;
  }
  .button:hover {
    transform: none;
    box-shadow: none;
  }
  .memorial-card:hover {
    transform: none;
  }
  .faq-question {
    min-height: 44px;
  }
}
@media print {
  .memorial-card,
  .faq-item,
  .priest-card {
    page-break-inside: avoid;
    break-inside: avoid;
  }
  .memorial-services__grid {
    display: block;
  }
  .memorial-services__grid .memorial-card {
    margin-bottom: 1rem;
  }
  .eternal-memorial__plans {
    display: block;
  }
  .eternal-memorial__plans .memorial-card {
    margin-bottom: 1rem;
  }
}
.memorial-card:hover .memorial-card__name {
  color: #065f46;
}

.faq-item:hover .faq-question h3 {
  color: #065f46;
}

.priest-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.memorial-services__container,
.memorial-reservation__container {
  max-width: 1200px;
  margin: 0 auto;
}

.memorial-services + .eternal-memorial,
.eternal-memorial + .memorial-faq,
.memorial-faq + .memorial-reservation {
  margin-top: 0;
}

.memorial-reservation {
  margin-bottom: 0;
}

.annual-events {
  padding: 2.5rem 20px;
  background: #ffffff;
}
@media screen and (min-width: 1024px) {
  .annual-events {
    padding: 4rem 32px;
  }
}
.annual-events__header {
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .annual-events__header {
    margin-bottom: 3rem;
  }
}
.annual-events__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #065f46;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .annual-events__title {
    font-size: 2rem;
  }
}
.annual-events__subtitle {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .annual-events__subtitle {
    font-size: 1.125rem;
  }
}
.annual-events__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .annual-events__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .annual-events__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.annual-events__card {
  background: #ffffff;
  border: 1px solid #d1fae5;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}
.annual-events__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.annual-events__card-header {
  background-color: #ecfdf5;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .annual-events__card-header {
    padding: 1.5rem;
  }
}
.annual-events__card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #065f46;
  margin: 0;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .annual-events__card-title {
    font-size: 1.25rem;
  }
}
.annual-events__date {
  display: inline-block;
  background-color: #047857;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .annual-events__date {
    font-size: 0.95rem;
  }
}
.annual-events__date--pending {
  background-color: #6c757d;
}
.annual-events__card-content {
  padding: 1rem;
}
@media screen and (min-width: 1024px) {
  .annual-events__card-content {
    padding: 1.5rem;
  }
}
.annual-events__card-content p {
  color: #333;
  line-height: 1.6;
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
}
@media screen and (min-width: 1024px) {
  .annual-events__card-content p {
    font-size: 1rem;
  }
}
.annual-events__card-content p:last-child {
  margin-bottom: 0;
}

.service-announcements {
  padding: 2.5rem 20px;
  background: #ecfdf5;
}
@media screen and (min-width: 1024px) {
  .service-announcements {
    padding: 4rem 32px;
  }
}
.service-announcements__header {
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .service-announcements__header {
    margin-bottom: 3rem;
  }
}
.service-announcements__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #065f46;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .service-announcements__title {
    font-size: 2rem;
  }
}
.service-announcements__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .service-announcements__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .service-announcements__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.service-card {
  background: #ffffff;
  border: 1px solid #d1fae5;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.service-card--special {
  border: 2px solid #047857;
  background: linear-gradient(135deg, #fff 0%, #ecfdf5 100%);
}
.service-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  background-color: #065f46;
  margin: 0 0 1rem 0;
  padding: 1rem 1rem 1rem 1rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .service-card__title {
    font-size: 1.25rem;
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  }
}
.service-card__content {
  padding: 0 1rem 1rem 1rem;
}
@media screen and (min-width: 1024px) {
  .service-card__content {
    padding: 0 1.5rem 1rem 1.5rem;
  }
}
.service-card__content p {
  color: #333;
  line-height: 1.6;
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
}
@media screen and (min-width: 1024px) {
  .service-card__content p {
    font-size: 1rem;
  }
}
.service-card__content p:last-child {
  margin-bottom: 0;
}
.service-card__footer {
  padding: 1rem;
  background-color: rgba(236, 253, 245, 0.5);
  border-top: 1px solid #d1fae5;
}
@media screen and (min-width: 1024px) {
  .service-card__footer {
    padding: 1.5rem;
  }
}
.service-card__price {
  font-size: 0.9rem;
  font-weight: 500;
  color: #065f46;
  margin: 0;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .service-card__price {
    font-size: 1rem;
  }
}

.shelf-sutra {
  padding: 2.5rem 0;
  background: #ffffff;
}
@media screen and (min-width: 1024px) {
  .shelf-sutra {
    padding: 4rem 0;
  }
}
.shelf-sutra__header {
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .shelf-sutra__header {
    margin-bottom: 3rem;
  }
}
.shelf-sutra__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #065f46;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .shelf-sutra__title {
    font-size: 2rem;
  }
}
.shelf-sutra__subtitle {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .shelf-sutra__subtitle {
    font-size: 1.125rem;
  }
}
.shelf-sutra__schedule {
  max-width: 768px;
  margin: 0 auto;
}
.shelf-sutra__table {
  width: 100%;
  background: #ffffff;
  border: 1px solid #d1fae5;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-collapse: collapse;
}
.shelf-sutra__table thead {
  background-color: #ecfdf5;
}
.shelf-sutra__table th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-weight: 700;
  color: #065f46;
  border-bottom: 1px solid #d1fae5;
  font-size: 0.9rem;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .shelf-sutra__table th {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}
.shelf-sutra__table tbody tr {
  border-bottom: 1px solid #d1fae5;
}
.shelf-sutra__table tbody tr:last-child {
  border-bottom: none;
}
.shelf-sutra__table tbody tr:nth-child(even) {
  background-color: rgba(236, 253, 245, 0.3);
}
.shelf-sutra__table td {
  padding: 0.75rem 1rem;
  color: #333;
  font-size: 0.9rem;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .shelf-sutra__table td {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

.news-contact-section {
  padding: 2.5rem 20px;
}
@media screen and (min-width: 1024px) {
  .news-contact-section {
    padding: 4rem 32px;
  }
}
.news-contact-section__header {
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .news-contact-section__header {
    margin-bottom: 3rem;
  }
}
.news-contact-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #065f46;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .news-contact-section__title {
    font-size: 2rem;
  }
}
.news-contact-section__subtitle {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .news-contact-section__subtitle {
    font-size: 1.125rem;
  }
}
.news-contact-section__methods {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .news-contact-section__methods {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.contact-method {
  background: #ffffff;
  border: 1px solid #d1fae5;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}
.contact-method:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.contact-method__icon {
  font-size: 2rem;
}
.contact-method__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #065f46;
  margin: 0 0 0.5rem 0;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .contact-method__title {
    font-size: 1.25rem;
  }
}
.contact-method__value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #047857;
  margin: 0.5rem 0;
}
@media screen and (min-width: 1024px) {
  .contact-method__value {
    font-size: 1.25rem;
  }
}
.contact-method__description {
  font-size: 0.9rem;
  color: #333;
  margin: 0.5rem 0;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .contact-method__description {
    font-size: 1rem;
  }
}
.contact-method__note {
  font-size: 0.875rem;
  color: #6c757d;
  margin: 0.5rem 0 1rem 0;
}
@media screen and (min-width: 1024px) {
  .contact-method__note {
    font-size: 0.95rem;
  }
}
.contact-method__button {
  display: inline-block;
  background-color: #047857;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 1.5rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  min-width: 120px;
}
.contact-method__button:hover {
  background-color: #065f46;
  transform: translateY(-2px);
  text-decoration: none;
  color: #ffffff;
}
.contact-method__button:focus {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}

/* スマートフォン対応 (320px - 768px) */
@media screen and (max-width: 768px) {
  .annual-events,
  .service-announcements,
  .shelf-sutra,
  .contact-section {
    padding: 2rem 20px;
  }
  .annual-events__grid,
  .service-announcements__grid {
    grid-template-columns: 1fr;
  }
  .contact-section__methods {
    grid-template-columns: 1fr;
  }
  .shelf-sutra__table th,
  .shelf-sutra__table td {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }
}
/* 小さなスマートフォン対応 (320px - 480px) */
@media screen and (max-width: 480px) {
  .annual-events__title,
  .service-announcements__title,
  .shelf-sutra__title,
  .contact-section__title {
    font-size: 1.25rem;
  }
  .news-container {
    padding: 0 1rem;
  }
}
.annual-events__card:focus-within,
.service-card:focus-within,
.contact-method:focus-within {
  outline: 2px solid #047857;
  outline-offset: 2px;
}

@media (prefers-contrast: high) {
  .annual-events__card,
  .service-card,
  .contact-method,
  .shelf-sutra__table {
    border: 2px solid #333;
  }
  .annual-events__date {
    background: #333;
    border: 2px solid #333;
  }
}
@media (prefers-reduced-motion: reduce) {
  .annual-events__card,
  .service-card,
  .contact-method {
    transition: none;
  }
  .annual-events__card:hover,
  .service-card:hover,
  .contact-method:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
}
@media print {
  .annual-events__card,
  .service-card,
  .contact-method {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
    margin-bottom: 1rem;
  }
  .contact-method__button {
    display: none;
  }
}
@media (hover: none) and (pointer: coarse) {
  .annual-events__card:hover,
  .service-card:hover,
  .contact-method:hover {
    transform: none;
  }
}
.news-contact-section__header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  gap: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .news-contact-section__header {
    margin-bottom: 3rem;
  }
}
.news-contact-section__icon {
  font-size: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .news-contact-section__icon {
    font-size: 1.75rem;
  }
}
.news-contact-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #065f46;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .news-contact-section__title {
    font-size: 2rem;
  }
}
.news-contact-section__content {
  max-width: 800px;
  margin: 0 auto;
}
.news-contact-section__description {
  text-align: center;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .news-contact-section__description {
    font-size: 1.125rem;
    margin-bottom: 3rem;
  }
}
.news-contact-section__methods {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .news-contact-section__methods {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }
}
.news-contact-section__notice {
  background-color: #ecfdf5;
  border: 1px solid #d1fae5;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .news-contact-section__notice {
    padding: 2rem;
  }
}
.news-contact-section__notice-text {
  color: #065f46;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .news-contact-section__notice-text {
    font-size: 1rem;
  }
}
.news-contact-section__notice-text strong {
  font-weight: 700;
}

.contact-method {
  background: #ffffff;
  border: 1px solid #d1fae5;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}
.contact-method:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.contact-method__info {
  padding: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .contact-method__info {
    padding: 2rem;
  }
}
.contact-method__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #065f46;
  margin: 0 0 1rem 0;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .contact-method__title {
    font-size: 1.25rem;
  }
}
.contact-method__detail {
  font-size: 1.25rem;
  font-weight: 700;
  color: #047857;
  margin: 0 0 0.5rem 0;
}
@media screen and (min-width: 1024px) {
  .contact-method__detail {
    font-size: 1.5rem;
  }
}
.contact-method__hours {
  font-size: 0.875rem;
  color: #333;
  margin: 0 0 1.5rem 0;
}
@media screen and (min-width: 1024px) {
  .contact-method__hours {
    font-size: 0.9rem;
  }
}
.contact-method__action {
  padding: 0 1.5rem 1.5rem 1.5rem;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .contact-method__action {
    padding: 0 2rem 2rem 2rem;
  }
}
.contact-method__button {
  display: inline-block;
  background-color: #047857;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  min-width: 180px;
}
@media screen and (min-width: 1024px) {
  .contact-method__button {
    font-size: 1rem;
    min-width: 200px;
  }
}
.contact-method__button:hover {
  background-color: #065f46;
  transform: translateY(-2px);
  text-decoration: none;
  color: #ffffff;
}
.contact-method__button:focus {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}

/* スマートフォン対応 (320px - 768px) */
@media screen and (max-width: 768px) {
  .contact-method__info {
    padding: 1.25rem;
  }
  .contact-method__action {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }
  .contact-section__notice {
    padding: 1.25rem;
  }
}
/* 小さなスマートフォン対応 (320px - 480px) */
@media screen and (max-width: 480px) {
  .contact-section__title {
    font-size: 1.25rem;
  }
  .contact-section__methods {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .contact-method__button {
    min-width: 160px;
    font-size: 0.85rem;
  }
}
.contact-method:focus-within {
  outline: 2px solid #047857;
  outline-offset: 2px;
}

@media (prefers-contrast: high) {
  .contact-method,
  .contact-section__notice {
    border: 2px solid #333;
  }
  .contact-method__button {
    background: #333;
    border: 2px solid #333;
  }
}
@media (prefers-reduced-motion: reduce) {
  .contact-method,
  .contact-method__button {
    transition: none;
  }
  .contact-method:hover,
  .contact-method__button:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
}
@media print {
  .contact-method {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
    margin-bottom: 1rem;
  }
  .contact-method__action {
    display: none;
  }
}
@media (hover: none) and (pointer: coarse) {
  .contact-method:hover {
    transform: none;
  }
  .contact-method__button {
    min-height: 44px;
  }
  .contact-method__button:hover {
    transform: none;
  }
}
.special-events {
  padding: 2.5rem 1.25rem;
}
@media screen and (min-width: 1024px) {
  .special-events {
    padding: 4rem 2rem;
    max-width: 1040px;
    margin: 0 auto;
  }
}
.special-events__header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  gap: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .special-events__header {
    margin-bottom: 3rem;
  }
}
.special-events__icon {
  font-size: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .special-events__icon {
    font-size: 1.75rem;
  }
}
.special-events__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #065f46;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .special-events__title {
    font-size: 2rem;
  }
}
.special-events__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .special-events__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .special-events__grid {
    gap: 2rem;
  }
}

.special-event-card {
  background: #ffffff;
  border: 1px solid #d1fae5;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}
.special-event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.special-event-card__header {
  background-color: #ecfdf5;
  padding: 1rem;
}
@media screen and (min-width: 1024px) {
  .special-event-card__header {
    padding: 1.5rem;
  }
}
.special-event-card__date {
  display: inline-block;
  background-color: #047857;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .special-event-card__date {
    font-size: 0.95rem;
  }
}
.special-event-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #065f46;
  margin: 0;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .special-event-card__name {
    font-size: 1.25rem;
  }
}
.special-event-card__content {
  padding: 1rem;
}
@media screen and (min-width: 1024px) {
  .special-event-card__content {
    padding: 1.5rem;
  }
}
.special-event-card__details {
  margin: 0;
}
.special-event-card__detail {
  color: #333;
  line-height: 1.6;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}
@media screen and (min-width: 1024px) {
  .special-event-card__detail {
    font-size: 1rem;
  }
}
.special-event-card__detail:last-child {
  margin-bottom: 0;
}

/* スマートフォン対応 (320px - 768px) */
@media screen and (max-width: 768px) {
  .special-event-card__header {
    padding: 0.875rem;
  }
  .special-event-card__content {
    padding: 0.875rem;
  }
}
/* 小さなスマートフォン対応 (320px - 480px) */
@media screen and (max-width: 480px) {
  .special-events__title {
    font-size: 1.25rem;
  }
  .special-events__grid {
    grid-template-columns: 1fr;
  }
  .special-event-card__name {
    font-size: 1rem;
  }
  .special-event-card__detail {
    font-size: 0.85rem;
  }
}
.special-event-card:focus-within {
  outline: 2px solid #047857;
  outline-offset: 2px;
}

@media (prefers-contrast: high) {
  .special-event-card {
    border: 2px solid #333;
  }
  .special-event-card__date {
    background: #333;
    border: 2px solid #333;
  }
}
@media (prefers-reduced-motion: reduce) {
  .special-event-card {
    transition: none;
  }
  .special-event-card:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
}
@media print {
  .special-event-card {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
    margin-bottom: 1rem;
  }
}
@media (hover: none) and (pointer: coarse) {
  .special-event-card:hover {
    transform: none;
  }
}
.zazen-section {
  padding: 2.5rem 20px;
}
@media screen and (min-width: 1024px) {
  .zazen-section {
    padding: 4rem 32px;
  }
}
.zazen-section__header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  gap: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .zazen-section__header {
    margin-bottom: 1.5rem;
  }
}
.zazen-section__icon {
  font-size: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .zazen-section__icon {
    font-size: 1.75rem;
  }
}
.zazen-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #065f46;
  font-family: "Noto Serif JP", serif;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .zazen-section__title {
    font-size: 2rem;
  }
}
.zazen-section__subtitle {
  text-align: center;
  font-size: 1rem;
  color: #333;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .zazen-section__subtitle {
    font-size: 1.125rem;
    margin-bottom: 3rem;
  }
}
.zazen-section__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width: 1024px) {
  .zazen-section__content {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
  }
}
.zazen-section__main {
  display: grid;
  gap: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .zazen-section__main {
    gap: 2rem;
  }
}
.zazen-section__contact {
  background: #ecfdf5;
  border: 1px solid #047857;
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  height: fit-content;
}
@media screen and (min-width: 1024px) {
  .zazen-section__contact {
    padding: 2rem;
  }
}
.zazen-section__contact-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #065f46;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .zazen-section__contact-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}
.zazen-section__contact-icon {
  font-size: 1rem;
}
@media screen and (min-width: 1024px) {
  .zazen-section__contact-icon {
    font-size: 1.25rem;
  }
}
.zazen-section__notices {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #d1fae5;
  font-size: 0.875rem;
  color: #333;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .zazen-section__notices {
    font-size: 0.9rem;
  }
}

.zazen-section__img-wrapper {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 1.5rem;
}

.zazen-section__img-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.zazen-container {
  padding: 2.5rem 20px;
  background: #ffffff;
  border: 2px solid #047857;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}
@media screen and (min-width: 1024px) {
  .zazen-container {
    padding: 4rem 32px;
  }
}

.zazen-schedule {
  background: #ecfdf5;
  border: 1px solid #d1fae5;
  border-radius: 0.75rem;
  padding: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .zazen-schedule {
    padding: 2rem;
  }
}
.zazen-schedule__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #065f46;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .zazen-schedule__title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}
.zazen-schedule__icon {
  font-size: 1rem;
}
@media screen and (min-width: 1024px) {
  .zazen-schedule__icon {
    font-size: 1.25rem;
  }
}
.zazen-schedule__dates {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .zazen-schedule__dates {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1024px) {
  .zazen-schedule__dates {
    gap: 1rem;
    margin-bottom: 1.5rem;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.zazen-schedule__date-item {
  background: #ffffff;
  border: 1px solid #d1fae5;
  border-radius: 0.5rem;
  padding: 0.75rem;
  text-align: center;
  transition: all 0.3s ease;
}
.zazen-schedule__date-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}
@media screen and (min-width: 1024px) {
  .zazen-schedule__date-item {
    padding: 1rem;
  }
}
.zazen-schedule__date {
  display: block;
  font-weight: 700;
  color: #065f46;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}
@media screen and (min-width: 1024px) {
  .zazen-schedule__date {
    font-size: 1rem;
  }
}
.zazen-schedule__time {
  font-size: 0.875rem;
  color: #333;
}
@media screen and (min-width: 1024px) {
  .zazen-schedule__time {
    font-size: 0.9rem;
  }
}
.zazen-schedule__note {
  text-align: center;
  font-size: 0.875rem;
  color: #ef4444;
  font-weight: 500;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .zazen-schedule__note {
    font-size: 0.9rem;
  }
}

.zazen-details {
  background: #ecfdf5;
  border: 1px solid #d1fae5;
  border-radius: 0.75rem;
  padding: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .zazen-details {
    padding: 2rem;
  }
}
.zazen-details__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #065f46;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .zazen-details__title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}
.zazen-details__icon {
  font-size: 1rem;
}
@media screen and (min-width: 1024px) {
  .zazen-details__icon {
    font-size: 1.25rem;
  }
}
.zazen-details__program {
  background: #ffffff;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #d1fae5;
  line-height: 1.8;
  font-size: 0.9rem;
}
@media screen and (min-width: 1024px) {
  .zazen-details__program {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }
}
.zazen-details__duration {
  color: #065f46;
  font-weight: 700;
}
.zazen-details__info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .zazen-details__info {
    gap: 1.5rem;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.zazen-details__info-item {
  background: #ffffff;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #d1fae5;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .zazen-details__info-item {
    padding: 1rem;
  }
}
.zazen-details__info-item h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #065f46;
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 1024px) {
  .zazen-details__info-item h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
}
.zazen-details__info-item p {
  font-size: 0.875rem;
  color: #333;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .zazen-details__info-item p {
    font-size: 0.9rem;
  }
}

.zazen-contact-methods {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .zazen-contact-methods {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1024px) {
  .zazen-contact-methods {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    grid-template-columns: 1fr;
  }
}

.zazen-contact-item {
  background: #ffffff;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #d1fae5;
  transition: all 0.3s ease;
}
.zazen-contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 1024px) {
  .zazen-contact-item {
    padding: 1.5rem;
  }
}
.zazen-contact-item__value {
  font-weight: 700;
  color: #065f46;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 1024px) {
  .zazen-contact-item__value {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
}
.zazen-contact-item__note {
  font-size: 0.875rem;
  color: #333;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .zazen-contact-item__note {
    font-size: 0.9rem;
  }
}

/* スマートフォン対応 (320px - 768px) */
@media screen and (max-width: 768px) {
  .zazen-section {
    padding: 2rem 1.25rem;
    margin-bottom: 2rem;
  }
  .zazen-section__content {
    gap: 1.5rem;
  }
  .zazen-section__main {
    gap: 1.25rem;
  }
  .zazen-container {
    padding: 2rem 0.75rem;
    margin-bottom: 2rem;
  }
  .zazen-schedule {
    padding: 1.25rem;
  }
  .zazen-schedule__dates {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .zazen-details {
    padding: 1.25rem;
  }
  .zazen-details__info {
    grid-template-columns: 1fr;
  }
}
/* 小さなスマートフォン対応 (320px - 480px) */
@media screen and (max-width: 480px) {
  .zazen-section__title {
    font-size: 1.25rem;
  }
  .zazen-schedule__title,
  .zazen-schedule .zazen-details__title {
    font-size: 1rem;
  }
  .zazen-schedule__date-item {
    padding: 0.5rem;
  }
  .zazen-details__program {
    padding: 0.75rem;
    font-size: 0.85rem;
  }
  .zazen-details__info-item {
    padding: 0.5rem;
  }
  .zazen-details__info-item h4 {
    font-size: 0.8rem;
  }
  .zazen-details__info-item p {
    font-size: 0.8rem;
  }
  .zazen-contact-item {
    padding: 0.75rem;
  }
  .zazen-contact-item__value {
    font-size: 0.9rem;
  }
  .zazen-contact-item__note {
    font-size: 0.8rem;
  }
}
.zazen-section:focus-within,
.zazen-schedule__date-item:focus-within,
.zazen-contact-item:focus-within {
  outline: 2px solid #047857;
  outline-offset: 2px;
}

@media (prefers-contrast: high) {
  .zazen-section,
  .zazen-schedule,
  .zazen-details,
  .zazen-contact-item {
    border: 2px solid #333;
  }
}
@media (prefers-reduced-motion: reduce) {
  .zazen-schedule__date-item,
  .zazen-contact-item {
    transition: none;
  }
  .zazen-schedule__date-item:hover,
  .zazen-contact-item:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
}
@media print {
  .zazen-section {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
    margin-bottom: 1rem;
  }
}
@media (hover: none) and (pointer: coarse) {
  .zazen-schedule__date-item:hover,
  .zazen-contact-item:hover {
    transform: none;
  }
}
.access-hero {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .access-hero {
    height: 400px;
  }
}
.access-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
}
.access-hero__background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #047857;
}
.access-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.access-hero__content {
  position: relative;
  z-index: 20;
  text-align: center;
  color: #ffffff;
  padding: 0 20px;
}
@media screen and (min-width: 1024px) {
  .access-hero__content {
    padding: 0 32px;
  }
}
.access-hero__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-family: "Noto Serif JP", serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 1024px) {
  .access-hero__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}
.access-hero__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 1024px) {
  .access-hero__subtitle {
    font-size: 1.25rem;
  }
}

.location-info {
  padding: 2.5rem 0;
  background: #ffffff;
}
@media screen and (min-width: 1024px) {
  .location-info {
    padding: 4rem 0;
  }
}
.location-info__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 1024px) {
  .location-info__container {
    padding: 0 32px;
  }
}
.location-info__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}
@media screen and (min-width: 1024px) {
  .location-info__grid {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 4rem;
  }
}
.location-info__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #065f46;
  margin-bottom: 1.5rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .location-info__title {
    font-size: 1.5rem;
  }
}

.location-card {
  background: #ffffff;
  border: 1px solid #d1fae5;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.location-card__header {
  background-color: #ecfdf5;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .location-card__header {
    padding: 1.5rem;
  }
}
.location-card__icon {
  font-size: 1.25rem;
  color: #047857;
}
.location-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #065f46;
  margin: 0;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .location-card__name {
    font-size: 1.25rem;
  }
}
.location-card__content {
  padding: 1rem;
}
@media screen and (min-width: 1024px) {
  .location-card__content {
    padding: 1.5rem;
  }
}
.location-card__postal {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .location-card__postal {
    font-size: 1.125rem;
  }
}
.location-card__address {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1rem;
}
@media screen and (min-width: 1024px) {
  .location-card__address {
    font-size: 1.125rem;
  }
}
.location-card__note {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
}
@media screen and (min-width: 1024px) {
  .location-card__note {
    font-size: 0.95rem;
  }
}

.map-card {
  background: #ffffff;
  border: 1px solid #d1fae5;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.map-card__content {
  padding: 0;
}

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

.map-placeholder {
  background-color: #e5e7eb;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.map-placeholder__icon {
  font-size: 3rem;
  color: #6b7280;
  margin-bottom: 1rem;
}
.map-placeholder__text {
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.map-placeholder__note {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
}

.transportation {
  margin-bottom: 3rem;
}
@media screen and (min-width: 1024px) {
  .transportation {
    margin-bottom: 4rem;
  }
}
.transportation__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #065f46;
  margin-bottom: 1.5rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .transportation__title {
    font-size: 1.5rem;
  }
}
.transportation__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .transportation__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .transportation__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.transport-card {
  background: #ffffff;
  border: 1px solid #d1fae5;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}
.transport-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.transport-card__header {
  background-color: #ecfdf5;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .transport-card__header {
    padding: 1.5rem;
  }
}
.transport-card__icon {
  font-size: 1.25rem;
  color: #047857;
}
.transport-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #065f46;
  margin: 0;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .transport-card__title {
    font-size: 1.25rem;
  }
}
.transport-card__content {
  padding: 1rem;
}
@media screen and (min-width: 1024px) {
  .transport-card__content {
    padding: 1.5rem;
  }
}
.transport-card__routes {
  list-style: none;
  padding: 0;
  margin: 0;
}
.transport-card__route {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.75rem;
  color: #333;
  line-height: 1.6;
  font-size: 0.875rem;
}
@media screen and (min-width: 1024px) {
  .transport-card__route {
    font-size: 0.95rem;
  }
}
.transport-card__route::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #047857;
  font-weight: bold;
}
.transport-card__route:last-child {
  margin-bottom: 0;
}

.parking-map {
  text-decoration: underline;
  color: initial;
}

.transport-card__route.parking::before {
  content: none;
}

.visit-info {
  margin-bottom: 3rem;
}
@media screen and (min-width: 1024px) {
  .visit-info {
    margin-bottom: 4rem;
  }
}
.visit-info__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #065f46;
  margin-bottom: 1.5rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .visit-info__title {
    font-size: 1.5rem;
  }
}
.visit-info__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .visit-info__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .visit-info__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.visit-card {
  background: #ffffff;
  border: 1px solid #d1fae5;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}
.visit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.visit-card__header {
  background-color: #ecfdf5;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .visit-card__header {
    padding: 1.5rem;
  }
}
.visit-card__icon {
  font-size: 1.25rem;
  color: #047857;
}
.visit-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #065f46;
  margin: 0;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .visit-card__title {
    font-size: 1.25rem;
  }
}
.visit-card__content {
  padding: 1rem;
}
@media screen and (min-width: 1024px) {
  .visit-card__content {
    padding: 1.5rem;
  }
}
.visit-card__main {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .visit-card__main {
    font-size: 1.125rem;
  }
}
.visit-card__note {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
}
@media screen and (min-width: 1024px) {
  .visit-card__note {
    font-size: 0.95rem;
  }
}

.access-notes {
  margin-bottom: 3rem;
}
@media screen and (min-width: 1024px) {
  .access-notes {
    margin-bottom: 4rem;
  }
}
.access-notes__card {
  background: #ecfdf5;
  border: 1px solid #d1fae5;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.access-notes__card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #065f46;
  margin: 0;
  padding: 1.5rem;
  background-color: #ecfdf5;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .access-notes__card-title {
    font-size: 1.25rem;
  }
}
.access-notes__content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 1024px) {
  .access-notes__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.access-notes__section-title {
  font-size: 1rem;
  font-weight: 700;
  color: #065f46;
  margin-bottom: 0.75rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .access-notes__section-title {
    font-size: 1.125rem;
  }
}
.access-notes__list {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0;
}
.access-notes__item {
  color: #333;
  line-height: 1.6;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 1024px) {
  .access-notes__item {
    font-size: 0.95rem;
  }
}
.access-notes__item:last-child {
  margin-bottom: 0;
}

.contact-actions {
  text-align: center;
}
.contact-actions__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .contact-actions__buttons {
    flex-direction: row;
    justify-content: center;
  }
}
.contact-actions__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  min-width: 200px;
}
@media (max-width: 479px) {
  .contact-actions__button {
    width: 100%;
    max-width: 280px;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  min-height: 44px;
  margin-top: 1.25rem;
}
.button--primary {
  background-color: #047857;
  color: #ffffff;
}
.button--primary:hover {
  background-color: #065f46;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(4, 120, 87, 0.3);
}
.button--primary:focus {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}
.button--outline {
  border: 1px solid #047857;
  color: #047857;
  background-color: transparent;
}
.button--outline:hover {
  background-color: #ecfdf5;
  border-color: #065f46;
  color: #065f46;
}
.button--outline:focus {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}
.button__icon {
  font-size: 1rem;
}

/* スマートフォン対応 (320px - 768px) */
@media screen and (max-width: 768px) {
  .access-hero {
    height: 250px;
  }
  .access-hero__title {
    font-size: 1.5rem;
  }
  .access-hero__subtitle {
    font-size: 0.9rem;
  }
  .location-info {
    padding: 2rem 0;
  }
  .location-info__grid {
    margin-bottom: 2.5rem;
  }
  .transportation,
  .visit-info,
  .access-notes {
    margin-bottom: 2.5rem;
  }
  .location-card__header,
  .transport-card__header,
  .visit-card__header {
    padding: 0.875rem;
  }
  .location-card__content,
  .transport-card__content,
  .visit-card__content {
    padding: 0.875rem;
  }
  .access-notes__card-title {
    padding: 1rem;
  }
  .access-notes__content {
    padding: 0 1rem 1rem 1rem;
  }
}
/* 小さなスマートフォン対応 (320px - 480px) */
@media screen and (max-width: 480px) {
  .access-hero {
    height: 220px;
  }
  .access-hero__title {
    font-size: 1.25rem;
  }
  .location-info__title,
  .transportation__title,
  .visit-info__title {
    font-size: 1.125rem;
  }
  .transportation__grid,
  .visit-info__grid {
    grid-template-columns: 1fr;
  }
  .access-notes__content {
    grid-template-columns: 1fr;
  }
}
.location-card:focus-within,
.transport-card:focus-within,
.visit-card:focus-within,
.access-notes__card:focus-within {
  outline: 2px solid #047857;
  outline-offset: 2px;
}

.contact-actions__button:focus,
.button:focus {
  outline: 2px solid #047857;
  outline-offset: 2px;
}

@media (prefers-contrast: high) {
  .location-card,
  .transport-card,
  .visit-card,
  .access-notes__card {
    border: 2px solid #333;
  }
  .button--primary {
    background: #333;
    border: 2px solid #333;
  }
  .button--outline {
    border: 2px solid #333;
    color: #333;
  }
}
@media (prefers-reduced-motion: reduce) {
  .transport-card,
  .visit-card,
  .button {
    transition: none;
  }
  .transport-card:hover,
  .visit-card:hover,
  .button:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
}
@media print {
  .access-hero {
    height: auto;
    padding: 2rem 0;
  }
  .access-hero__background, .access-hero__overlay {
    display: none;
  }
  .access-hero__content {
    color: #333;
  }
  .contact-actions {
    display: none;
  }
  .location-card,
  .transport-card,
  .visit-card,
  .access-notes__card {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
    margin-bottom: 1rem;
  }
  .map-placeholder {
    background: #f5f5f5;
    border: 1px solid #ccc;
  }
}
@media (hover: none) and (pointer: coarse) {
  .button {
    min-height: 44px;
  }
  .button:hover {
    transform: none;
    box-shadow: none;
  }
  .transport-card:hover,
  .visit-card:hover {
    transform: none;
  }
}
.contact-hero {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .contact-hero {
    height: 400px;
  }
}
.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
}
.contact-hero__background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #047857;
}
.contact-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.contact-hero__content {
  position: relative;
  z-index: 20;
  text-align: center;
  color: #ffffff;
  padding: 0 20px;
}
@media screen and (min-width: 1024px) {
  .contact-hero__content {
    padding: 0 32px;
  }
}
.contact-hero__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-family: "Noto Serif JP", serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 1024px) {
  .contact-hero__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}
.contact-hero__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 1024px) {
  .contact-hero__subtitle {
    font-size: 1.25rem;
  }
}

.contact-form-section {
  padding: 2.5rem 0;
  background: #ffffff;
}
@media screen and (min-width: 1024px) {
  .contact-form-section {
    padding: 4rem 0;
  }
}
.contact-form-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 1024px) {
  .contact-form-section__container {
    padding: 0 32px;
  }
}

.contact-form {
  margin-bottom: 3rem;
}
@media screen and (min-width: 1024px) {
  .contact-form {
    margin-bottom: 4rem;
  }
}
.contact-form__header {
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .contact-form__header {
    margin-bottom: 3rem;
  }
}
.contact-form__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #065f46;
  margin-bottom: 1rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .contact-form__title {
    font-size: 2rem;
  }
}
.contact-form__description {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .contact-form__description {
    font-size: 1.125rem;
  }
}
.contact-form__wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #d1fae5;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 1024px) {
  .contact-form__wrapper {
    padding: 2rem;
  }
}

.cf7-form-wrapper .cf7-field-group {
  margin-bottom: 1.5rem;
}
.cf7-form-wrapper .cf7-field-group:last-of-type:not(.cf7-submit-wrapper) {
  margin-bottom: 2rem;
}
.cf7-form-wrapper .cf7-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #065f46;
  margin-bottom: 0.5rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .cf7-form-wrapper .cf7-label {
    font-size: 1rem;
  }
}
.cf7-form-wrapper .cf7-required {
  color: #dc3545;
  font-weight: 700;
}
.cf7-form-wrapper .cf7-input,
.cf7-form-wrapper .cf7-select,
.cf7-form-wrapper .cf7-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #ffffff;
}
.cf7-form-wrapper .cf7-input:focus,
.cf7-form-wrapper .cf7-select:focus,
.cf7-form-wrapper .cf7-textarea:focus {
  outline: none;
  border-color: #047857;
  box-shadow: 0 0 0 2px rgba(4, 120, 87, 0.1);
}
.cf7-form-wrapper .cf7-input::placeholder,
.cf7-form-wrapper .cf7-select::placeholder,
.cf7-form-wrapper .cf7-textarea::placeholder {
  color: #6b7280;
  font-size: 0.9rem;
}
.cf7-form-wrapper .cf7-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.cf7-form-wrapper .cf7-section-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #065f46;
  margin: 2rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #d1fae5;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .cf7-form-wrapper .cf7-section-title {
    font-size: 1.25rem;
  }
}
.cf7-form-wrapper .cf7-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.cf7-form-wrapper .cf7-checkbox {
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.cf7-form-wrapper .cf7-checkbox-label {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #333;
}
@media screen and (min-width: 1024px) {
  .cf7-form-wrapper .cf7-checkbox-label {
    font-size: 1rem;
  }
}
.cf7-form-wrapper .cf7-checkbox-label a {
  color: #047857;
  text-decoration: underline;
}
.cf7-form-wrapper .cf7-checkbox-label a:hover {
  color: #065f46;
}
.cf7-form-wrapper .cf7-submit-wrapper {
  text-align: center;
  margin-top: 2rem;
}
.cf7-form-wrapper .cf7-submit {
  background-color: #047857;
  color: #ffffff;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
  min-width: 160px;
}
.cf7-form-wrapper .cf7-submit:hover {
  background-color: #065f46;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(4, 120, 87, 0.3);
}
.cf7-form-wrapper .cf7-submit:focus {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}
.cf7-form-wrapper .cf7-submit:disabled {
  background-color: #e5e7eb;
  color: #6b7280;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.cf7-form-wrapper .wpcf7-response-output {
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 0.375rem;
  font-size: 0.9rem;
  line-height: 1.5;
}
.cf7-form-wrapper .wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}
.cf7-form-wrapper .wpcf7-response-output.wpcf7-mail-sent-ng, .cf7-form-wrapper .wpcf7-response-output.wpcf7-aborted {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}
.cf7-form-wrapper .wpcf7-response-output.wpcf7-spam-blocked {
  background-color: #fff3cd;
  border: 1px solid #ffeaa7;
  color: #856404;
}
.cf7-form-wrapper .wpcf7-not-valid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1) !important;
}
.cf7-form-wrapper .wpcf7-not-valid-tip {
  font-size: 0.8rem;
  color: #dc3545;
  margin-top: 0.25rem;
  display: block;
}

.contact-info {
  margin-bottom: 3rem;
}
@media screen and (min-width: 1024px) {
  .contact-info {
    margin-bottom: 4rem;
  }
}
.contact-info__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #065f46;
  text-align: center;
  margin-bottom: 2rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .contact-info__title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}
.contact-info__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 1024px) {
  .contact-info__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.contact-method {
  background: #ffffff;
  border: 1px solid #d1fae5;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}
.contact-method:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.contact-method__header {
  background-color: #ecfdf5;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .contact-method__header {
    padding: 1.5rem;
  }
}
.contact-method__icon {
  font-size: 1.25rem;
  color: #047857;
}
.contact-method__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #065f46;
  margin: 0;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .contact-method__title {
    font-size: 1.25rem;
  }
}
.contact-method__content {
  padding: 1rem;
}
@media screen and (min-width: 1024px) {
  .contact-method__content {
    padding: 1.5rem;
  }
}
.contact-method__main {
  font-size: 1.125rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .contact-method__main {
    font-size: 1.25rem;
  }
}
.contact-method__time {
  font-size: 0.9rem;
  color: #047857;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .contact-method__time {
    font-size: 1rem;
  }
}
.contact-method__address {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .contact-method__address {
    font-size: 1.125rem;
  }
}
.contact-method__note {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 1rem;
}
@media screen and (min-width: 1024px) {
  .contact-method__note {
    font-size: 0.95rem;
  }
}
.contact-method__action {
  margin-top: 1rem;
  text-align: center;
}

.faq-section {
  margin-bottom: 3rem;
}
@media screen and (min-width: 1024px) {
  .faq-section {
    margin-bottom: 4rem;
  }
}
.faq-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #065f46;
  text-align: center;
  margin-bottom: 2rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .faq-section__title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}
.faq-section__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 1024px) {
  .faq-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.faq-item {
  background: #ffffff;
  border: 1px solid #d1fae5;
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .faq-item {
    padding: 1.5rem;
  }
}
.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.faq-item__question {
  font-size: 1rem;
  font-weight: 700;
  color: #065f46;
  margin-bottom: 0.75rem;
  line-height: 1.5;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .faq-item__question {
    font-size: 1.125rem;
  }
}
.faq-item__answer {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.6;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .faq-item__answer {
    font-size: 1rem;
  }
}

.contact-notice__card {
  background: #ecfdf5;
  border: 1px solid #d1fae5;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.contact-notice__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #065f46;
  margin: 0;
  padding: 1.5rem;
  background-color: #ecfdf5;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .contact-notice__title {
    font-size: 1.25rem;
  }
}
.contact-notice__content {
  padding: 0 1.5rem 1.5rem 1.5rem;
}
.contact-notice__list {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0;
}
.contact-notice__item {
  color: #333;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 1024px) {
  .contact-notice__item {
    font-size: 0.95rem;
  }
}
.contact-notice__item:last-child {
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  min-height: 44px;
}
.button--primary {
  background-color: #047857;
  color: #ffffff;
}
.button--primary:hover {
  background-color: #065f46;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(4, 120, 87, 0.3);
}
.button--primary:focus {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}
.button--outline {
  border: 1px solid #047857;
  color: #047857;
  background-color: transparent;
}
.button--outline:hover {
  background-color: #ecfdf5;
  border-color: #065f46;
  color: #065f46;
}
.button--outline:focus {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}
.button__icon {
  font-size: 1rem;
  margin-right: 0.5rem;
}

/* スマートフォン対応 (320px - 768px) */
@media screen and (max-width: 768px) {
  .contact-hero {
    height: 250px;
  }
  .contact-hero__title {
    font-size: 1.5rem;
  }
  .contact-hero__subtitle {
    font-size: 0.9rem;
  }
  .contact-form-section {
    padding: 2rem 0;
  }
  .contact-form,
  .contact-info,
  .faq-section {
    margin-bottom: 2.5rem;
  }
  .contact-form__wrapper {
    padding: 1rem;
  }
  .contact-method__header {
    padding: 0.875rem;
  }
  .contact-method__content {
    padding: 0.875rem;
  }
  .faq-item {
    padding: 0.875rem;
  }
  .contact-notice__card {
    margin-bottom: 2rem;
  }
  .contact-notice__title {
    padding: 1rem;
  }
  .contact-notice__content {
    padding: 0 1rem 1rem 1rem;
  }
}
/* 小さなスマートフォン対応 (320px - 480px) */
@media screen and (max-width: 480px) {
  .contact-hero {
    height: 220px;
  }
  .contact-hero__title {
    font-size: 1.25rem;
  }
  .contact-form__title,
  .contact-info__title,
  .faq-section__title {
    font-size: 1.25rem;
  }
  .contact-info__grid,
  .faq-section__grid {
    grid-template-columns: 1fr;
  }
  .cf7-form-wrapper .cf7-input,
  .cf7-form-wrapper .cf7-select,
  .cf7-form-wrapper .cf7-textarea {
    font-size: 16px;
  }
}
.contact-method:focus-within,
.faq-item:focus-within,
.contact-notice__card:focus-within {
  outline: 2px solid #047857;
  outline-offset: 2px;
}

.button:focus {
  outline: 2px solid #047857;
  outline-offset: 2px;
}

@media (prefers-contrast: high) {
  .contact-form__wrapper,
  .contact-method,
  .faq-item,
  .contact-notice__card {
    border: 2px solid #333;
  }
  .button--primary,
  .cf7-submit {
    background: #333;
    border: 2px solid #333;
  }
  .button--outline {
    border: 2px solid #333;
    color: #333;
  }
  .cf7-input,
  .cf7-select,
  .cf7-textarea {
    border: 2px solid #333;
  }
}
@media (prefers-reduced-motion: reduce) {
  .contact-method,
  .faq-item,
  .button,
  .cf7-submit {
    transition: none;
  }
  .contact-method:hover,
  .faq-item:hover,
  .button:hover,
  .cf7-submit:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
}
@media print {
  .contact-hero {
    height: auto;
    padding: 2rem 0;
  }
  .contact-hero__background, .contact-hero__overlay {
    display: none;
  }
  .contact-hero__content {
    color: #333;
  }
  .contact-method__action,
  .cf7-submit-wrapper {
    display: none;
  }
  .contact-form__wrapper,
  .contact-method,
  .faq-item,
  .contact-notice__card {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
    margin-bottom: 1rem;
  }
}
@media (hover: none) and (pointer: coarse) {
  .button,
  .cf7-submit {
    min-height: 44px;
  }
  .button:hover,
  .cf7-submit:hover {
    transform: none;
    box-shadow: none;
  }
  .contact-method:hover,
  .faq-item:hover {
    transform: none;
  }
  .cf7-input,
  .cf7-select,
  .cf7-textarea {
    font-size: 16px;
  }
}
.cf7-form-wrapper .cf7-acceptance-group {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 0.375rem;
  border: 1px solid #e9ecef;
}
.cf7-form-wrapper .wpcf7-acceptance {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.cf7-form-wrapper .wpcf7-acceptance input[type=checkbox] {
  margin: 0;
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border: 2px solid #065f46;
  border-radius: 3px;
  background-color: #ffffff;
  position: relative;
}
.cf7-form-wrapper .wpcf7-acceptance input[type=checkbox]:checked {
  background-color: #065f46;
  border-color: #065f46;
}
.cf7-form-wrapper .wpcf7-acceptance input[type=checkbox]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}
.cf7-form-wrapper .wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  cursor: pointer;
  margin: 0;
  padding-left: 10px;
}
@media (min-width: 768px) {
  .cf7-form-wrapper .wpcf7-acceptance .wpcf7-list-item-label {
    font-size: 1rem;
  }
}
.cf7-form-wrapper .wpcf7-acceptance .wpcf7-list-item-label a {
  color: #8b4513;
  text-decoration: underline;
}
.cf7-form-wrapper .wpcf7-acceptance .wpcf7-list-item-label a:hover {
  color: #654321;
}
.cf7-form-wrapper .cf7-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.cf7-form-wrapper .cf7-checkbox {
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.cf7-form-wrapper .cf7-checkbox-label {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #333;
}
@media (min-width: 768px) {
  .cf7-form-wrapper .cf7-checkbox-label {
    font-size: 1rem;
  }
}
.cf7-form-wrapper .cf7-checkbox-label a {
  color: #8b4513;
  text-decoration: underline;
}
.cf7-form-wrapper .cf7-checkbox-label a:hover {
  color: #654321;
}
.cf7-form-wrapper .cf7-required {
  color: #dc3545;
  font-weight: bold;
}
.cf7-form-wrapper .cf7-acceptance-label {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #333;
  cursor: pointer;
  display: block;
}
@media (min-width: 768px) {
  .cf7-form-wrapper .cf7-acceptance-label {
    font-size: 1rem;
  }
}
.cf7-form-wrapper .cf7-acceptance-label a {
  color: #8b4513;
  text-decoration: underline;
}
.cf7-form-wrapper .cf7-acceptance-label a:hover {
  color: #654321;
}
.cf7-form-wrapper .wpcf7-not-valid {
  border-color: #dc3545 !important;
}
.cf7-form-wrapper .wpcf7-not-valid input[type=checkbox] {
  border-color: #dc3545 !important;
}

@media screen and (max-width: 768px) {
  .cf7-form-wrapper .cf7-acceptance-group {
    padding: 0.75rem;
  }
  .cf7-form-wrapper .wpcf7-acceptance input[type=checkbox] {
    width: 20px;
    height: 20px;
    margin-top: 0.125rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cf7-form-wrapper .wpcf7-acceptance input[type=checkbox] {
    transition: none;
  }
}
@media (prefers-contrast: high) {
  .cf7-form-wrapper .wpcf7-acceptance input[type=checkbox] {
    border: 3px solid #000;
  }
  .cf7-form-wrapper .wpcf7-acceptance input[type=checkbox]:checked {
    background-color: #000;
    border-color: #000;
  }
}
/* ===================================
   プライバシーポリシーページ専用スタイル
=================================== */
.p-privacy-policy {
  padding: 60px 0;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .p-privacy-policy {
    padding: 2.5rem 0;
  }
}
.p-privacy-policy__header {
  text-align: center;
  margin-bottom: 3.125rem;
}
@media (max-width: 768px) {
  .p-privacy-policy__header {
    margin-bottom: 1.875rem;
  }
}
.p-privacy-policy__title {
  font-size: 2.5rem;
  color: #065f46;
  margin-bottom: 1.25rem;
  font-weight: 600;
  position: relative;
}
@media (max-width: 768px) {
  .p-privacy-policy__title {
    font-size: 2rem;
    margin-bottom: 0.9375rem;
  }
}
.p-privacy-policy__intro {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-privacy-policy__intro {
    font-size: 1rem;
    padding: 0 1.25rem;
  }
}
.p-privacy-policy__content {
  max-width: 900px;
  margin: 0 auto;
}
.p-privacy-policy__section {
  padding: 1.875rem;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .p-privacy-policy__section {
    margin-bottom: 30px;
    padding: 20px 15px;
  }
}
.p-privacy-policy__section:last-of-type {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .p-privacy-policy__section:last-of-type {
    margin-bottom: 30px;
  }
}
.p-privacy-policy__section-title {
  font-size: 1.3rem;
  color: #065f46;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .p-privacy-policy__section-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
}
.p-privacy-policy__text {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .p-privacy-policy__text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}
.p-privacy-policy__footer {
  max-width: 900px;
  margin: 60px auto 0;
  padding: 40px;
  background-color: #f9f9f9;
  border-radius: 8px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-privacy-policy__footer {
    margin: 40px auto 0;
    padding: 30px 20px;
  }
}
.p-privacy-policy__date {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .p-privacy-policy__date {
    margin-bottom: 20px;
  }
}
.p-privacy-policy__enactment {
  font-size: 1.1rem;
  color: #333;
  font-weight: 600;
}
@media (max-width: 768px) {
  .p-privacy-policy__enactment {
    font-size: 1rem;
  }
}
.p-privacy-policy__organization {
  border-top: 2px solid #e0e0e0;
  padding-top: 30px;
}
@media (max-width: 768px) {
  .p-privacy-policy__organization {
    padding-top: 20px;
  }
}
.p-privacy-policy__org-name {
  font-size: 1.4rem;
  color: #8b4513;
  margin-bottom: 20px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .p-privacy-policy__org-name {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
}
.p-privacy-policy__org-info p {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #333;
}
@media (max-width: 768px) {
  .p-privacy-policy__org-info p {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }
}
.p-privacy-policy__org-info p:last-child {
  margin-bottom: 0;
}
.p-privacy-policy__address {
  font-weight: 500;
}
.p-privacy-policy__phone, .p-privacy-policy__fax {
  font-family: "Courier New", monospace;
}
.p-privacy-policy__cta {
  max-width: 900px;
  margin: 60px auto 0;
  padding: 50px;
  background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
}
@media (max-width: 768px) {
  .p-privacy-policy__cta {
    margin: 40px auto 0;
    padding: 40px 20px;
  }
}
.p-privacy-policy__cta-title {
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .p-privacy-policy__cta-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
}
.p-privacy-policy__cta-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.95;
}
@media (max-width: 768px) {
  .p-privacy-policy__cta-text {
    font-size: 1rem;
    margin-bottom: 25px;
  }
}
.p-privacy-policy__button {
  display: inline-block;
  background-color: #ffffff;
  color: #8b4513;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .p-privacy-policy__button {
    padding: 12px 30px;
    font-size: 1rem;
  }
}
.p-privacy-policy__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  color: #8b4513;
  text-decoration: none;
}
.p-privacy-policy__button:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .privacy-policy__button {
    transition: none;
  }
  .privacy-policy__button:hover {
    transform: none;
  }
}
@media print {
  .privacy-policy__cta {
    display: none;
  }
  .privacy-policy__button {
    display: none;
  }
  .privacy-policy__section {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}
.schedule-section {
  background-color: #f0fdf4 !important;
  padding: 5rem 0 !important;
}
.schedule-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .schedule-section .container {
    padding: 0 2rem;
  }
}
.schedule-section .section-header {
  text-align: left !important;
  margin-bottom: 3rem !important;
}
.schedule-section .section-header .section-title {
  font-size: 2.25rem !important;
  color: #047857 !important;
  margin-bottom: 1rem !important;
  font-weight: 700 !important;
}
.schedule-section .section-header .section-title::before {
  content: "📅 " !important;
  margin-right: 0.5rem !important;
}
.schedule-section .schedule-list {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 1.5rem !important;
}
@media (min-width: 768px) {
  .schedule-section .schedule-list {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
  }
}
@media (min-width: 1024px) {
  .schedule-section .schedule-list {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}
.schedule-section .schedule-item {
  background-color: #ffffff !important;
  padding: 1.5rem !important;
  border-radius: 0.75rem !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
  border-top: 4px solid #047857 !important;
  transition: all 0.3s ease !important;
}
.schedule-section .schedule-item:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}
.schedule-section .schedule-item .schedule-title {
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  color: #047857 !important;
  margin-bottom: 0.5rem !important;
  line-height: 1.4 !important;
}
.schedule-section .schedule-item .schedule-date {
  font-size: 0.875rem !important;
  color: #6b7280 !important;
  font-weight: 500 !important;
  margin-bottom: 0.75rem !important;
}
.schedule-section .schedule-item .schedule-time {
  font-size: 0.875rem !important;
  color: #6b7280 !important;
  margin-bottom: 0.5rem !important;
}
.schedule-section .schedule-item .schedule-description {
  font-size: 0.875rem !important;
  color: #374151 !important;
  line-height: 1.6 !important;
}
.schedule-section .view-all-schedule {
  text-align: center !important;
  margin-top: 3rem !important;
}
.schedule-section .view-all-schedule .btn {
  display: inline-block !important;
  padding: 0.75rem 2rem !important;
  background-color: transparent !important;
  color: #047857 !important;
  border: 2px solid #047857 !important;
  border-radius: 0.5rem !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
}
.schedule-section .view-all-schedule .btn:hover {
  background-color: #047857 !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

.contact-section {
  background-color: #ffffff !important;
  padding: 5rem 0 !important;
}
.contact-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .contact-section .container {
    padding: 0 2rem;
  }
}
.contact-section .section-header {
  text-align: center !important;
  margin-bottom: 3rem !important;
}
.contact-section .section-header .section-title {
  font-size: 2.25rem !important;
  color: #047857 !important;
  margin-bottom: 1rem !important;
  font-weight: 700 !important;
}
.contact-section .contact-methods {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 2rem !important;
  margin-bottom: 3rem !important;
}
@media (min-width: 768px) {
  .contact-section .contact-methods {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
  }
}
.contact-section .contact-method {
  text-align: center !important;
  padding: 2rem !important;
  background-color: #f9fafb !important;
  border-radius: 1rem !important;
  transition: all 0.3s ease !important;
}
.contact-section .contact-method:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}
.contact-section .contact-method .contact-icon {
  width: 80px !important;
  height: 80px !important;
  margin: 0 auto 1.5rem !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 2rem !important;
}
.contact-section .contact-method .contact-icon.phone {
  background-color: #dbeafe !important;
  color: #1d4ed8 !important;
}
.contact-section .contact-method .contact-icon.line {
  background-color: #dcfce7 !important;
  color: #047857 !important;
}
.contact-section .contact-method .contact-icon.form {
  background-color: #fef3c7 !important;
  color: #d97706 !important;
}
.contact-section .contact-method .contact-title {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #047857 !important;
  margin-bottom: 0.75rem !important;
}
.contact-section .contact-method .contact-info {
  color: #6b7280 !important;
  margin-bottom: 1rem !important;
  line-height: 1.6 !important;
}
.contact-section .contact-method .contact-details {
  font-weight: 500 !important;
  color: #374151 !important;
  margin-bottom: 1.5rem !important;
  font-size: 1.125rem !important;
}
.contact-section .contact-method .contact-hours {
  font-size: 0.875rem !important;
  color: #6b7280 !important;
}
.contact-section .contact-cta {
  text-align: center !important;
}
.contact-section .contact-cta .btn {
  display: inline-block !important;
  padding: 1rem 2.5rem !important;
  background-color: #047857 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 0.5rem !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  font-size: 1.125rem !important;
  transition: all 0.3s ease !important;
}
.contact-section .contact-cta .btn:hover {
  background-color: #065f46 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(4, 120, 87, 0.3) !important;
}

.site-footer {
  padding: 3rem 0 1rem !important;
}
.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .site-footer .container {
    padding: 0 2rem;
  }
}
.site-footer .footer-content {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 2rem !important;
  margin-bottom: 2rem !important;
}
@media (min-width: 768px) {
  .site-footer .footer-content {
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 3rem !important;
  }
}
.site-footer .footer-section h3 {
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 1rem !important;
}
.site-footer .footer-section p,
.site-footer .footer-section li {
  font-size: 0.875rem !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  margin-bottom: 0.5rem !important;
}
.site-footer .footer-section a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}
.site-footer .footer-section a:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
}
.site-footer .footer-section ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.site-footer .footer-bottom {
  text-align: center !important;
  border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
  padding-top: 1rem !important;
}
.site-footer .footer-bottom p {
  font-size: 0.875rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
  margin: 0 !important;
}

@media (max-width: 767px) {
  .schedule-section,
  .contact-section {
    padding: 3rem 0 !important;
  }
  .section-title {
    font-size: 1.875rem !important;
  }
  .schedule-list {
    grid-template-columns: 1fr !important;
  }
  .contact-methods {
    grid-template-columns: 1fr !important;
  }
  .contact-method .contact-icon {
    width: 60px !important;
    height: 60px !important;
    font-size: 1.5rem !important;
  }
}
.btn {
  display: inline-block !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 0.5rem !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  text-align: center !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  border: none !important;
  font-family: inherit !important;
}
.btn.btn-primary {
  background-color: #047857 !important;
  color: #ffffff !important;
}
.btn.btn-primary:hover {
  background-color: #065f46 !important;
}
.btn.btn-secondary, .btn.btn-outline {
  background-color: transparent !important;
  color: #047857 !important;
  border: 2px solid #047857 !important;
}
.btn.btn-secondary:hover, .btn.btn-outline:hover {
  background-color: #047857 !important;
  color: #ffffff !important;
}

section {
  position: relative !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3 !important;
}

p {
  line-height: 1.6 !important;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
  .schedule-item:hover,
  .contact-method:hover,
  .btn:hover {
    transform: none !important;
  }
}
/* ベースフォント設定 - スマートフォンファースト */
body.mincho-typography {
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-size: 0.875rem;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #333;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 768px) {
  body.mincho-typography {
    font-size: 1rem;
  }
}

/* 見出しフォント - スマートフォンファースト */
.mincho-typography {
  /* 見出しサイズ設定 - スマートフォンファースト */
}
.mincho-typography h1, .mincho-typography h2, .mincho-typography h3, .mincho-typography h4, .mincho-typography h5, .mincho-typography h6,
.mincho-typography .site-title,
.mincho-typography .hero-content h1,
.mincho-typography .section-title,
.mincho-typography .card-title {
  font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #047857;
}
@media screen and (min-width: 768px) {
  .mincho-typography h1, .mincho-typography h2, .mincho-typography h3, .mincho-typography h4, .mincho-typography h5, .mincho-typography h6,
  .mincho-typography .site-title,
  .mincho-typography .hero-content h1,
  .mincho-typography .section-title,
  .mincho-typography .card-title {
    letter-spacing: 0.025em;
  }
}
.mincho-typography h1,
.mincho-typography .hero-content h1 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .mincho-typography h1,
  .mincho-typography .hero-content h1 {
    font-size: 3rem;
    letter-spacing: 0.05em;
  }
}
@media screen and (min-width: 1024px) {
  .mincho-typography h1,
  .mincho-typography .hero-content h1 {
    font-size: 3.75rem;
  }
}
.mincho-typography h2,
.mincho-typography .section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .mincho-typography h2,
  .mincho-typography .section-title {
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .mincho-typography h2,
  .mincho-typography .section-title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}
.mincho-typography h3,
.mincho-typography .card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .mincho-typography h3,
  .mincho-typography .card-title {
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
  }
}
@media screen and (min-width: 1024px) {
  .mincho-typography h3,
  .mincho-typography .card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
.mincho-typography h4 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .mincho-typography h4 {
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
  }
}
@media screen and (min-width: 1024px) {
  .mincho-typography h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
}
.mincho-typography h5 {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
}
@media screen and (min-width: 768px) {
  .mincho-typography h5 {
    font-size: 1rem;
    margin-bottom: 0.4375rem;
  }
}
@media screen and (min-width: 1024px) {
  .mincho-typography h5 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
}
.mincho-typography h6 {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
}
@media screen and (min-width: 768px) {
  .mincho-typography h6 {
    font-size: 0.9375rem;
    margin-bottom: 0.4375rem;
  }
}
@media screen and (min-width: 1024px) {
  .mincho-typography h6 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}

/* サイトタイトル - スマートフォンファースト */
.mincho-typography .site-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .mincho-typography .site-title {
    font-size: 1.125rem;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 1024px) {
  .mincho-typography .site-title {
    font-size: 1.25rem;
  }
}

/* ヒーローセクション - スマートフォンファースト */
.mincho-typography .hero-content h1 {
  font-size: clamp(1.75rem, 10vw, 2.25rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .mincho-typography .hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    letter-spacing: 0.06em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .mincho-typography .hero-content h1 {
    font-size: clamp(3rem, 8vw, 4.5rem);
    letter-spacing: 0.08em;
  }
}
.mincho-typography .hero-content .subtitle {
  font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 0.375rem;
}
@media screen and (min-width: 768px) {
  .mincho-typography .hero-content .subtitle {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .mincho-typography .hero-content .subtitle {
    font-size: 1.5rem;
  }
}
.mincho-typography .hero-content .description {
  font-size: 0.9rem;
  line-height: 1.75;
  letter-spacing: 0.015em;
  opacity: 0.95;
}
@media screen and (min-width: 768px) {
  .mincho-typography .hero-content .description {
    font-size: 1rem;
    letter-spacing: 0.02em;
  }
}
@media screen and (min-width: 1024px) {
  .mincho-typography .hero-content .description {
    font-size: 1.125rem;
  }
}

/* 本文テキスト - スマートフォンファースト */
.mincho-typography p {
  margin-bottom: 0.75rem;
  line-height: 1.75;
  letter-spacing: 0.015em;
}
@media screen and (min-width: 768px) {
  .mincho-typography p {
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
  }
}
.mincho-typography .section-description {
  font-size: 0.9rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: #6b7280;
}
@media screen and (min-width: 768px) {
  .mincho-typography .section-description {
    font-size: 1rem;
    letter-spacing: 0.025em;
  }
}
@media screen and (min-width: 1024px) {
  .mincho-typography .section-description {
    font-size: 1.125rem;
  }
}

/* リスト - スマートフォンファースト */
.mincho-typography ul, .mincho-typography ol {
  margin-bottom: 0.75rem;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .mincho-typography ul, .mincho-typography ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
  }
}
.mincho-typography li {
  margin-bottom: 0.375rem;
  line-height: 1.75;
  letter-spacing: 0.015em;
}
@media screen and (min-width: 768px) {
  .mincho-typography li {
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
  }
}

/* 引用 - スマートフォンファースト */
.mincho-typography blockquote {
  font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  border-left: 3px solid #047857;
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: #333;
  font-style: italic;
}
@media screen and (min-width: 768px) {
  .mincho-typography blockquote {
    font-size: 1rem;
    letter-spacing: 0.05em;
    border-left: 4px solid #047857;
    padding-left: 1.5rem;
    margin: 2rem 0;
  }
}
@media screen and (min-width: 1024px) {
  .mincho-typography blockquote {
    font-size: 1.125rem;
  }
}

/* ナビゲーション - スマートフォンファースト */
.mincho-typography .main-navigation a {
  font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .mincho-typography .main-navigation a {
    font-size: 0.9375rem;
    letter-spacing: 0.025em;
  }
}
@media screen and (min-width: 1024px) {
  .mincho-typography .main-navigation a {
    font-size: 1rem;
  }
}

/* ボタン - スマートフォンファースト */
.mincho-typography .btn {
  font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .mincho-typography .btn {
    font-size: 0.9375rem;
    letter-spacing: 0.025em;
  }
}
@media screen and (min-width: 1024px) {
  .mincho-typography .btn {
    font-size: 1rem;
  }
}

/* カード - スマートフォンファースト */
.mincho-typography .card-title {
  color: #047857;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .mincho-typography .card-title {
    margin-bottom: 0.625rem;
  }
}
@media screen and (min-width: 1024px) {
  .mincho-typography .card-title {
    margin-bottom: 0.75rem;
  }
}
.mincho-typography .card-content p {
  line-height: 1.75;
  color: #6b7280;
}

/* イベント情報 - スマートフォンファースト */
.mincho-typography .event-meta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.015em;
}
@media screen and (min-width: 768px) {
  .mincho-typography .event-meta {
    font-size: 0.8rem;
    letter-spacing: 0.02em;
  }
}

/* フォーム - スマートフォンファースト */
.mincho-typography .form-label {
  font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #333;
}
@media screen and (min-width: 768px) {
  .mincho-typography .form-label {
    font-size: 0.8rem;
    letter-spacing: 0.025em;
  }
}
.mincho-typography .form-input,
.mincho-typography .form-textarea,
.mincho-typography .form-select {
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.015em;
}
@media screen and (min-width: 768px) {
  .mincho-typography .form-input,
  .mincho-typography .form-textarea,
  .mincho-typography .form-select {
    font-size: 1rem;
    letter-spacing: 0.02em;
  }
}

/* フッター - スマートフォンファースト */
.mincho-typography .footer-section h3 {
  font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #047857;
}
@media screen and (min-width: 768px) {
  .mincho-typography .footer-section h3 {
    font-size: 1rem;
    letter-spacing: 0.025em;
  }
}
@media screen and (min-width: 1024px) {
  .mincho-typography .footer-section h3 {
    font-size: 1.125rem;
  }
}
.mincho-typography .footer-links a {
  font-size: 0.75rem;
  line-height: 1.75;
  letter-spacing: 0.015em;
}
@media screen and (min-width: 768px) {
  .mincho-typography .footer-links a {
    font-size: 0.8rem;
    letter-spacing: 0.02em;
  }
}

/* 特別なテキストスタイル - スマートフォンファースト */
.mincho-typography .text-traditional {
  font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #047857;
}
@media screen and (min-width: 768px) {
  .mincho-typography .text-traditional {
    letter-spacing: 0.1em;
  }
}
.mincho-typography .text-elegant {
  font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: #333;
}
@media screen and (min-width: 768px) {
  .mincho-typography .text-elegant {
    font-size: 1rem;
    letter-spacing: 0.05em;
  }
}
@media screen and (min-width: 1024px) {
  .mincho-typography .text-elegant {
    font-size: 1.125rem;
  }
}
.mincho-typography .text-ceremonial {
  font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #047857;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mincho-typography .text-ceremonial {
    font-size: 1.125rem;
    letter-spacing: 0.08em;
  }
}
@media screen and (min-width: 1024px) {
  .mincho-typography .text-ceremonial {
    font-size: 1.25rem;
  }
}

/* 縦書きテキスト（特別な場合） - スマートフォンファースト */
.mincho-typography .text-vertical {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", "MS PMincho", serif;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .mincho-typography .text-vertical {
    letter-spacing: 0.1em;
    line-height: 2;
  }
}

/* 数字の表示 - スマートフォンファースト */
.mincho-typography .number-traditional {
  font-family: "Times New Roman", "Noto Serif JP", serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .mincho-typography .number-traditional {
    letter-spacing: 0.05em;
  }
}

/* 印刷用スタイル */
@media print {
  .mincho-typography body {
    font-size: 12pt;
    line-height: 1.6;
    color: black;
  }
  .mincho-typography h1, .mincho-typography h2, .mincho-typography h3, .mincho-typography h4, .mincho-typography h5, .mincho-typography h6 {
    color: black;
    page-break-after: avoid;
  }
  .mincho-typography p {
    orphans: 3;
    widows: 3;
  }
}
/* アクセシビリティ対応 */
@media (prefers-reduced-motion: reduce) {
  .mincho-typography * {
    transition: none !important;
    animation: none !important;
  }
}
/* 高コントラスト対応 */
@media (prefers-contrast: high) {
  .mincho-typography body {
    color: #000;
  }
  .mincho-typography h1, .mincho-typography h2, .mincho-typography h3, .mincho-typography h4, .mincho-typography h5, .mincho-typography h6 {
    color: #000;
    font-weight: 700;
  }
  .mincho-typography .text-emerald {
    color: #000;
  }
}
/* フォント読み込み失敗時のフォールバック */
@font-face {
  font-family: "Fallback Mincho";
  src: local("Yu Mincho"), local("YuMincho"), local("Hiragino Mincho Pro"), local("MS PMincho");
  font-display: swap;
}
/* パフォーマンス最適化 */
.mincho-typography .font-loading {
  font-family: "Fallback Mincho", serif;
}
.mincho-typography .fonts-loaded {
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", "MS PMincho", serif;
}
.mincho-typography .fonts-loaded h1, .mincho-typography .fonts-loaded h2, .mincho-typography .fonts-loaded h3, .mincho-typography .fonts-loaded h4, .mincho-typography .fonts-loaded h5, .mincho-typography .fonts-loaded h6, .mincho-typography .fonts-loaded .site-title {
  font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", "MS PMincho", serif;
}

.hero-section {
  background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero-section .hero-content {
  text-align: center;
  color: #ffffff;
  z-index: 2;
  position: relative;
  max-width: 600px;
  padding: 0 20px;
}
@media screen and (min-width: 1024px) {
  .hero-section .hero-content {
    padding: 0 32px;
  }
}
.hero-section .hero-content h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.05em;
  font-family: "Noto Serif JP", serif;
}
.hero-section .hero-content .subtitle {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  font-weight: 400;
}
.hero-section .hero-content .description {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero-section .hero-content .hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-section .hero-content .hero-actions .btn {
  min-width: 150px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
}
.hero-section .hero-content .hero-actions .btn.btn-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.8);
}
.hero-section .hero-content .hero-actions .btn.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
}

.about-section {
  padding: 3rem 0;
  background-color: #ecfdf5;
}
@media screen and (min-width: 1024px) {
  .about-section {
    padding: 5rem 0;
  }
}
.about-section .about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .about-section .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.about-section .about-content .about-text .text-content {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: #374151;
}
.about-section .about-content .about-image {
  position: relative;
}
.about-section .about-content .about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.about-section .about-content .about-image::after {
  content: "";
  position: absolute;
  top: -1rem;
  left: -1rem;
  right: 1rem;
  bottom: 1rem;
  border: 3px solid #047857;
  border-radius: 0.75rem;
  z-index: -1;
}

.featured-events-section {
  padding: 3rem 0;
  background-color: #ffffff;
}
@media screen and (min-width: 1024px) {
  .featured-events-section {
    padding: 5rem 0;
  }
}
.featured-events-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.featured-events-section .section-header .section-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}
.featured-events-section .events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .featured-events-section .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .featured-events-section .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.featured-events-section .event-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.featured-events-section .event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.featured-events-section .event-card .event-image {
  width: 100%;
  height: 200px;
  background-color: #e5e7eb;
  position: relative;
  overflow: hidden;
}
.featured-events-section .event-card .event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-events-section .event-card .event-image .event-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: #047857;
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}
.featured-events-section .event-card .event-content {
  padding: 1.5rem;
}
.featured-events-section .event-card .event-content .event-title {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #047857;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  font-family: "Noto Serif JP", serif;
}
.featured-events-section .event-card .event-content .event-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
  flex-wrap: wrap;
}
.featured-events-section .event-card .event-content .event-meta .event-date,
.featured-events-section .event-card .event-content .event-meta .event-time {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.featured-events-section .event-card .event-content .event-description {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.featured-events-section .event-card .event-content .event-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.featured-events-section .event-card .event-content .event-actions .btn {
  flex: 1;
  min-width: 120px;
  text-align: center;
  font-weight: 500;
  padding: 0.75rem 1rem;
}
.featured-events-section .view-all-events {
  text-align: center;
  margin-top: 3rem;
}

.schedule-section {
  padding: 3rem 0;
  background-color: #ecfdf5;
}
@media screen and (min-width: 1024px) {
  .schedule-section {
    padding: 5rem 0;
  }
}
.schedule-section .section-header {
  text-align: left;
  margin-bottom: 3rem;
}
.schedule-section .section-header .section-title {
  text-align: left;
}
.schedule-section .section-header .section-title::before {
  content: "📅 ";
  margin-right: 0.5rem;
}
.schedule-section .schedule-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .schedule-section .schedule-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .schedule-section .schedule-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.schedule-section .schedule-item {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #047857;
  transition: all 0.3s ease;
}
.schedule-section .schedule-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.schedule-section .schedule-item .schedule-header {
  margin-bottom: 1rem;
}
.schedule-section .schedule-item .schedule-header .schedule-title {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #047857;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  font-family: "Noto Serif JP", serif;
}
.schedule-section .schedule-item .schedule-header .schedule-date {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}
.schedule-section .schedule-item .schedule-content .schedule-time {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.schedule-section .schedule-item .schedule-content .schedule-description {
  color: #374151;
  line-height: 1.6;
  font-size: 0.875rem;
}
.schedule-section .view-all-schedule {
  text-align: center;
  margin-top: 3rem;
}

.contact-section {
  padding: 3rem 0;
  background-color: #ffffff;
}
@media screen and (min-width: 1024px) {
  .contact-section {
    padding: 5rem 0;
  }
}
.contact-section .contact-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media screen and (min-width: 1024px) {
  .contact-section .contact-methods {
    grid-template-columns: repeat(3, 1fr);
  }
}
.contact-section .contact-method {
  text-align: center;
  padding: 2rem;
  background-color: #e5e7eb;
  border-radius: 1rem;
  transition: all 0.3s ease;
}
.contact-section .contact-method:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.contact-section .contact-method .contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.contact-section .contact-method .contact-icon.phone {
  background-color: #dbeafe;
  color: #1d4ed8;
}
.contact-section .contact-method .contact-icon.line {
  background-color: #dcfce7;
  color: #047857;
}
.contact-section .contact-method .contact-icon.form {
  background-color: #fef3c7;
}
.contact-section .contact-method .contact-title {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #047857;
  margin-bottom: 0.75rem;
  font-family: "Noto Serif JP", serif;
}
.contact-section .contact-method .contact-info {
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.contact-section .contact-method .contact-details {
  font-weight: 500;
  color: #374151;
  margin-bottom: 1.5rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
}
.contact-section .contact-method .contact-hours {
  font-size: 0.875rem;
  color: #6b7280;
}
.contact-section .contact-cta {
  text-align: center;
}
.contact-section .contact-cta .btn {
  padding: 1rem 2.5rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
}

/* ベースレスポンシブ設定 (1200px以下) */
@media screen and (max-width: 1200px) {
  .container {
    max-width: 1050px;
    padding: 0 1.5rem;
  }
  .hero-content h1 {
    font-size: 3.5rem;
  }
  .schedule-list {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}
/* タブレット対応 (768px - 1024px) */
@media screen and (max-width: 1024px) {
  .container {
    padding: 0 1.25rem;
  }
  .hero-section {
    min-height: 500px;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
  .hero-content .subtitle {
    font-size: 1.25rem;
  }
  .events-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .schedule-list {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .section {
    padding: 48px 0;
  }
  .section-title {
    font-size: 1.875rem;
  }
  .event-content,
  .schedule-item {
    padding: 20px;
  }
  .contact-methods {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
}
/* スマートフォン対応 (320px - 768px) */
@media screen and (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  /* ヒーローセクション */
  .hero-section {
    min-height: 400px;
  }
  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
  }
  .hero-content .subtitle {
    font-size: 1.125rem;
    margin-bottom: 6px;
  }
  .hero-content .description {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  /* グリッドレイアウト */
  .events-grid,
  .schedule-list,
  .contact-methods {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  /* セクション */
  .section {
    padding: 40px 0;
  }
  .section-title {
    font-size: 1.75rem;
    margin-bottom: 32px;
  }
  .section-description {
    font-size: 1rem;
    margin-bottom: 32px;
  }
  /* カード */
  .event-content,
  .schedule-item {
    padding: 16px;
  }
  .event-title,
  .schedule-title {
    font-size: 1.125rem;
  }
  /* イベントカード */
  .event-meta {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .event-meta .event-date,
  .event-meta .event-time {
    font-size: 0.8rem;
  }
  /* お問い合わせ方法 */
  .contact-methods {
    gap: 20px;
  }
  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  /* フォーム */
  .form-input,
  .form-textarea,
  .form-select {
    font-size: 16px; /* iOS zoom防止 */
  }
  /* about-content の順序変更 */
  .about-content .about-image {
    order: 1;
  }
  .about-content .about-text {
    order: 2;
  }
}
/* 小さなスマートフォン対応 (320px - 480px) */
@media screen and (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content .subtitle {
    font-size: 1rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .event-content,
  .schedule-item {
    padding: 12px;
  }
  .btn {
    padding: 10px 16px;
    font-size: 0.875rem;
  }
  .contact-method {
    padding: 20px 12px;
  }
  /* 横スクロール防止 */
  .event-meta {
    overflow-x: auto;
    white-space: nowrap;
  }
  .event-meta .event-date,
  .event-meta .event-time {
    display: inline-block;
    margin-right: 12px;
  }
  /* about-image装飾フレーム調整 */
  .about-image::after {
    top: -0.5rem;
    left: -0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    border-width: 2px;
  }
}
/* 大画面対応 (1400px以上) */
@media screen and (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
  .hero-content h1 {
    font-size: 5rem;
  }
  .hero-content .subtitle {
    font-size: 1.75rem;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .schedule-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* プリント対応 */
@media print {
  .hero-actions,
  .view-all-events,
  .view-all-schedule,
  .contact-cta {
    display: none;
  }
  .hero-section {
    min-height: auto;
    padding: 40px 0;
    background: none;
    color: black;
  }
  .hero-section .hero-content h1,
  .hero-section .hero-content .subtitle,
  .hero-section .hero-content .description {
    color: black;
  }
  .section {
    padding: 20px 0;
  }
  .event-card,
  .schedule-item,
  .contact-method {
    border: 1px solid #ccc;
    break-inside: avoid;
  }
  .btn {
    color: black;
    text-decoration: underline;
  }
  a[href^="tel:"]:after {
    content: " (" attr(href) ")";
  }
}
/* 高コントラスト対応 */
@media (prefers-contrast: high) {
  .hero-section {
    background: #374151;
  }
  .hero-section .hero-content h1,
  .hero-section .hero-content .subtitle,
  .hero-section .hero-content .description {
    color: #ffffff;
  }
  .event-card,
  .schedule-item,
  .contact-method {
    border: 2px solid #374151;
  }
  .btn-primary {
    background: #374151;
    border: 2px solid #374151;
  }
  .btn-secondary,
  .btn-outline {
    border: 2px solid #374151;
    color: #333;
  }
  .temple-green {
    color: #333;
  }
}
/* アニメーション軽減対応 */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .event-card:hover,
  .schedule-item:hover,
  .contact-method:hover {
    transform: none;
  }
}
/* タッチデバイス対応 */
@media (hover: none) and (pointer: coarse) {
  .btn {
    min-height: 44px; /* タッチターゲットサイズ */
  }
  .event-card:hover,
  .schedule-item:hover,
  .contact-method:hover {
    transform: none;
  }
}
/* 横向きスマートフォン対応 */
@media screen and (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    min-height: 300px;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .section {
    padding: 32px 0;
  }
}
.event-card:focus-within,
.schedule-item:focus-within,
.contact-method:focus-within {
  outline: 2px solid #047857;
  outline-offset: 2px;
}

.xs-none {
  display: block;
}
@media screen and (min-width: 500px) {
  .xs-none {
    display: none;
  }
}

.md-none {
  display: block;
}
@media screen and (min-width: 1024px) {
  .md-none {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
