/* =========================================
   Common / Base Settings
   変数・リセット・共通余白・見出し・ボタン
========================================= */
:root {
    --color-main:#536778;
    --color-main-dark:#405160;
    --color-accent:#b9ab84;
    --color-accent02:#c09f46;
    --color-text:#222;
    --color-muted:#6d747a;
    --color-bg:#f1f3f5;
    --color-border:#d9dee3;
    --inner:1120px;
    --inner-narrow:880px;
}
* { box-sizing:border-box; }
html,
body {
  overflow-x: hidden;
}
html { scroll-behavior:smooth; }
body { margin:0; font-family:'Noto Sans JP', sans-serif;  line-height:1.8; letter-spacing:.04em; }
a { color:inherit; text-decoration:none; }
img { max-width:100%; display:block; }
.color-brand {
  color: var(--color-main-dark);
}
.section { padding:110px 24px; }
.section-gray { background:var(--color-bg); }
.inner { width:min(100%, var(--inner)); margin:0 auto; }
.inner-narrow { width:min(100%, var(--inner-narrow)); margin:0 auto; }
.sec-head { text-align:center; margin-bottom:58px; }
.sec-en { margin:0 0 10px; font-family:'Jost', sans-serif; font-size:12px; text-transform:uppercase; letter-spacing:.22em; color:var(--color-main); font-weight:500; }
.sec-ja { margin:0; font-size:31px; line-height:1.55; letter-spacing:.08em; font-weight:700; }
.sec-lead { margin:18px 0 0; font-size:16px; color:var(--color-muted); line-height:2; font-weight:500;}
.btn { display:inline-flex; align-items:center; justify-content:center; gap:18px; min-width:280px; min-height:54px; padding:14px 30px; background:var(--color-main); color:#fff; font-size:13px; font-weight:600; letter-spacing:.12em; transition:.25s; }
.btn:hover { background:var(--color-main-dark); transform:translateY(-1px); }
.btn.white { background:#fff; color:var(--color-main); }
.btn.outline { background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.7); color:#fff; backdrop-filter:blur(4px); }
.btn.outline.btn-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: auto;
  max-width: 100%;
  min-height: 67px;
  padding: 0 17px;
  background: #536778;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1.4;
  text-decoration: none;
  backdrop-filter: none;
  gap: 23px;
}

.btn-reserve__text {
  display: block;
}

.btn-reserve__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 50px;
  height: 42px;
  padding-left: 28px;
}

.btn-reserve__icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, .55);
  transform: translateY(-50%);
}

.btn-reserve__icon img {
  width: 23px;
  height: auto;
  display: block;
  transition: transform .3s ease;
}

.btn.outline.btn-reserve:hover {
  background: #405160;
  color: #fff;
  opacity: 1;
  transform: translateY(-1px);
}

.btn.outline.btn-reserve:hover .btn-reserve__icon img {
  transform: translateX(4px);
}
/* 表示切り替え */
.visible-sp {
    display: none;
}

.visible-pc {
    display: block;
}

  .nav-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-left: -10px;
  }

  .nav-instagram img {
    display: block;
    width: 28px;
    height: 28px;
    object-fit: contain;
  }

@media screen and (max-width: 767px) {
    .visible-sp {
        display: block;
    }

    .visible-pc {
        display: none;
    }
}

/* =========================================
   Common / Header
========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid #edf0f2;
  box-shadow: 0 2px 14px rgba(0, 0, 0, .035);
}

.header-inner {
  width: min(100%, 1280px);
  height: 100%;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: 'Jost', sans-serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--color-main);
  line-height: 1;
  text-decoration: none;
}

.logo span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 1.4;
  color: var(--color-main);
  margin: auto;
}

.logo:hover {
  color: var(--color-main-dark);
}

.logo:hover span {
  color: var(--color-main-dark);
}

.logo img {
    width: 130px;
    height: auto;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
}

.nav a {
  color: var(--color-text);
  transition: .25s;
  font-size: 15px;
}

.nav a:hover {
  color: var(--color-main);
}

.nav-cta {
  padding: 12px 20px;
  background: var(--color-main);
  color: #fff !important;
  font-size: 12px;
  letter-spacing: .1em;
  text-align: center;
}

.nav-cta:hover {
  background: var(--color-main-dark);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-main);
}


/* =========================================
   Common / Footer CTA
========================================= */
.footer-cta {
  background: var(--color-main);
  color: #fff;
  padding: 46px 24px;
}

.footer-cta-inner {
  width: min(100%, var(--inner));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.footer-cta h2 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: .08em;
}

.footer-cta p {
  margin: 0;
  font-size: 12px;
  opacity: .82;
}

.footer-cta .btn.white {
  background: #fff;
  color: var(--color-main);
  border: 1px solid #fff;
}

.footer-cta .btn.white:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-1px);
}


/* =========================================
   Common / Footer
   店舗住所 + 画像なしお問い合わせボタン版
========================================= */
.footer {
  background: #060606;
  color: #fff;
  padding: 64px 24px 30px;
}

.footer-inner {
  width: min(100%, var(--inner));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.6fr 1.25fr;
  gap: 38px;
  align-items: start;
}

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

.footer-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: 'Jost', sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: .16em;
  color: white;
  line-height: 1;
  text-decoration: none;
}

.footer-logo img {
  width: 100px;
}

.footer-logo span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 1.4;
  color: white;
  margin: auto;
}

.footer-logo:hover {
  color: var(--color-main-dark);
}

.footer-logo:hover span {
  color: var(--color-main-dark);
}

.footer-logo a {
  color: #fff;
  text-decoration: none;
}

.footer-brand p,
.footer p,
.footer li {
  margin: 0;
  font-size: 13px;
  color: #aeb3b7;
  line-height: 2;
  letter-spacing: .06em;
}

.footer h4 {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #fff;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

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

.footer a img {
  width: 125px;
}

.footer a:hover {
  color: #fff;
}


/* =========================================
   Common / Footer Menu
========================================= */
.footer-nav {
  display: block;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-menu li,
.footer-menu a {
  font-size: 14px;
  color: #aeb3b7;
  letter-spacing: .08em;
  line-height: 1.8;
}

.footer-menu a:hover {
  color: #fff;
}


/* =========================================
   Common / Footer Shop Address
========================================= */
.footer-shop ul {
  gap: 16px;
}

.footer-shop li {
  display: grid;
  gap: 4px;
}

.footer-shop strong {
  display: block;
  font-size: 15px;
  color: #fff;
  letter-spacing: .08em;
  line-height: 1.6;
  font-weight: 500;
}

.footer-shop span {
  display: block;
  font-size: 13px;
  color: #aeb3b7;
  line-height: 1.8;
  letter-spacing: .04em;
}


/* =========================================
   Common / Footer Contact Buttons
   画像なし版
========================================= */
.footer-contact-buttons {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.footer-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1.4;
  text-align: center;
  transition: .25s;
}

.footer-contact-btn-web {
 background: transparent;
  color: #111;
   border: 1px solid rgba(255, 255, 255, .32);
}

.footer-contact-btn-line {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .32);
}

.footer-contact-btn:hover {
  transform: translateY(-1px);
  opacity: .88;
}

.footer-contact-btn-web:hover {
  background: transparent;
  color: #fff;
}

.footer-contact-btn-line:hover {
  border-color: rgba(255, 255, 255, .7);
}

/* 旧 footer-btn / line_btn が残っていてもフッター内では表示しない */
.footer .footer-btn,
.footer .footer-line-btn {
  display: none;
}

.footer-note {
  margin: 25px 0 0;
  padding-top: 20px;
  font-size: 10px !important;
  color: #888 !important;
  line-height: 1.8 !important;
  display: flex;
  justify-content: center;
}

.copy {
  width: min(100%, var(--inner));
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid #222;
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  font-size: 10px;
  color: #888;
  letter-spacing: .1em;
}

.copy span {
  color: #888;
}

/* =========================================
   Lower KV Common
========================================= */

.lower-kv {
  background-size: cover;
  background-position: center;
  width: 100%;
  max-width: 100%;
  height: 320px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-top: 76px;
  margin-bottom: 124px;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.lower-kv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 1;
  pointer-events: none;
}

.lower-kv-ttl {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #fff;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 54px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .08em;
}

.lower-sub-ttl {
  display: block;
  margin-top: 14px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .18em;
}

.privacy-kv {
  background-image: url(../img/contact_kv.jpg);
}


/* =========================================
   Common / Responsive
========================================= */
@media (max-width: 1200px) and (min-width: 961px) {
  .header-inner {
    padding-right: 12px;
    padding-left: 12px;
  }

  .nav {
    gap: 16px;
    font-size: 12px;
  }

  .nav a {
    white-space: nowrap;
    font-size: 13px;
  }
}
@media (max-width: 960px) {
  .nav {
    display: flex;
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    padding: 24px 20px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav a {
    width: 100%;
    padding: 8px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle span {
    transition: .25s;
  }

  .nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

  .nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 42px 34px;
  }

  .footer-shop {
    grid-column: span 1;
  }
  .nav-instagram {
    justify-content: flex-start;
    margin-left: 10px;
  }
   .nav {
    gap: 11px;
  }

  .nav a:nth-of-type(8) {
    margin-top: 9px;
    margin-bottom: 20px;
    padding: 15px 0;
  }

  .nav a:nth-of-type(9) {
    margin-left: 0;
  }
}

@media (max-width:768px) {
  .lower-kv {
    height: 280px;
    margin-top: 70px;
    margin-bottom: 72px;
  }

  .lower-kv-ttl {
    font-size: 42px;
  }

  .lower-sub-ttl {
    font-size: 14px;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 78px 18px;
  }

  .sec-ja {
    font-size: 24px;
  }

  .btn {
    width: 100%;
    min-width: 0;
    max-width: 356px;
  }

  .header {
    height: 55px;
  }

  .header-inner {
    padding: 0 18px;
  }

  .nav {
    top: 55px;
  }

  .logo {
    font-size: 24px;
  }

  .logo img {
    width: 100px;
  }

  .logo span {
    font-size: 9px;
  }

  .footer-cta {
    padding: 38px 18px;
  }

  .footer-cta h2 {
    font-size: 16px;
    line-height: 1.8;
  }

  .footer-cta p {
    font-size: 11px;
  }

  .footer {
    padding: 54px 18px 28px;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-logo {
    font-size: 28px;
  }

  .footer-contact-btn {
    width: 100%;
  }

  .copy {
    margin: 40px auto auto;
    line-height: 2;
    justify-content: center;
  }

  .copy span {
    display: block;
  }
  .btn.outline.btn-reserve {
    width: 100%;
    min-height: 60px;
    padding: 0 14px;
    font-size: 13px;
    letter-spacing: .09em;
    gap: 14px;
    max-width: 356px;
  }

  .customize .btn.outline.btn-reserve {
    padding: 0 12px;
  }

  .btn-reserve__icon {
    min-width: 44px;
    height: 34px;
    padding-left: 18px;
  }

  .btn-reserve__icon::before {
    height: 34px;
  }

  .btn-reserve__icon img {
    width: 20px;
  }

    .lower-kv {
    height: 240px;
    margin-top: 55px;
    margin-bottom: 54px;
  }

  .lower-kv-ttl {
    font-size: 34px;
  }

  .lower-sub-ttl {
    margin-top: 10px;
    font-size: 13px;
  }


}