@charset "UTF-8";
/* =====================================
   Base / Variables / Reset
===================================== */
@font-face {
  font-family: "LINE Seed JP";
  src: url("./assets/fonts/LINESeed/LINESeedJP_OTF_Th.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LINE Seed JP";
  src: url("./assets/fonts/LINESeed/LINESeedJP_OTF_Rg.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LINE Seed JP";
  src: url("./assets/fonts/LINESeed/LINESeedJP_OTF_Bd.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LINE Seed JP";
  src: url("./assets/fonts/LINESeed/LINESeedJP_OTF_Eb.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-bg-green: #285024;
  --color-accent: #285024;
  --color-text-main: #285024;
  --color-text-second: #fcffe5;
  --color-text-sub: rgba(40, 80, 36, 0.75);
  --font-mincho: "Hina Mincho", "Yu Mincho", "Hiragino Mincho ProN", "游明朝",
    serif;
  --font-gothic: "Zen Kaku Gothic New", "Yu Gothic", "游ゴシック体", sans-serif;
  --font-serif: "Parisienne", "Times New Roman", "Georgia", serif;
  --font-lineseed: "LINE Seed JP", "Zen Kaku Gothic New", "Yu Gothic", sans-serif;
  --fs-xs: 12px;
  --fs-sm: 14px;
  --fs-md: 16px;
  --fs-lg: 20px;
  --fs-xl: 24px;
  --fs-2xl: 32px;
  --fs-3xl: 40px;
  --sp-8: 8px;
  --sp-12: 12px;
  --sp-16: 16px;
  --sp-24: 24px;
  --sp-32: 32px;
  --sp-40: 40px;
  --sp-48: 48px;
  --sp-64: 64px;
  --sp-80: 80px;
  --sp-96: 96px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background-color: #fcffe5;
}

body {
  position: relative;
  margin: 0;
  font-family: var(--font-gothic);
  font-size: var(--fs-md);
  color: var(--color-text-main);
  line-height: 1.7;
  background-color: transparent;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("./assets/img/bg_pattern.jpg");
  background-repeat: repeat;
  background-size: auto;
  background-attachment: fixed;
  opacity: 0.2;
  z-index: -1;
  pointer-events: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* =====================================
   Layout
===================================== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-lead {
  text-align: center;
  color: var(--color-text-sub);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-40);
}

/* =====================================
   Header (PC)
===================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20000;
  background-color: rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid #285024;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  background-color: transparent;
  border-bottom: none;
  min-height: 72px;
}

.site-header-logo-sp {
  margin-bottom: 16px;
}

.site-header-logo img {
  height: 48px;
}

.site-header-nav {
  flex: 1;
}

.global-nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  font-size: var(--fs-md);
}

.global-nav-list a {
  position: relative;
  padding-bottom: 4px;
}

.global-nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width 0.2s ease;
}

.global-nav-list a:hover::after {
  width: 100%;
}

.global-nav-list .current-menu-item > a::after,
.global-nav-list .current_page_item > a::after {
  width: 100%;
}

.site-header-right {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: var(--fs-sm);
}

.site-header-hours {
  padding: 6px 14px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
  color: var(--color-text-main);
}

.hours-label {
  font-size: var(--fs-xs);
  opacity: 0.8;
  margin-bottom: 2px;
  font-family: var(--font-gothic);
}

.hours-time {
  font-size: var(--fs-md);
  font-weight: bold;
  font-family: var(--font-gothic);
}

.btn-line-header {
  display: inline-block;
  text-align: center;
  padding: 12px 32px;
  border-radius: 8px;
  background-color: #285024;
  color: #fff;
  font-size: var(--fs-md);
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.08);
  transition: background-color 0.2s ease, transform 0.2s ease;
  font-family: var(--font-serif);
}
.btn-line-header .btn-line-header-line {
  font-family: var(--font-lineseed);
  font-weight: bold;
}

.btn-line-header:hover {
  background-color: #213f1d;
  transform: translateY(-1px);
}

/* =====================================
   Header Drawer (SP only)
===================================== */
.header-toggle,
.header-drawer {
  display: none;
}

@media (max-width: 1024px) {
  .site-header {
    z-index: 20000;
  }
  .site-header-nav,
  .site-header-right {
    display: none;
  }
  .header-toggle {
    display: inline-flex;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: 0;
    background: transparent;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 3;
  }
  .header-toggle__bars {
    position: relative;
    width: 22px;
    height: 2px;
    background: var(--color-accent);
    display: block;
  }
  .header-toggle__bars::before,
  .header-toggle__bars::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--color-accent);
    transition: transform 0.2s ease, top 0.2s ease;
  }
  .header-toggle__bars::before {
    top: -7px;
  }
  .header-toggle__bars::after {
    top: 7px;
  }
  .header-drawer {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 20010;
    pointer-events: none;
  }
  .header-drawer__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.2s ease;
    cursor: pointer;
    z-index: 0;
  }
  .header-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(86vw, 360px);
    height: 100%;
    background: rgba(255, 255, 255, 0.96);
    border-left: 2px solid var(--color-accent);
    transform: translateX(100%);
    transition: transform 0.22s ease;
    padding: 18px;
    overflow-y: auto;
    z-index: 1;
  }
  .header-drawer .site-header-nav--sp {
    display: block !important;
  }
  .site-header-nav--sp .global-nav-list.global-nav-list--sp {
    display: block !important;
  }
  .site-header-nav--sp .global-nav-list--sp {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: var(--fs-sm);
  }
  .site-header-nav--sp .global-nav-list--sp li {
    margin: 0;
    padding: 0;
    width: 100%;
    border-bottom: none;
  }
  .site-header-nav--sp .global-nav-list--sp li:first-child {
    border-top: 1px solid rgba(40, 80, 36, 0.18);
  }
  .site-header-nav--sp .global-nav-list--sp a {
    width: 100%;
    display: block;
    padding: 16px 6px;
    text-decoration: none;
    color: var(--color-text-main);
    background: transparent;
    border: 0;
    border-radius: 0;
    writing-mode: horizontal-tb;
    word-break: normal;
    overflow-wrap: anywhere;
    text-align: left;
  }
  .site-header-nav--sp .global-nav-list--sp a:hover,
  .site-header-nav--sp .global-nav-list--sp a:focus-visible {
    background: rgba(40, 80, 36, 0.06);
    outline: none;
  }
  .header-drawer__meta {
    margin-top: 14px;
    padding-top: 14px;
    padding-left: 6px;
    padding-right: 6px;
    display: grid;
    gap: 12px;
    width: 100%;
  }
  .site-header-hours--sp {
    align-items: center;
    padding: 0;
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
  }
  .btn-line-header--sp {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-size: var(--fs-sm);
    box-sizing: border-box;
  }
  .site-header.is-open .header-drawer {
    pointer-events: auto;
  }
  .site-header.is-open .header-drawer__backdrop {
    opacity: 1;
  }
  .site-header.is-open .header-drawer__panel {
    transform: translateX(0);
  }
  .site-header.is-open .header-toggle {
    position: fixed;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(40, 80, 36, 0.25);
    z-index: 20020;
  }
  .site-header.is-open .header-toggle__bars {
    background: transparent;
  }
  .site-header.is-open .header-toggle__bars::before {
    top: 0;
    transform: rotate(45deg);
    background: #285024;
  }
  .site-header.is-open .header-toggle__bars::after {
    top: 0;
    transform: rotate(-45deg);
    background: #285024;
  }
  .site-header-logo img {
    height: 40px;
  }
  .site-header-inner {
    padding: 10px 16px;
  }
  body.is-locked {
    overflow: hidden;
  }
  .global-nav-list a::after {
    height: 0;
  }
}
/* =====================================
   Front Page
===================================== */
/* News Bar */
.news-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 10px 16px;
  background-color: #285024;
  color: #fff;
  font-size: var(--fs-sm);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.news-bar:hover {
  background-color: #1f3f1d;
}

.news-bar__date {
  font-weight: 600;
  opacity: 0.9;
}

.news-bar__title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .news-bar {
    font-size: 13px;
    gap: 0.8rem;
  }
  .news-bar__title {
    max-width: 70%;
  }
}
/* FV */
.fv {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding: 80px 0 100px;
  min-height: 300px;
  border-bottom-right-radius: 2000px 300px;
  border-bottom-left-radius: 2000px 300px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  z-index: 10;
  background-color: #fcffe5;
}

.fv::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 110vw;
  aspect-ratio: 1440/458;
  transform: translateX(-50%);
  background-image: url("./assets/img/fv_grass.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}

.fv > * {
  position: relative;
  z-index: 1;
}

.fv-eyebrow {
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-16);
}

.fv-logo img {
  max-width: 360px;
  margin: 0 auto var(--sp-24);
}

.fv-sub {
  font-family: var(--font-serif);
  font-size: var(--fs-3xl);
  margin-bottom: var(--sp-16);
}

@media (max-width: 768px) {
  .fv {
    padding: 32px;
  }
  .fv::after {
    width: 120vw;
  }
  .fv-logo img {
    max-width: 260px;
  }
  .fv-eyebrow {
    font-size: 11px;
  }
  .fv-sub {
    font-size: 22px;
  }
}
/* Today */
.section-today {
  position: relative;
  overflow: hidden;
  margin-top: -440px;
  padding-top: 440px;
  background-color: #759867;
}

.section-today::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 120vw;
  height: 240px;
  transform: translateX(-50%) translateY(-120px);
  background-color: #759867;
  border-bottom-left-radius: 900px 240px;
  border-bottom-right-radius: 900px 240px;
  z-index: 0;
  pointer-events: none;
}

.section-today::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./assets/img/bg_pattern.jpg");
  background-repeat: repeat;
  background-size: auto;
  opacity: 0.2;
  z-index: 1;
  pointer-events: none;
}

.section-today .container {
  position: relative;
  z-index: 2;
}

.today-panel {
  position: relative;
  padding: 64px 0;
  background: transparent;
  overflow: visible;
}

.today-panel::after {
  content: none;
}

@media (max-width: 768px) {
  .section-today {
    margin-top: -96px;
    padding-top: 96px;
  }
  .section-today::before {
    width: 140vw;
    height: 200px;
    transform: translateX(-50%) translateY(-100px);
    border-bottom-left-radius: 900px 200px;
    border-bottom-right-radius: 900px 200px;
  }
}
.section-today .container {
  position: relative;
  z-index: 3;
}

.today-title {
  margin: 0 0 32px;
  text-align: center;
  font-family: var(--font-mincho);
  font-size: var(--fs-3xl);
  color: var(--color-text-second);
}

.today-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  justify-items: center;
  max-width: 980px;
  margin: 0 auto 40px;
}

.today-card {
  position: relative;
  width: 210px;
  aspect-ratio: 210/280;
  background: url("./assets/img/card.png") center/contain no-repeat;
  display: grid;
  grid-template-rows: 1fr auto auto;
  justify-items: center;
  padding: 22px 18px 18px;
  isolation: isolate;
}

.today-card > * {
  position: relative;
  z-index: 1;
}

.today-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #759867;
  mix-blend-mode: multiply;
  -webkit-mask: url("./assets/img/card.png") center/contain no-repeat;
  mask: url("./assets/img/card.png") center/contain no-repeat;
  z-index: 0;
  pointer-events: none;
}

.today-card__photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin-top: 28px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.today-card__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.today-card__name {
  margin: 10px 0 2px;
  font-family: var(--font-mincho);
  font-size: 18px;
  color: var(--color-text-second);
}

.today-card__role {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--color-text-second);
}

.today-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(300px, 100%);
  height: 56px;
  margin: 0 auto;
  border-radius: 8px;
  background-color: var(--color-text-second);
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: var(--color-text-main);
  font-family: var(--font-mincho);
  font-size: var(--fs-md);
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease;
}

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

@media (max-width: 900px) {
  .today-title {
    font-size: var(--fs-xl);
    margin-bottom: 32px;
  }
  .today-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 28px;
  }
  .today-card {
    width: 180px;
    aspect-ratio: 180/240;
    padding: 18px 14px 14px;
  }
  .today-card__photo {
    width: 120px;
    height: 120px;
    margin-top: 24px;
  }
  .today-btn {
    height: 52px;
    font-size: var(--fs-md);
  }
}
@media (max-width: 480px) {
  .today-panel {
    padding: 64px 0;
  }
  .today-list {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .today-card {
    width: 160px;
    aspect-ratio: 160/220;
  }
  .today-card__role {
    font-size: 13px;
  }
}
/* About */
.section-about {
  padding: 64px 0 0;
}

.about-head {
  text-align: center;
  margin-bottom: 16px;
}

.about-title {
  margin: 0;
  font-family: var(--font-mincho);
  font-size: var(--fs-3xl);
  color: var(--color-text-main);
}

.about-body {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  font-size: var(--fs-md);
  line-height: 2.2;
  color: rgba(40, 80, 36, 0.92);
}

@media (max-width: 768px) {
  .about-title {
    font-size: var(--fs-xl);
  }
  .about-body {
    max-width: 92%;
    font-size: 13px;
    line-height: 2.2;
  }
}
/* Miko */
.section-miko {
  padding: 64px 0 0;
}

.miko-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(40, 80, 36, 0.12);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  padding: 34px 34px;
}

.miko-card__title {
  margin: 0 0 14px;
  font-family: var(--font-mincho);
  font-size: 26px;
  color: #285024;
}

.miko-card__desc {
  margin: 0;
  line-height: 2;
  font-size: var(--fs-md);
}

.miko-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.miko-card__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.miko-cta {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.btn-miko {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  padding: 16px 22px;
  border-radius: 8px;
  background: #759867;
  border: 1px solid rgba(40, 80, 36, 0.18);
  color: #fff;
  font-family: var(--font-mincho);
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.btn-miko:hover {
  filter: brightness(0.98);
}

@media (max-width: 768px) {
  .miko-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 18px;
  }
  .miko-card__title {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .miko-card__desc {
    font-size: 14px;
    line-height: 1.95;
  }
  .btn-miko {
    min-width: 260px;
    width: 100%;
    max-width: 320px;
  }
}
/* Master */
.section-master {
  padding: 64px 0;
}

.master-card {
  border-radius: 28px;
  overflow: hidden;
  background-image: url("./assets/img/card.png");
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  padding: 56px 56px 48px;
  color: var(--color-text-second);
  position: relative;
  isolation: isolate;
}

.master-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #759867;
  mix-blend-mode: multiply;
  -webkit-mask: url("./assets/img/card.png") center/cover no-repeat;
  mask: url("./assets/img/card.png") center/cover no-repeat;
  z-index: 0;
  pointer-events: none;
}

.master-card > * {
  position: relative;
  z-index: 1;
}

.master-card__heading {
  text-align: center;
  font-family: var(--font-mincho);
  font-size: var(--fs-3xl);
  margin: 0 0 32px;
  color: var(--color-text-second);
}

.master-card__body {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 46px;
  align-items: start;
}

.master-card__photo {
  display: flex;
  justify-content: center;
}

.master-card__photo img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 6px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.master-card__kana {
  margin: 0 0 6px;
  opacity: 0.85;
  letter-spacing: 0.18em;
  font-size: var(--fs-md);
}

.master-card__name {
  margin: 0 0 14px;
  font-family: var(--font-mincho);
  font-size: var(--fs-2xl);
  letter-spacing: 0.12em;
  color: var(--color-text-second);
}

.master-card__certs p {
  margin: 0 0 6px;
  font-size: var(--fs-md);
  line-height: 1.8;
  opacity: 0.92;
}

.master-card__label {
  display: inline-block;
  margin-top: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: var(--fs-xs);
}

.master-card__arts {
  margin: 10px 0 14px;
  font-size: var(--fs-md);
  line-height: 1.9;
  opacity: 0.92;
}

.master-card__youtube {
  margin: 0 0 18px;
  font-size: var(--fs-md);
  opacity: 0.92;
}

.master-card__text p {
  margin: 0 0 12px;
  font-size: var(--fs-md);
  line-height: 2;
  opacity: 0.92;
}

@media (max-width: 900px) {
  .master-card {
    padding: 40px 22px 34px;
    border-radius: 22px;
  }
  .master-card__heading {
    font-size: 26px;
    margin-bottom: 22px;
  }
  .master-card__body {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .master-card__photo img {
    width: 210px;
    height: 210px;
  }
}
/* Access */
.section-access {
  background-color: rgba(117, 152, 103, 0.5);
  padding: 64px 0;
  color: var(--color-text-main);
}

.access-title {
  text-align: center;
  font-family: var(--font-mincho);
  font-size: var(--fs-3xl);
  margin-top: 0;
  margin-bottom: 32px;
  color: var(--color-text-main);
}

.access-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.access-logo img {
  max-width: 240px;
  margin-bottom: 24px;
}

.access-info {
  font-size: var(--fs-md);
  line-height: 2;
  color: var(--color-text-main);
}

.access-address {
  margin-bottom: 16px;
}

.access-route {
  font-size: var(--fs-md);
  color: var(--color-text-main);
}

.access-map {
  width: 100%;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
}

.access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .access-title {
    font-size: var(--fs-xl);
    margin-bottom: 28px;
  }
  .access-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .access-map {
    height: 280px;
  }
  .access-logo img {
    max-width: 200px;
  }
}
/* =====================================
   Contact Section
===================================== */
.section-contact {
  padding: 64px 0;
  background-color: #fff;
}

.contact-title {
  text-align: center;
  font-family: var(--font-mincho);
  font-size: var(--fs-3xl);
  color: var(--color-text-main);
  margin: 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-image img {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  display: block;
}

.contact-body {
  color: var(--color-text-main);
}

.contact-text {
  font-size: var(--fs-md);
  line-height: 2;
  margin-bottom: 12px;
}

.btn-line-main {
  display: inline-block;
  background-color: var(--color-bg-green);
  color: #fff;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: var(--fs-md);
  text-decoration: none;
  transition: opacity 0.2s ease;
  font-family: var(--font-serif);
}
.btn-line-main .btn-line-main-line {
  font-family: var(--font-lineseed);
  font-weight: bold;
}

.btn-line-main:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .contact-title {
    font-size: var(--fs-xl);
    margin-bottom: 32px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .contact-image img {
    width: 50%;
  }
  .contact-text {
    font-size: 14px;
  }
}
/* =====================================
   News Section
===================================== */
.section-news {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 64px 0 96px;
}

.section-news-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.news-heading {
  font-family: var(--font-mincho);
  font-size: var(--fs-3xl);
  text-align: center;
  margin: 0 0 32px;
  color: var(--color-text-main);
}

.news-box {
  background-color: #ffffff;
  max-width: 640px;
  margin: 0 auto;
  padding: 32px 56px 40px;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.06);
}

.news-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  font-size: var(--fs-sm);
}

.news-item {
  display: flex;
  gap: 24px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

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

.news-date {
  min-width: 110px;
}

.news-title:hover {
  text-decoration: underline;
}

.news-more {
  text-align: center;
}

.btn-news-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 64px;
  border-radius: 8px;
  background-color: #759867;
  color: #fff;
  font-size: var(--fs-sm);
  margin-top: 28px;
}

@media (max-width: 768px) {
  .news-box {
    max-width: 100%;
    padding: 24px 20px 32px;
    box-shadow: none;
  }
  .news-heading {
    font-size: var(--fs-xl);
    margin-bottom: 24px;
  }
  .news-item {
    flex-direction: column;
    gap: 4px;
  }
  .news-date {
    min-width: auto;
  }
  .btn-news-more {
    width: 100%;
  }
}
/* =====================================
   Floating LINE Button
===================================== */
.line-floating {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
}
.line-floating .line-floating-line {
  display: block;
  font-family: var(--font-lineseed);
  font-weight: bold;
}

.line-floating-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  padding: 0;
  background-color: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  font-size: var(--fs-sm);
  line-height: 1.5;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: opacity 0.2s ease, transform 0.2s ease;
  font-family: var(--font-mincho);
}

.line-floating-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  .container {
    padding: 0 16px;
  }
  .line-floating {
    right: 16px;
    bottom: 16px;
  }
  .line-floating-btn {
    width: 110px;
    height: 110px;
    font-size: 13px;
  }
}
/* =====================================
   Footer
===================================== */
.site-footer-main {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  padding: 32px;
}

.site-footer-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(117, 152, 103, 0.5);
  pointer-events: none;
}

.site-footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 220px 1fr 360px;
  align-items: center;
  gap: 40px;
}

.footer-col {
  min-width: 0;
}

.footer-col-left {
  display: flex;
  justify-content: flex-end;
}

.footer-logo img {
  max-width: 78px;
  height: auto;
  display: block;
}

.footer-col-center {
  display: flex;
  justify-content: flex-start;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: var(--fs-xs);
}

.footer-links a {
  color: var(--color-text-main);
  text-decoration: none;
}

.footer-ext {
  margin-left: 6px;
  font-size: var(--fs-xs);
  opacity: 0.75;
}

.footer-col-right {
  display: flex;
  justify-content: flex-end;
}

.footer-sns-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-sns-icons li {
  margin: 0;
}

.footer-sns-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-sns-icons img {
  width: 32px;
  height: auto;
  display: block;
}

.footer-sns-icons a:hover img {
  opacity: 0.85;
}

.site-footer-bottom {
  background-color: var(--color-text-main);
  color: #ffffff;
  text-align: center;
  font-size: var(--fs-xs);
  padding: 8px 0;
}

.site-footer-copy {
  margin: 0;
}

@media (max-width: 1024px) {
  .site-footer-inner {
    max-width: 920px;
    padding: 0 24px;
    grid-template-columns: 200px 1fr 320px;
    gap: 28px;
  }
}
@media (max-width: 768px) {
  .site-footer-main {
    padding: 32px 0 24px;
  }
  .site-footer-inner {
    max-width: 520px;
    padding: 0 18px;
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }
  .footer-col-left,
  .footer-col-center,
  .footer-col-right {
    justify-content: center;
  }
  .footer-links {
    justify-items: center;
  }
  .footer-sns-icons {
    justify-content: center;
    flex-wrap: wrap;
  }
}
/* =====================================
   News Single Page
===================================== */
.news-single {
  padding: 56px 16px;
}

.news-single__inner {
  max-width: 920px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(40, 80, 36, 0.12);
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.news-single__header {
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(40, 80, 36, 0.12);
  padding-bottom: 14px;
}

.news-single__meta {
  margin: 0 0 6px;
  font-size: var(--fs-sm);
  color: rgba(40, 80, 36, 0.75);
}

.news-single__title {
  margin: 0;
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.35;
  color: #285024;
}

.news-single__thumb {
  margin: 18px 0 22px;
  border-radius: 14px;
  overflow: hidden;
}

.news-single__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.news-single__content {
  font-size: var(--fs-md);
  line-height: 1.9;
  color: rgba(20, 35, 18, 0.95);
}

.news-single__content h2,
.news-single__content h3 {
  color: #285024;
  margin-top: 1.8em;
}

.news-single__content a {
  color: #285024;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.news-single__nav {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(40, 80, 36, 0.12);
  font-size: var(--fs-sm);
}

.news-single__navItem a {
  color: #285024;
  text-decoration: none;
}

.news-single__navItem a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.news-single__back {
  margin-top: 18px;
  text-align: center;
}

.news-single__backLink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(40, 80, 36, 0.22);
  background: rgba(255, 255, 255, 0.85);
  color: #285024;
  text-decoration: none;
}

.news-single__backLink:hover {
  background: rgba(40, 80, 36, 0.06);
}

/* =====================================
   Page Heading (Reusable)
===================================== */
.page-heading-wrapper {
  overflow: hidden;
}

.page-heading {
  position: relative;
  height: 320px;
  overflow: hidden;
  border-bottom-right-radius: 2000px 300px;
  border-bottom-left-radius: 2000px 300px;
  margin-left: -200px;
  margin-right: -200px;
  padding-left: 200px;
  padding-right: 200px;
}

.page-heading-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/img/heading.jpg");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.page-heading-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(117, 152, 103, 0.5);
}

.page-heading-inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-heading-title {
  margin: 0;
  color: var(--color-text-second);
  font-size: var(--fs-3xl);
  font-weight: 500;
  font-family: var(--font-mincho);
}

.page-heading-sub {
  display: block;
  margin-top: 14px;
  font-size: 26px;
  opacity: 0.95;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-text-second);
}

@media (max-width: 767px) {
  .page-heading {
    height: 120px;
  }
  .page-heading-title {
    font-size: 20px;
  }
  .page-heading-sub {
    font-size: 14px;
  }
}
/* =====================================
   Price
===================================== */
.section-price {
  padding: 64px 0 96px;
}

.price-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 70px;
}

@media (min-width: 1024px) {
  .price-columns {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .price-unit {
    display: flex;
    flex-direction: column;
  }
  .price-head {
    min-height: 170px;
  }
  .price-card {
    flex: 1;
  }
  .price-extension-wrap {
    width: calc((100% - 80px) / 2);
    max-width: none;
  }
}
.price-title {
  font-family: var(--font-mincho);
  font-size: 28px;
  margin: 0 0 14px;
}

.price-title::after {
  content: "";
  display: block;
  margin-top: 14px;
  height: 1px;
  background: rgba(40, 80, 36, 0.25);
}

.price-desc {
  margin: 0;
  font-size: var(--fs-md);
  line-height: 1.9;
  opacity: 0.9;
}

.price-note {
  font-size: var(--fs-sm);
  opacity: 0.85;
}

.price-card {
  background: rgba(255, 255, 255, 0.86);
  border-radius: 16px;
  padding: 26px 34px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(40, 80, 36, 0.22);
}

.price-row:last-child {
  border-bottom: none;
}

.price-name {
  font-size: var(--fs-md);
}

.price-value {
  font-weight: 600;
  white-space: nowrap;
  font-size: var(--fs-lg);
  font-family: var(--font-mincho);
}

.price-value .tax {
  font-size: var(--fs-xs);
  font-weight: 500;
  opacity: 0.8;
  margin-left: 6px;
}

.price-card--extension {
  margin-top: 18px;
  padding: 10px 34px;
}

.price-cancel {
  margin-top: 80px;
  max-width: 760px;
}

.price-extension-wrap {
  margin-top: 40px;
}

.cancel-title {
  font-family: var(--font-mincho);
  font-size: 28px;
  margin: 0 0 14px;
}

.cancel-title::after {
  content: "";
  display: block;
  margin-top: 14px;
  height: 1px;
  background: rgba(40, 80, 36, 0.25);
}

.cancel-desc {
  margin: 18px 0 12px;
  font-size: var(--fs-md);
  line-height: 1.9;
  opacity: 0.9;
}

.cancel-fee-label {
  margin: 14px 0 10px;
  font-size: var(--fs-sm);
  opacity: 0.9;
}

.cancel-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.cancel-list li {
  position: relative;
  padding-left: 18px;
  margin: 10px 0;
  font-size: var(--fs-md);
  line-height: 1.9;
}

.cancel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-accent);
  transform: translateY(-50%);
}

.cancel-note {
  margin-top: 16px;
  font-size: var(--fs-sm);
  line-height: 1.9;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .section-price {
    padding: 56px 0 84px;
  }
  .price-columns {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .price-head {
    min-height: auto;
    margin-bottom: 16px;
  }
  .price-title {
    font-size: 22px;
    margin: 0 0 10px;
  }
  .price-title::after {
    margin-top: 10px;
  }
  .price-desc {
    font-size: 14px;
    line-height: 1.85;
  }
  .price-note {
    font-size: 11px;
  }
  .price-card {
    border-radius: 14px;
    padding: 18px 18px;
  }
  .price-row {
    padding: 14px 0;
  }
  .price-name {
    font-size: 14px;
  }
  .price-value {
    font-size: 14px;
  }
  .price-value .tax {
    font-size: 11px;
    margin-left: 4px;
  }
  .price-card--extension {
    margin-top: 14px;
    padding: 8px 18px;
  }
  .price-cancel {
    margin-top: 56px;
    max-width: 100%;
  }
  .price-extension-wrap {
    margin-top: 24px;
  }
  .cancel-title {
    font-size: 22px;
    margin: 0 0 10px;
  }
  .cancel-title::after {
    margin-top: 10px;
  }
  .cancel-desc {
    margin: 14px 0 10px;
    font-size: 14px;
    line-height: 1.85;
  }
  .cancel-fee-label {
    margin: 12px 0 8px;
    font-size: 12px;
  }
  .cancel-list li {
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.85;
  }
  .cancel-note {
    margin-top: 12px;
    font-size: 11px;
    line-height: 1.85;
  }
}
/* =====================================
   Reading Menu
===================================== */
.section-reading-menu {
  padding: 64px 0 96px;
}

.menu-block {
  margin-bottom: 72px;
}

.menu-block-head {
  margin-bottom: 26px;
}

.menu-block-title {
  margin: 0 0 10px;
  font-family: var(--font-mincho);
  font-size: 28px;
  color: var(--color-text-main);
}

.menu-block-line {
  height: 1px;
  background: rgba(40, 80, 36, 0.25);
}

.menu-grid {
  display: grid;
  gap: 28px;
}

.menu-grid--2 {
  align-items: stretch;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  padding: 26px 26px 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.menu-card-title {
  margin: 0 0 12px;
  text-align: center;
  font-family: var(--font-mincho);
  font-size: 22px;
  color: var(--color-text-main);
}

.menu-card-text {
  margin: 0 0 14px;
  font-size: var(--fs-md);
  line-height: 2;
  color: rgba(40, 80, 36, 0.92);
  flex-grow: 1;
}

.menu-card-image {
  margin-top: auto;
  border-radius: 12px;
  overflow: hidden;
}

.menu-card-image img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.menu-wide {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: center;
}

.menu-wide-title {
  margin: 0 0 12px;
  text-align: center;
  font-family: var(--font-mincho);
  font-size: 22px;
  color: var(--color-text-main);
}

.menu-wide-text {
  margin: 0 0 12px;
  font-size: var(--fs-md);
  line-height: 2;
  color: rgba(40, 80, 36, 0.92);
}

.menu-wide-image {
  border-radius: 12px;
  overflow: hidden;
}

.menu-wide-image img {
  width: 100%;
  height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.menu-other {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(40, 80, 36, 0.18);
}

.menu-other-label {
  margin: 0 0 6px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: rgba(40, 80, 36, 0.75);
}

.menu-other-text {
  margin: 0;
  font-size: var(--fs-sm);
  line-height: 2;
  color: rgba(40, 80, 36, 0.85);
}

@media (max-width: 768px) {
  .menu-block-title {
    font-size: 22px;
  }
  .menu-grid--2 {
    grid-template-columns: 1fr;
  }
  .menu-card {
    padding: 22px 18px 16px;
  }
  .menu-card-image img {
    height: 200px;
  }
  .menu-wide {
    grid-template-columns: 1fr;
    padding: 22px 18px;
  }
  .menu-wide-image img {
    height: 200px;
  }
  .menu-card-text,
  .menu-wide-text {
    font-size: 14px;
  }
}
/* =====================================
   Policy / Legal Pages (Reusable)
===================================== */
.section-policy {
  padding: 64px 0 96px;
}

.section-policy .policy-box,
.section-policy .privacy-box {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  padding: 48px 40px;
}

.section-policy h2 {
  margin-top: 56px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(40, 80, 36, 0.25);
}

.section-policy p,
.section-policy li {
  line-height: 1.9;
  font-size: var(--fs-md);
}

.section-policy ul {
  padding-left: 1.2em;
}

@media (max-width: 768px) {
  .section-policy .policy-box,
  .section-policy .privacy-box {
    padding: 32px 20px;
  }
  .section-policy p,
  .section-policy li {
    font-size: 14px;
  }
}
/* =====================================
   News Archive / Single (Custom)
===================================== */
.news-archive-block {
  margin-bottom: 72px;
}

.news-archive-block-head {
  margin-bottom: 26px;
}

.news-archive-title {
  margin: 0 0 10px;
  font-family: var(--font-mincho);
  font-size: 28px;
  color: var(--color-text-main);
}

.news-archive-block-line {
  height: 1px;
  background: rgba(40, 80, 36, 0.25);
}

.news-archive-box {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

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

.news-item {
  border-bottom: 1px solid rgba(40, 80, 36, 0.18);
}

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

.news-item-link {
  display: grid;
  grid-template-columns: 140px 1fr 24px;
  align-items: center;
  gap: 18px;
  padding: 22px 6px;
  text-decoration: none;
  color: inherit;
}

.news-item-date {
  font-size: var(--fs-sm);
  opacity: 0.75;
}

.news-item-title {
  font-size: var(--fs-md);
  line-height: 1.7;
  margin: 0;
}

.news-item-arrow {
  justify-self: end;
  font-size: 18px;
  opacity: 0.7;
}

.news-item-link:hover .news-item-title {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .news-archive-box {
    padding: 22px 18px;
  }
  .news-item-link {
    grid-template-columns: 1fr 20px;
    grid-template-areas: "date arrow" "title arrow";
    gap: 8px 12px;
  }
  .news-item-date {
    grid-area: date;
  }
  .news-item-title {
    grid-area: title;
  }
  .news-item-arrow {
    grid-area: arrow;
  }
}
.news-pagination {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.news-pagination .navigation.pagination {
  width: 100%;
  display: flex;
  justify-content: center;
}

.news-pagination .nav-links {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.news-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  text-decoration: none;
  font-size: var(--fs-sm);
  line-height: 1;
  color: var(--color-accent);
  background: transparent;
}

.news-pagination .page-numbers.current {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.news-pagination a.page-numbers:hover {
  background: rgba(40, 80, 36, 0.08);
}

.news-pagination .page-numbers.dots {
  border: none;
  width: auto;
  padding: 0 6px;
  opacity: 0.6;
}

.news-pagination .page-numbers.prev,
.news-pagination .page-numbers.next {
  border: none;
  width: 36px;
  height: 36px;
  opacity: 0.7;
}

.news-pagination a.page-numbers.prev:hover,
.news-pagination a.page-numbers.next:hover {
  background: rgba(40, 80, 36, 0.08);
}

.news-pagination .page-numbers::after {
  content: none !important;
}

.section-news-single {
  padding: 64px 0 96px;
}

.section-news-single .news-single {
  background: rgba(255, 255, 255, 0.75);
  padding: 48px 40px;
  border-radius: 16px;
}

.news-single-date {
  font-size: var(--fs-sm);
  opacity: 0.7;
}

.news-single-title {
  margin-top: 8px;
  font-size: var(--fs-3xl);
  line-height: 1.6;
  font-family: var(--font-mincho);
}

.news-single-content {
  margin-top: 32px;
  line-height: 1.9;
  font-size: var(--fs-md);
}
.news-single-content iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.news-single-content hr {
  border: solid 1px #759867;
}

.news-single-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
}

.news-single-back {
  margin-top: 32px;
  text-align: center;
}

@media (max-width: 768px) {
  .news-single-title {
    font-size: var(--fs-xl);
  }
}
/* =====================================
   Fortune Teller Archive
===================================== */
.section-tellers {
  padding: 64px 0 96px;
}

.teller-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 26px;
  justify-items: center;
}

@media (min-width: 1024px) {
  .teller-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .teller-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.teller-card {
  --photo: clamp(132px, 38vw, 170px);
  position: relative;
  width: 100%;
  max-width: 260px;
  aspect-ratio: 260/320;
  background: url("./assets/img/card_mini.png") center/100% 100% no-repeat;
  display: grid;
  grid-template-rows: 14px 2.2em auto 2.6em;
  row-gap: 8px;
  justify-items: center;
  align-content: start;
  padding: 14px 12px 14px;
  text-decoration: none;
  color: inherit;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
  border-radius: 16px;
}

@media (max-width: 360px) {
  .teller-card {
    --photo: 120px;
    row-gap: 6px;
  }
}
.teller-card > * {
  position: relative;
  z-index: 1;
}

.teller-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #759867;
  mix-blend-mode: multiply;
  -webkit-mask: url("./assets/img/card.png") center/100% 100% no-repeat;
  mask: url("./assets/img/card.png") center/100% 100% no-repeat;
  z-index: 0;
  pointer-events: none;
}

.teller-card__furigana {
  height: 14px;
  line-height: 14px;
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--color-text-second);
  opacity: 0.9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.teller-card__name-row {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  max-width: 100%;
}

.teller-card__name {
  margin: 0;
  font-family: var(--font-mincho);
  font-size: clamp(16px, 4.6vw, 20px);
  letter-spacing: 0.08em;
  color: var(--color-text-second);
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 8.5em;
}

.teller-card__honor {
  font-size: 12px;
  color: var(--color-text-second);
  opacity: 0.9;
  white-space: nowrap;
}

.teller-card__photo {
  width: var(--photo);
  height: var(--photo);
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.teller-card__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.teller-card__title {
  margin: 0;
  font-size: 12px;
  color: var(--color-text-second);
  opacity: 0.9;
  line-height: 1.3;
  height: 2.6em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media (max-width: 480px) {
  .section-tellers {
    padding: 32px 0;
  }
  .teller-list {
    gap: 12px;
    grid-template-columns: repeat(2, 1fr);
  }
  .teller-card {
    --photo: clamp(104px, 28vw, 132px);
    aspect-ratio: 260/340;
    grid-template-rows: 14px 2em auto 3em;
    row-gap: 6px;
    padding: 12px 10px 12px;
    align-items: center;
  }
  .teller-card__furigana {
    font-size: 10px;
    height: 14px;
    line-height: 14px;
  }
  .teller-card__name {
    font-size: clamp(14px, 4.2vw, 18px);
    max-width: 9.2em;
  }
  .teller-card__honor {
    font-size: 10px;
  }
  .teller-card__photo {
    border-width: 2px;
  }
  .teller-card__title {
    font-size: 10px;
    line-height: 1.35;
    height: 3em;
    -webkit-line-clamp: 2;
  }
}
@media (hover: hover) and (pointer: fine) {
  .teller-card {
    transition: transform 0.25s ease;
  }
  .teller-card:hover {
    transform: translateY(-3px);
  }
  .teller-card__photo img {
    transition: transform 0.35s ease;
  }
  .teller-card:hover .teller-card__photo img {
    transform: scale(1.04);
  }
  .teller-card::before {
    transition: transform 0.35s ease;
  }
  .teller-card:hover::before {
    transform: scale(1.02);
  }
}
@media (prefers-reduced-motion: reduce) {
  .teller-card,
  .teller-card * {
    transition: none !important;
  }
}
/* =====================================
   Fortune Teller Single
===================================== */
.section-teller2 {
  padding: 64px 0 96px;
}

.teller2-hero {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: start;
}

.teller2-photo {
  width: 360px;
  height: 360px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid rgba(40, 80, 36, 0.22);
  background: rgba(255, 255, 255, 0.5);
}

.teller2-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.teller2-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  padding-top: 18px;
}

.teller2-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 10px;
  background: rgba(40, 80, 36, 0.12);
  border: 1px solid rgba(40, 80, 36, 0.25);
  font-size: var(--fs-sm);
  margin: 0 0 18px;
  font-family: var(--font-serif);
  color: var(--color-text-main);
}

.teller2-name {
  margin: 0;
  font-family: var(--font-mincho);
  font-size: 48px;
  letter-spacing: 0.16em;
  line-height: 1.2;
}

.teller2-furigana {
  display: block;
  margin-top: 6px;
  letter-spacing: 0.35em;
  opacity: 0.7;
  font-family: var(--font-mincho);
  font-size: 18px;
}

.teller2-info {
  border-top: 1px solid rgba(40, 80, 36, 0.18);
  border-bottom: 1px solid rgba(40, 80, 36, 0.18);
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.teller2-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 22px 0;
}

.teller2-row + .teller2-row {
  border-top: 1px solid rgba(40, 80, 36, 0.14);
}

.teller2-row__label {
  font-family: var(--font-mincho);
  font-size: var(--fs-xs);
  opacity: 0.7;
  white-space: nowrap;
}

.teller2-row__value {
  font-size: var(--fs-sm);
  line-height: 1.7;
}

.teller2-section {
  margin-top: 60px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  clear: both;
  grid-column: 1/-1;
}

.teller2-section--message {
  padding: 0;
}

.teller2-message-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.teller2-section__title {
  margin: 0 0 28px;
  font-family: var(--font-mincho);
  font-size: 36px;
  color: var(--color-main);
}

.teller2-message__body {
  font-size: 16px;
  line-height: 2.1;
}

.teller2-message__body p {
  margin: 0 0 1.6em;
}

.teller2-subphoto {
  max-width: 520px;
  margin-left: auto;
}

.teller2-subphoto img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

@media (max-width: 1024px) {
  .teller2-message-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .teller2-message {
    order: 1;
  }
  .teller2-subphoto {
    order: 2;
    margin: 0 auto;
  }
}
/* =====================================
   Schedule slider
===================================== */
.teller2-section--schedule .schedule2-wrap {
  position: relative;
  margin-top: 18px;
  border-top: 1px solid rgba(40, 80, 36, 0.18);
  padding: 22px 44px;
}

.teller2-section--schedule .schedule2-viewport {
  overflow: hidden;
}

.teller2-section--schedule .schedule2-list {
  --gap: 18px;
  --visible: 7;
  display: flex;
  gap: var(--gap);
  transition: transform 0.35s ease;
}

.teller2-section--schedule .schedule2-card {
  flex: 0 0 calc((100% - var(--gap) * (var(--visible) - 1)) / var(--visible));
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(40, 80, 36, 0.18);
  border-radius: 8px;
  padding: 18px 16px 16px;
}

.teller2-section--schedule .schedule2-date {
  font-family: var(--font-mincho);
  font-size: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(40, 80, 36, 0.14);
  white-space: nowrap;
}

.teller2-section--schedule .schedule2-time {
  margin-top: 12px;
  line-height: 1.8;
  font-size: var(--fs-sm);
}

.teller2-section--schedule .schedule2-off {
  opacity: 0.85;
}

.teller2-section--schedule .schedule2-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(40, 80, 36, 0.3);
  background: #fff;
  font-size: 26px;
  line-height: 1;
  z-index: 2;
}

.teller2-section--schedule .schedule2-nav--prev {
  left: 0;
}

.teller2-section--schedule .schedule2-nav--next {
  right: 0;
}

@media (max-width: 1024px) {
  .teller2-section--schedule .schedule2-list {
    --visible: 4;
  }
}
@media (max-width: 600px) {
  .section-teller2 .container {
    overflow-x: hidden;
  }
  .teller2-hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .teller2-photo {
    width: min(280px, 78vw);
    height: min(280px, 78vw);
    margin: 0 auto;
  }
  .teller2-head {
    align-items: center;
    padding-top: 0;
    min-width: 0;
  }
  .teller2-badge {
    align-self: center;
    margin: 10px 0 0;
    max-width: 100%;
  }
  .teller2-name {
    font-size: 26px;
    letter-spacing: 0.14em;
  }
  .teller2-furigana {
    font-size: 12px;
  }
  .teller2-section--schedule .schedule2-wrap {
    padding: 22px 32px;
  }
  .teller2-section--schedule .schedule2-list {
    --gap: 12px;
    --visible: 2;
  }
  .teller2-section--schedule .schedule2-card {
    padding: 14px 12px 12px;
  }
  .teller2-section--schedule .schedule2-date {
    font-size: 16px;
  }
}
/* =====================================
   Font Weight Reset (Light)
===================================== */
html,
body {
  font-weight: 400;
}

* {
  font-weight: inherit;
}

strong,
b {
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

button,
input,
select,
textarea {
  font-weight: 400;
}

/* =====================================
   404 index.php
===================================== */
#primary {
  padding: 96px 0;
}

.not-found {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 48px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  text-align: center;
}

.not-found h1 {
  font-size: 32px;
  margin-bottom: 24px;
}

.not-found p {
  font-size: var(--fs-md);
  line-height: 1.9;
  margin-bottom: 16px;
}

.not-found a {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 28px;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.not-found a:hover {
  opacity: 0.85;
}

@media (max-width: 768px) {
  #primary {
    padding: 64px 0;
  }
  .not-found {
    padding: 40px 20px;
  }
  .not-found h1 {
    font-size: 24px;
  }
  .not-found p {
    font-size: 14px;
  }
}
/* =====================================
   Contact Form 7 (Archive bottom)
===================================== */
.section-contactform,
.entry-content {
  padding: 64px 0 96px;
}
.section-contactform .wpcf7,
.entry-content .wpcf7 {
  max-width: 760px;
  margin: 0 auto;
}
.section-contactform .wpcf7 form,
.entry-content .wpcf7 form {
  background: rgba(252, 255, 229, 0.92);
  border: 1px solid rgba(40, 80, 36, 0.18);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 10px 30px rgba(40, 80, 36, 0.12);
}
@media (min-width: 768px) {
  .section-contactform .wpcf7 form,
  .entry-content .wpcf7 form {
    padding: 28px 28px;
  }
}
.section-contactform .wpcf7 p,
.entry-content .wpcf7 p {
  margin: 0 0 14px;
}
.section-contactform .wpcf7 label,
.entry-content .wpcf7 label {
  display: block;
  font-size: var(--fs-sm, 14px);
  color: rgba(40, 80, 36, 0.85);
}
.section-contactform .wpcf7-form-control-wrap,
.entry-content .wpcf7-form-control-wrap {
  display: block;
  margin-top: 6px;
}
.section-contactform .wpcf7 input[type=text],
.section-contactform .wpcf7 input[type=email],
.section-contactform .wpcf7 textarea,
.entry-content .wpcf7 input[type=text],
.entry-content .wpcf7 input[type=email],
.entry-content .wpcf7 textarea {
  width: 100%;
  border: 1px solid rgba(40, 80, 36, 0.22);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  padding: 12px 12px;
  font-size: var(--fs-md, 16px);
  color: rgba(40, 80, 36, 0.95);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.section-contactform .wpcf7 input[type=text]::-moz-placeholder, .section-contactform .wpcf7 input[type=email]::-moz-placeholder, .section-contactform .wpcf7 textarea::-moz-placeholder, .entry-content .wpcf7 input[type=text]::-moz-placeholder, .entry-content .wpcf7 input[type=email]::-moz-placeholder, .entry-content .wpcf7 textarea::-moz-placeholder {
  color: rgba(40, 80, 36, 0.45);
}
.section-contactform .wpcf7 input[type=text]::placeholder,
.section-contactform .wpcf7 input[type=email]::placeholder,
.section-contactform .wpcf7 textarea::placeholder,
.entry-content .wpcf7 input[type=text]::placeholder,
.entry-content .wpcf7 input[type=email]::placeholder,
.entry-content .wpcf7 textarea::placeholder {
  color: rgba(40, 80, 36, 0.45);
}
.section-contactform .wpcf7 input[type=text]:focus,
.section-contactform .wpcf7 input[type=email]:focus,
.section-contactform .wpcf7 textarea:focus,
.entry-content .wpcf7 input[type=text]:focus,
.entry-content .wpcf7 input[type=email]:focus,
.entry-content .wpcf7 textarea:focus {
  border-color: rgba(40, 80, 36, 0.45);
  box-shadow: 0 0 0 4px rgba(40, 80, 36, 0.12);
  background: rgb(255, 255, 255);
}
.section-contactform .wpcf7 textarea,
.entry-content .wpcf7 textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.7;
}
.section-contactform .wpcf7-submit,
.entry-content .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  background: #285024;
  color: #fcffe5;
  font-size: var(--fs-md, 16px);
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
  box-shadow: 0 10px 22px rgba(40, 80, 36, 0.18);
}
.section-contactform .wpcf7-submit:hover,
.entry-content .wpcf7-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(40, 80, 36, 0.22);
}
.section-contactform .wpcf7-submit:active,
.entry-content .wpcf7-submit:active {
  transform: translateY(0);
  box-shadow: 0 10px 22px rgba(40, 80, 36, 0.18);
  opacity: 0.92;
}
.section-contactform .wpcf7-spinner,
.entry-content .wpcf7-spinner {
  margin-left: 10px;
}
.section-contactform .wpcf7-not-valid-tip,
.entry-content .wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: var(--fs-xs, 12px);
  color: rgba(180, 55, 55, 0.95);
}
.section-contactform .wpcf7-response-output,
.entry-content .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 12px 12px;
  border-radius: 14px;
  font-size: var(--fs-sm, 14px);
  line-height: 1.6;
}
.section-contactform .wpcf7 form.sent .wpcf7-response-output,
.entry-content .wpcf7 form.sent .wpcf7-response-output {
  border: 1px solid rgba(40, 80, 36, 0.28);
  background: rgba(40, 80, 36, 0.08);
  color: rgba(40, 80, 36, 0.95);
}
.section-contactform .wpcf7 form.invalid .wpcf7-response-output,
.section-contactform .wpcf7 form.failed .wpcf7-response-output,
.section-contactform .wpcf7 form.aborted .wpcf7-response-output,
.entry-content .wpcf7 form.invalid .wpcf7-response-output,
.entry-content .wpcf7 form.failed .wpcf7-response-output,
.entry-content .wpcf7 form.aborted .wpcf7-response-output {
  border: 1px solid rgba(180, 55, 55, 0.28);
  background: rgba(180, 55, 55, 0.08);
  color: rgba(120, 30, 30, 0.95);
}
.section-contactform .wpcf7 form.spam .wpcf7-response-output,
.entry-content .wpcf7 form.spam .wpcf7-response-output {
  border: 1px solid rgba(160, 120, 40, 0.28);
  background: rgba(160, 120, 40, 0.08);
  color: rgba(110, 80, 20, 0.95);
}/*# sourceMappingURL=style.css.map */