:root {
  --bg: #f6f2e8;
  --surface: #fffdf8;
  --ink: #1f1c1b;
  --muted: #6a5f5a;
  --line: #e5dbcf;
  --brand: #d54215;
  --brand-deep: #9e2d0f;
  --accent: #f3bb45;
  --radius: 14px;
  --shadow: 0 14px 36px rgba(42, 27, 10, 0.11);
  --container: min(1120px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: radial-gradient(circle at 20% -20%, #fff9ef, transparent 42%), var(--bg);
  font-family: "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
  line-height: 1.75;
}

body.cn-menu-open {
  overflow: hidden;
}

a {
  color: var(--brand-deep);
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.15em;
}

a:hover {
  opacity: 0.86;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 3.5rem 0;
}

.section--accent {
  background: linear-gradient(130deg, #fff7df 0%, #f8ead6 100%);
}

.section--narrow {
  max-width: 840px;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.section-title {
  margin: 0;
  font-size: clamp(1.32rem, 4.7vw, 2.1rem);
  line-height: 1.3;
}

.section-lead,
.section-note {
  margin: 0;
  color: var(--muted);
}

.cn-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(229, 219, 207, 0.7);
  background: rgba(255, 253, 248, 0.55);
  backdrop-filter: blur(8px);
  transition: background-color 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.cn-header.is-scrolled {
  background: rgba(255, 253, 248, 0.9);
  border-color: rgba(222, 207, 191, 0.96);
  box-shadow: 0 10px 30px rgba(40, 28, 21, 0.08);
}

.cn-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
  padding-block: 0.6rem;
  position: relative;
}

.cn-header__branding {
  display: inline-flex;
  align-items: center;
}

.cn-header__branding .custom-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-decoration: none;
  line-height: 1;
}

.cn-header__branding .custom-logo-link:focus-visible {
  outline: 3px solid rgba(213, 66, 21, 0.28);
  outline-offset: 3px;
  border-radius: 8px;
}

.cn-header__title {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.03em;
  font-size: clamp(1.1rem, 4vw, 1.36rem);
}

.cn-header__branding .custom-logo {
  display: block;
  height: clamp(44px, 8vw, 58px);
  max-height: 58px;
  max-width: min(54vw, 240px);
  width: auto;
  object-fit: contain;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.cn-header__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.56rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--ink);
}

.cn-header__toggle-icon {
  width: 14px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  display: inline-block;
  position: relative;
}

.cn-header__toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 3px;
  border-top: 2px solid currentColor;
}

.cn-header__toggle-text {
  font-size: 0.76rem;
}

.cn-header__backdrop {
  position: fixed;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(10, 8, 7, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s ease;
}

.cn-header__nav {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 50%;
  width: min(calc(100vw - 1.5rem), 420px);
  max-height: calc(100dvh - 96px);
  overflow-y: auto;
  background: #fffdf8;
  border: 1px solid rgba(229, 219, 207, 0.95);
  border-radius: 18px;
  box-shadow: 0 22px 42px rgba(30, 20, 16, 0.2);
  padding: 1rem 0.85rem;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -12px) scale(0.98);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.cn-header.is-open .cn-header__backdrop {
  opacity: 1;
  pointer-events: auto;
}

.cn-header.is-open .cn-header__nav {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.cn-header__nav-label {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  color: var(--muted);
  text-transform: uppercase;
}

.cn-header__menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cn-header__menu {
  display: grid;
  gap: 0.2rem;
}

.cn-header__menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.2rem;
}

.cn-header__menu a {
  display: block;
  padding: 0.78rem 0.55rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  border-radius: 10px;
}

.cn-header__menu a:hover,
.cn-header__menu a:focus-visible {
  background: #f6f1e9;
}

.cn-header__menu .current-menu-item > a,
.cn-header__menu .current-menu-ancestor > a {
  color: var(--brand-deep);
}

.cn-header__toggle:focus-visible,
.cn-header__menu a:focus-visible,
.site-footer a:focus-visible,
.section-head a:focus-visible,
.card__link-wrap:focus-visible,
.card__title a:focus-visible,
.card__link:focus-visible,
.cnr-blog-card__link:focus-visible,
.social-card a:focus-visible,
.youtube-card a:focus-visible,
.button:focus-visible {
  outline: 3px solid rgba(157, 45, 15, 0.35);
  outline-offset: 2px;
}

.hero {
  position: relative;
  min-height: clamp(420px, 70vh, 680px);
  overflow: hidden;
  background: #23120d;
}

.hero__media,
.hero__media img,
.hero__media video,
.hero__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media img,
.hero__media video {
  object-fit: cover;
}

.hero__fallback {
  background: radial-gradient(circle at 20% 20%, #d8451c 0%, #582213 37%, #2a1510 78%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(17, 8, 8, 0.76), rgba(17, 8, 8, 0.4));
}

.hero__overlay {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 5.6rem 0 3.6rem;
}

.hero__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.82;
}

.hero h1 {
  margin: 0.35rem 0 0;
  font-size: clamp(2rem, 8vw, 3.8rem);
  line-height: 1.15;
}

.hero p {
  max-width: 58ch;
  margin: 1rem 0 0;
  font-size: 1rem;
}

.hero__cta {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.74rem 1.15rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: #fff;
  background: linear-gradient(90deg, #d54215, #b73510);
}

.button--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card__link-wrap {
  display: block;
  color: inherit;
  text-decoration: none;
}

.card__link-wrap:hover .card__title {
  color: var(--brand-deep);
}

.card__thumb {
  display: block;
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, #eadfce, #f8f4ee);
}

.card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__thumb-fallback {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #f2b954, #df6627);
}

.card__body {
  padding: 1rem;
}

.card__category {
  margin: 0;
  color: var(--brand-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.card__title {
  margin: 0.35rem 0 0;
  font-size: 1.08rem;
  line-height: 1.45;
}

.card__title a {
  color: var(--ink);
  text-decoration: none;
}

.card__meta {
  margin: 0.52rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.card__excerpt {
  margin: 0.58rem 0 0;
  color: #312d2a;
  font-size: 0.92rem;
}

.card__link {
  display: inline-flex;
  margin-top: 0.85rem;
  font-weight: 700;
}

.event-card__location,
.event-card__slot {
  margin: 0.5rem 0 0;
  font-size: 0.92rem;
}

.instagram-fallback {
  background: #fff;
  border: 1px dashed #d7c9b9;
  border-radius: var(--radius);
  padding: 1rem;
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.social-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.social-card a {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.social-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.social-card__caption {
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  bottom: 0.65rem;
  padding: 0.38rem 0.52rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  background: rgba(25, 16, 14, 0.66);
}

.youtube-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.youtube-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #1b1614;
}

.youtube-card a {
  display: block;
  position: relative;
  text-decoration: none;
}

.youtube-card img {
  width: 100%;
  height: auto;
}

.youtube-card__label {
  position: absolute;
  bottom: 0.55rem;
  left: 0.6rem;
  right: 0.6rem;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
}

.youtube-card__badge {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  background: rgba(213, 66, 21, 0.9);
}

.youtube-card__body {
  padding: 0.78rem 0.82rem 0.9rem;
}

.youtube-card__title {
  margin: 0;
  color: #fff6ef;
  font-size: 0.95rem;
  line-height: 1.5;
}

.top-recruit-card {
  background: linear-gradient(145deg, #fffaf0 0%, #fff4e5 100%);
  border: 1px solid #eadfce;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: clamp(1.2rem, 3.6vw, 2rem);
}

.top-recruit-card__content {
  display: grid;
  gap: 1rem;
}

.top-recruit-card__title {
  margin: 0;
}

.top-recruit-card__body p {
  margin: 0;
  color: #403731;
}

.top-recruit-card__body p + p {
  margin-top: 0.8rem;
}

.top-recruit-card .button {
  justify-self: start;
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.category-filter a {
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
}

.entry {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.entry-header {
  margin-bottom: 1rem;
}

.entry-meta,
.entry-category {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.entry-title {
  margin: 0.3rem 0 0;
  line-height: 1.3;
  font-size: clamp(1.4rem, 4.8vw, 2rem);
}

.entry-thumbnail {
  margin: 0 0 1rem;
}

.entry-thumbnail img {
  width: 100%;
  border-radius: 11px;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  font-weight: 700;
}

.event-meta-list {
  margin: 0 0 1rem;
  padding: 0;
}

.event-meta-list div {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.6rem;
  border-bottom: 1px solid var(--line);
  padding: 0.62rem 0;
}

.event-meta-list dt {
  font-weight: 700;
}

.event-meta-list dd {
  margin: 0;
}

.event-calendar-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.event-calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0.95rem;
  background: #fff6e4;
  border-bottom: 1px solid var(--line);
}

.event-calendar-nav p {
  margin: 0;
  font-weight: 800;
}

.event-calendar {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.event-calendar th,
.event-calendar td {
  border: 1px solid #eee2d4;
  vertical-align: top;
  padding: 0.48rem;
  min-height: 74px;
}

.event-calendar td span {
  display: inline-flex;
  font-weight: 700;
}

.event-calendar td ul {
  margin: 0.34rem 0 0;
  padding: 0;
  list-style: none;
}

.event-calendar td li {
  margin: 0.25rem 0 0;
  line-height: 1.45;
}

.event-calendar__has-event {
  background: #fffaf0;
}

.event-calendar__empty {
  background: #f9f5ee;
}

.sidebar {
  margin-top: 1.2rem;
}

.widget {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem;
}

.site-footer {
  background: #26160f;
  color: #fef9f1;
  margin-top: 3.5rem;
}

.site-footer__inner {
  display: grid;
  gap: 1.3rem;
  padding: 2rem 0;
}

.site-footer__contact {
  display: grid;
  gap: 0.5rem;
}

.site-footer__line {
  margin: 0;
  color: #f5e8d7;
  line-height: 1.75;
}

.site-footer__line--heading {
  color: #fffaf4;
  font-size: 1.05rem;
  font-weight: 800;
}

.site-footer__line a {
  color: inherit;
}

.site-footer__social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: #fff9ef;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.45);
}

.site-footer__social svg {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
}

.site-footer__copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.9rem 1rem 1.4rem;
  text-align: center;
  font-size: 0.82rem;
  color: #d8c8b1;
}

.greeting-page {
  padding-bottom: 3.5rem;
}

.greeting-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.36rem;
  font-size: 0.82rem;
  color: var(--muted);
  padding-top: 1rem;
}

.greeting-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.greeting-hero {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  margin-top: 0.7rem;
  background: #2d1b12;
}

.greeting-hero__media {
  position: absolute;
  inset: 0;
}

.greeting-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(26, 11, 8, 0.74), rgba(26, 11, 8, 0.4));
}

.greeting-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.greeting-hero__content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 2rem 1.15rem 2.2rem;
}

.greeting-hero__eyebrow {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: none;
  opacity: 0.85;
}

.greeting-hero h1 {
  margin: 0.42rem 0 0;
  font-size: clamp(1.75rem, 7vw, 3rem);
  line-height: 1.2;
}

.greeting-hero p {
  margin: 0.9rem 0 0;
  max-width: 44ch;
}

.greeting-hero__subtitle {
  text-wrap: pretty;
}

.greeting-hero .button {
  margin-top: 1.2rem;
}

.greeting-card,
.greeting-point-card,
.greeting-gallery__item,
.greeting-calendar__card,
.greeting-recruit__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.greeting-card {
  padding: 1.3rem;
}

.greeting-message__body p {
  margin: 0.9rem 0 0;
  color: #2f2926;
}

.greeting-message__body p:first-of-type {
  margin-top: 0.7rem;
}

.greeting-message__body a {
  color: var(--brand-deep);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.greeting-message__body a:hover,
.greeting-message__body a:focus-visible {
  color: var(--brand);
}

.greeting-message__body .button {
  margin-top: 1rem;
}

.greeting-point-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.greeting-point-card {
  padding: 1.1rem;
}

.greeting-point-card__icon {
  margin: 0;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--brand-deep);
}

.greeting-point-card h3 {
  margin: 0.28rem 0 0;
  font-size: 1.07rem;
}

.greeting-point-card p {
  margin: 0.62rem 0 0;
  color: #3b322d;
}

.greeting-gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.greeting-gallery__item {
  margin: 0;
  overflow: hidden;
}

.greeting-gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.greeting-gallery__item figcaption {
  padding: 0.72rem 0.85rem 0.88rem;
  font-size: 0.9rem;
  color: #473d37;
}

.greeting-recruit {
  background: linear-gradient(180deg, #fff7e9 0%, #fff4e2 100%);
  padding: 3rem 0;
}

.greeting-recruit__card {
  padding: 1.3rem;
}

.greeting-recruit__card p {
  margin: 0.82rem 0 0;
  color: #352c28;
}

.greeting-recruit__list {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.48rem;
}

.greeting-recruit__list li {
  position: relative;
  margin: 0;
  padding-left: 1.1rem;
  color: #352c28;
  line-height: 1.8;
}

.greeting-recruit__list li::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--brand);
}

.greeting-recruit__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.62rem;
  margin-top: 1rem;
}

.greeting-button-sub {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.greeting-calendar__card {
  padding: 1.25rem;
}

.greeting-calendar__card > p {
  margin: 0.7rem 0 0;
  color: #3f3630;
}

.greeting-calendar__card > .button {
  margin-top: 1rem;
}

.greeting-calendar__list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.62rem;
}

.greeting-calendar__list li {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fffdf8;
}

.greeting-calendar__list a {
  display: grid;
  gap: 0.2rem;
  padding: 0.72rem 0.86rem;
  color: var(--ink);
  text-decoration: none;
}

.greeting-calendar__list strong {
  font-size: 0.95rem;
}

.greeting-calendar__list span {
  font-size: 0.82rem;
  color: var(--muted);
}

.greeting-page--story {
  background: #f6f4f0;
  padding: clamp(1.1rem, 3vw, 1.8rem) 0 clamp(3.5rem, 8vw, 6rem);
  overflow-x: hidden;
  overflow-x: clip;
}

.greeting-page--story .section {
  margin-top: clamp(1.8rem, 5vw, 3rem);
}

.greeting-hero-banner {
  margin-top: 0.55rem;
}

.greeting-hero-banner__media {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid #e5dfd5;
  aspect-ratio: 16 / 7;
  min-height: 220px;
  box-shadow: 0 18px 38px rgba(20, 17, 14, 0.14);
  background: #dfd9d0;
}

.greeting-hero-banner__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, rgba(18, 11, 8, 0.72) 0%, rgba(18, 11, 8, 0.38) 44%, rgba(18, 11, 8, 0.16) 68%, rgba(18, 11, 8, 0.26) 100%);
  pointer-events: none;
}

.greeting-hero-banner__media img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  min-width: 0;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.greeting-hero-banner__overlay {
  position: absolute;
  inset: 0;
  padding: clamp(0.9rem, 2.4vw, 1.45rem) clamp(0.9rem, 2.4vw, 1.45rem) clamp(1rem, 2.8vw, 1.8rem);
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  z-index: 1;
  pointer-events: none;
}

.greeting-hero-banner__panel {
  width: min(100%, 54rem);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  color: #fff;
  pointer-events: auto;
}

.greeting-hero-banner__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.86;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.42);
}

.greeting-hero-banner__title {
  margin: 0.4rem 0 0;
  font-size: clamp(1.5rem, 5vw, 2.95rem);
  line-height: 1.22;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.greeting-hero-banner__subtitle {
  margin: 0.78rem 0 0;
  font-size: clamp(0.92rem, 2.2vw, 1rem);
  line-height: 1.62;
  max-width: 52ch;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.48);
}

.greeting-hero-banner__actions {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.56rem;
}

.greeting-hero-banner__actions .button {
  min-height: 42px;
  font-size: 0.88rem;
  padding: 0.62rem 0.95rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.greeting-hero-banner__actions .button:not(.button--primary) {
  border-color: rgba(255, 255, 255, 0.66);
  background: rgba(16, 10, 8, 0.26);
  color: #fff;
}

.greeting-story__card {
  position: relative;
  overflow: hidden;
  border: 1px solid #e5dfd5;
  border-radius: 22px;
  background: #ece9e4;
  padding: clamp(1.2rem, 3vw, 2.1rem);
}

.greeting-story__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
}

.greeting-story__header :is(h1, h2) {
  margin: 0;
  font-size: clamp(1.65rem, 5vw, 2.65rem);
  line-height: 1.28;
  color: #1f1a16;
  text-wrap: pretty;
}

.greeting-story__body {
  max-width: 72ch;
}

.greeting-story__body p {
  margin: 0;
  color: #2b2520;
  font-size: clamp(0.98rem, 2.4vw, 1.06rem);
  line-height: 1.95;
}

.greeting-story__body p + p {
  margin-top: 0.95rem;
}

.greeting-story__body a {
  color: var(--brand-deep);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.greeting-story__body a:hover,
.greeting-story__body a:focus-visible {
  color: var(--brand);
}

.greeting-story__actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.25rem;
}

.greeting-story__actions .button {
  min-width: 180px;
}

.greeting-events {
  padding-top: clamp(0.5rem, 2vw, 1.2rem);
}

@media (max-width: 640px) {
  .greeting-hero-banner__media {
    aspect-ratio: 5 / 4;
    min-height: 0;
  }

  .greeting-hero-banner__overlay {
    padding: 0.8rem;
  }

  .greeting-hero-banner__panel {
    width: 100%;
  }

  .greeting-hero-banner__title {
    font-size: clamp(1.25rem, 7vw, 1.68rem);
  }

  .greeting-hero-banner__subtitle {
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .greeting-hero-banner__actions {
    margin-top: 0.82rem;
  }

  .greeting-hero-banner__actions .button {
    width: 100%;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
  }

  .greeting-story__actions .button {
    width: 100%;
  }
}

.recruit-page {
  background: #f7f3eb;
}

.recruit-hero {
  background:
    radial-gradient(circle at 18% 0%, rgba(243, 187, 69, 0.18), transparent 42%),
    linear-gradient(140deg, #fff7ea 0%, #f7efdf 100%);
  border-bottom: 1px solid #eadfce;
}

.recruit-hero__inner {
  display: grid;
  gap: 0.9rem;
  align-content: center;
}

.recruit-hero__eyebrow {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8f7b67;
}

.recruit-hero h1 {
  margin: 0;
  font-size: clamp(1.82rem, 8vw, 3.2rem);
  line-height: 1.22;
}

.recruit-hero__lead {
  margin: 0;
  color: #564b44;
  font-size: clamp(1rem, 3.8vw, 1.15rem);
}

.recruit-gallery {
  padding-top: clamp(2.1rem, 6vw, 3.4rem);
}

.recruit-gallery__grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.recruit-gallery__item {
  margin: 0;
  border: 1px solid #e5dacb;
  border-radius: 16px;
  overflow: hidden;
  background: #fffdf8;
  box-shadow: 0 10px 26px rgba(26, 19, 16, 0.08);
}

.recruit-gallery__item img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.recruit-form-section {
  padding-top: clamp(1.2rem, 4vw, 2.2rem);
}

.recruit-form-card {
  border-radius: 20px;
  border: 1px solid #e5dacb;
  background: #fffdf8;
  box-shadow: 0 12px 28px rgba(28, 20, 16, 0.08);
  padding: clamp(1.1rem, 3vw, 2rem);
}

.recruit-form-card__header h2 {
  margin: 0;
  font-size: clamp(1.4rem, 5vw, 2rem);
}

.recruit-form-card__header p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.recruit-form-message {
  margin: 1rem 0 0;
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
}

.recruit-form-message--success {
  border: 1px solid #c2dfcc;
  background: #ebf7ef;
  color: #205334;
}

.recruit-form-message--error {
  border: 1px solid #e0b5b8;
  background: #fff0f1;
  color: #7a2f33;
}

.recruit-form-message p {
  margin: 0;
}

.recruit-form-message ul {
  margin: 0.55rem 0 0;
  padding-left: 1.2rem;
}

.recruit-form {
  margin-top: 1.2rem;
}

.recruit-form__grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.recruit-form__field {
  margin: 0;
}

.recruit-form__field label {
  display: inline-block;
  margin-bottom: 0.38rem;
  font-weight: 700;
}

.recruit-form__field input,
.recruit-form__field textarea {
  width: 100%;
  border: 1px solid #d9cebe;
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  background: #fff;
}

.recruit-form__field textarea {
  resize: vertical;
}

.recruit-form__field input:focus,
.recruit-form__field textarea:focus {
  outline: 3px solid rgba(213, 66, 21, 0.2);
  border-color: rgba(213, 66, 21, 0.45);
}

.recruit-form__actions {
  margin-top: 1rem;
}

.recruit-faq {
  padding-top: clamp(1.2rem, 4vw, 2.4rem);
}

.recruit-faq__card {
  border-radius: 20px;
  border: 1px solid #e5dacb;
  background: #fffdf8;
  box-shadow: 0 12px 28px rgba(28, 20, 16, 0.08);
  padding: clamp(1.1rem, 3vw, 2rem);
}

.recruit-faq__header h2 {
  margin: 0;
  font-size: clamp(1.35rem, 4.5vw, 1.9rem);
}

.recruit-faq__header p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.recruit-faq__list {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.recruit-faq__item {
  border: 1px solid #d9cebe;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.recruit-faq__question {
  list-style: none;
  margin: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.92rem 1rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.recruit-faq__question::-webkit-details-marker {
  display: none;
}

.recruit-faq__question::marker {
  content: "";
}

.recruit-faq__question:focus-visible {
  outline: 3px solid rgba(213, 66, 21, 0.28);
  outline-offset: -3px;
}

.recruit-faq__question-text {
  flex: 1;
}

.recruit-faq__icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  border: 1px solid #d9cebe;
  background: #fff7ea;
  color: #7a4a2f;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.recruit-faq__item[open] .recruit-faq__icon {
  transform: rotate(45deg);
}

.recruit-faq__answer {
  border-top: 1px solid #efe4d6;
  padding: 0.75rem 1rem 1rem;
  color: #3f3430;
}

.recruit-faq__answer p {
  margin: 0;
  line-height: 1.72;
}

.recruit-faq__answer p + p {
  margin-top: 0.68rem;
}

.recruit-faq__empty {
  margin: 1rem 0 0;
  color: var(--muted);
}

@media (min-width: 700px) {
  .recruit-gallery__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .recruit-form__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .recruit-faq__icon {
    transition: none;
  }
}

.cnr-blog-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 5.6rem) 0;
  color: #fff;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 184, 100, 0.22), transparent 42%),
    linear-gradient(130deg, #2e130e 0%, #5f2517 46%, #9f3f20 100%);
}

.cnr-blog-hero__eyebrow {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.82;
}

.cnr-blog-hero__title {
  margin: 0.42rem 0 0;
  font-size: clamp(2rem, 8vw, 3.4rem);
  line-height: 1.1;
}

.cnr-blog-hero__lead {
  margin: 0.92rem 0 0;
  max-width: 68ch;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.cnr-blog-index {
  background: #f4f1ec;
}

.cnr-blog-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem 1rem;
  border: 1px solid #dfd6c8;
  border-radius: 16px;
  background: #ece6dc;
  padding: 0.92rem;
}

.cnr-blog-filter label {
  font-size: 0.94rem;
  font-weight: 700;
  color: #3a2d26;
}

.cnr-blog-filter__control {
  flex: 1;
  min-width: 220px;
}

.cnr-blog-filter select {
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid #cfc2b2;
  background: #fff;
  color: var(--ink);
  padding: 0.62rem 0.8rem;
  font-size: 0.95rem;
}

.cnr-blog-filter select:focus-visible {
  outline: 3px solid rgba(157, 45, 15, 0.35);
  outline-offset: 2px;
}

.cnr-blog-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.cnr-blog-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.cnr-blog-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.cnr-blog-card__media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(150deg, #f0e7d9 0%, #f7f3eb 100%);
}

.cnr-blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cnr-blog-card__body {
  padding: 1rem;
}

.cnr-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.cnr-blog-card__meta time {
  color: var(--muted);
}

.cnr-blog-card__category {
  display: inline-flex;
  align-items: center;
  gap: 0.26rem;
  color: var(--brand-deep);
  font-weight: 700;
}

.cnr-blog-card__title {
  margin: 0.58rem 0 0;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.45;
}

.cnr-blog-card__excerpt {
  margin: 0.7rem 0 0;
  color: #3d342f;
  font-size: 0.93rem;
  line-height: 1.72;
}

.cnr-blog-card__tags {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.cnr-blog-card__tags li {
  font-size: 0.75rem;
  color: #5b4c44;
  border: 1px solid #ddd2c1;
  background: #f9f6f0;
  border-radius: 999px;
  padding: 0.28rem 0.52rem;
}

.cnr-blog-card__link:hover .cnr-blog-card__title {
  color: var(--brand-deep);
}

.cnr-blog-pagination {
  margin-top: 1.4rem;
}

.cnr-blog-pagination .page-numbers {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.cnr-blog-pagination .page-numbers a,
.cnr-blog-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  min-height: 2.25rem;
  border: 1px solid #d7c9b9;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 0 0.7rem;
  text-decoration: none;
  font-size: 0.88rem;
}

.cnr-blog-pagination .page-numbers .current {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (min-width: 768px) {
  .cn-header__inner {
    min-height: 76px;
  }

  .cn-header__toggle {
    display: none;
  }

  .cn-header__backdrop {
    display: none;
  }

  .cn-header__nav {
    position: static;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    max-height: none;
    overflow: visible;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
  }

  .cn-header__nav-label {
    display: none;
  }

  .cn-header__menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.24rem;
  }

  .cn-header__menu ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.24rem;
  }

  .cn-header__menu a {
    padding: 0.58rem 0.9rem;
    border-radius: 999px;
    font-size: 0.94rem;
    position: relative;
  }

  .cn-header__menu a::after {
    content: "";
    position: absolute;
    left: 0.88rem;
    right: 0.88rem;
    bottom: 0.42rem;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
  }

  .cn-header__menu a:hover::after,
  .cn-header__menu .current-menu-item > a::after,
  .cn-header__menu .current-menu-ancestor > a::after {
    border-color: var(--brand);
  }

  .cn-header__menu a:hover,
  .cn-header__menu a:focus-visible {
    background: rgba(255, 255, 255, 0.9);
  }

  .section {
    padding: 4.4rem 0;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid--event {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .youtube-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .social-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer__inner {
    grid-template-columns: 1.5fr auto;
    align-items: start;
    justify-content: space-between;
  }

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

  .greeting-hero__content {
    padding: 3.2rem 2rem 3.3rem;
  }

  .greeting-hero__subtitle {
    white-space: nowrap;
    max-width: none;
  }

  .greeting-point-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .greeting-gallery__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .greeting-recruit__card,
  .greeting-calendar__card,
  .greeting-card {
    padding: 1.6rem;
  }

  .greeting-recruit__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 560px;
  }

  .cnr-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .cn-header__menu {
    gap: 0.36rem;
  }

  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .greeting-hero h1 {
    font-size: clamp(2.25rem, 4vw, 3.3rem);
  }

  .cnr-blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .cn-header,
  .cn-header__backdrop,
  .cn-header__nav,
  .cn-header__menu a::after,
  .button,
  .greeting-hero-banner__panel,
  .greeting-hero__media::after {
    transition: none;
  }
}
