/* ======================
   COMMON PARTS
   モバイルファースト
====================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 通常時 */
body {
  cursor: url(../img/common/blanch_01.png)12 12, auto;
}

/* クリックできる要素にホバーしたとき */
a,
button,
input[type="button"],
label,
[role="button"],
select {
  cursor: url(../img/common/blanch_02.png)12 12, pointer;
}

html {
  font-size: 62.5%;
}

:root {
  --green: #51e03e;
  --dark: #241200;
  --white: #bab9b5;
  --cyan: #5CE8E0;
  --card-size: calc((100svh - 16rem) / 2.5);
  --name-size: calc((100svh - 16rem) / 20);
  --desc-size: calc((100svh - 16rem) / 33);
  --price-size: calc((100svh - 16rem) / 25);
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background-image: radial-gradient(circle closest-corner, #221d14, #2e2000);
  overflow-x: hidden;
  animation: none;
  margin-top: 0;
}


#scroll-container,
#main-content {
  animation: fadeIn 0.7s ease forwards;
}

#scroll-container {
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ヘッダー分の余白 */
/* SP下部ナビ分 */
#main-content {
  padding-top: 4.5rem;
  padding-bottom: 8rem;
}



/* PC用ナビ（SPでは非表示） */
.pc-nav-top {
  display: none;
}

/* ======================
   SP: ヘッダー（固定）
====================== */
.sp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 1.3rem;
  background-image: url(../img/common/body.jpg);
  background-size: cover;
  border-bottom: rgba(255, 255, 255, 0.1) 1px solid;
  box-shadow: 0px 1px 4px gray;
}

.sp-header-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.sp-logo-box {
  width: 45px;
  height: 45px;
  background-image: url('../img/common/Forest-white.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 15%;
  flex-shrink: 0;
}

.sp-site-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.3rem;
  letter-spacing: 0.15em;
  color: #fff;
  line-height: 1;
}

.sp-site-tagline {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.1em;
}

.sp-insta-link {
  width: 32px;
  height: 32px;
  background-image: url(../img/common/instagram_white.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-left: auto;
}

/* ======================
   SP: 「i」ボタン
====================== */
.sp-info-btn {
  position: fixed;
  top: 6.9rem;
  left: 1.3rem;
  z-index: 50;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-family: 'Shippori Mincho', serif;
  font-size: 2rem;
  font-weight: bold;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.sp-info-btn:active {
  background: rgba(0, 0, 0, 0.6);
}

/* ======================
   SP: 店舗情報モーダル
====================== */
.sp-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.sp-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.sp-modal {
  background-image: url(../img/common/body.jpg);
  background-size: cover;
  border: rgba(238, 238, 238, 0.623) .3px solid;
  border-radius: 7%;
  padding: 2.5rem 2rem 1.3rem 2rem;
  width: 88%;
  max-width: 360px;
  position: relative;
  transform: translateY(16px);
  transition: transform 0.3s;
}

.sp-modal-overlay.is-open .sp-modal {
  transform: translateY(0);
}


.sp-modal-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.2em;
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
}

.sp-modal-info .label {
  flex-shrink: 0;
  display: inline-block;
  width: 4.5rem;
  color: #888;
  font-size: 1.3rem;
}

.sp-modal-info {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1.32rem;
  font-size: 1.5rem;
  line-height: 1;
  color: #bab9b5;
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.sp-modal-info div {
  display: contents;
}

.sp-modal-info .value {
  line-height: normal;
}

.sp-modal-map {
  width: 100%;
  height: 200px;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
}

.sp-modal-map iframe {
  width: 100%;
  height: 100%;
}

.sp-modal-copy {
  font-size: 1.2rem;
  color: #949494;
  text-align: center;
  margin-top: 1rem;
  letter-spacing: 0.1em;
}

/* ======================
   SP: 下部ナビゲーション（SVGアイコン付き・高さ増）
====================== */
.sp-nav {
  position: fixed;
  padding: .8em;
  bottom: -1px;
  z-index: 50;
  display: flex;
  background-image: url(../img/common/body.jpg);
  background-size: cover;
  box-shadow: 0px -.5px 4px gray;
  ;
}

.sp-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #bab9b5;
  gap: 0.3rem;
}

.sp-nav-item:active {
  color: #1fdf69;
}

.sp-nav-icon {
  width: 30%;
  height: 50%;
  stroke: currentColor;
}

.sp-nav-item span {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.06em;
}

/* ======================
   フッター（SP: 非表示）
====================== */
#site-footer {
  display: none;
}

/* ======================
   メインコンテンツヒーロー
====================== */
.contentsTop-hero {
  padding: 0 !important;
  border-bottom: none !important;
}

.contentsTop-hero-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: darken;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contentsTop-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.4em;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}


/* ======================
   PC (min-width: 769px)
====================== */
@media (min-width: 769px) {

  body {
    overflow-x: hidden;
    overflow-y: auto;
    margin-top: 0;
  }

  .sp-header {
    padding: .7rem 1.5rem;
  }

  /* SP専用要素を非表示 */
  .sp-info-btn,
  .sp-modal-overlay,
  .sp-nav {
    display: none !important;
  }

  /* PC用ナビ表示 */
  .sp-logo-box {
    width: 57px;
    height: 57px;
    background-image: url('../img/common/Forest-white.jpg');
    background-size: cover;
    border-radius: 20%;
    flex-shrink: 0;
    margin-left: 10px;
  }

  .sp-site-name {
    font-size: 2.5rem;
  }

  .sp-site-tagline {
    font-size: 1.3rem;
  }

  .pc-nav-top {
    display: flex;
    gap: 2rem;
    margin-right: 2rem;
    margin-left: auto;
  }

  .pc-nav-top a {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: #bab9b5;
    text-decoration: none;
    transition: color 0.2s;
  }

  .pc-nav-top a:hover {
    color: #fff;
  }

  .sp-insta-link {
    width: 36px;
    height: 36px;
    margin-right: 20px;
    margin-left: 0;
  }

  /* PCではmain-contentのpadding不要 */
  #main-content {
    padding-top: 0;
    padding-bottom: 0;
  }

  /* ① メインビジュアル */
  .contentsTop-hero-img {
    aspect-ratio: 16 / 6;
  }

  .contentsTop-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.3em;
  }

  /* フッター表示 */

  #site-footer {
    display: flex;
    background: var(--dark);
    color: var(--white);
    padding: 1.8rem 4rem 2rem 4rem;
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
  }

  .footer-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
  }

  .footer-logo-box {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.3rem;
  }

  .footer-logo-box img {
    width: 100%;
    height: 100%;
    border-radius: 20%;
    object-fit: cover;
  }

  .footer-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.7rem;
    letter-spacing: 0.2em;
    color: var(--white);
    margin-bottom: .9rem;
  }

  .footer-info {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 16px;
    align-items: start;
    color: #bab9b5;
    line-height: 1.8;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }

  .footer-info>div {
    display: contents;
    /* divを透明にしてgridの子として扱う */
  }

  .footer-info .label {
    font-weight: 600;
    white-space: nowrap;
    display: inline-block;
    width: 4.5rem;
    text-align: left;
    color: #bab9b5;
    font-size: 1.2rem;
  }

  .footer-copy {
    text-align: center;
    font-size: 1rem;
    color: #bab9b5;
    letter-spacing: 0.1em;
  }

  .footer-map {
    flex: 1;
    min-height: 220px;
  }

  .footer-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
  }

}

@media (max-height:1080px) {}

/* end @media (min-width: 769px) */