@charset "UTF-8";

:root {
  --shogen-ink: #2c2c2c;
  --shogen-ink-light: #3d3d3d;
  --shogen-ink-dark: #1a1a1a;
  --shogen-navy: #1a2a3a;
  --shogen-navy-light: #2a3d50;
  --shogen-navy-dark: #0f1c28;
  --shogen-cream: #faf6f0;
  --shogen-cream-light: #fdfbf7;
  --shogen-cream-dark: #f0ebe3;
  --shogen-gold: #b8860b;
  --shogen-gold-light: #d4a828;
  --shogen-gold-dark: #8b6508;
  --shogen-vermilion: #c03a2b;
  --shogen-stone: #7a7a7a;
  --shogen-stone-dark: #5a5a5a;
  --shogen-sans: "Noto Sans JP", sans-serif;
  --shogen-serif: "Noto Serif JP", serif;
}

html {
  scroll-behavior: smooth;
}

body.shogen-body {
  margin: 0;
  background: #fff;
  color: var(--shogen-ink);
  font-family: var(--shogen-sans);
}

body.shogen-body * {
  box-sizing: border-box;
}

.shogen-site {
  min-height: 100vh;
  background: #fff;
  color: var(--shogen-ink);
  font-family: var(--shogen-sans);
  overflow-x: hidden;
}

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

.shogen-site a {
  text-decoration: none;
}

.shogen-container {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 48px;
}

.shogen-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background-color .5s ease, box-shadow .5s ease, border-color .5s ease;
  background: transparent;
}

body.admin-bar .shogen-header {
  top: 32px;
}

.shogen-header.is-scrolled {
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 18px rgba(15, 28, 40, .08);
  border-bottom: 1px solid rgba(240, 235, 227, .4);
}

.shogen-header-inner {
  width: 100%;
}

.shogen-header-brand-wrap {
  width: 100%;
  text-align: center;
  padding: 20px 16px 12px;
  transition: padding .5s ease;
}

.shogen-header.is-scrolled .shogen-header-brand-wrap {
  padding-top: 8px;
  padding-bottom: 8px;
}

.shogen-header-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}

.shogen-header-title {
  display: block;
  font-family: var(--shogen-serif);
  font-size: 30px;
  line-height: 1.25;
  letter-spacing: .18em;
  color: #fff;
  transition: color .5s ease, font-size .5s ease;
}

.shogen-header-subtitle {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: .3em;
  color: rgba(255,255,255,.8);
  transition: color .5s ease;
}

.shogen-header.is-scrolled .shogen-header-title {
  font-size: 24px;
  color: var(--shogen-navy-dark);
}

.shogen-header.is-scrolled .shogen-header-subtitle {
  color: var(--shogen-stone);
}

.shogen-header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 16px 12px;
  transition: border-color .5s ease;
}

.shogen-header.is-scrolled .shogen-header-nav {
  border-top: 1px solid rgba(240,235,227,.2);
  padding-top: 0;
}

.shogen-header-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 16px;
  border-radius: 2px;
  color: rgba(255,255,255,.9);
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  transition: color .3s ease, background-color .3s ease;
}

.shogen-header-nav a:hover {
  color: var(--shogen-gold-light);
  background: rgba(255,255,255,.05);
}

.shogen-header.is-scrolled .shogen-header-nav a {
  color: var(--shogen-ink-light);
}

.shogen-header.is-scrolled .shogen-header-nav a:hover {
  color: var(--shogen-navy);
  background: rgba(240,235,227,.2);
}

.shogen-mobile-control {
  display: none;
  justify-content: flex-end;
  padding: 0 16px 8px;
}

.shogen-menu-button {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  padding: 0;
}

.shogen-menu-button span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: #fff;
  transform-origin: center;
  transition: background-color .3s ease, transform .3s ease, opacity .3s ease;
}

.shogen-header.is-scrolled .shogen-menu-button span {
  background: var(--shogen-ink);
}

.shogen-menu-button.is-active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.shogen-menu-button.is-active span:nth-child(2) {
  opacity: 0;
}

.shogen-menu-button.is-active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.shogen-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15,28,40,.9);
  backdrop-filter: blur(12px);
}

body.admin-bar .shogen-mobile-menu {
  top: 32px;
}

.shogen-mobile-menu.is-open {
  display: flex;
}

.shogen-mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.shogen-mobile-nav a {
  display: block;
  padding: 8px 24px;
  border-radius: 2px;
  color: #fff;
  font-family: var(--shogen-serif);
  font-size: 18px;
  letter-spacing: .18em;
  transition: color .3s ease, background-color .3s ease;
}

.shogen-mobile-nav a:hover {
  color: var(--shogen-gold-light);
  background: rgba(255,255,255,.1);
}

.shogen-mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.6);
  font-size: 26px;
  cursor: pointer;
  transition: color .3s ease;
}

.shogen-mobile-close:hover {
  color: #fff;
}

.shogen-main {
  display: block;
}

.shogen-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  transition: opacity 2s ease;
}

.shogen-hero.is-visible {
  opacity: 1;
}

.shogen-hero-bg,
.shogen-hero-bg img,
.shogen-contact-bg,
.shogen-contact-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.shogen-hero-bg img,
.shogen-contact-bg img {
  object-fit: cover;
}

.shogen-hero-overlay-one {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,28,40,.7), rgba(15,28,40,.4), rgba(15,28,40,.8));
}

.shogen-hero-overlay-two {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,28,40,.5), transparent, rgba(15,28,40,.5));
}

.shogen-hero-line {
  position: absolute;
  width: 1px;
  height: 160px;
  background: linear-gradient(to bottom, transparent, rgba(184,134,11,.3), transparent);
}

.shogen-hero-line-left {
  top: 80px;
  left: 40px;
}

.shogen-hero-line-right {
  right: 40px;
  bottom: 80px;
}

.shogen-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1024px;
}

.shogen-hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.shogen-hero-gold-line {
  width: 64px;
  height: 1px;
  margin-bottom: 32px;
  background: rgba(212,168,40,.6);
}

.shogen-hero-subcopy {
  margin: 0 0 24px;
  color: rgba(255,255,255,.7);
  font-family: var(--shogen-serif);
  font-size: 15px;
  letter-spacing: .4em;
}

.shogen-hero-title {
  margin: 0 0 24px;
  color: #fff;
  font-family: var(--shogen-serif);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.18;
  letter-spacing: .12em;
  font-weight: 600;
}

.shogen-hero-title span {
  color: var(--shogen-gold-light);
}

.shogen-hero-description {
  max-width: 672px;
  margin: 0 0 40px;
  color: rgba(255,255,255,.8);
  font-size: 15px;
  line-height: 2;
  letter-spacing: .06em;
}

.shogen-hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.shogen-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 32px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.2;
  transition: background-color .5s ease, border-color .5s ease, color .5s ease, box-shadow .5s ease;
}

.shogen-button-gold {
  background: var(--shogen-gold);
  color: #fff;
  box-shadow: 0 10px 20px rgba(184,134,11,.2);
}

.shogen-button-gold:hover {
  background: var(--shogen-gold-light);
  color: #fff;
}

.shogen-button-outline {
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
}

.shogen-button-outline:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
}

.shogen-button-navy {
  padding: 10px 24px;
  min-height: 42px;
  background: var(--shogen-navy);
  color: #fff;
}

.shogen-button-navy:hover {
  background: var(--shogen-navy-light);
  color: #fff;
}

.shogen-hero-phone {
  margin-top: 32px;
  text-align: center;
}

.shogen-hero-phone p {
  margin: 0 0 4px;
  color: rgba(255,255,255,.5);
  font-size: 12px;
  letter-spacing: .12em;
}

.shogen-hero-phone a {
  color: var(--shogen-gold-light);
  font-family: var(--shogen-serif);
  font-size: 24px;
  letter-spacing: .12em;
}

.shogen-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
  color: rgba(255,255,255,.4);
}

.shogen-scroll-indicator span {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.4));
}

.shogen-scroll-indicator em {
  font-style: normal;
  font-size: 10px;
  letter-spacing: .3em;
}

.shogen-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.shogen-section-white {
  background: #fff;
}

.shogen-section-cream {
  background: var(--shogen-cream);
}

.shogen-pattern-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .04;
  pointer-events: none;
  background-image: url("https://www.transparenttextures.com/patterns/rice-paper.png");
}

.shogen-pattern-section > .shogen-container {
  position: relative;
  z-index: 1;
}

.shogen-section-heading {
  margin-bottom: 64px;
  text-align: center;
}

.shogen-section-heading p,
.shogen-eyebrow {
  margin: 0 0 12px;
  color: var(--shogen-stone);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: .4em;
  font-weight: 400;
}

.shogen-section-heading h2,
.shogen-split-content h2 {
  margin: 0 0 16px;
  color: var(--shogen-navy-dark);
  font-family: var(--shogen-serif);
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.35;
  letter-spacing: .12em;
  font-weight: 600;
}

.shogen-section-heading-dark p {
  color: rgba(212,168,40,.6);
}

.shogen-section-heading-dark h2 {
  color: #fff;
}

.shogen-section-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.shogen-section-mark-left {
  justify-content: flex-start;
  margin-bottom: 32px;
}

.shogen-section-mark span {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--shogen-gold);
}

.shogen-section-mark i {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--shogen-gold);
  transform: rotate(45deg);
}

.shogen-section-mark-light {
  margin-bottom: 32px;
}

.shogen-section-mark-light span {
  background: rgba(184,134,11,.4);
}

.shogen-section-mark-light i {
  width: 8px;
  height: 8px;
  background: transparent;
  border: 1px solid rgba(184,134,11,.4);
}

.shogen-section-heading-dark .shogen-section-mark span,
.shogen-section-heading-dark .shogen-section-mark i {
  background: rgba(184,134,11,.6);
}

.shogen-section-lead {
  max-width: 672px;
  margin: 24px auto 0;
  color: var(--shogen-stone);
  font-size: 15px;
  line-height: 1.8;
}

.shogen-event-grid,
.shogen-service-grid,
.shogen-trouble-grid,
.shogen-price-grid {
  display: grid;
  gap: 20px;
}

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

.shogen-event-card {
  overflow: hidden;
  border: 1px solid rgba(240,235,227,.4);
  border-radius: 2px;
  background: var(--shogen-cream);
  transition: box-shadow .5s ease, border-color .5s ease;
}

.shogen-event-card:hover {
  box-shadow: 0 12px 28px rgba(15,28,40,.05);
}

.shogen-event-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 20px 12px;
}

.shogen-event-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 2px;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: .12em;
  font-weight: 500;
  white-space: nowrap;
}

.shogen-event-tag.is-school {
  background: var(--shogen-navy);
  color: #fff;
}

.shogen-event-tag.is-marche {
  background: rgba(192,58,43,.1);
  color: var(--shogen-vermilion);
}

.shogen-event-tag.is-other {
  background: rgba(184,134,11,.1);
  color: var(--shogen-gold-dark);
}

.shogen-event-date {
  color: var(--shogen-stone);
  font-size: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.shogen-event-body {
  padding: 0 20px 20px;
}

.shogen-event-body h3 {
  margin: 0 0 10px;
  color: var(--shogen-ink);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  transition: color .3s ease;
}

.shogen-event-card:hover h3 {
  color: var(--shogen-navy);
}

.shogen-event-detail {
  display: grid;
  gap: 4px;
  color: var(--shogen-stone);
  font-size: 14px;
}

.shogen-event-detail p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  line-height: 1.6;
}

.shogen-event-detail i {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--shogen-gold);
}

.shogen-event-detail .shogen-event-discount {
  display: block;
  margin-top: 4px;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(192,58,43,.05);
  color: var(--shogen-vermilion);
  font-size: 12px;
  font-weight: 500;
}

.shogen-event-links {
  display: flex;
  gap: 12px;
  padding-top: 8px;
}

.shogen-event-links a {
  color: var(--shogen-navy);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .3s ease;
}

.shogen-event-links a:hover {
  color: var(--shogen-gold);
}

.shogen-split {
  display: flex;
  align-items: center;
  gap: 64px;
}

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

.shogen-split-image {
  position: relative;
  flex: 0 0 calc(50% - 32px);
}

.shogen-split-about .shogen-split-image,
.shogen-profile-split .shogen-split-image {
  flex-basis: calc(41.666% - 32px);
}

.shogen-split-about .shogen-split-content,
.shogen-profile-split .shogen-split-content {
  flex-basis: calc(58.333% - 32px);
}

.shogen-split-content {
  flex: 1;
}

.shogen-image-frame::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(184,134,11,.2);
  border-radius: 2px;
  pointer-events: none;
}

.shogen-image-frame.is-left::after {
  top: -12px;
  left: -12px;
}

.shogen-image-frame.is-right-bottom::after {
  right: -12px;
  bottom: -12px;
}

.shogen-image-frame.is-left-bottom::after {
  left: -12px;
  bottom: -12px;
}

.shogen-image-frame.is-right-top::after {
  top: -12px;
  right: -12px;
}

.shogen-aspect-portrait,
.shogen-aspect-landscape {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(240,235,227,.3);
  border-radius: 2px;
  background: var(--shogen-cream);
}

.shogen-aspect-portrait {
  aspect-ratio: 4 / 5;
}

.shogen-aspect-landscape {
  aspect-ratio: 4 / 3;
}

.shogen-aspect-portrait img,
.shogen-aspect-landscape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shogen-profile-image img {
  object-position: top;
}

.shogen-split-content h3 {
  margin: 0 0 24px;
  color: var(--shogen-navy-dark);
  font-family: var(--shogen-serif);
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.5;
  letter-spacing: .12em;
  font-weight: 600;
}

.shogen-text-block {
  display: grid;
  gap: 20px;
  color: var(--shogen-stone-dark);
  font-size: 15px;
  line-height: 1.9;
}

.shogen-text-block p,
.shogen-check-list p,
.shogen-school-list p,
.shogen-school-text {
  margin: 0;
}

.shogen-message-box {
  margin-top: 32px;
  padding: 20px;
  border-left: 2px solid var(--shogen-gold);
  background: rgba(255,255,255,.5);
  color: var(--shogen-navy);
  font-family: var(--shogen-serif);
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: .08em;
}

.shogen-trouble-grid,
.shogen-service-grid,
.shogen-price-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shogen-trouble-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(240,235,227,.3);
  border-radius: 2px;
  background: var(--shogen-cream);
  transition: background-color .5s ease, border-color .5s ease;
}

.shogen-trouble-card:hover {
  background: var(--shogen-navy);
  border-color: var(--shogen-navy);
}

.shogen-trouble-icon,
.shogen-service-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(26,42,58,.05);
  color: var(--shogen-navy);
  transition: background-color .5s ease, color .5s ease;
}

.shogen-trouble-card:hover .shogen-trouble-icon {
  background: rgba(212,168,40,.2);
  color: var(--shogen-gold-light);
}

.shogen-trouble-card p {
  margin: 6px 0 0;
  color: var(--shogen-ink);
  font-size: 14px;
  line-height: 1.7;
  transition: color .5s ease;
}

.shogen-trouble-card:hover p {
  color: #fff;
}

.shogen-service-card {
  padding: 28px;
  border: 1px solid rgba(240,235,227,.3);
  border-radius: 2px;
  background: #fff;
  transition: border-color .5s ease, box-shadow .5s ease;
}

.shogen-service-card:hover {
  border-color: rgba(184,134,11,.3);
  box-shadow: 0 12px 28px rgba(15,28,40,.05);
}

.shogen-service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.shogen-service-icon i {
  font-size: 20px;
}

.shogen-service-card:hover .shogen-service-icon {
  background: rgba(184,134,11,.1);
  color: var(--shogen-gold-dark);
}

.shogen-service-card h3 {
  margin: 0 0 12px;
  color: var(--shogen-ink);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  transition: color .5s ease;
}

.shogen-service-card:hover h3 {
  color: var(--shogen-navy);
}

.shogen-service-card p {
  margin: 0;
  color: var(--shogen-stone);
  font-size: 14px;
  line-height: 1.8;
  transition: color .5s ease;
}

.shogen-service-card:hover p {
  color: var(--shogen-ink-light);
}

.shogen-check-list,
.shogen-school-list {
  display: grid;
  gap: 8px;
  margin: 24px 0 32px;
  color: var(--shogen-stone);
  font-size: 14px;
}

.shogen-check-list p,
.shogen-school-list p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.7;
}

.shogen-check-list i {
  margin-top: 3px;
  color: var(--shogen-gold);
}

.shogen-price-card {
  overflow: hidden;
  border: 1px solid rgba(240,235,227,.3);
  border-radius: 2px;
  background: #fff;
  transition: border-color .5s ease, box-shadow .5s ease;
}

.shogen-price-card:hover {
  border-color: rgba(184,134,11,.3);
  box-shadow: 0 12px 28px rgba(15,28,40,.05);
}

.shogen-price-head {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(240,235,227,.2);
  background: rgba(15,28,40,.05);
}

.shogen-price-head h3 {
  margin: 0;
  color: var(--shogen-navy-dark);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
}

.shogen-price-head p {
  margin: 4px 0 0;
  color: var(--shogen-stone);
  font-size: 12px;
}

.shogen-price-items {
  padding: 20px 24px;
}

.shogen-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(240,235,227,.2);
}

.shogen-price-row:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.shogen-price-row span {
  color: var(--shogen-ink);
  font-size: 14px;
}

.shogen-price-row strong {
  color: var(--shogen-navy-dark);
  font-size: 16px;
  white-space: nowrap;
}

.shogen-price-note {
  margin: 0 24px 20px;
  padding: 12px;
  border-radius: 2px;
  background: var(--shogen-cream);
  color: var(--shogen-stone);
  font-size: 12px;
  line-height: 1.7;
}

.shogen-business-hours {
  max-width: 576px;
  margin: 40px auto 0;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid rgba(240,235,227,.3);
  border-radius: 2px;
  background: #fff;
  color: var(--shogen-ink);
  font-size: 14px;
}

.shogen-business-hours p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.shogen-business-hours i {
  color: var(--shogen-gold);
}

.shogen-profile-image-wrap {
  position: relative;
}

.shogen-name-overlay {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 16px;
  border: 1px solid rgba(184,134,11,.2);
  border-radius: 2px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(6px);
}

.shogen-name-overlay p {
  margin: 0;
  color: var(--shogen-navy-dark);
  font-family: var(--shogen-serif);
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: .12em;
}

.shogen-name-overlay span {
  display: block;
  margin-top: 4px;
  color: var(--shogen-stone);
  font-size: 12px;
}

.shogen-profile-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.shogen-profile-badges span {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 2px;
  font-size: 12px;
}

.shogen-profile-badges span:first-child {
  background: rgba(15,28,40,.05);
  border: 1px solid rgba(26,42,58,.1);
  color: var(--shogen-navy);
}

.shogen-profile-badges span:last-child {
  background: rgba(184,134,11,.05);
  border: 1px solid rgba(184,134,11,.1);
  color: var(--shogen-gold-dark);
}

.shogen-school-text {
  margin-bottom: 24px;
  color: var(--shogen-stone-dark);
  font-size: 14px;
  line-height: 1.9;
}

.shogen-school-list p {
  color: var(--shogen-ink);
}

.shogen-school-list i {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 999px;
  background: rgba(184,134,11,.1);
  color: var(--shogen-gold-dark);
  font-size: 12px;
}

.shogen-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.shogen-gallery-button {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 176px;
  padding: 0;
  border: 1px solid rgba(240,235,227,.3);
  border-radius: 2px;
  background: var(--shogen-cream);
  cursor: pointer;
}

.shogen-gallery-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.shogen-gallery-button:hover img {
  transform: scale(1.05);
}

.shogen-gallery-button span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15,28,40,0);
  color: #fff;
  font-size: 22px;
  opacity: 0;
  transition: background-color .5s ease, opacity .3s ease;
}

.shogen-gallery-button:hover span {
  background: rgba(15,28,40,.3);
  opacity: 1;
}

.shogen-contact-section {
  background: var(--shogen-navy-dark);
  color: #fff;
}

.shogen-contact-bg {
  z-index: 0;
}

.shogen-contact-bg img {
  opacity: .3;
}

.shogen-contact-bg div {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,28,40,.8), rgba(15,28,40,.6), rgba(15,28,40,.8));
}

.shogen-contact-container {
  position: relative;
  z-index: 1;
  max-width: 896px;
}

.shogen-contact-card {
  padding: 48px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 2px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(8px);
  text-align: center;
}

.shogen-contact-lead {
  margin: 0 0 32px;
  color: rgba(255,255,255,.8);
  font-size: 15px;
  line-height: 1.9;
}

.shogen-contact-phone {
  margin-bottom: 32px;
}

.shogen-contact-phone p {
  margin: 0 0 8px;
  color: rgba(255,255,255,.5);
  font-size: 12px;
  letter-spacing: .12em;
}

.shogen-contact-phone a {
  color: var(--shogen-gold-light);
  font-family: var(--shogen-serif);
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.3;
  letter-spacing: .12em;
  transition: color .3s ease;
}

.shogen-contact-phone a:hover {
  color: var(--shogen-gold);
}

.shogen-contact-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  color: rgba(255,255,255,.6);
  font-size: 14px;
}

.shogen-contact-meta p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.shogen-contact-meta i {
  color: rgba(212,168,40,.6);
}

.shogen-contact-location {
  margin: 32px 0 0;
  color: rgba(255,255,255,.4);
  text-align: center;
  font-size: 12px;
  letter-spacing: .12em;
}

.shogen-footer {
  position: relative;
  overflow: hidden;
  background: var(--shogen-navy-dark);
  color: #fff;
}

.shogen-footer-pattern {
  position: absolute;
  inset: 0;
  opacity: .03;
  pointer-events: none;
  background-image: url("https://www.transparenttextures.com/patterns/rice-paper.png");
}

.shogen-footer-main,
.shogen-footer-bottom {
  position: relative;
  z-index: 1;
}

.shogen-footer-main {
  padding: 64px 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.shogen-footer-grid {
  max-width: 1152px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.shogen-footer-brand {
  text-align: left;
}

.shogen-footer-title {
  margin: 0 0 8px;
  font-family: var(--shogen-serif);
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: .18em;
}

.shogen-footer-subtitle {
  margin: 0 0 16px;
  color: rgba(240,235,227,.6);
  font-size: 13px;
  letter-spacing: .12em;
}

.shogen-footer-text {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  line-height: 1.8;
}

.shogen-footer-heading {
  margin: 0 0 16px;
  color: rgba(212,168,40,.8);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
}

.shogen-footer-nav-wrap {
  text-align: center;
}

.shogen-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}

.shogen-footer-nav a {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  transition: color .3s ease;
}

.shogen-footer-nav a:hover {
  color: var(--shogen-gold-light);
}

.shogen-footer-contact {
  text-align: right;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  line-height: 1.8;
}

.shogen-footer-contact p {
  margin: 0 0 8px;
}

.shogen-footer-contact span {
  color: rgba(255,255,255,.9);
}

.shogen-footer-small {
  color: rgba(255,255,255,.4);
  font-size: 12px;
}

.shogen-footer-bottom {
  padding: 24px 48px;
}

.shogen-footer-bottom-inner {
  max-width: 1152px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.shogen-footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,.4);
  font-size: 12px;
}

.shogen-footer-bottom p:last-child {
  color: rgba(255,255,255,.3);
}

.shogen-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(15,28,40,.95);
}

.shogen-lightbox.is-open {
  display: flex;
}

.shogen-lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 2px;
  object-fit: contain;
}

.shogen-lightbox button {
  position: absolute;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.65);
  cursor: pointer;
  font-size: 28px;
  transition: color .3s ease;
}

.shogen-lightbox button:hover {
  color: #fff;
}

.shogen-lightbox-close {
  top: 24px;
  right: 24px;
}

.shogen-lightbox-prev {
  left: 32px;
}

.shogen-lightbox-next {
  right: 32px;
}

@media (max-width: 1180px) {
  .shogen-header-nav a {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 13px;
  }
}

@media (max-width: 1023px) {
  .shogen-header-nav {
    display: none;
  }

  .shogen-mobile-control {
    display: flex;
  }

  .shogen-header-title {
    font-size: 27px;
  }

  .shogen-header.is-scrolled .shogen-header-title {
    font-size: 22px;
  }

  .shogen-event-grid,
  .shogen-trouble-grid,
  .shogen-service-grid,
  .shogen-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shogen-split,
  .shogen-reverse {
    flex-direction: column;
    gap: 48px;
  }

  .shogen-split-image,
  .shogen-split-about .shogen-split-image,
  .shogen-profile-split .shogen-split-image,
  .shogen-split-about .shogen-split-content,
  .shogen-profile-split .shogen-split-content {
    flex-basis: auto;
    width: 100%;
  }

  .shogen-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .shogen-footer-brand,
  .shogen-footer-contact {
    text-align: center;
  }
}

@media (max-width: 782px) {
  body.admin-bar .shogen-header,
  body.admin-bar .shogen-mobile-menu {
    top: 46px;
  }
}

@media (max-width: 767px) {
  .shogen-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .shogen-header-brand-wrap {
    padding-top: 14px;
    padding-bottom: 8px;
  }

  .shogen-header-title {
    font-size: 23px;
  }

  .shogen-header-subtitle {
    font-size: 10px;
  }

  .shogen-hero-line {
    display: none;
  }

  .shogen-hero-subcopy {
    font-size: 13px;
    line-height: 2;
    letter-spacing: .22em;
  }

  .shogen-hero-title {
    font-size: clamp(34px, 10vw, 48px);
    letter-spacing: .08em;
  }

  .shogen-hero-description {
    font-size: 14px;
  }

  .shogen-pc-br {
    display: none;
  }

  .shogen-hero-buttons {
    width: 100%;
    flex-direction: column;
  }

  .shogen-button {
    width: 100%;
    max-width: 320px;
  }

  .shogen-hero-phone a {
    font-size: 22px;
  }

  .shogen-section {
    padding: 64px 0;
  }

  .shogen-section-heading {
    margin-bottom: 48px;
  }

  .shogen-section-heading h2,
  .shogen-split-content h2 {
    font-size: 30px;
  }

  .shogen-event-grid,
  .shogen-trouble-grid,
  .shogen-service-grid,
  .shogen-price-grid {
    grid-template-columns: 1fr;
  }

  .shogen-event-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .shogen-message-box {
    font-size: 18px;
  }

  .shogen-business-hours,
  .shogen-contact-meta {
    flex-direction: column;
    gap: 12px;
  }

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

  .shogen-gallery-button {
    height: 144px;
  }

  .shogen-contact-card {
    padding: 32px 24px;
  }

  .shogen-contact-phone a {
    font-size: 30px;
    letter-spacing: .06em;
  }

  .shogen-footer-main,
  .shogen-footer-bottom {
    padding-left: 24px;
    padding-right: 24px;
  }

  .shogen-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .shogen-lightbox-prev {
    left: 12px;
  }

  .shogen-lightbox-next {
    right: 12px;
  }
}

@media (max-width: 480px) {
  .shogen-header-title {
    font-size: 20px;
    letter-spacing: .12em;
  }

  .shogen-header.is-scrolled .shogen-header-title {
    font-size: 20px;
  }

  .shogen-hero-title {
    font-size: 34px;
  }

  .shogen-section-heading p,
  .shogen-eyebrow {
    letter-spacing: .28em;
  }
}

.shogen-lower-main {
  background: #fff;
}

.shogen-lower-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 130px;
  color: #fff;
  text-align: center;
}

.shogen-lower-hero-bg,
.shogen-lower-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.shogen-lower-hero-bg img {
  object-fit: cover;
}

.shogen-lower-hero-bg div {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,28,40,.78), rgba(15,28,40,.55), rgba(15,28,40,.82));
}

.shogen-lower-hero-content {
  position: relative;
  z-index: 1;
}

.shogen-lower-eyebrow {
  margin: 0 0 16px;
  color: rgba(212,168,40,.75);
  font-size: 12px;
  letter-spacing: .35em;
}

.shogen-lower-title {
  margin: 0 0 24px;
  color: #fff;
  font-family: var(--shogen-serif);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.35;
  letter-spacing: .14em;
  font-weight: 600;
}

.shogen-lower-content {
  max-width: 920px;
  color: var(--shogen-ink);
  font-size: 16px;
  line-height: 1.9;
}

.shogen-lower-content h2,
.shogen-lower-content h3,
.shogen-lower-content h4 {
  color: var(--shogen-navy-dark);
  font-family: var(--shogen-serif);
  letter-spacing: .08em;
}

.shogen-lower-content h2 {
  margin: 0 0 24px;
  font-size: 32px;
}

.shogen-lower-content h3 {
  margin: 40px 0 16px;
  font-size: 24px;
}

.shogen-lower-content p {
  margin: 0 0 1.4em;
}

@media (max-width: 767px) {
  .shogen-lower-hero {
    min-height: 360px;
    padding-top: 110px;
  }

  .shogen-lower-title {
    font-size: 34px;
  }
}
