/*
Theme Name: kimononomegumi
Theme URI: https://example.com/
Author: Local.Video.Shop.
Description: キモノのめぐみ用の1ページ型WordPressテーマ。画像と文章はプレースホルダーで、後から差し替え可能。
Version: 1.1.1
License: GPL-2.0-or-later
Text Domain: kimononomegumi
*/

:root {
  --bg: #f7f3ea;
  --paper: #fffdf8;
  --ink: #20312a;
  --muted: #69766e;
  --line: rgba(32, 49, 42, .14);
  --green: #6f8b77;
  --green-dark: #415d4a;
  --accent: #d7cbb5;
  --shadow: 0 22px 60px rgba(34, 48, 40, .10);
  --radius: 26px;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.9;
  letter-spacing: .04em;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
.site-wrap { overflow: hidden; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  padding: 18px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 250, 244, .10);
  border-bottom-color: rgba(32, 49, 42, .08);
  box-shadow: 0 8px 28px rgba(28, 35, 32, .08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.header-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  width: min(250px, 24vw);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
}
.site-header.is-scrolled .logo {
  opacity: .95;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header:not(.is-scrolled) .logo {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.logo-img {
  display: block;
  width: 100%;
  height: auto;
}
.logo-img-mobile { display: none; }
.header-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 11px 0;
  border-radius: 999px;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  font-family: var(--serif);
  font-size: 14px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.22);
  transition: color .3s ease, text-shadow .3s ease;
}
.site-header.is-scrolled .header-nav {
  background: transparent;
  border-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: var(--green-dark);
  text-shadow: none;
}
.header-nav a { position: relative; }
.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transition: .25s;
}
.header-nav a:hover::after { right: 0; }
.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: currentColor;
}
.instagram-link svg { width: 20px; height: 20px; display: block; fill: currentColor; }
.header-nav .instagram-link::after { display: none; }
.drawer-instagram {
  width: auto;
  height: auto;
  gap: 8px;
  margin-top: 6px;
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: .06em;
}
.drawer-instagram svg { width: 22px; height: 22px; }

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.menu-button span { width: 22px; height: 1px; background: currentColor; display: block; }
.site-header.is-scrolled .menu-button {
  color: var(--green-dark);
}

.drawer {
  position: fixed;
  inset: 0;
  background: rgba(23, 31, 29, .88);
  backdrop-filter: blur(12px);
  color: #fff;
  z-index: 100;
  transform: translateY(-100%);
  transition: transform .35s ease;
  padding: 22px 28px 34px;
}
.drawer.is-open { transform: translateY(0); }
.drawer-close {
  margin-left: auto;
  display: block;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}
.drawer-nav {
  min-height: 72vh;
  display: grid;
  place-content: center;
  gap: 22px;
  text-align: center;
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: .12em;
}
.drawer-foot { text-align: center; color: rgba(255,255,255,.76); font-size: 14px; }

.section { padding: clamp(70px, 9vw, 130px) 0; }
.section-head { margin-bottom: 42px; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .12em;
  margin: 0 0 4px;
}
.section-sub { color: var(--green); font-family: Georgia, serif; letter-spacing: .18em; }

.body-copy { color: var(--muted); font-size: 16px; }
.signature { margin-top: 26px; font-family: var(--serif); color: var(--ink); font-size: 18px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 13px 24px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(255,255,255,.35);
  transition: .25s;
}
.btn:hover { background: var(--green-dark); color: #fff; }

.site-footer {
  padding: 48px 0 34px;
  background: #e8e2d5;
  color: var(--muted);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}
.footer-name {
  font-family: var(--serif);
  color: var(--green-dark);
  font-size: 24px;
  margin-bottom: 10px;
}
.footer-address {
  font-size: 14px;
}
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}
.footer-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  color: var(--green-dark) !important;
  line-height: 1;
  overflow: visible;
  box-shadow: none !important;
  filter: none !important;
  transition: opacity .25s ease, transform .25s ease;
}
.footer-social:hover {
  opacity: .72;
  transform: translateY(-2px);
  border: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
}
.footer-social-line,
.footer-social-instagram {
  border: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  color: var(--green-dark) !important;
  box-shadow: none !important;
  filter: none !important;
}
.footer-social-svg {
  display: block;
  width: 42px;
  height: 42px;
  fill: none;
}
.footer-social-svg-line {
  width: 46px;
  height: 46px;
}
.footer-social-svg-instagram {
  width: 36px;
  height: 36px;
}
.footer-social-stroke {
  vector-effect: non-scaling-stroke;
}
.copyright {
  font-size: 12px;
}

@media (max-width: 900px) {
  .header-nav { display: none; }
  .menu-button { display: inline-flex; }
  .logo {
    width: auto;
    max-width: 180px;
  }
  .logo-img-desktop { display: none; }
  .logo-img-mobile {
    display: block;
    width: auto;
    height: 42px;
    max-width: 180px;
    object-fit: contain;
  }
  .footer-inner {
    display: block;
    text-align: center;
  }
  .footer-info {
    text-align: center;
  }
  .footer-right {
    align-items: center;
    margin-top: 24px;
    text-align: center;
  }
  .footer-socials {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1120px); }
  .site-header { padding: 14px 0; }
  .header-inner { width: min(100% - 28px, 1180px); }
  .menu-button { width: 40px; height: 40px; }
  .menu-button span { width: 19px; }
  .footer-name { font-size: 20px; }
  .footer-address { font-size: 12px; }
  .site-footer { text-align: center; }
  .footer-inner { text-align: center; }
  .footer-info { text-align: center; }
  .footer-right {
    align-items: center;
    text-align: center;
  }
  .footer-socials {
    justify-content: center;
  }
  .footer-social {
    width: 44px;
    height: 44px;
    border: 0 !important;
    background: transparent !important;
  }
  .footer-social-svg { width: 38px; height: 38px; }
  .footer-social-svg-line { width: 42px; height: 42px; }
  .footer-social-svg-instagram { width: 34px; height: 34px; }
}

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

/* SPのみ改行を有効にする */
.sp-br {
  display: none;
}

@media (max-width: 900px) {
  .sp-br {
    display: inline;
  }
}

/* PCのみ改行を有効にする */
.pc-br {
  display: inline;
}

@media (max-width: 900px) {
  .pc-br {
    display: none;
  }
}