/* ==========================================================================
   Header & Navigation (PC)
========================================================================== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* 左右のパディングを画面幅に合わせて可変（18px〜50px）に調整 */
  padding: 20px clamp(18px, 4vw, 50px);
}

.logo {
  /* ロゴの高さをノートパソコンに合わせて可変（60px〜100px）に調整 */
  height: clamp(60px, 7vw, 100px);
  width: auto;
  display: block;
}

.header_right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.sns {
  display: flex;
  /* SNS間の余白を調整 */
  gap: clamp(15px, 2.5vw, 35px);
  margin-bottom: 20px;
}

.sns img {
  width: auto;
  height: 40px;
  display: block;
}

.headernav {
  display: flex;
  /* ナビゲーション間の余白を調整（20px〜60px） */
  gap: clamp(20px, 3.5vw, 60px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.headernav a {
  text-decoration: none;
  color: #A58A57;
  text-align: center;
}

.nav_label {
  position: relative;
  display: block;
  text-align: center;
}

.nav_label::before {
  content: attr(data-en);
  display: block;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #A58A57;
  margin-bottom: 4px;
}

.headernav li a {
  font-size: 16px;
  font-weight: 700;
  /* 文字の折り返しを防ぐ */
  white-space: nowrap;
}

/* ドロップダウン矢印 */
.slidedown > .nav_label::after {
  content: "▾";
  display: block;
  font-size: 16px;
  color: #A58A57;
  margin-top: 2px;
  transition: transform .3s ease, color .3s ease;
}

.slidedown.open > .nav_label::after {
  transform: rotate(180deg);
  color: #C7A04E;
}

.slidedown {
  position: relative;
}

/* ドロップダウンメニュー本体 */
.dropdown__lists {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 20px 22px;
  min-width: 240px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  list-style: none;
  margin: 0;
  z-index: 1000;
}

.slidedown.open > .dropdown__lists {
  display: block;
}

.dropdown__list {
  padding: 20px 0;
  border-bottom: 1px solid #E3CFA4;
  position: relative;
}

.dropdown__list:last-child {
  border-bottom: none;
}

.dropdown__list a {
  display: block;
  text-decoration: none;
  color: #A58A57;
  font-size: 14px;
  padding-right: 18px;
  position: relative;
  text-align: left;
}

.dropdown__list a::after {
  content: "›";
  font-size: 16px;
  color: #A58A57;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.nav_label:hover, .dropdown__list:hover a {
  opacity: 0.6;
  transition: opacity .2s ease;
}

/* ==========================================================================
   SP Hamburger & Menu (スマホ用メニュー)
========================================================================== */
.hamburger {
  display: none;
  width: 52px;
  height: 52px;
  border: none;
  background: #A58A57;
  cursor: pointer;
  position: relative;
  z-index: 100;
}

.hamburger span {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 2px;
  background: #fff;
  transform: translateX(-50%);
  transition: transform .25s ease, opacity .25s ease;
}

.hamburger span:nth-child(1) { top: 16px; }
.hamburger span:nth-child(2) { top: 25px; }
.hamburger span:nth-child(3) { top: 34px; }

.spMenu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.4s, opacity 0.4s;
}

.spMenu.is-open {
  visibility: visible;
  opacity: 1;
}

.spMenu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.15);
}

.spMenu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #F3EEE3;
  padding: 18px 22px 26px;
  overflow-y: auto;
  box-sizing: border-box;
  
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.spMenu.is-open .spMenu__panel {
  transform: translateX(0);
}

.spMenu__top { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  gap: 16px; 
}

.spMenu__brand img { 
  height: 100px; 
  width: auto; 
  display: block; 
}

.spMenu__close { 
  width: 44px; 
  height: 44px; 
  border: none; 
  background: #A58A57; 
  color: #fff; 
  font-size: 26px; 
  line-height: 1; 
  cursor: pointer; 
}

.spMenu__nav { margin-top: 22px; color: #6B5427; }

.spMenu__group { 
  padding: 16px 0; 
  border-top: none; 
}

.spMenu__parent { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  text-decoration: none; 
  color: #6B5427; 
  font-size: 18px; 
  font-weight: 700; 
  letter-spacing: .08em; 
  padding: 6px 0 12px; 
  border-bottom: 2px solid rgba(165,138,87,.35);
  margin-bottom: 16px; 
}

.spMenu__parent span { font-size: 22px; opacity: .9; }
.spMenu__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.spMenu__list a { text-decoration: none; color: #6B5427; font-size: 14px; letter-spacing: .08em; }

.spMenu__single { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  text-decoration: none; 
  color: #6B5427; 
  font-size: 18px; 
  font-weight: 700; 
  letter-spacing: .08em; 
  padding: 18px 0; 
  border-top: none; 
  border-bottom: 1px solid rgba(165,138,87,.35); 
}

.spMenu__single span { font-size: 22px; opacity: .9; }

.spMenu__info { 
  margin-top: 26px; 
  text-align: center; 
  color: #6B5427; 
}

.spMenu__info .site-footer__sns {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.spMenu__tel { margin: 0 0 8px; font-weight: 700; letter-spacing: .06em; }
.spMenu__addr { margin: 0 0 18px; font-size: 13px; letter-spacing: .06em; opacity: .9; }

.spMenu__copy { margin: 0; font-size: 11px; opacity: .8; }

/* ==========================================================================
   SP切替レスポンシブ
========================================================================== */
@media (max-width: 900px){
  .header { 
    padding: 16px 18px;
    flex-direction: row; 
    justify-content: space-between; 
    align-items: center;
  }
  .header_right { display: none; }
  .hamburger { display: inline-block; }
  
  .spMenu.is-open { display: block; }
  .spMenu.is-open .spMenu__panel { transform: translateX(0); }
}

/* ==========================================================================
   Footer (フッター & To Top)
========================================================================== */
.site-footer {
  background: url("../images/footer_bg.png") center / cover no-repeat;
  padding: 100px clamp(20px, 6vw, 90px) 26px;
  color: #685126;
}

.site-footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(28px, 4vw, 70px);
  align-items: start;
}

.site-footer__left { display: grid; grid-template-columns: 360px 1fr; gap: 28px; align-items: start; }
.site-footer__map iframe { width: 100%; height: 260px; border: 0; display: block; }
.site-footer__logo { width: 300px; height: auto; display: block; }
.site-footer__tel, .site-footer__addr { margin: 10px 0 0; font-size: 14px; line-height: 1; letter-spacing: .06em; }
.site-footer__tel a { color: inherit; text-decoration: none; }
.site-footer__tel a:hover { text-decoration: underline; }
.site-footer__sns { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.site-footer__snsBtn { display: inline-flex; align-items: center; gap: 15px; padding: 14px 14px; border-radius: 12px; text-decoration: none; letter-spacing: .06em; font-size: 16px; font-weight: 400; background: rgba(255,255,255,.75); transition: all .3s ease; }
.site-footer__snsBtn img { width: 35px; height: 35px; display: block; }
.site-footer__snsBtn.is-line { outline: 2px solid #4CC764; }
.site-footer__snsBtn.is-ig { position: relative; border: 2px solid transparent; background: linear-gradient(#fff, #fff) padding-box, linear-gradient( 45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) border-box; }

.site-footer__nav { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 34px; }
.site-footer__colTitle { margin: 0; font-weight: 600; letter-spacing: .12em; font-size: 16px; color: #685126; }
.site-footer__colTitle a { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: inherit; text-decoration: none; }
.site-footer__colTitle a::after { content: "›"; font-size: 22px; transform: translateY(-1px); opacity: .9; }
.site-footer__col:nth-child(-n+2) .site-footer__colTitle { padding-bottom: 16px; margin-bottom: 18px; border-bottom: 1px solid rgba(111,83,39,.55); }
.site-footer__colTitle--mt { margin-top: 16px; }
.site-footer__list { margin: 0; padding: 0; list-style: disc; padding-left: 18px; display: grid; gap: 18px; }
.site-footer__list a { color: #685126; text-decoration: none; font-size: 14px; letter-spacing: .08em; font-weight: 600; }
.site-footer__list li::marker { color: rgba(111,83,39,.8); font-size: .85em; }
.site-footer__bottom { max-width: 1400px; margin: 50px auto 0; text-align: center; font-size: 14px; letter-spacing: .06em; color: #685126; }

/* フッターレスポンシブ */
@media (max-width: 1100px) { .site-footer__inner { grid-template-columns: 1fr; } .site-footer__nav { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 760px) { .site-footer__left { grid-template-columns: 1fr; } .site-footer__map iframe { height: 240px; } .site-footer__nav { grid-template-columns: 1fr; } .site-footer__logo { width: 220px; } }
@media (hover:hover) { .site-footer a:hover { opacity:.75; } }

/* To Top ボタン */
.to-top {
  position: fixed; right: 40px; bottom: 40px; width: 56px; height: 56px; border-radius: 50%; border: 1.5px solid #b89b6d; display: flex; align-items: center; justify-content: center; text-decoration: none; color: #b89b6d; font-size: 20px; background: rgba(255,255,255,.6); backdrop-filter: blur(6px); transition: .3s; z-index: 999; opacity: 0; pointer-events: none;
}
.to-top.show { opacity: 1; pointer-events: auto; }
.to-top:hover { transform: translateY(-4px); background: #fff; }

@media (max-width: 900px) { .to-top { display: none !important; } }

.line{ text-decoration: none; color: #4CC764; font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;}

.insta{
  text-decoration: none;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  background: linear-gradient( 45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}