﻿@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #2C2C2C;
  background-color: #FAF6F0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #8B0000;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #C0392B;
}

ul,
ol {
  list-style: none;
}

address {
  font-style: normal;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

table {
  border-collapse: collapse;
  width: 100%;
}

.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

.site-main {
  flex: 1;
}

.is-fullwidth {
  width: 100%;
  box-sizing: border-box;
}

.container,
.yasaka-container {
  width: 100%;
  max-width: 1388px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media (max-width: 768px) {
  .container,
  .yasaka-container {
    padding-inline: 24px;
  }
}
@media (max-width: 480px) {
  .container,
  .yasaka-container {
    padding-inline: 16px;
  }
}

.container--narrow {
  width: 100%;
  max-width: 1388px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media (max-width: 768px) {
  .container--narrow {
    padding-inline: 24px;
  }
}
@media (max-width: 480px) {
  .container--narrow {
    padding-inline: 16px;
  }
}
.container--narrow {
  max-width: 800px;
}

.container--wide {
  width: 100%;
  max-width: 1388px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media (max-width: 768px) {
  .container--wide {
    padding-inline: 24px;
  }
}
@media (max-width: 480px) {
  .container--wide {
    padding-inline: 16px;
  }
}
.container--wide {
  max-width: 1600px;
}

.section {
  padding-block: 96px;
}
@media (max-width: 1024px) {
  .section {
    padding-block: 64px;
  }
}
@media (max-width: 480px) {
  .section {
    padding-block: 48px;
  }
}
.section__header {
  text-align: center;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .section__header {
    margin-bottom: 40px;
  }
}
.section__title {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.3;
  color: #2C1810;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.section__subtitle {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", sans-serif;
  font-size: clamp(0.875rem, 1.5vw, 0.875rem);
  font-weight: 400;
  line-height: 1.8;
  color: #6B6B6B;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.section__lead {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 300;
  line-height: 2;
  color: #2C2C2C;
  max-width: 640px;
  margin-inline: auto;
  margin-top: 16px;
}

.section--full {
  width: 100%;
  box-sizing: border-box;
}
.section--full > .container,
.section--full > .yasaka-container {
  width: 100%;
  max-width: 1388px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media (max-width: 768px) {
  .section--full > .container,
  .section--full > .yasaka-container {
    padding-inline: 24px;
  }
}
@media (max-width: 480px) {
  .section--full > .container,
  .section--full > .yasaka-container {
    padding-inline: 16px;
  }
}

.section--bg-warm {
  background-color: #f5ede5;
}

.section--bg-primary {
  background-color: #8B0000;
  color: #FFFFFF;
}
.section--bg-primary .section__title {
  color: #FFFFFF;
}
.section--bg-primary .section__lead {
  color: rgba(255, 255, 255, 0.85);
}

.section--bg-dark {
  background-color: #2C1810;
  color: #FFFFFF;
}
.section--bg-dark .section__title {
  color: #FFFFFF;
}
.section--bg-dark .section__lead {
  color: rgba(255, 255, 255, 0.8);
}

.grid {
  display: grid;
  gap: 24px;
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .grid--2 {
    grid-template-columns: 1fr;
  }
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .grid--3 {
    grid-template-columns: 1fr;
  }
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .grid--4 {
    grid-template-columns: 1fr;
  }
}
.grid--auto {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.page-header {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  background: linear-gradient(135deg, #2C1810 0%, #8B0000 100%);
  color: #FFFFFF;
  padding-block: 96px 64px;
  text-align: center;
  overflow: hidden;
}
.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/pattern-wa.svg");
  background-repeat: repeat;
  background-size: 180px;
  opacity: 0.06;
  pointer-events: none;
}
.page-header__inner {
  width: 100%;
  max-width: 1388px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media (max-width: 768px) {
  .page-header__inner {
    padding-inline: 24px;
  }
}
@media (max-width: 480px) {
  .page-header__inner {
    padding-inline: 16px;
  }
}
.page-header__inner {
  position: relative;
  z-index: 10;
}
.page-header__title {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.3;
  color: #FFFFFF;
  letter-spacing: 0.15em;
}
.page-header__breadcrumb {
  margin-top: 16px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", sans-serif;
  font-size: clamp(0.875rem, 1.5vw, 0.875rem);
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}
.page-header__breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}
.page-header__breadcrumb a:hover {
  color: #D4A017;
}
.page-header__breadcrumb span {
  margin-inline: 0.5em;
}
@media (max-width: 768px) {
  .page-header {
    padding-block: 64px 40px;
  }
}

.content-area {
  width: 100%;
  max-width: 1388px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media (max-width: 768px) {
  .content-area {
    padding-inline: 24px;
  }
}
@media (max-width: 480px) {
  .content-area {
    padding-inline: 16px;
  }
}
.content-area {
  padding-block: 64px;
}
@media (max-width: 768px) {
  .content-area {
    padding-block: 40px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  line-height: 1.4;
  color: #2C1810;
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
}

h3 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
}

h4 {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
}

h5 {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  margin-bottom: 1em;
}
p:last-child {
  margin-bottom: 0;
}

.entry-content {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}
.entry-content h2, .entry-content h3, .entry-content h4 {
  margin-top: 2em;
  margin-bottom: 0.75em;
}
.entry-content ul, .entry-content ol {
  margin: 1em 0 1em 1.5em;
  list-style: revert;
}
.entry-content li {
  margin-bottom: 0.4em;
}
.entry-content blockquote {
  border-left: 4px solid #8B0000;
  padding-left: 16px;
  margin: 1.5em 0;
  color: #6B6B6B;
  font-style: italic;
}
.entry-content table {
  margin: 1.5em 0;
  font-size: clamp(0.875rem, 1.5vw, 0.875rem);
}
.entry-content table th, .entry-content table td {
  padding: 0.75em 1em;
  border: 1px solid #D9CEBE;
  text-align: left;
  vertical-align: top;
}
.entry-content table th {
  background-color: #f5ede5;
  font-weight: 600;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
}
.entry-content table tr:nth-child(even) td {
  background-color: rgba(250, 246, 240, 0.5);
}
.entry-content img {
  border-radius: 4px;
  height: auto;
}
.entry-content a {
  color: #8B0000;
  border-bottom: 1px solid currentcolor;
}
.entry-content a:hover {
  color: #C0392B;
}

.site-header {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 200;
}
.site-header.is-sticky {
  position: sticky;
  top: 0;
}
.site-header.is-scrolled {
  box-shadow: 0 4px 12px rgba(44, 24, 16, 0.12);
}
.site-header.is-hidden {
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}

.site-header__topbar {
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(90deg, #8B0000, #2C1810);
}
@media (max-width: 480px) {
  .site-header__topbar.hide-sp {
    display: none;
  }
}

.site-header__topbar-inner {
  width: 100%;
  max-width: 1388px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media (max-width: 768px) {
  .site-header__topbar-inner {
    padding-inline: 24px;
  }
}
@media (max-width: 480px) {
  .site-header__topbar-inner {
    padding-inline: 16px;
  }
}
.site-header__topbar-inner {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 480px) {
  .site-header__topbar-inner {
    height: 32px;
  }
}

.site-header__topbar-text {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  font-size: clamp(0.875rem, 1.5vw, 0.875rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.15em;
  color: #FFFFFF;
  white-space: nowrap;
}

.site-header__topbar-subtext {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", sans-serif;
  font-size: clamp(0.75rem, 1vw, 0.75rem);
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  text-transform: uppercase;
}

.site-header__bar {
  width: 100%;
  box-sizing: border-box;
  background-color: #FAF6F0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header__inner {
  width: 100%;
  max-width: 1388px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media (max-width: 768px) {
  .site-header__inner {
    padding-inline: 24px;
  }
}
@media (max-width: 480px) {
  .site-header__inner {
    padding-inline: 16px;
  }
}
.site-header__inner {
  height: var(--header-height, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 768px) {
  .site-header__inner {
    height: var(--header-height-tab, 64px);
  }
}
@media (max-width: 480px) {
  .site-header__inner {
    height: var(--header-height-sp, 56px);
  }
}

.site-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.site-header__logo a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
}
.site-header__logo a:hover {
  opacity: 0.85;
}
.site-header__logo img {
  height: var(--logo-height, 48px);
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .site-header__logo img {
    height: var(--logo-height-tab, 40px);
  }
}
@media (max-width: 480px) {
  .site-header__logo img {
    height: var(--logo-height-sp, 36px);
  }
}

.site-header__logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.site-header__logo-wrap .custom-logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.site-header__logo-wrap .custom-logo-link:hover {
  opacity: 0.85;
}

.site-header__logo-name {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.12em;
  line-height: 1.2;
  white-space: nowrap;
  color: #2C1810;
  text-decoration: none;
}
.site-header__logo-name:hover {
  opacity: 0.85;
}
@media (max-width: 480px) {
  .site-header__logo-name {
    font-size: 1rem;
  }
}

.site-header__logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
}
.site-header__logo-link:hover {
  opacity: 0.85;
}

.site-header__logo-text {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.12em;
  line-height: 1.2;
  white-space: nowrap;
}

.site-header__logo-sub {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", sans-serif;
  font-size: clamp(0.75rem, 1vw, 0.75rem);
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.15em;
  display: block;
  margin-top: 2px;
  opacity: 0.7;
}

.site-header__nav {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .site-header__nav {
    display: none;
  }
}

.header-nav__list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.header-nav__item {
  position: relative;
}

.header-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.4em 1em;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", sans-serif;
  font-size: clamp(0.875rem, 1.5vw, 0.875rem);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: inherit;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.header-nav__link:hover, .header-nav__item.current-menu-item > .header-nav__link {
  color: #8B0000;
  border-bottom-color: #8B0000;
}

.header-nav__sub {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: #FFFFFF;
  border-top: 2px solid #8B0000;
  border: 1px solid #D9CEBE;
  border-top: 2px solid #8B0000;
  box-shadow: 0 4px 12px rgba(44, 24, 16, 0.12);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 100;
}
.header-nav__item:hover > .header-nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.header-nav__sub-item {
  border-bottom: 1px solid #EDE7DD;
}
.header-nav__sub-item:last-child {
  border-bottom: none;
}

.header-nav__sub-link {
  display: block;
  padding: 0.625em 1.25em;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", sans-serif;
  font-size: clamp(0.8125rem, 1.2vw, 0.8125rem);
  font-weight: 400;
  line-height: 1.8;
  color: #2C2C2C;
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease;
}
.header-nav__sub-link:hover {
  background: #f5ede5;
  color: #8B0000;
}

.site-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.site-header__hamburger:focus-visible {
  outline: 3px solid #8B0000;
  outline-offset: 3px;
}
@media (max-width: 768px) {
  .site-header__hamburger {
    display: flex;
  }
}
.site-header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.site-header__hamburger[aria-expanded=true] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header__hamburger[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.site-header__hamburger[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header__drawer {
  width: 100%;
  box-sizing: border-box;
  position: fixed;
  inset: 0;
  top: 0;
  background: #FAF6F0;
  z-index: 300;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.site-header__drawer.is-open {
  transform: translateX(0);
}
@media (min-width: 1025px) {
  .site-header__drawer {
    display: none !important;
  }
}

.site-header__drawer-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 16px;
  border-bottom: 1px solid #D9CEBE;
  flex-shrink: 0;
}

.site-header__drawer-close {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #6B6B6B;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
}
.site-header__drawer-close:focus-visible {
  outline: 3px solid #8B0000;
  outline-offset: 3px;
}
.site-header__drawer-close:hover {
  background: #f5ede5;
  color: #8B0000;
}

.drawer-nav__list {
  list-style: none;
  padding: 12px 0 64px;
}

.drawer-nav__item {
  border-bottom: 1px solid #EDE7DD;
}

.drawer-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em 16px;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2C1810;
  letter-spacing: 0.05em;
}
.drawer-nav__link:hover {
  color: #8B0000;
  background: #f5ede5;
}

.drawer-nav__sub {
  list-style: none;
  background: #f5ede5;
  padding: 8px 0;
}

.drawer-nav__sub-link {
  display: block;
  padding: 0.75em 16px 8px calc(16px + 1em);
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", sans-serif;
  font-size: clamp(0.875rem, 1.5vw, 0.875rem);
  font-weight: 400;
  line-height: 1.8;
  color: #2C2C2C;
}
.drawer-nav__sub-link:hover {
  color: #8B0000;
}

.site-header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 299;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.site-header__overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.page-hero {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  overflow: hidden;
  --hero-color-a: #8B0000;
  --hero-color-b: #700000;
  --hero-gradient-angle: 135deg;
}
@media (max-width: 768px) {
  .page-hero {
    min-height: 160px;
  }
}
@media (max-width: 480px) {
  .page-hero {
    min-height: 120px;
  }
}
.page-hero--bg-gradient {
  background: linear-gradient(var(--hero-gradient-angle), var(--hero-color-a) 0%, var(--hero-color-b) 100%);
}
.page-hero--bg-image {
  background-color: #1a1208;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.page-hero__wagara {
  position: absolute;
  inset: 0;
  background-repeat: repeat;
  opacity: 0.08;
  pointer-events: none;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-hero__inner {
  width: 100%;
  max-width: 1388px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media (max-width: 768px) {
  .page-hero__inner {
    padding-inline: 24px;
  }
}
@media (max-width: 480px) {
  .page-hero__inner {
    padding-inline: 16px;
  }
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 64px;
  padding-bottom: 64px;
  text-align: center;
}
@media (max-width: 480px) {
  .page-hero__inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.page-hero__en {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", sans-serif;
  font-size: clamp(0.8125rem, 1.2vw, 0.8125rem);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  display: block;
}

.page-hero__title {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.15em;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .page-hero__title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  }
}
@media (max-width: 480px) {
  .page-hero__title {
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  }
}

.page-hero__breadcrumb {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", sans-serif;
  font-size: clamp(0.8125rem, 1.2vw, 0.8125rem);
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25em;
  margin-top: 8px;
}
.page-hero__breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.page-hero__breadcrumb a:hover {
  text-decoration: underline;
  color: #FFFFFF;
}
.page-hero__breadcrumb .page-hero__breadcrumb-inner,
.page-hero__breadcrumb .rank-math-breadcrumb,
.page-hero__breadcrumb #breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25em;
}

.page-hero__breadcrumb-sep {
  opacity: 0.6;
  margin: 0 0.1em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.8em 2.25em;
  border: 2px solid transparent;
  border-radius: 4px;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  font-size: clamp(0.875rem, 1.5vw, 0.875rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 3px solid #8B0000;
  outline-offset: 3px;
}
.btn--primary {
  background-color: #8B0000;
  color: #FFFFFF;
  border-color: #8B0000;
}
.btn--primary:hover {
  background-color: #700000;
  border-color: #700000;
  color: #FFFFFF;
}
.btn--outline {
  background-color: transparent;
  color: #8B0000;
  border-color: #8B0000;
}
.btn--outline:hover {
  background-color: #8B0000;
  color: #FFFFFF;
}
.btn--gold {
  background-color: #D4A017;
  color: #2C1810;
  border-color: #D4A017;
}
.btn--gold:hover {
  background-color: #B8880F;
  border-color: #B8880F;
  color: #FFFFFF;
}
.btn--ghost {
  background-color: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.7);
}
.btn--ghost:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
}
.btn--lg {
  padding: 1em 3em;
  font-size: 1rem;
}
.btn--sm {
  padding: 0.5em 1.5em;
  font-size: clamp(0.8125rem, 1.2vw, 0.8125rem);
}

.card {
  background: #FFFFFF;
  border: 1px solid #D9CEBE;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.card:hover {
  box-shadow: 0 4px 12px rgba(44, 24, 16, 0.12);
  transform: translateY(-2px);
}
.card__thumb {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.card__thumb img, .card__thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card__thumb {
  overflow: hidden;
}
.card__thumb img {
  transition: transform 0.4s ease;
}
.card:hover .card__thumb img {
  transform: scale(1.04);
}
.card__body {
  padding: 24px;
}
@media (max-width: 768px) {
  .card__body {
    padding: 16px;
  }
}
.card__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 12px;
  font-size: clamp(0.8125rem, 1.2vw, 0.8125rem);
  color: #6B6B6B;
}
.card__cat {
  background-color: #f5ede5;
  color: #8B0000;
  padding: 0.2em 0.6em;
  border-radius: 2px;
  font-size: clamp(0.75rem, 1vw, 0.75rem);
  font-weight: 500;
}
.card__title {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: #2C1810;
  margin-bottom: 12px;
}
.card__title a {
  color: inherit;
}
.card__title a:hover {
  color: #8B0000;
}
.card__excerpt {
  font-size: clamp(0.875rem, 1.5vw, 0.875rem);
  color: #6B6B6B;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-card {
  border: 1px solid #D9CEBE;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.event-card:hover {
  box-shadow: 0 4px 12px rgba(44, 24, 16, 0.12);
  transform: translateY(-2px);
}
.event-card__link {
  display: block;
  color: inherit;
}
.event-card__link:hover {
  color: inherit;
}
.event-card__thumb {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.event-card__thumb img, .event-card__thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.event-card__thumb img {
  transition: transform 0.4s ease;
}
.event-card:hover .event-card__thumb img {
  transform: scale(1.04);
}
.event-card__body {
  padding: 16px;
}
.event-card__date {
  display: block;
  font-size: clamp(0.8125rem, 1.2vw, 0.8125rem);
  color: #8B0000;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.event-card__title {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: #2C1810;
  margin-bottom: 12px;
}
.event-card__detail {
  display: grid;
  grid-template-columns: 3em 1fr;
  gap: 0.25em 0.75em;
  font-size: clamp(0.8125rem, 1.2vw, 0.8125rem);
  margin-bottom: 12px;
}
.event-card__detail dt {
  color: #6B6B6B;
}
.event-card__excerpt {
  font-size: clamp(0.875rem, 1.5vw, 0.875rem);
  color: #6B6B6B;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.goshuin-card {
  border: 1px solid #D9CEBE;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.goshuin-card:hover {
  box-shadow: 0 4px 12px rgba(44, 24, 16, 0.12);
  transform: translateY(-2px);
}
.goshuin-card__link {
  display: block;
  color: inherit;
}
.goshuin-card__link:hover {
  color: inherit;
}
.goshuin-card__thumb {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.goshuin-card__thumb img, .goshuin-card__thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.goshuin-card__thumb img {
  transition: transform 0.4s ease;
}
.goshuin-card:hover .goshuin-card__thumb img {
  transform: scale(1.04);
}
.goshuin-card__status {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 0.25em 0.75em;
  font-size: clamp(0.75rem, 1vw, 0.75rem);
  font-weight: 700;
  border-radius: 2px;
  letter-spacing: 0.05em;
  z-index: 10;
}
.goshuin-card__status.is-available {
  background: #8B0000;
  color: #FFFFFF;
}
.goshuin-card__status.is-limited {
  background: #D4A017;
  color: #2C1810;
}
.goshuin-card__status.is-unavailable {
  background: #888;
  color: #FFFFFF;
}
.goshuin-card__status.is-soon {
  background: #2980b9;
  color: #FFFFFF;
}
.goshuin-card__body {
  padding: 16px;
}
.goshuin-card__title {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: #2C1810;
  margin-bottom: 8px;
}
.goshuin-card__price {
  font-size: clamp(0.875rem, 1.5vw, 0.875rem);
  color: #8B0000;
  font-weight: 600;
}
.goshuin-card__period {
  font-size: clamp(0.8125rem, 1.2vw, 0.8125rem);
  color: #6B6B6B;
  margin-top: 8px;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.news-list__item {
  border-bottom: 1px solid #EDE7DD;
}
.news-list__item:first-child {
  border-top: 1px solid #EDE7DD;
}
.news-list__link {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
  padding: 16px 0;
  color: #2C2C2C;
  transition: background-color 0.3s ease;
}
.news-list__link:hover {
  color: #8B0000;
}
@media (max-width: 768px) {
  .news-list__link {
    flex-direction: column;
    gap: 8px;
  }
}
.news-list__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-shrink: 0;
  min-width: 200px;
}
@media (max-width: 768px) {
  .news-list__meta {
    min-width: unset;
  }
}
.news-list__date {
  font-size: clamp(0.8125rem, 1.2vw, 0.8125rem);
  color: #6B6B6B;
  white-space: nowrap;
}
.news-list__cat {
  background-color: #f5ede5;
  color: #8B0000;
  padding: 0.2em 0.75em;
  border-radius: 2px;
  font-size: clamp(0.75rem, 1vw, 0.75rem);
  font-weight: 500;
  white-space: nowrap;
}
.news-list__cat--important {
  background-color: #8B0000;
  color: #FFFFFF;
}
.news-list__title {
  font-size: clamp(0.875rem, 1.5vw, 0.875rem);
  line-height: 1.6;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.news-cards {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}
.news-cards--cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.news-cards--cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.news-cards--cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
  .news-cards {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 480px) {
  .news-cards {
    grid-template-columns: 1fr !important;
  }
}

.news-card {
  background: #FFFFFF;
  border: 1px solid #D9CEBE;
  border-top: 3px solid #D4A017;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-top-color 0.3s ease;
}
.news-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
  border-top-color: #8B0000;
}
.news-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #2C2C2C;
  text-decoration: none;
}
.news-card__link:hover .news-card__title {
  color: #8B0000;
}
.news-card__thumb {
  position: relative;
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
  background: #EDE7DD;
}
.news-card__thumb--16-9 {
  aspect-ratio: 16/9;
}
.news-card__thumb--4-3 {
  aspect-ratio: 4/3;
}
.news-card__thumb--1-1 {
  aspect-ratio: 1/1;
}
.news-card__thumb img.news-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.news-card__thumb:hover img.news-card__img {
  transform: scale(1.04);
}
.news-card__thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FAF6F0;
  min-height: 120px;
}
.news-card__thumb-icon {
  font-size: 2.5rem;
  opacity: 0.4;
}
.news-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 0.6em;
  flex: 1;
}
.news-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4em;
}
.news-card__badge {
  display: inline-block;
  background: #f5ede5;
  color: #8B0000;
  padding: 0.15em 0.65em;
  border-radius: 2px;
  font-size: clamp(0.75rem, 1vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.news-card__badge--important {
  background: #8B0000;
  color: #FFFFFF;
}
.news-card__date {
  font-size: clamp(0.75rem, 1vw, 0.75rem);
  color: #6B6B6B;
  white-space: nowrap;
  margin-left: auto;
}
.news-card__title {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  font-size: clamp(0.875rem, 1.5vw, 0.875rem);
  font-weight: 600;
  line-height: 1.6;
  color: #2C1810;
  letter-spacing: 0.04em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}
.news-card__excerpt {
  font-size: clamp(0.8125rem, 1.2vw, 0.8125rem);
  color: #6B6B6B;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card__more {
  display: block;
  box-sizing: border-box;
  text-align: center;
  margin-top: auto;
  padding: 0.55em 1.2em;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  font-size: clamp(0.8125rem, 1.2vw, 0.8125rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  border-radius: 2px;
  white-space: nowrap;
  text-decoration: none;
  transition: filter 0.3s ease;
}
.news-card__more::after {
  content: " →";
  font-size: 0.85em;
  display: inline-block;
  transition: transform 0.3s ease;
}
.news-card__more--outline {
  color: #8B0000;
  border: 1px solid #8B0000;
  background: transparent;
}
.news-card__link:hover .news-card__more--outline {
  filter: brightness(0.82);
}
.news-card__link:hover .news-card__more--outline::after {
  transform: translateX(3px);
}
.news-card__more--fill {
  background: #8B0000;
  color: #FFFFFF;
  border: none;
}
.news-card__link:hover .news-card__more--fill {
  filter: brightness(0.88);
}
.news-card__link:hover .news-card__more--fill::after {
  transform: translateX(3px);
}
.news-card__more--text {
  color: #8B0000;
  background: transparent;
  border: none;
  border-top: 1px solid #EDE7DD;
  border-radius: 0;
  padding: 0.5em 0;
  text-align: left;
}
.news-card__link:hover .news-card__more--text {
  filter: brightness(0.8);
}
.news-card__link:hover .news-card__more--text::after {
  transform: translateX(4px);
}

.pagination {
  margin-top: 64px;
}
.pagination__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pagination__item a, .pagination__item .current, .pagination__item span {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding-inline: 0.75em;
  border: 1px solid #D9CEBE;
  border-radius: 4px;
  font-size: clamp(0.875rem, 1.5vw, 0.875rem);
  color: #2C2C2C;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.pagination__item a:hover {
  background-color: #8B0000;
  color: #FFFFFF;
  border-color: #8B0000;
}
.pagination__item .current {
  background-color: #8B0000;
  color: #FFFFFF;
  border-color: #8B0000;
  font-weight: 700;
}

.badge {
  display: inline-block;
  padding: 0.2em 0.75em;
  border-radius: 2px;
  font-size: clamp(0.75rem, 1vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.badge--primary {
  background: #8B0000;
  color: #FFFFFF;
}
.badge--accent {
  background: #D4A017;
  color: #2C1810;
}
.badge--muted {
  background: #D9CEBE;
  color: #6B6B6B;
}
.badge--new {
  background: #e74c3c;
  color: #FFFFFF;
}

.divider {
  border: none;
  border-top: 1px solid #D9CEBE;
  margin-block: 40px;
}
.divider--ornament {
  position: relative;
  text-align: center;
  border-top-color: #D4A017;
}
.divider--ornament::before {
  content: "✦";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FAF6F0;
  padding-inline: 12px;
  color: #D4A017;
  font-size: clamp(0.875rem, 1.5vw, 0.875rem);
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: #8B0000;
  color: #FFFFFF;
  padding: 0.5em 1em;
  border-radius: 4px;
  font-size: clamp(0.875rem, 1.5vw, 0.875rem);
  z-index: 500;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 16px;
}

.no-results {
  text-align: center;
  padding-block: 96px;
}
.no-results__title {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 600;
  line-height: 1.5;
  color: #2C1810;
  margin-bottom: 16px;
}
.no-results__text {
  font-size: 1rem;
  color: #6B6B6B;
  margin-bottom: 40px;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25em;
  padding: 0.5em 0 1.5em;
}
.section-header__en {
  display: block;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", sans-serif;
  font-size: clamp(0.8125rem, 1.2vw, 0.8125rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #8B0000;
  opacity: 0.8;
  line-height: 1.4;
}
.section-header__ja {
  margin: 0;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  color: #2C1810;
}
.section-header__title-box {
  position: relative;
  display: inline-block;
}
.section-header__lead {
  margin-top: 0.75em;
  font-size: clamp(0.875rem, 1.5vw, 0.875rem);
  color: #6B6B6B;
  line-height: 1.9;
  max-width: 640px;
}
.section-header--underline .section-header__title-box {
  padding-bottom: 0.65em;
}
.section-header--underline .section-header__title-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #D4A017;
}
.section-header--underline.section-header--ul-center .section-header__title-box::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 36%;
  height: 4px;
  background: #8B0000;
  z-index: 1;
}
.section-header--underline.section-header--ul-full .section-header__title-box::after {
  height: 1px;
  opacity: 0.6;
}
.section-header--underline.section-header--ul-thick .section-header__title-box {
  padding-bottom: 0.9em;
}
.section-header--underline.section-header--ul-thick .section-header__title-box::after {
  height: 3px;
}
.section-header--underline.section-header--ul-thick .section-header__title-box::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #8B0000;
  opacity: 0.5;
}
.section-header--flanking .section-header__title-box {
  display: flex;
  align-items: center;
  gap: 1em;
  width: 100%;
}
.section-header--flanking .section-header__title-box::before {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #D4A017);
  display: block;
}
.section-header--flanking .section-header__title-box::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to left, transparent, #D4A017);
  display: block;
}
.section-header--flanking .section-header__ja {
  white-space: nowrap;
  position: relative;
  flex-shrink: 0;
  padding: 0 0.3em;
}
.section-header--flanking .section-header__ja::before {
  content: "◆";
  color: #D4A017;
  font-size: 0.4em;
  vertical-align: middle;
  margin-right: 0.4em;
}
.section-header--flanking .section-header__ja::after {
  content: "◆";
  color: #D4A017;
  font-size: 0.4em;
  vertical-align: middle;
  margin-left: 0.4em;
}
.section-header--double .section-header__title-box {
  padding: 0.55em 1.5em;
  border-top: 3px double #D4A017;
  border-bottom: 3px double #D4A017;
  position: relative;
}
.section-header--double .section-header__title-box::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 1em;
  right: 1em;
  height: 1px;
  background: #8B0000;
  opacity: 0.35;
}
.section-header--double .section-header__title-box::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 1em;
  right: 1em;
  height: 1px;
  background: #8B0000;
  opacity: 0.35;
}
.section-header--kado .section-header__title-box {
  padding: 0.6em 1.6em;
  background-image: linear-gradient(#D4A017, #D4A017), linear-gradient(#D4A017, #D4A017), linear-gradient(#D4A017, #D4A017), linear-gradient(#D4A017, #D4A017), linear-gradient(#D4A017, #D4A017), linear-gradient(#D4A017, #D4A017), linear-gradient(#D4A017, #D4A017), linear-gradient(#D4A017, #D4A017);
  background-size: 16px 2px, 2px 16px, 16px 2px, 2px 16px, 16px 2px, 2px 16px, 16px 2px, 2px 16px;
  background-position: top left, top left, top right, top right, bottom left, bottom left, bottom right, bottom right;
  background-repeat: no-repeat;
}
.section-header--kado .section-header__en {
  position: relative;
}
.section-header--kado .section-header__en::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: #D4A017;
  margin: 0.3em auto 0;
  opacity: 0.7;
}
.section-header--mon {
  gap: 0.2em;
}
.section-header--mon .section-header__mon {
  order: 0;
  display: block;
  width: 46px;
  height: 46px;
  margin: 0 auto 0.3em;
  border-radius: 50%;
  border: 2px solid #D4A017;
  position: relative;
  flex-shrink: 0;
}
.section-header--mon .section-header__mon::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px solid #D4A017;
  opacity: 0.65;
}
.section-header--mon .section-header__mon::after {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  background: #D4A017;
  opacity: 0.45;
}
.section-header--mon .section-header__en {
  order: 1;
}
.section-header--mon .section-header__title-box {
  order: 2;
  position: relative;
}
.section-header--mon .section-header__title-box::before, .section-header--mon .section-header__title-box::after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 28%;
  height: 1px;
  background: #D4A017;
  opacity: 0.55;
}
.section-header--mon .section-header__title-box::before {
  left: 0;
}
.section-header--mon .section-header__title-box::after {
  right: 0;
  left: auto;
}
.section-header--mon .section-header__lead {
  order: 3;
}
@media (max-width: 480px) {
  .section-header__ja {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
  }
  .section-header--flanking .section-header__title-box {
    width: 100%;
  }
  .section-header--kado .section-header__title-box {
    padding: 0.5em 1em;
  }
  .section-header--mon .section-header__mon {
    width: 36px;
    height: 36px;
  }
}

.event-cards-by-month {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.event-month-group__heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #8B0000;
  padding: 0.4em 0.8em;
  border-left: 4px solid #8B0000;
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.event-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .event-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .event-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.event-card {
  background: #fff;
  border: 1px solid #D9CEBE;
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.event-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.event-card__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.event-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.event-card:hover .event-card__thumb img {
  transform: scale(1.04);
}
.event-card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.event-card__date {
  font-size: 0.8rem;
  color: #6B6B6B;
  font-feature-settings: "palt";
}
.event-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: #2C2C2C;
  margin: 0;
  line-height: 1.5;
}
.event-card__comment {
  font-size: 0.875rem;
  color: #6B6B6B;
  line-height: 1.6;
  margin-top: 0.25rem;
}
.event-card__comment p {
  margin: 0;
}

.event-table {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.event-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.event-table th,
.event-table td {
  padding: 0.75em 1em;
  border-bottom: 1px solid #D9CEBE;
  text-align: left;
  vertical-align: middle;
}
.event-table th {
  background: #FAF6F0;
  font-weight: 700;
  color: #2C2C2C;
  white-space: nowrap;
}
.event-table__month {
  white-space: nowrap;
  width: 4em;
  text-align: center;
  font-weight: 700;
  color: #8B0000;
}
.event-table__name {
  font-weight: 600;
}
.event-table__date {
  white-space: nowrap;
  color: #6B6B6B;
  font-size: 0.875rem;
}
@media (max-width: 480px) {
  .event-table th, .event-table td {
    padding: 0.6em 0.6em;
    font-size: 0.875rem;
  }
}

.access-map {
  width: 100%;
}
.access-map--full {
  width: 100%;
  box-sizing: border-box;
}
.access-map__frame {
  display: block;
  width: 100%;
  height: 450px;
  border: none;
}
@media (max-width: 768px) {
  .access-map__frame {
    height: 350px;
  }
}
@media (max-width: 480px) {
  .access-map__frame {
    height: 280px;
  }
}

.access-info-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 2.5rem;
}

.access-info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.access-info-table tr {
  border-bottom: 1px solid #EDE7DD;
}
.access-info-table tr:first-child {
  border-top: 1px solid #EDE7DD;
}
.access-info-table__label {
  width: 9em;
  padding: 0.9em 1.2em;
  background-color: #FAF6F0;
  color: #700000;
  font-weight: 700;
  font-size: 0.875rem;
  vertical-align: middle;
  white-space: nowrap;
  letter-spacing: 0.05em;
}
@media (max-width: 480px) {
  .access-info-table__label {
    width: 7em;
    padding: 0.75em 0.75em;
    font-size: 0.8rem;
  }
}
.access-info-table__value {
  padding: 0.9em 1.4em;
  vertical-align: middle;
  line-height: 1.6;
}
.access-info-table__value a {
  color: #8B0000;
  text-decoration: none;
}
.access-info-table__value a:hover {
  text-decoration: underline;
}
@media (max-width: 480px) {
  .access-info-table__value {
    padding: 0.75em 0.75em;
  }
}

.access-transport__heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #8B0000;
  padding: 0.4em 0.8em;
  border-left: 4px solid #8B0000;
  margin-bottom: 1.5rem;
}
.access-transport__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.access-transport__item {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #EDE7DD;
  border-radius: 6px;
}
.access-transport__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.access-transport__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  background-color: #8B0000;
  color: #fff;
  border-radius: 50%;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.access-transport__method {
  font-size: 1rem;
  font-weight: 700;
  color: #2C2C2C;
  margin: 0;
}
.access-transport__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #2C2C2C;
  padding-left: 2.95rem;
}
.access-transport__desc p {
  margin: 0 0 0.4em;
}
.access-transport__desc p:last-child {
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .access-transport__desc {
    padding-left: 0;
  }
}

.hero {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  background-color: #2C1810;
}
.hero__slide {
  position: relative;
  width: 100%;
  height: clamp(480px, 70vh, 860px);
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero__slide {
    height: clamp(320px, 55vh, 560px);
  }
}
@media (max-width: 480px) {
  .hero__slide {
    height: clamp(260px, 50vh, 400px);
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.swiper-slide-active .hero__bg {
  transform: scale(1);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44, 24, 16, 0.15) 0%, rgba(44, 24, 16, 0.55) 100%);
  z-index: 10;
}
.hero__content {
  position: absolute;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1388px;
  padding-inline: 40px;
  z-index: 11;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .hero__content {
    bottom: 64px;
    padding-inline: 24px;
  }
}
@media (max-width: 480px) {
  .hero__content {
    bottom: 40px;
    padding-inline: 16px;
  }
}
.hero__subtitle {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", sans-serif;
  font-size: clamp(0.875rem, 1.5vw, 0.875rem);
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D4A017;
  margin-bottom: 12px;
  display: block;
}
.hero__title {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .hero__title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
}
@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  }
}
.hero__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.3s ease, width 0.3s ease;
  cursor: pointer;
}
.hero__dot.is-active {
  background: #D4A017;
  width: 24px;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 24px;
  right: 40px;
  z-index: 12;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.75rem, 1vw, 0.75rem);
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
}
@media (max-width: 768px) {
  .hero__scroll-hint {
    display: none;
  }
}
.hero__scroll-hint::after {
  content: "";
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent);
  animation: scroll-hint 1.8s ease infinite;
}

@keyframes scroll-hint {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.quick-links {
  width: 100%;
  box-sizing: border-box;
  background-color: #2C1810;
  position: relative;
  z-index: 10;
}
.quick-links__inner {
  width: 100%;
  max-width: 1388px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media (max-width: 768px) {
  .quick-links__inner {
    padding-inline: 24px;
  }
}
@media (max-width: 480px) {
  .quick-links__inner {
    padding-inline: 16px;
  }
}
.quick-links__inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
@media (max-width: 1024px) {
  .quick-links__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .quick-links__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
.quick-links__item {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.quick-links__item:last-child {
  border-right: none;
}
@media (max-width: 1024px) {
  .quick-links__item:nth-child(3n) {
    border-right: none;
  }
}
@media (max-width: 480px) {
  .quick-links__item:nth-child(2n) {
    border-right: none;
  }
}
.quick-links__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 12px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.quick-links__link:hover {
  background-color: rgba(255, 255, 255, 0.07);
  color: #D4A017;
}
@media (max-width: 480px) {
  .quick-links__link {
    padding: 16px 8px;
  }
}
.quick-links__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.8);
  transition: filter 0.3s ease;
}
@media (max-width: 480px) {
  .quick-links__icon {
    width: 36px;
    height: 36px;
  }
}
.quick-links__link:hover .quick-links__icon {
  filter: brightness(0) saturate(100%) invert(75%) sepia(60%) saturate(800%) hue-rotate(10deg);
}
.quick-links__label {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  font-size: clamp(0.8125rem, 1.2vw, 0.8125rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.top-news {
  padding-block: 64px;
}
.top-news__inner {
  width: 100%;
  max-width: 1388px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media (max-width: 768px) {
  .top-news__inner {
    padding-inline: 24px;
  }
}
@media (max-width: 480px) {
  .top-news__inner {
    padding-inline: 16px;
  }
}
.top-news__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
}
@media (max-width: 768px) {
  .top-news__inner {
    flex-direction: column;
    gap: 24px;
  }
}
.top-news__heading {
  flex-shrink: 0;
  width: 200px;
}
@media (max-width: 768px) {
  .top-news__heading {
    width: 100%;
  }
}
.top-news__title-en {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", sans-serif;
  font-size: clamp(0.8125rem, 1.2vw, 0.8125rem);
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8B0000;
  display: block;
  margin-bottom: 8px;
}
.top-news__title-ja {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.5;
  color: #2C1810;
}
.top-news__list {
  flex: 1;
}
.top-news__more {
  flex-shrink: 0;
  align-self: flex-end;
}
@media (max-width: 768px) {
  .top-news__more {
    align-self: auto;
  }
}

.top-events {
  width: 100%;
  box-sizing: border-box;
  background-color: #f5ede5;
  padding-block: 96px;
  position: relative;
  overflow: hidden;
}
.top-events::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/pattern-wa.svg");
  background-repeat: repeat;
  background-size: 160px;
  opacity: 0.04;
  pointer-events: none;
}
@media (max-width: 768px) {
  .top-events {
    padding-block: 64px;
  }
}
@media (max-width: 480px) {
  .top-events {
    padding-block: 48px;
  }
}
.top-events__inner {
  width: 100%;
  max-width: 1388px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media (max-width: 768px) {
  .top-events__inner {
    padding-inline: 24px;
  }
}
@media (max-width: 480px) {
  .top-events__inner {
    padding-inline: 16px;
  }
}
.top-events__inner {
  position: relative;
  z-index: 10;
}
.top-events__header {
  text-align: center;
  margin-bottom: 64px;
}
.top-events__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .top-events__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .top-events__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.top-events__item {
  background: #FFFFFF;
  border-top: 3px solid #8B0000;
  padding: 16px;
  border-radius: 0 0 4px 4px;
  transition: box-shadow 0.3s ease;
}
.top-events__item:hover {
  box-shadow: 0 4px 12px rgba(44, 24, 16, 0.12);
}
.top-events__month {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  font-size: clamp(0.8125rem, 1.2vw, 0.8125rem);
  font-weight: 700;
  line-height: 1.5;
  color: #8B0000;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  display: block;
}
.top-events__name {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  font-size: clamp(0.875rem, 1.5vw, 0.875rem);
  font-weight: 600;
  line-height: 1.4;
  color: #2C1810;
}
.top-events__date {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", sans-serif;
  font-size: clamp(0.75rem, 1vw, 0.75rem);
  font-weight: 400;
  line-height: 1.8;
  color: #6B6B6B;
  margin-top: 8px;
}
.top-events__more {
  text-align: center;
  margin-top: 64px;
}

.top-about {
  padding-block: 96px;
}
@media (max-width: 768px) {
  .top-about {
    padding-block: 64px;
  }
}
@media (max-width: 480px) {
  .top-about {
    padding-block: 48px;
  }
}
.top-about__inner {
  width: 100%;
  max-width: 1388px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media (max-width: 768px) {
  .top-about__inner {
    padding-inline: 24px;
  }
}
@media (max-width: 480px) {
  .top-about__inner {
    padding-inline: 16px;
  }
}
.top-about__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 96px;
}
@media (max-width: 1024px) {
  .top-about__inner {
    flex-direction: column;
    gap: 40px;
  }
}
.top-about__image {
  flex: 1;
  max-width: 560px;
  position: relative;
}
.top-about__image::before {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid #D9CEBE;
  pointer-events: none;
  z-index: 10;
}
.top-about__image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .top-about__image img {
    height: 300px;
  }
}
.top-about__body {
  flex: 1;
  max-width: 520px;
}
.top-about__label {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", sans-serif;
  font-size: clamp(0.75rem, 1vw, 0.75rem);
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #8B0000;
  display: block;
  margin-bottom: 12px;
}
.top-about__title {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.3;
  color: #2C1810;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.top-about__text {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", sans-serif;
  font-size: clamp(0.875rem, 1.5vw, 0.875rem);
  font-weight: 400;
  line-height: 2;
  color: #2C2C2C;
  margin-bottom: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.top-about__deity {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 16px;
  background-color: #f5ede5;
  border-left: 3px solid #D4A017;
  border-radius: 0 4px 4px 0;
  margin-bottom: 40px;
}
.top-about__deity-label {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", sans-serif;
  font-size: clamp(0.75rem, 1vw, 0.75rem);
  font-weight: 400;
  line-height: 1.8;
  color: #6B6B6B;
}
.top-about__deity-name {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.5;
  color: #2C1810;
}
.top-about__deity-kana {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", sans-serif;
  font-size: clamp(0.8125rem, 1.2vw, 0.8125rem);
  font-weight: 300;
  line-height: 1.8;
  color: #6B6B6B;
  display: block;
}

.top-prayer {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  background-color: #2C1810;
  padding-block: 96px;
  overflow: hidden;
}
.top-prayer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/pattern-wa.svg");
  background-repeat: repeat;
  background-size: 200px;
  opacity: 0.05;
  pointer-events: none;
}
@media (max-width: 768px) {
  .top-prayer {
    padding-block: 64px;
  }
}
@media (max-width: 480px) {
  .top-prayer {
    padding-block: 48px;
  }
}
.top-prayer__inner {
  width: 100%;
  max-width: 1388px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media (max-width: 768px) {
  .top-prayer__inner {
    padding-inline: 24px;
  }
}
@media (max-width: 480px) {
  .top-prayer__inner {
    padding-inline: 16px;
  }
}
.top-prayer__inner {
  position: relative;
  z-index: 10;
}
.top-prayer__header {
  text-align: center;
  margin-bottom: 64px;
  color: #FFFFFF;
}
.top-prayer__title-en {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", sans-serif;
  font-size: clamp(0.8125rem, 1.2vw, 0.8125rem);
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #D4A017;
  display: block;
  margin-bottom: 12px;
}
.top-prayer__title-ja {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.5;
  color: #FFFFFF;
}
.top-prayer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
@media (max-width: 1024px) {
  .top-prayer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .top-prayer__grid {
    grid-template-columns: 1fr;
  }
}
.top-prayer__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 2px solid #D4A017;
  padding: 40px 24px;
  text-align: center;
  transition: background 0.3s ease;
}
.top-prayer__card:hover {
  background: rgba(255, 255, 255, 0.1);
}
.top-prayer__card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
  color: #D4A017;
}
.top-prayer__card-title {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.5;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.top-prayer__card-text {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", sans-serif;
  font-size: clamp(0.8125rem, 1.2vw, 0.8125rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}
.top-prayer__tel-box {
  text-align: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 8px;
  max-width: 480px;
  margin-inline: auto;
}
.top-prayer__tel-label {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", sans-serif;
  font-size: clamp(0.8125rem, 1.2vw, 0.8125rem);
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 8px;
}
.top-prayer__tel-number {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.5;
  color: #D4A017;
  display: block;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.top-prayer__tel-number a {
  color: inherit;
}
.top-prayer__tel-number a:hover {
  color: #FFFFFF;
}
.top-prayer__tel-hours {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", sans-serif;
  font-size: clamp(0.8125rem, 1.2vw, 0.8125rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}

.top-goshuin {
  padding-block: 96px;
  background-color: #FAF6F0;
}
@media (max-width: 768px) {
  .top-goshuin {
    padding-block: 64px;
  }
}
@media (max-width: 480px) {
  .top-goshuin {
    padding-block: 48px;
  }
}
.top-goshuin__inner {
  width: 100%;
  max-width: 1388px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media (max-width: 768px) {
  .top-goshuin__inner {
    padding-inline: 24px;
  }
}
@media (max-width: 480px) {
  .top-goshuin__inner {
    padding-inline: 16px;
  }
}
.top-goshuin__header {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .top-goshuin__header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.top-goshuin__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .top-goshuin__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .top-goshuin__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .top-goshuin__grid {
    grid-template-columns: 1fr;
  }
}

.top-sns {
  width: 100%;
  box-sizing: border-box;
  background-color: #f0e8df;
  padding-block: 64px;
}
.top-sns__inner {
  width: 100%;
  max-width: 1388px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media (max-width: 768px) {
  .top-sns__inner {
    padding-inline: 24px;
  }
}
@media (max-width: 480px) {
  .top-sns__inner {
    padding-inline: 16px;
  }
}
.top-sns__inner {
  text-align: center;
}
.top-sns__title {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.5;
  color: #2C1810;
  margin-bottom: 24px;
}
.top-sns__links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}
.top-sns__link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 40px;
  border: 1px solid #D9CEBE;
  border-radius: 9999px;
  background: #FFFFFF;
  color: #2C1810;
  font-size: clamp(0.875rem, 1.5vw, 0.875rem);
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.top-sns__link:hover {
  background: #8B0000;
  color: #FFFFFF;
  border-color: #8B0000;
}
.top-sns__link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.top-sns__instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
}
@media (max-width: 768px) {
  .top-sns__instagram-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 480px) {
  .top-sns__instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.top-sns__instagram-item {
  aspect-ratio: 1/1;
  overflow: hidden;
}
.top-sns__instagram-item img, .top-sns__instagram-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.top-sns__instagram-item {
  overflow: hidden;
  background: #D9CEBE;
}
.top-sns__instagram-item img {
  transition: transform 0.4s ease;
}
.top-sns__instagram-item:hover img {
  transform: scale(1.06);
}

.top-access {
  width: 100%;
  box-sizing: border-box;
}
.top-access__map {
  width: 100%;
  height: 400px;
  position: relative;
}
.top-access__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  filter: saturate(0.8) brightness(0.95);
}
@media (max-width: 768px) {
  .top-access__map {
    height: 300px;
  }
}
@media (max-width: 480px) {
  .top-access__map {
    height: 240px;
  }
}
.top-access__info {
  width: 100%;
  box-sizing: border-box;
  background-color: #2C1810;
}
.top-access__info-inner {
  width: 100%;
  max-width: 1388px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media (max-width: 768px) {
  .top-access__info-inner {
    padding-inline: 24px;
  }
}
@media (max-width: 480px) {
  .top-access__info-inner {
    padding-inline: 16px;
  }
}
.top-access__info-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
  padding-block: 64px;
  color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 768px) {
  .top-access__info-inner {
    flex-direction: column;
    gap: 40px;
  }
}
.top-access__detail dl {
  display: grid;
  grid-template-columns: 6em 1fr;
  gap: 8px 16px;
  font-size: clamp(0.875rem, 1.5vw, 0.875rem);
}
.top-access__detail dt {
  color: #D4A017;
  font-weight: 500;
}
.top-access__title {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.5;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.u-text-left {
  text-align: left !important;
}

.u-text-center {
  text-align: center !important;
}

.u-text-right {
  text-align: right !important;
}

@media (max-width: 768px) {
  .u-pc-only {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  .u-tab-only {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .u-tab-only {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  .u-sp-only {
    display: none !important;
  }
}
@media (min-width: 481px) {
  .u-sp-only {
    display: none !important;
  }
}

.u-hidden {
  display: none !important;
}

.u-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.u-mt-xs {
  margin-top: 8px !important;
}

.u-mt-sm {
  margin-top: 12px !important;
}

.u-mt-md {
  margin-top: 16px !important;
}

.u-mt-lg {
  margin-top: 24px !important;
}

.u-mt-xl {
  margin-top: 40px !important;
}

.u-mt-2xl {
  margin-top: 64px !important;
}

.u-mb-xs {
  margin-bottom: 8px !important;
}

.u-mb-sm {
  margin-bottom: 12px !important;
}

.u-mb-md {
  margin-bottom: 16px !important;
}

.u-mb-lg {
  margin-bottom: 24px !important;
}

.u-mb-xl {
  margin-bottom: 40px !important;
}

.u-mb-2xl {
  margin-bottom: 64px !important;
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].is-visible {
  opacity: 1;
  transform: none;
}
[data-animate][data-delay="100"] {
  transition-delay: 0.1s;
}
[data-animate][data-delay="200"] {
  transition-delay: 0.2s;
}
[data-animate][data-delay="300"] {
  transition-delay: 0.3s;
}
[data-animate][data-delay="400"] {
  transition-delay: 0.4s;
}
[data-animate][data-delay="500"] {
  transition-delay: 0.5s;
}

:focus-visible {
  outline: 3px solid #8B0000;
  outline-offset: 3px;
}

@media print {
  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
body.elementor-page {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", sans-serif;
  color: #2C2C2C;
  background-color: #FAF6F0;
}

.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 1388px;
}

.e-con.e-con-boxed {
  --container-max-width: 1388px;
}

.elementor-section.elementor-section-full_width > .elementor-container,
.elementor-section.elementor-section-stretched > .elementor-container {
  max-width: 100%;
}

.site-header,
.site-footer {
  margin: 0;
  padding: 0;
}

.elementor-location-header,
.elementor-location-footer {
  width: 100%;
  box-sizing: border-box;
}

::selection {
  background-color: rgba(139, 0, 0, 0.2);
  color: #2C1810;
}

/* =============================================================================
   祈祷ページ — prayer widget
   ============================================================================= */

/* ---- 予約・受付案内バナー ---- */
.prayer-reception {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.prayer-reception__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.prayer-reception__deco::before,
.prayer-reception__deco::after {
  content: '';
  position: absolute;
  background: rgba(212, 160, 23, 0.15);
  border-radius: 2px;
}

.prayer-reception__deco::before {
  width: 200px; height: 200px;
  top: -60px; right: -40px;
  transform: rotate(30deg);
}

.prayer-reception__deco::after {
  width: 120px; height: 120px;
  bottom: -30px; left: -20px;
  transform: rotate(20deg);
}

/* 朱色 */
.prayer-reception--primary {
  background: linear-gradient(135deg, #8B0000 0%, #700000 100%);
  color: #fff;
}
.prayer-reception--primary .prayer-reception__sub     { color: rgba(255,255,255,.65); }
.prayer-reception--primary .prayer-reception__heading { color: #fff; border-bottom-color: rgba(212,160,23,.6); }
.prayer-reception--primary .prayer-reception__tel     { color: #fff; }
.prayer-reception--primary .prayer-reception__tel:hover { color: #D4A017; }
.prayer-reception--primary .prayer-reception__tel-label,
.prayer-reception--primary .prayer-reception__info-label { color: rgba(255,255,255,.7); }
.prayer-reception--primary .prayer-reception__info-value { color: #fff; }
.prayer-reception--primary .prayer-reception__info-icon  { color: #D4A017; }
.prayer-reception--primary .prayer-reception__note       { color: rgba(255,255,255,.65); border-left-color: rgba(212,160,23,.5); }

/* 深茶 */
.prayer-reception--dark {
  background: linear-gradient(135deg, #2C1810 0%, #1A1208 100%);
  color: #fff;
}
.prayer-reception--dark .prayer-reception__sub     { color: rgba(255,255,255,.55); }
.prayer-reception--dark .prayer-reception__heading { color: #D4A017; border-bottom-color: rgba(212,160,23,.4); }
.prayer-reception--dark .prayer-reception__tel     { color: #D4A017; }
.prayer-reception--dark .prayer-reception__tel:hover { color: #fff; }
.prayer-reception--dark .prayer-reception__tel-label,
.prayer-reception--dark .prayer-reception__info-label { color: rgba(255,255,255,.6); }
.prayer-reception--dark .prayer-reception__info-value { color: #fff; }
.prayer-reception--dark .prayer-reception__info-icon  { color: #D4A017; }
.prayer-reception--dark .prayer-reception__note       { color: rgba(255,255,255,.55); border-left-color: rgba(212,160,23,.4); }

/* 生成り */
.prayer-reception--light {
  background: #FAF6F0;
  border: 2px solid #D9CEBE;
  color: #2C2C2C;
}
.prayer-reception--light .prayer-reception__deco::before,
.prayer-reception--light .prayer-reception__deco::after { background: rgba(139,0,0,.06); }
.prayer-reception--light .prayer-reception__sub         { color: #6B6B6B; }
.prayer-reception--light .prayer-reception__heading     { color: #8B0000; border-bottom-color: rgba(139,0,0,.25); }
.prayer-reception--light .prayer-reception__tel         { color: #8B0000; }
.prayer-reception--light .prayer-reception__tel:hover   { color: #700000; }
.prayer-reception--light .prayer-reception__tel-label,
.prayer-reception--light .prayer-reception__info-label  { color: #6B6B6B; }
.prayer-reception--light .prayer-reception__info-value  { color: #2C2C2C; }
.prayer-reception--light .prayer-reception__info-icon   { color: #8B0000; }
.prayer-reception--light .prayer-reception__note        { color: #6B6B6B; border-left-color: rgba(139,0,0,.3); }

/* 共通レイアウト */
.prayer-reception__inner {
  position: relative;
  z-index: 1;
  padding: 2.5rem 3rem;
}
@media (max-width: 768px) {
  .prayer-reception__inner { padding: 2rem; }
}
@media (max-width: 480px) {
  .prayer-reception__inner { padding: 1.5rem 1.25rem; }
}

.prayer-reception__sub {
  font-size: 0.8125rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin: 0 0 .4rem;
}

.prayer-reception__heading {
  font-family: "Noto Serif JP","游明朝","Yu Mincho","ヒラギノ明朝 ProN",serif;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin: 0 0 1.75rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid transparent;
  line-height: 1.3;
}

.prayer-reception__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.prayer-reception__tel-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .35rem;
}

.prayer-reception__tel-label {
  font-size: 0.8125rem;
  letter-spacing: .08em;
}

.prayer-reception__tel {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  transition: color .15s ease;
  line-height: 1;
}

.prayer-reception__tel-number {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
}

.prayer-reception__info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
}

.prayer-reception__info-item {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}

.prayer-reception__info-icon {
  margin-top: .1em;
  flex-shrink: 0;
}

.prayer-reception__info-label {
  font-size: 0.8125rem;
  margin: 0 0 .2rem;
}

.prayer-reception__info-value {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.prayer-reception__note {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.7;
  padding-left: .85rem;
  border-left: 3px solid transparent;
}

.prayer-group + .prayer-group {
  margin-top: 3rem;
}

/* 子カテゴリーグループ */
.prayer-group--child {
  margin-top: 2rem;
  padding-left: 1.25rem;
  border-left: 2px solid #D9CEBE;
}

.prayer-group__heading {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #8B0000;
  padding: 0.4em 0.8em;
  border-left: 4px solid #8B0000;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

/* 子カテゴリー見出し */
.prayer-group__heading--child {
  font-size: 1rem;
  border-left-width: 3px;
  color: #2C1810;
  margin-bottom: 1rem;
}

/* カードグリッド */
.prayer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

@media (max-width: 480px) {
  .prayer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* カード */
.prayer-item--card {
  background: #ffffff;
  border: 1px solid #D9CEBE;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.prayer-item--card:hover {
  box-shadow: 0 4px 12px rgba(44, 24, 16, 0.12);
  transform: translateY(-2px);
}

.prayer-item--card .prayer-item__title {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #2C1810;
  margin: 0;
  line-height: 1.4;
  padding-bottom: 0.6em;
  border-bottom: 1px solid #EDE7DD;
}

.prayer-item--card .prayer-item__fee {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.875rem;
  color: #6B6B6B;
  margin: 0;
}

.prayer-item--card .prayer-item__fee-label {
  background: #FAF6F0;
  border: 1px solid #D9CEBE;
  border-radius: 4px;
  padding: 0.1em 0.5em;
  font-size: 0.8125rem;
  color: #6B6B6B;
  white-space: nowrap;
}

.prayer-item--card .prayer-item__comment {
  font-size: 0.875rem;
  color: #2C2C2C;
  line-height: 1.7;
}

.prayer-item--card .prayer-item__comment p {
  margin: 0;
}

.prayer-item--card .prayer-item__comment p + p {
  margin-top: 0.5em;
}

/* リスト */
.prayer-list {
  display: flex;
  flex-direction: column;
}

.prayer-item--list {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 0.5rem 1.5rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid #EDE7DD;
}

.prayer-item--list:first-child {
  border-top: 1px solid #EDE7DD;
}

.prayer-item--list .prayer-item__title {
  font-size: 1rem;
  font-weight: 600;
  color: #2C2C2C;
  margin: 0;
  grid-column: 1;
  grid-row: 1;
}

.prayer-item--list .prayer-item__fee {
  font-size: 0.875rem;
  color: #6B6B6B;
  margin: 0;
  grid-column: 2;
  grid-row: 1;
  white-space: nowrap;
  text-align: right;
}

.prayer-item--list .prayer-item__fee-label {
  display: none;
}

.prayer-item--list .prayer-item__comment {
  font-size: 0.875rem;
  color: #6B6B6B;
  line-height: 1.6;
  grid-column: 1 / -1;
  grid-row: 2;
}

.prayer-item--list .prayer-item__comment p {
  margin: 0;
}

@media (max-width: 480px) {
  .prayer-item--list {
    grid-template-columns: 1fr;
  }

  .prayer-item--list .prayer-item__fee {
    grid-column: 1;
    grid-row: 2;
    text-align: left;
  }

  .prayer-item--list .prayer-item__comment {
    grid-row: 3;
  }
}

/* 厄年表 見出し */
.yakudoshi-heading {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #2C1810;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* 厄年表 レイアウト */
.yakudoshi-tables--side-by-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .yakudoshi-tables--side-by-side {
    grid-template-columns: 1fr;
  }
}

.yakudoshi-tables--stacked {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.yakudoshi-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.yakudoshi-table__title {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #8B0000;
  padding: 0.4em 0.8em;
  border-left: 4px solid #8B0000;
  margin-bottom: 1rem;
}

.yakudoshi-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.yakudoshi-table th,
.yakudoshi-table td {
  padding: 0.65em 1em;
  border-bottom: 1px solid #D9CEBE;
  text-align: left;
  vertical-align: middle;
}

.yakudoshi-table th {
  background: #FAF6F0;
  font-weight: 700;
  color: #2C2C2C;
  white-space: nowrap;
}

/* 本厄行を強調 */
.yakudoshi-row--hon td {
  font-weight: 700;
}

.yakudoshi-row--hon .yakudoshi-row__type {
  color: #8B0000;
}

.yakudoshi-row__nengo {
  font-size: 0.8em;
  color: #6B6B6B;
}

.yakudoshi-tables__note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #6B6B6B;
  line-height: 1.7;
}

/* 七五三表 */
.shichigosan-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.shichigosan-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.shichigosan-table th,
.shichigosan-table td {
  padding: 0.65em 1em;
  border-bottom: 1px solid #D9CEBE;
  text-align: left;
  vertical-align: middle;
}

.shichigosan-table th {
  background: #FAF6F0;
  font-weight: 700;
  color: #2C2C2C;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .shichigosan-table th,
  .shichigosan-table td {
    padding: 0.55em 0.7em;
    font-size: 0.875rem;
  }
}

.shichigosan-row__age {
  font-weight: 600;
}

.shichigosan-row__ceremony,
.shichigosan-row__note {
  color: #6B6B6B;
  font-size: 0.875rem;
}

/* 性別バッジ */
.shichigosan-row__gender-badge {
  display: inline-block;
  padding: 0.15em 0.65em;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 700;
  white-space: nowrap;
}

.shichigosan-row__gender-badge--boys {
  background: #EBF4FF;
  color: #1E5FA8;
}

.shichigosan-row__gender-badge--girls {
  background: #FFF0F5;
  color: #B03060;
}

.shichigosan-row__gender-badge--both {
  background: #FAF6F0;
  color: #6B6B6B;
  border: 1px solid #D9CEBE;
}

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

/* =============================================================
   共通セクション見出し装飾  .yasaka-section-header
   （由緒・年間行事・祈祷ページで共用）
   ============================================================= */
.yasaka-section-header{text-align:center;margin-bottom:2.5rem}
.yasaka-section-header__title{font-family:'Noto Serif JP',serif;font-size:1.9rem;font-weight:600;color:#2C1810;margin:0 0 1.4rem;letter-spacing:.1em;display:inline-block;position:relative}
.yasaka-section-header__title::after{content:'';position:absolute;bottom:-5px;left:50%;transform:translateX(-50%);width:1.8em;height:2px;background:#8B2020;border-radius:1px}
.yasaka-section-header__ornament{display:flex;align-items:center;justify-content:center;margin:0 auto;max-width:360px}
.yasaka-section-header__ornament::before{content:'';flex:1;height:1px;background:linear-gradient(to right,transparent,#D4A017)}
.yasaka-section-header__ornament::after{content:'';flex:1;height:1px;background:linear-gradient(to left,transparent,#D4A017)}
.yasaka-section-header__ornament span{font-size:0;width:8px;height:8px;background:#D4A017;transform:rotate(45deg);margin:0 14px;flex-shrink:0;position:relative}
.yasaka-section-header__ornament span::before{content:'';position:absolute;inset:-4px;border:1px solid rgba(212,160,23,.45)}

/* =============================================================
   Origin Page Widgets  (shrine-deity / shrine-history / sessha)
   ============================================================= */

/* ---- 共通セクション見出し ---- */
.shrine-history__header,
.sessha-section__header{text-align:center;margin-bottom:3.5rem}

/* 英語サブ */
.shrine-history__heading-en,
.sessha-section__heading-en{display:block;font-size:.68rem;letter-spacing:.32em;color:#8B2020;text-transform:uppercase;margin-bottom:.7rem}

/* 日本語大見出し */
.shrine-history__heading,
.sessha-section__heading{font-family:'Noto Serif JP',serif;font-size:1.9rem;font-weight:600;color:#2C1810;margin:0 0 1.4rem;letter-spacing:.1em;display:inline-block;position:relative}
/* 見出し直下の朱色アンダーライン */
.shrine-history__heading::after,
.sessha-section__heading::after{content:'';position:absolute;bottom:-5px;left:50%;transform:translateX(-50%);width:1.8em;height:2px;background:#8B2020;border-radius:1px}

/* ダイヤモンド区切り線 */
.shrine-history__divider,
.sessha-section__divider{display:flex;align-items:center;justify-content:center;margin:0 auto 1.5rem;max-width:360px}
.shrine-history__divider::before,
.sessha-section__divider::before{content:'';flex:1;height:1px;background:linear-gradient(to right,transparent,#D4A017)}
.shrine-history__divider::after,
.sessha-section__divider::after{content:'';flex:1;height:1px;background:linear-gradient(to left,transparent,#D4A017)}
/* ダイヤモンド（テキストを非表示にしてCSS菱形に） */
.shrine-history__divider-ornament,
.sessha-section__divider-ornament{font-size:0;width:8px;height:8px;background:#D4A017;transform:rotate(45deg);margin:0 14px;flex-shrink:0;position:relative}
.shrine-history__divider-ornament::before,
.sessha-section__divider-ornament::before{content:'';position:absolute;inset:-4px;border:1px solid rgba(212,160,23,.45)}

/* ---- 御祭神 shrine-deity ---- */
.shrine-deity{width:100%;text-align:center}
.shrine-deity--side{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center;text-align:left}
@media(max-width:640px){.shrine-deity--side{grid-template-columns:1fr;text-align:center}}

/* ラベル（「御祭神」） — 左右にゴールドのライン */
.shrine-deity__label{display:inline-flex;align-items:center;gap:.75rem;font-size:.68rem;letter-spacing:.32em;color:#8B2020;text-transform:uppercase;margin-bottom:1rem}
.shrine-deity__label::before,
.shrine-deity__label::after{content:'';width:36px;height:1px;background:#D4A017;flex-shrink:0}

/* 神名 */
.shrine-deity__name-wrap{margin-bottom:1.75rem;padding-bottom:1.5rem;position:relative}
.shrine-deity__name-wrap::after{content:'';position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:200px;height:1px;background:linear-gradient(to right,transparent,#D4A017 30%,#D4A017 70%,transparent)}
.shrine-deity--side .shrine-deity__name-wrap::after{left:0;transform:none;background:linear-gradient(to right,#D4A017 60%,transparent)}
.shrine-deity__name{font-family:'Noto Serif JP',serif;font-size:2.75rem;font-weight:700;color:#2C1810;margin:0 0 .4rem;letter-spacing:.12em;line-height:1.3}
.shrine-deity__reading{font-size:.85rem;color:#7A6A5A;letter-spacing:.22em;margin:0}
.shrine-deity__image-wrap{border-radius:50%;overflow:hidden;width:220px;height:220px;margin:0 auto 1.5rem;border:4px solid #D4A017;box-shadow:0 4px 20px rgba(44,24,16,.15)}
.shrine-deity__image-wrap--center{width:180px;height:180px}
.shrine-deity--side .shrine-deity__image-wrap{margin:0;border-radius:12px;width:100%;height:280px}
.shrine-deity__image{width:100%;height:100%;object-fit:cover}
.shrine-deity__description{font-size:.95rem;line-height:1.9;color:#4A3728}

/* ---- 由緒本文 shrine-history ---- */
.shrine-history{width:100%}
.shrine-history__founding{display:inline-block;font-size:.8rem;background:#FAF0DC;border:1px solid #D4A017;color:#7A5C00;padding:4px 16px;border-radius:20px;letter-spacing:.08em;margin:0}
.shrine-history__body{font-size:1rem;line-height:2;color:#3D2B1A}
.shrine-history__body p{margin-bottom:1.25em}
.shrine-history__body p:last-child{margin-bottom:0}


/* =============================================================
   Map List Widget  (cpt_map 境内図)
   ============================================================= */

/* ---- セクションヘッダー（shrine-history / sessha と同じ装飾パターン） ---- */
.map-section{width:100%}
.map-section__header{text-align:center;margin-bottom:3.5rem}
.map-section__heading-en{display:block;font-size:.68rem;letter-spacing:.32em;color:#8B2020;text-transform:uppercase;margin-bottom:.7rem}
.map-section__heading{font-family:'Noto Serif JP',serif;font-size:1.9rem;font-weight:600;color:#2C1810;margin:0 0 1.4rem;letter-spacing:.1em;display:inline-block;position:relative}
.map-section__heading::after{content:'';position:absolute;bottom:-5px;left:50%;transform:translateX(-50%);width:1.8em;height:2px;background:#8B2020;border-radius:1px}
.map-section__divider{display:flex;align-items:center;justify-content:center;margin:0 auto 1.5rem;max-width:360px}
.map-section__divider::before{content:'';flex:1;height:1px;background:linear-gradient(to right,transparent,#D4A017)}
.map-section__divider::after{content:'';flex:1;height:1px;background:linear-gradient(to left,transparent,#D4A017)}
.map-section__divider-ornament{font-size:0;width:8px;height:8px;background:#D4A017;transform:rotate(45deg);margin:0 14px;flex-shrink:0;position:relative}
.map-section__divider-ornament::before{content:'';position:absolute;inset:-4px;border:1px solid rgba(212,160,23,.45)}

/* ---- stack レイアウト ---- */
.map-list--stack{display:flex;flex-direction:column;gap:4rem}
.map-item--stack{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start}
.map-item--stack.map-item--reverse{direction:rtl}
.map-item--stack.map-item--reverse>*{direction:ltr}
@media(max-width:640px){.map-item--stack{grid-template-columns:1fr;gap:1.5rem}.map-item--stack.map-item--reverse{direction:ltr}}

/* ---- card レイアウト ---- */
.map-list--card{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:2rem}
.map-item--card{background:#fff;border:1px solid #E8DDD0;border-radius:12px;overflow:hidden;box-shadow:0 2px 12px rgba(44,24,16,.06)}
.map-item--card .map-item__image-wrap{border-radius:0;aspect-ratio:16/9}
.map-item--card .map-item__body{padding:1.5rem}

/* ---- 画像 ---- */
.map-item__image-wrap{border-radius:12px;overflow:hidden;aspect-ratio:4/3;background:#F0EAE0;display:flex;align-items:center;justify-content:center}
.map-item__gallery{display:grid;gap:6px;border-radius:12px;overflow:hidden}
.map-item__gallery--cols-1{grid-template-columns:1fr}
.map-item__gallery--cols-2{grid-template-columns:1fr 1fr}
.map-item__gallery--cols-3{grid-template-columns:1fr 1fr 1fr}
.map-item__gallery-thumb{aspect-ratio:4/3;overflow:hidden;background:#F0EAE0}
.map-item__gallery-thumb img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .3s}
.map-item__gallery-thumb:hover img{transform:scale(1.04)}
@media(max-width:600px){.map-item__gallery--cols-3{grid-template-columns:1fr 1fr}}
.map-item__image{width:100%;height:100%;object-fit:cover;display:block}
.map-item__placeholder{font-size:3rem;opacity:.25}

/* ---- テキスト ---- */
.map-item__body{display:flex;flex-direction:column;gap:1rem}
.map-item__title{font-family:'Noto Serif JP',serif;font-size:1.4rem;font-weight:600;color:#2C1810;margin:0;padding-bottom:.75rem;border-bottom:1px solid #E8DDD0;position:relative}
.map-item__title::after{content:'';position:absolute;bottom:-1px;left:0;width:2em;height:2px;background:#D4A017;border-radius:1px}
.map-item__comment{font-size:.92rem;line-height:1.85;color:#4A3728}
.map-item__comment p{margin-bottom:.75em}
.map-item__comment p:last-child{margin-bottom:0}

/* ---- 補足情報（リピーター） ---- */
.map-item__details{margin:0;display:flex;flex-direction:column;gap:.35rem}
.map-item__details-row{display:flex;gap:.75rem;align-items:baseline;font-size:.85rem}
.map-item__details-term{flex-shrink:0;background:#F0EAE0;color:#7A5C00;font-weight:600;padding:2px 10px;border-radius:3px;white-space:nowrap}
.map-item__details-desc{color:#4A3728;margin:0}

/* =============================================================
   Contact Form Widget  (_contact)
   ============================================================= */

/* ---- ラッパー ---- */
.contact-wrap{max-width:760px;margin:0 auto}
.contact-wrap__intro{font-size:.95rem;line-height:1.9;color:#5C4D3E;margin-bottom:2rem;text-align:center}

/* ---- 電話バナー ---- */
.contact-wrap__phone{display:flex;align-items:center;gap:1rem;background:linear-gradient(135deg,#7B1212 0%,#A52020 100%);color:#fff;border-radius:8px;padding:.85rem 1.25rem;margin-bottom:2rem;box-shadow:0 3px 12px rgba(139,32,32,.22)}
.contact-wrap__phone-icon{flex-shrink:0;width:36px;height:36px;background:rgba(255,255,255,.15);border-radius:50%;display:flex;align-items:center;justify-content:center}
.contact-wrap__phone-icon svg{width:18px;height:18px;fill:#fff}
.contact-wrap__phone-body{display:flex;align-items:center;gap:1rem;flex-wrap:wrap}
.contact-wrap__phone-label{font-size:.78rem;opacity:.85;letter-spacing:.04em;white-space:nowrap}
.contact-wrap__phone-number{font-size:1.35rem;font-weight:700;color:#fff;text-decoration:none;letter-spacing:.04em;line-height:1}
.contact-wrap__phone-number:hover{opacity:.82}
.contact-wrap__phone-hours{font-size:.75rem;opacity:.8;white-space:nowrap}
@media(max-width:560px){.contact-wrap__phone{flex-wrap:wrap;gap:.5rem}.contact-wrap__phone-body{gap:.5rem}.contact-wrap__phone-number{font-size:1.15rem}}

/* ---- フォームエリア ---- */
.contact-wrap__form{background:#FAF8F5;border:1px solid #D4C8B8;border-radius:10px;padding:2.5rem 2rem}
@media(max-width:600px){.contact-wrap__form{padding:1.5rem 1rem}}

/* ---- CF7 デフォルト上書き ---- */
.contact-wrap__form .wpcf7-response-output{border-radius:6px;padding:.75rem 1rem;font-size:.88rem;margin:1.5rem 0 0;border-width:1px}
.contact-wrap__form .wpcf7-mail-sent-ok{border-color:#2E7D32;background:#E8F5E9;color:#1B5E20}
.contact-wrap__form .wpcf7-mail-sent-ng,
.contact-wrap__form .wpcf7-validation-errors,
.contact-wrap__form .wpcf7-spam-blocked{border-color:#C0392B;background:#FDECEA;color:#922B21}
.contact-wrap__form .wpcf7-not-valid-tip{color:#C0392B;font-size:.78rem;margin-top:4px;display:block}
.contact-wrap__form .ajax-loader{vertical-align:middle;margin-left:.5rem}

/* ---- フォームレイアウト (.cf7-* クラスを CF7 テンプレートで付与) ---- */
.cf7-body{display:flex;flex-direction:column;gap:1.25rem}
.cf7-row{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem}
@media(max-width:560px){.cf7-row{grid-template-columns:1fr}}
.cf7-group{display:flex;flex-direction:column;gap:.35rem}
.cf7-label{font-size:.875rem;font-weight:600;color:#3D2B1A;letter-spacing:.04em}
.cf7-badge{display:inline-block;font-size:.7rem;font-weight:700;background:#8B2020;color:#fff;padding:2px 7px;border-radius:3px;margin-left:.4em;vertical-align:middle;letter-spacing:0}
.cf7-badge--opt{background:#7A7A6A}
/* CF7 が <br> を自動挿入するので非表示にして gap で間隔を制御 */
.cf7-group br{display:none}

/* 入力共通 */
.cf7-input,.cf7-textarea,.cf7-select{width:100%;padding:.65rem .9rem;font-size:.95rem;font-family:inherit;color:#2C1F0E;background:#fff;border:1px solid #D4C8B8;border-radius:6px;transition:border-color .2s,box-shadow .2s;-webkit-appearance:none;appearance:none}
.cf7-input:focus,.cf7-textarea:focus,.cf7-select:focus{outline:none;border-color:#8B2020;box-shadow:0 0 0 3px rgba(139,32,32,.12)}
.cf7-input.wpcf7-not-valid,.cf7-textarea.wpcf7-not-valid,.cf7-select.wpcf7-not-valid{border-color:#C0392B}
.cf7-textarea{min-height:140px;resize:vertical;line-height:1.75}
.cf7-select{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right .9rem center;padding-right:2.5rem;cursor:pointer}

/* 同意チェック */
.cf7-acceptance{font-size:.875rem;color:#5C4D3E;line-height:1.7}
.cf7-acceptance input[type=checkbox]{accent-color:#8B2020;width:16px;height:16px;vertical-align:middle;margin-right:.4em}
.cf7-acceptance a{color:#8B2020;text-decoration:underline}

/* 送信ボタン */
.cf7-submit-wrap{display:flex;justify-content:center;margin-top:.5rem}
.cf7-btn{display:inline-flex;align-items:center;justify-content:center;padding:.85rem 3.5rem;font-size:1rem;font-weight:700;font-family:inherit;letter-spacing:.1em;color:#fff;background:linear-gradient(135deg,#7B1212 0%,#A52020 100%);border:none;border-radius:50px;cursor:pointer;transition:opacity .2s,transform .15s,box-shadow .2s;box-shadow:0 4px 14px rgba(139,32,32,.3);min-width:200px}
.cf7-btn:hover{opacity:.87;transform:translateY(-1px);box-shadow:0 6px 18px rgba(139,32,32,.35)}
.cf7-btn:active{transform:translateY(0)}
.cf7-btn:disabled{opacity:.5;cursor:not-allowed;transform:none}

.site-footer{background:#F5EFE6;color:#3D2B1A;font-family:'Noto Serif JP',serif;padding:0;border-top:3px solid #C9A84C}
.site-footer__inner{display:grid;grid-template-columns:1fr auto;gap:3rem;max-width:1100px;margin:0 auto;padding:3rem 2rem 2rem;align-items:start}
@media(max-width:768px){.site-footer__inner{grid-template-columns:1fr;gap:1.75rem;padding:2.25rem 1.25rem 1.75rem}}
.site-footer__name{font-size:1.2rem;font-weight:700;color:#2C1810;letter-spacing:.1em;margin:0 0 .2rem;line-height:1.4}
.site-footer__name-en{font-size:.68rem;color:#9A8A74;letter-spacing:.18em;text-transform:uppercase;margin:0 0 1.4rem}
.site-footer__info{margin:0 0 1.25rem;display:flex;flex-direction:column;gap:.5rem}
.site-footer__info-row{display:flex;gap:.75rem;align-items:baseline;font-size:.82rem;line-height:1.6}
.site-footer__info-row dt{color:#8A7060;white-space:nowrap;min-width:4.5em;font-weight:400;flex-shrink:0}
.site-footer__info-row dd{color:#3D2B1A;margin:0}
.site-footer__info-row dd a{color:#3D2B1A;text-decoration:none;transition:color .2s}
.site-footer__info-row dd a:hover{color:#8B2020;text-decoration:underline}
.site-footer__sns{display:flex;gap:.75rem;margin-top:.25rem}
.site-footer__sns-link{display:flex;align-items:center;justify-content:center;width:34px;height:34px;color:#8A7060;border:1px solid #D4C3A8;border-radius:50%;transition:color .2s,border-color .2s,background .2s}
.site-footer__sns-link svg{width:15px;height:15px}
.site-footer__sns-link:hover{color:#fff;border-color:#8B2020;background:#8B2020}
.site-footer__nav-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:row;flex-wrap:wrap;gap:.4rem 1.5rem}
@media(max-width:768px){.site-footer__nav-list{flex-direction:column;gap:.4rem}}
.site-footer__nav-link{font-size:.82rem;color:#6A5848;text-decoration:none;letter-spacing:.05em;line-height:1.7;padding:.05em 0 .05em .05em;border-bottom:1px solid transparent;transition:color .2s,border-color .2s;display:inline-flex;align-items:center;gap:.35em}
.site-footer__nav-link::after{content:'›';font-size:1rem;line-height:1;color:#C9A84C;transition:color .2s,transform .2s;display:inline-block}
.site-footer__nav-link:hover::after{transform:translateX(2px)}
.site-footer__nav-link:hover{color:#8B2020;border-bottom-color:rgba(139,32,32,.35)}
.site-footer__copy{background:#EDE5D8;border-top:1px solid #D4C3A8;text-align:center;padding:.8rem 1.25rem}
.site-footer__copy small{font-size:.72rem;color:#8A7060;letter-spacing:.08em}

/* Yasaka Lightbox */
.map-item__lb-trigger{display:block;position:relative;overflow:hidden;border-radius:inherit}
.map-item__lb-trigger img{display:block;width:100%;height:100%;object-fit:cover;transition:transform .3s}
.map-item__lb-trigger:hover img{transform:scale(1.04)}
.map-item__lb-icon{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,0);transition:background .25s;pointer-events:none}
.map-item__lb-icon svg{width:28px;height:28px;color:#fff;opacity:0;transition:opacity .25s;filter:drop-shadow(0 1px 3px rgba(0,0,0,.5))}
.map-item__lb-trigger:hover .map-item__lb-icon{background:rgba(0,0,0,.25)}
.map-item__lb-trigger:hover .map-item__lb-icon svg{opacity:1}
.yk-lb{position:fixed;inset:0;z-index:99999;display:flex;align-items:center;justify-content:center;opacity:0;visibility:hidden;transition:opacity .25s,visibility .25s}
.yk-lb--open{opacity:1;visibility:visible}
.yk-lb__backdrop{position:absolute;inset:0;background:rgba(10,5,2,.92);cursor:pointer}
.yk-lb__wrap{position:relative;z-index:1;display:flex;align-items:center;justify-content:center;gap:1rem;width:100%;max-width:1200px;padding:1rem;box-sizing:border-box}
.yk-lb__stage{flex:1;display:flex;align-items:center;justify-content:center;min-height:0}
.yk-lb__img{max-width:100%;max-height:88vh;object-fit:contain;border-radius:4px;box-shadow:0 8px 48px rgba(0,0,0,.6);transition:opacity .2s}
.yk-lb__img--loading{opacity:.3}
.yk-lb__btn{flex-shrink:0;width:44px;height:44px;border:none;background:rgba(255,255,255,.1);border-radius:50%;color:#fff;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .2s;backdrop-filter:blur(4px)}
.yk-lb__btn svg{width:22px;height:22px}
.yk-lb__btn:hover{background:rgba(255,255,255,.22)}
.yk-lb__close{position:absolute;top:1rem;right:1rem;z-index:2}
.yk-lb__prev,.yk-lb__next{position:relative}
.yk-lb__footer{position:absolute;bottom:0;left:0;right:0;text-align:center;padding:.75rem 1rem;pointer-events:none}
.yk-lb__caption{color:rgba(255,255,255,.85);font-size:.875rem;margin:0 0 .25rem;line-height:1.5}
.yk-lb__counter{color:rgba(255,255,255,.5);font-size:.78rem;letter-spacing:.06em}
@media(max-width:600px){.yk-lb__prev,.yk-lb__next{display:none}.yk-lb__img{max-height:78vh}}

/* goshuin-grid */
.goshuin-group{margin-bottom:2.5rem}
.goshuin-group:last-child{margin-bottom:0}
.goshuin-group__heading{font-family:'Noto Serif JP',serif;font-size:1.1rem;font-weight:600;color:#2C1810;margin:0 0 1.25rem;padding-bottom:.5rem;border-bottom:2px solid #E8DDD0;position:relative}
.goshuin-group__heading::after{content:'';position:absolute;bottom:-2px;left:0;width:2.5em;height:2px;background:#C9A84C}
.goshuin-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.75rem}
.goshuin-grid--cols-2{grid-template-columns:repeat(2,1fr)}
.goshuin-grid--cols-3{grid-template-columns:repeat(3,1fr)}
.goshuin-grid--cols-4{grid-template-columns:repeat(4,1fr)}
@media(max-width:900px){.goshuin-grid,.goshuin-grid--cols-3,.goshuin-grid--cols-4{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.goshuin-grid,.goshuin-grid--cols-2,.goshuin-grid--cols-3,.goshuin-grid--cols-4{grid-template-columns:1fr}}
.goshuin-item{position:relative;background:#fff;border:1px solid #E8DDD0;border-radius:10px;overflow:hidden;display:flex;flex-direction:column;transition:box-shadow .2s}
.goshuin-item:hover{box-shadow:0 6px 24px rgba(44,24,16,.1)}
.goshuin-item--featured{border-color:#C9A84C;box-shadow:0 2px 12px rgba(201,168,76,.2)}
.goshuin-item__badge{position:absolute;top:.7rem;left:.7rem;z-index:1;background:linear-gradient(135deg,#C9A84C,#A07820);color:#fff;font-size:.7rem;font-weight:700;padding:3px 10px;border-radius:20px;letter-spacing:.06em}
.goshuin-item__thumb{aspect-ratio:1/1;overflow:hidden;background:#F5EFE6}
.goshuin-item__thumb a{display:block;width:100%;height:100%}
.goshuin-item__thumb img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .3s}
.goshuin-item__thumb:hover img{transform:scale(1.05)}
.goshuin-item__thumb--empty{display:flex;align-items:center;justify-content:center;font-size:3rem;opacity:.2}
.goshuin-item__gallery{display:grid;grid-template-columns:2fr 1fr;grid-template-rows:1fr 1fr;gap:3px;aspect-ratio:1/1;overflow:hidden;background:#F5EFE6}
.goshuin-item__gallery[data-count='2']{grid-template-columns:1fr 1fr;grid-template-rows:1fr}
.goshuin-item__gallery-main{grid-row:1/3;overflow:hidden}
.goshuin-item__gallery[data-count='2'] .goshuin-item__gallery-main{grid-row:auto}
.goshuin-item__gallery-sub{overflow:hidden}
.goshuin-item__gallery a img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .3s}
.goshuin-item__gallery a:hover img{transform:scale(1.06)}
.goshuin-item__body{padding:1rem;display:flex;flex-direction:column;gap:.4rem;flex:1}
.goshuin-item__name{font-family:'Noto Serif JP',serif;font-size:1rem;font-weight:600;color:#2C1810;margin:0;line-height:1.5}
.goshuin-item__price{font-size:.82rem;color:#8B2020;font-weight:600;margin:0}
.goshuin-item__comment{font-size:.82rem;color:#5C4D3E;line-height:1.75;margin:0}
.goshuin-item__comment p{margin:.25em 0 0}
