/* 共通 */
.sp-only {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;

  max-width: 1500px; /* ← ここで広がりを制限 */
  margin: 0 auto; /* ← 中央寄せ */
}

/* ロゴ */
.header-logo img {
  width: 150px;
  height: auto;
  display: block;
}

/* タイトル */
.header-title {
  line-height: 1.15;
}

.header-title__line2 {
  font-size: 15px;
  font-weight: 600;
  opacity: 0.85;
}

.header-title__line1 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #3b2a1a; /* 少し茶色寄り */
  text-shadow:
    0 1px 0 rgba(255,255,255,.9),   /* 上のハイライト */
    0 2px 4px rgba(0,0,0,.15);      /* うっすら影 */
}


/* PCナビ */
.pc-nav {
  margin-left: auto;
}
.pc-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
}
/* .pc-nav__list a{
  width: 88px;
  height: 62px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 4px;
  text-decoration:none;
  color:#222;
  background:#eef2f5;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0,0,0,.12);
  font-size: 12px;
}
.pc-nav__list a p{ margin:0; }
.pc-nav__list a img{ width:22px; height:22px; display:block; } */

.pc-nav__list a {
  width: 88px;
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;

  text-decoration: none;
  color: #222;
  background: #eef2f5;
  border-radius: 16px;

  /* 最初から凹み */
  box-shadow:
    inset 6px 6px 12px rgba(0, 0, 0, 0.14),
    inset -6px -6px 12px rgba(255, 255, 255, 0.9);

  transition:
    background-color 0.12s ease,
    box-shadow 0.12s ease,
    transform 0.12s ease;
}

/* ホバー：しっかりグレー */
.pc-nav__list a:hover {
  background: #d6dbe1; /* ← ここを強め */
  color: #000;
}

/* クリック（押下）時：さらに濃く */
.pc-nav__list a:active {
  background: #c6ccd3; /* ← もっと濃く */
  box-shadow:
    inset 8px 8px 14px rgba(0, 0, 0, 0.2),
    inset -8px -8px 14px rgba(255, 255, 255, 0.8);
}

/* フォーカス */
.pc-nav__list a:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.3);
  outline-offset: 3px;
}

/* .pc-nav__list a:hover{
  background: #e6eaee;  
}

.pc-nav__list a:active{
  background: #dfe3e8;  
  box-shadow:
    inset 8px 8px 14px rgba(0,0,0,.18),
    inset -8px -8px 14px rgba(255,255,255,.85);
}

.pc-nav__list a:focus-visible{
  outline: 2px solid rgba(0,0,0,.25);
  outline-offset: 3px;
} */

.pc-nav__list a img {
  width: 22px;
  height: 22px;
  display: block;
}
.pc-nav__list a p {
  margin: 0;
  font-size: 12px;
}

.pc-nav__insta a {
  width: 56px;
  height: 56px;
  background: transparent;
  box-shadow: none;
}
.pc-nav__insta a img {
  width: 44px;
  height: 44px;
}

/* 送信ボタン */
.contact-button{
  margin:5px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  width: 154px;
  height: 38px;
  text-align: center;
  background: #502411;
  border-radius:5px;
  color: #fff;
  border: none;
  font-size: 16px;
}


/* ===== スマホ/タブレット ===== */
@media (max-width: 1023px) {
  .sp-only {
    display: block;
  }
  .pc-nav {
    display: none;
  }

  .header-logo img {
    width: 120px;
  }
  .header-title__line1 {
    font-size: 14px;
  }
  .header-title__line2 {
    font-size: 13px;
  }

  /* 開くボタン（右上） */
  .header-open-button {
    margin-left: auto;
    width: 46px;
    height: 46px;
    background-color: #ddd;
    border-radius: 23px;
    background-image: url(../images/menu-open.png);
    background-size: 28px 28px;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }

  /* 背景 */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1900;
    background: rgba(0, 0, 0, 0.35);
  }

  /* 右ドロワー */
  .main-navigation {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 86vw;
    height: 100%;
    z-index: 2000;
    background: #fff;
    box-shadow: -10px 0 26px rgba(0, 0, 0, 0.18);
    padding: 16px 12px;
    overflow: auto;
  }

  /* 閉じるボタン */
  .header-close-button {
    width: 40px;
    height: 40px;
    background-color: #ddd;
    border-radius: 20px;
    position: absolute;
    top: 14px;
    right: 14px;
    background-image: url(../images/menu-close.png);
    background-size: 18px 18px;
    background-repeat: no-repeat;
    background-position: center;
  }

  /* 縦リスト（テキストのみ） */
  .sp-nav__list {
    list-style: none;
    padding: 60px 0 0;
    margin: 0;
  }
  .sp-nav__list li {
    border-bottom: 1px solid #502411;
  }
  .sp-nav__list a {
    display: block;
    padding: 14px 10px;
    text-decoration: none;
    color: #502411;
    font-size: 16px;
  }
}
