@charset "UTF-8";

/* =========================
   Base
========================= */
:root {
  --bg: #f7f6f3;
  --text: #3f3b37;
  --text-soft: #6a655f;
  --heading: #4d4843;

  --accent-green: #88a88f;
  --accent-green-deep: #73927a;
  --accent-green-soft: #eef4ee;
  --accent-green-text: #ffffff;

  --accent-link: #5e7e68;

  --card-bg: #fffdfa;
  --card-border: rgba(90, 80, 70, 0.06);
  --card-shadow: 0 10px 24px rgba(60, 50, 40, 0.06);

  --header-bg: rgba(174, 189, 162, 0.96);
  --header-bg-scrolled: rgba(164, 180, 152, 0.97);
  --header-border: rgba(255, 255, 255, 0.18);
  --header-shadow: 0 8px 24px rgba(60, 50, 40, 0.08);

  --nav-text: #ffffff;
  --nav-active: rgba(255, 255, 255, 0.92);
  --nav-active-text: #6e836a;

  --lang-border: rgba(255, 255, 255, 0.58);
  --lang-off-bg: rgba(255, 255, 255, 0.18);
  --lang-off-text: #ffffff;
  --lang-on-bg: rgba(255, 255, 255, 0.92);
  --lang-on-text: #6e836a;

  --menu-line: #ffffff;

  --home-card-menu: #f7f4ee;
  --home-card-reserve: #edf5ee;
  --home-card-schedule: #eef3f8;
  --home-card-blog: #f7f1f4;

  --content-width: 1100px;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

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

body {
  font-family: Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  padding-top: 98px;
}

a {
  color: var(--accent-link);
  text-decoration: none;
  transition:
    opacity 0.22s ease,
    color 0.22s ease,
    background-color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

a:hover {
  opacity: 0.95;
}

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

.wrapper {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 4%;
}

main {
  text-align: center;
  padding: 26px 20px 58px;
}

/* =========================
   Header / Navigation
========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  display: block;
  background: var(--header-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--header-border);
  box-shadow: var(--header-shadow);
  transition:
    background-color 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.site-header.is-scrolled {
  background: var(--header-bg-scrolled);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 24px;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  transition:
    padding 0.28s ease,
    min-height 0.28s ease;
}

.site-header.is-scrolled .header-inner {
  padding: 8px 24px;
  min-height: 68px;
}

.header-top {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  min-width: 0;
}

.site-logo {
  margin: 0;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.site-logo a {
  display: flex;
  align-items: center;
  line-height: 1;
}

.logo {
  width: 200px;
  max-width: 100%;
  border-radius: 12px;
  display: block;
  transition: width 0.28s ease;
}

.site-header.is-scrolled .logo {
  width: 180px;
}

/* JP / EN */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.lang-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lang-off-bg);
  border: 2px solid var(--lang-border);
  color: var(--lang-off-text);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  flex-shrink: 0;
}

.lang-btn:hover {
  opacity: 1;
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.24);
}

.lang-btn.is-active,
.lang-btn[aria-current="page"] {
  background: var(--lang-on-bg);
  color: var(--lang-on-text);
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 14px rgba(80, 70, 60, 0.08);
}

.site-header.is-scrolled .lang-btn {
  width: 36px;
  height: 36px;
  font-size: 0.82rem;
}

/* PC nav */
.header-nav {
  margin-left: auto;
  flex: 0 0 auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  margin: 0;
  padding: 0;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  white-space: nowrap;
}

.main-nav a:hover {
  opacity: 1;
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 16px rgba(60, 50, 40, 0.08);
}

.main-nav a.is-current {
  background: var(--nav-active);
  color: var(--nav-active-text);
  border-color: rgba(255, 255, 255, 0.92);
}

.site-header.is-scrolled .main-nav a {
  min-height: 34px;
  padding: 0 14px;
  font-size: 0.76rem;
}

/* Hamburger */
.menu-toggle {
  display: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  margin: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  z-index: 10030;
}

.menu-toggle:hover {
  background: transparent;
}

.menu-toggle span {
  display: block;
  position: absolute;
  left: 10px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--menu-line);
  transform-origin: center;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease,
    top 0.25s ease;
}

.menu-toggle span:nth-child(1) {
  top: 12px;
}

.menu-toggle span:nth-child(2) {
  top: 18px;
}

.menu-toggle span:nth-child(3) {
  top: 24px;
}

.menu-toggle.is-open span:nth-child(1) {
  top: 18px;
  transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  top: 18px;
  transform: rotate(-45deg);
}

.site-header.is-scrolled .menu-toggle {
  width: 36px;
  height: 36px;
}

.site-header.is-scrolled .menu-toggle span {
  left: 9px;
  width: 14px;
}

.site-header.is-scrolled .menu-toggle span:nth-child(1) {
  top: 11px;
}

.site-header.is-scrolled .menu-toggle span:nth-child(2) {
  top: 17px;
}

.site-header.is-scrolled .menu-toggle span:nth-child(3) {
  top: 23px;
}

.site-header.is-scrolled .menu-toggle.is-open span:nth-child(1),
.site-header.is-scrolled .menu-toggle.is-open span:nth-child(3) {
  top: 17px;
}

/* =========================
   Top Page
========================= */
.intro {
  max-width: 760px;
  margin: 0 auto 16px;
}

.intro h1 {
  font-size: 2.05rem;
  line-height: 1.42;
  margin: 0 0 8px;
  color: #3f3f3f;
}

.intro p {
  font-size: 1.08rem;
  margin: 0 0 4px;
  color: #555555;
  letter-spacing: 0.01em;
}

.salon-name {
  font-size: 1.2rem;
  margin-top: 4px;
  margin-bottom: 0;
  color: #555555;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.logo-gray {
  color: #9a9a9a;
  font-weight: 600;
}

.logo-green {
  color: #1fa51a;
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: 0.05em;
}

.image-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 6px 20px 0;
}

.bird-accent-image {
  margin-top: 10px;
  margin-bottom: 4px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.bird-accent-image img {
  width: 28px;
  opacity: 0.68;
  transform: translateY(2px);
  border-radius: 15px;
}

.bird-accent-image img:nth-child(2) {
  transform: translateY(-6px);
}

.gallery-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.gallery-row img {
  width: min(320px, 30vw);
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(60, 50, 40, 0.08);
}

/* =========================
   Home 4 cards
========================= */
.home-nav {
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 720px;
}

.home-card {
  display: block;
  padding: 22px 16px;
  border-radius: 18px;
  text-align: center;
  border: 1px solid rgba(120, 120, 120, 0.08);
  box-shadow: 0 8px 20px rgba(60, 50, 40, 0.05);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease;
}

.home-card:hover {
  transform: translateY(-4px);
  opacity: 1;
  box-shadow: 0 14px 28px rgba(60, 50, 40, 0.08);
}

.home-card h2 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: #444444;
}

.home-card p {
  margin: 0;
  font-size: 0.92rem;
  color: #6e6a66;
}

.home-card.menu-card {
  background: var(--home-card-menu);
}

.home-card.reserve-card {
  background: var(--home-card-reserve);
  border-color: rgba(115, 146, 122, 0.18);
  box-shadow: 0 10px 22px rgba(115, 146, 122, 0.12);
}

.home-card.reserve-card h2 {
  color: #5f7965;
}

.home-card.schedule-card {
  background: var(--home-card-schedule);
}

.home-card.blog-card {
  background: var(--home-card-blog);
}

/* =========================
   Card Sections
========================= */
.section-link {
  display: block;
  color: inherit;
}

.section-link section {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.section-link:hover section {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

#menu,
#news,
#blog,
#schedule,
#english,
#contact,
.card {
  padding: 26px;
  margin: 20px auto;
  border-radius: 16px;
  max-width: 800px;
  background-color: var(--card-bg);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
}

#menu {
  background-color: #fdfbf7;
  max-width: 600px;
}

#news {
  background-color: #fcfcf8;
}

#schedule {
  background-color: #f4faf6;
  max-width: 700px;
}

#blog {
  background-color: #faf8f5;
}

#english {
  max-width: 700px;
}

#contact.contact-card {
  background-color: #f1efea;
  max-width: 600px;
}

#menu h2,
#news h2,
#schedule h2,
#blog h2,
#contact h2,
#english h2 {
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: #3f3f3f;
  margin-top: 0;
  margin-bottom: 10px;
}

#menu p,
#news p,
#schedule p,
#blog p,
#contact p,
#english p {
  color: #5c5c5c;
  font-size: 1.05rem;
}

.contact-card p,
.location-info p {
  margin: 6px 0;
}

.contact-button-wrap {
  margin-top: 18px;
}

.button-link {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 999px;
  background-color: var(--accent-green);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 18px rgba(134, 169, 138, 0.24);
}

.button-link:hover {
  opacity: 1;
  background-color: var(--accent-green-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(80, 120, 90, 0.2);
}

/* =========================
   Contact / Location
========================= */
#location {
  margin-bottom: 20px;
}

.location-layout {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.location-info,
.location-map {
  width: 100%;
}

.sub-title {
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--heading);
  line-height: 1.5;
}

iframe {
  width: 100%;
  min-height: 400px;
  border: 0;
  border-radius: 16px;
}

/* =========================
   Menu Page
========================= */
.menu-page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 30px 20px 60px;
}

.menu-page h1 {
  font-size: 2.2rem;
  margin: 0 0 34px;
  color: #555555;
  letter-spacing: 0.05em;
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  text-align: left;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
}

.menu-item-image {
  flex: 1 1 58%;
}

.menu-item-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

.menu-item-content {
  flex: 1 1 42%;
}

.menu-item-content h2 {
  font-size: 1.8rem;
  margin: 0 0 12px;
  color: #444444;
}

.menu-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2f6b5f;
  margin-bottom: 16px;
}

.menu-description {
  font-size: 1rem;
  color: #666666;
  line-height: 1.9;
  margin: 0;
}

/* =========================
   Schedule Page
========================= */
.schedule-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px 60px;
}

.schedule-page h1 {
  font-size: 2.2rem;
  margin: 0 0 12px;
  color: #555555;
  letter-spacing: 0.05em;
}

.schedule-intro {
  margin-bottom: 20px;
  color: #666666;
  line-height: 1.8;
}

.schedule-note {
  max-width: 700px;
  margin: 0 auto 30px;
  padding: 18px 20px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.schedule-note p {
  margin: 8px 0;
}

.year-calendar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}

.month-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.month-card h2 {
  margin: 0 0 18px;
  font-size: 1.35rem;
  color: #4f4f4f;
  text-align: center;
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 10px;
}

.weekend-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.day-box {
  border-radius: 12px;
  padding: 12px;
  min-height: 88px;
  background: #fafafa;
  border: 1px solid #ececec;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.day-box.saturday {
  background-color: #f4f8ff;
}

.day-box.sunday {
  background-color: #fff6f6;
}

.date-label {
  font-weight: 700;
  margin-bottom: 10px;
  color: #444444;
  font-size: 0.98rem;
}

.place-tag {
  display: inline-block;
  width: fit-content;
  min-width: 72px;
  text-align: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.place-tag.osaka {
  background-color: #e8f7ec;
  color: #2f7a43;
}

.place-tag.tokyo {
  background-color: #eef2ff;
  color: #445ab8;
}

.place-tag.off {
  background-color: #f1f1f1;
  color: #777777;
}

/* =========================
   News Page
========================= */
.news-page {
  max-width: 860px;
  margin: 0 auto 30px;
  padding: 20px;
}

.news-page h1 {
  font-size: 2.2rem;
  margin: 0 0 10px;
  color: #555555;
  letter-spacing: 0.05em;
}

.news-page-intro {
  margin-bottom: 28px;
  color: #666666;
  line-height: 1.8;
}

.news-post {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.news-date {
  margin: 0 0 10px;
  font-size: 0.95rem;
  color: #888888;
  letter-spacing: 0.05em;
}

.news-title {
  margin: 0 0 18px;
  font-size: 1.5rem;
  color: #444444;
  line-height: 1.6;
}

.news-body p {
  margin: 0 0 14px;
  color: #555555;
  line-height: 1.9;
}

/* =========================
   Footer
========================= */
footer {
  text-align: center;
  padding: 26px 20px 34px;
  color: #777777;
  font-size: 0.95rem;
}

/* =========================
   Responsive
========================= */
@media screen and (max-width: 900px) {
  body {
    padding-top: 94px;
  }

  .header-inner {
    padding: 10px 18px;
    min-height: 72px;
  }

  .site-header.is-scrolled .header-inner {
    padding: 8px 18px;
    min-height: 64px;
  }

  .logo {
    width: 188px;
  }

  .site-header.is-scrolled .logo {
    width: 170px;
  }

  .lang-btn {
    width: 38px;
    height: 38px;
    font-size: 0.84rem;
  }

  .site-header.is-scrolled .lang-btn {
    width: 34px;
    height: 34px;
    font-size: 0.78rem;
  }

  .main-nav {
    gap: 8px;
  }

  .main-nav a {
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.78rem;
  }

  .site-header.is-scrolled .main-nav a {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.74rem;
  }

  .location-layout {
    flex-direction: column;
  }

  .gallery-row img {
    width: min(360px, 44vw);
  }
}

@media screen and (max-width: 768px) {
  body {
    padding-top: 78px;
  }

  main {
    padding: 16px 14px 44px;
  }

  .header-inner {
    display: block;
    padding: 8px 14px;
    min-height: auto;
  }

  .site-header.is-scrolled .header-inner {
    padding: 6px 14px;
    min-height: auto;
  }

  .header-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    min-height: 40px;
    width: 100%;
    padding-right: 44px;
  }

  .site-logo {
    display: flex;
    align-items: center;
  }

  .site-logo a {
    display: inline-flex;
    align-items: center;
  }

  .logo {
    width: 140px;
    border-radius: 10px;
  }

  .site-header.is-scrolled .logo {
    width: 128px;
  }

  .lang-switch {
    gap: 6px;
    margin-left: 0;
  }

  .lang-btn {
    width: 32px;
    height: 32px;
    font-size: 0.72rem;
    border-width: 2px;
  }

  .site-header.is-scrolled .lang-btn {
    width: 30px;
    height: 30px;
    font-size: 0.68rem;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    z-index: 10030;
  }

  .menu-toggle:hover {
    background: transparent;
  }

  .menu-toggle span {
    left: 8px;
    width: 16px;
    height: 2px;
    background: #ffffff;
  }

  .menu-toggle span:nth-child(1) {
    top: 10px;
  }

  .menu-toggle span:nth-child(2) {
    top: 15px;
  }

  .menu-toggle span:nth-child(3) {
    top: 20px;
  }

  .menu-toggle.is-open span:nth-child(1) {
    top: 15px;
    transform: rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    top: 15px;
    transform: rotate(-45deg);
  }

  .site-header.is-scrolled .menu-toggle {
    width: 30px;
    height: 30px;
    right: 14px;
  }

  .site-header.is-scrolled .menu-toggle span {
    left: 8px;
    width: 14px;
  }

  .site-header.is-scrolled .menu-toggle span:nth-child(1) {
    top: 9px;
  }

  .site-header.is-scrolled .menu-toggle span:nth-child(2) {
    top: 14px;
  }

  .site-header.is-scrolled .menu-toggle span:nth-child(3) {
    top: 19px;
  }

  .site-header.is-scrolled .menu-toggle.is-open span:nth-child(1),
  .site-header.is-scrolled .menu-toggle.is-open span:nth-child(3) {
    top: 14px;
  }

  .header-nav {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 14px;
    right: 14px;
    margin: 0;
    background: var(--header-bg-scrolled);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 14px;
    box-shadow: 0 16px 28px rgba(60, 50, 40, 0.1);
    z-index: 10010;
  }

  .header-nav.is-open {
    display: block;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    justify-content: stretch;
  }

  .main-nav a {
    width: 100%;
    min-height: 60px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  .main-nav a:hover {
    background: rgba(255, 255, 255, 0.16);
    box-shadow: none;
  }

  .main-nav a.is-current {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.24);
  }

  .home-nav {
    max-width: 100%;
    gap: 12px;
    margin-top: 20px;
  }

  .home-card {
    padding: 18px 12px;
    border-radius: 16px;
  }

  .home-card h2 {
    font-size: 1rem;
  }

  .home-card p {
    font-size: 0.85rem;
  }

  #menu,
  #news,
  #blog,
  #schedule,
  #english,
  #contact,
  .card {
    max-width: 92%;
    padding: 18px;
    margin: 16px auto;
  }

  #menu h2,
  #news h2,
  #schedule h2,
  #blog h2,
  #contact h2,
  #english h2 {
    font-size: 1.55rem;
  }

  #menu p,
  #news p,
  #schedule p,
  #blog p,
  #contact p,
  #english p {
    font-size: 0.98rem;
  }

  iframe {
    min-height: 280px;
  }

  .intro {
    margin-bottom: 12px;
  }

  .intro h1 {
    font-size: 1.8rem;
    line-height: 1.45;
    margin-bottom: 8px;
  }

  .intro p,
  .salon-name {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .salon-name {
    margin-top: 2px;
    font-size: 1.08rem;
  }

  .image-gallery {
    padding: 2px 10px 0;
    gap: 6px;
  }

  .gallery-row {
    gap: 10px;
  }

  .gallery-row img {
    width: 90%;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(60, 50, 40, 0.07);
  }

  .bird-accent-image {
    margin-top: 6px;
    margin-bottom: 0;
    gap: 12px;
  }

  .menu-page {
    padding: 24px 18px 40px;
  }

  .menu-page h1 {
    font-size: 1.8rem;
    margin-bottom: 28px;
  }

  .menu-list {
    gap: 24px;
  }

  .menu-item {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 18px;
  }

  .menu-item-content h2 {
    font-size: 1.4rem;
  }

  .menu-price {
    font-size: 1.2rem;
  }

  .menu-description {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .schedule-page {
    padding: 24px 14px 40px;
  }

  .schedule-page h1 {
    font-size: 1.8rem;
  }

  .year-calendar {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .month-card {
    padding: 18px;
  }

  .weekend-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .day-box {
    min-height: auto;
  }

  .place-tag {
    min-width: 64px;
    font-size: 0.9rem;
  }

  .news-page {
    padding: 14px;
    margin-bottom: 20px;
  }

  .news-page h1 {
    font-size: 1.8rem;
  }

  .news-post {
    padding: 20px 16px;
  }

  .news-title {
    font-size: 1.25rem;
  }

  .news-body p {
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 420px) {
  body {
    padding-top: 74px;
  }

  .header-inner {
    padding: 8px 12px;
  }

  .site-header.is-scrolled .header-inner {
    padding: 6px 12px;
  }

  .header-top {
    gap: 7px;
    min-height: 36px;
    padding-right: 40px;
  }

  .logo {
    width: 132px;
  }

  .site-header.is-scrolled .logo {
    width: 120px;
  }

  .lang-btn {
    width: 30px;
    height: 30px;
    font-size: 0.68rem;
  }

  .site-header.is-scrolled .lang-btn {
    width: 28px;
    height: 28px;
    font-size: 0.64rem;
  }

  .menu-toggle {
    width: 30px;
    height: 30px;
    right: 12px;
  }

  .menu-toggle span {
    left: 7px;
    width: 14px;
  }

  .menu-toggle span:nth-child(1) {
    top: 9px;
  }

  .menu-toggle span:nth-child(2) {
    top: 14px;
  }

  .menu-toggle span:nth-child(3) {
    top: 19px;
  }

  .menu-toggle.is-open span:nth-child(1),
  .menu-toggle.is-open span:nth-child(3) {
    top: 14px;
  }

  .header-nav {
    top: calc(100% + 6px);
    left: 12px;
    right: 12px;
    padding: 12px;
    border-radius: 22px;
  }

  .main-nav {
    gap: 10px;
  }

  .main-nav a {
    min-height: 54px;
    font-size: 0.88rem;
  }

  .home-nav {
    gap: 10px;
  }

  .home-card {
    padding: 16px 10px;
  }

  .home-card h2 {
    font-size: 0.95rem;
  }

  .home-card p {
    font-size: 0.8rem;
  }

  .intro {
    margin-bottom: 10px;
  }

  .intro h1 {
    font-size: 1.65rem;
    line-height: 1.4;
    margin-bottom: 6px;
  }

  .intro p,
  .salon-name {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .salon-name {
    font-size: 1rem;
  }

  .bird-accent-image {
    margin-top: 4px;
    gap: 10px;
  }

  .bird-accent-image img {
    width: 24px;
  }

  #menu,
  #news,
  #blog,
  #schedule,
  #english,
  #contact,
  .card {
    max-width: 94%;
    padding: 16px;
  }
}