@charset "UTF-8";
/* =========================================
   変数設定・リセット（前回のまま）
   ========================================= */
:root {
  --white: #ffffff;
  --accent: #da0000;
  --bg-orange: #ff8f14;
  --text-color: #555;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Serif JP", serif;
  color: var(--text-color);
  overflow-x: hidden;
}

.site-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  /* background-color: var(--white); */
  /* box-shadow: 0 0 30px rgba(0,0,0,0.15); */
}

.info {
  background-color: white;
  position: relative;
}
.info .container {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1882352941);
}

section {
  background-color: white;
}

/* =========================================
   1. ヒーローセクション（前回のまま）
   ========================================= */
.hero {
  height: 90vh;
  position: relative;
  margin-top: 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../006/img/img007.webp");
}

.hero-content {
  text-align: center;
}

.sub-copy {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
  color: white;
  text-shadow: 3px 3px rgba(0, 0, 0, 0.8);
}

.main-copy {
  font-size: 7rem;
  color: white;
  text-shadow: 3px 3px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.3em;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
  padding: 10px 0;
}

/* セクション共通タイトル */
.section-title {
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
}

/* =========================================
   2. お店紹介セクション（今回の修正箇所）
   ========================================= */
.intro {
  /* インスタボタン用の余白 */
  padding: 100px 0;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 40px;
  height: 600px;
}

/* PC：タイトル・サブタイトル・写真の横一列配置 */
.intro-container {
  display: flex;
  justify-content: center;
  /* 中央に寄せる */
  align-items: flex-start;
  /* 上揃え */
  /* 要素間の隙間 */
  max-width: 900px;
  /* 少し広げる */
  flex-direction: column;
}

/* PC：文字を縦書きにする */
.intro-content {
  writing-mode: vertical-rl;
  /* 右から左への縦書き */
  -webkit-writing-mode: vertical-rl;
  text-orientation: mixed;
  height: 350px;
  /* 縦書きのエリアの高さを固定 */
  display: flex;
  flex-direction: column;
  /* 縦書き時の要素並び（右から左） */
  gap: 20px;
}

@media (max-width: 768px) {
  .intro-content {
    gap: 0;
  }
}
/* PC：縦書き時のタイトル調整 */
.intro-title {
  font-size: 2rem;
  margin-bottom: 0;
  /* 縦書きなのでmargin-bottomを消す */
  margin-left: 10px;
  /* 左側（サブタイトル側）に余白 */
  text-align: left;
  /* 縦書き時は上揃えの意味になる */
  line-height: 1.3;
  letter-spacing: 0.1rem;
}

/* PC：縦書き時のサブタイトル調整 */
.intro-subtitle {
  margin-bottom: 0;
  line-height: 2;
  font-size: 1rem;
  padding-top: 20px;
}

/* PC：写真のサイズ調整 */
.intro-image {
  flex: 0 1 50%;
  /* 幅を50%程度に */
  height: 400px;
  /* 文字エリアと高さを合わせる */
  overflow: hidden;
}

.intro-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* 画像をトリミングして綺麗に収める */
}

/* インスタボタン */
.btn-area {
  text-align: center;
  margin-top: 0;
  border: 1px solid var(--text-color);
  margin: 0 auto;
}

.btn-insta {
  display: inline-block;
  color: #555;
  padding: 20px 30px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease;
  letter-spacing: 5px;
}

.btn-insta:hover {
  transform: scale(1.05);
}

/* =========================================
   3. MENU（前回のまま）
   ========================================= */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.menu-item {
  text-align: center;
}

.menu-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 8px;
}

.menu-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.price {
  color: var(--accent);
  font-weight: bold;
  margin-top: 5px;
}

.attention-text-phone {
  display: none;
}

/* =========================================
   4. お店情報（前回のまま）
   ========================================= */
.info-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.shop-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.insta-notice {
  margin-top: 20px;
  font-weight: bold;
}
.insta-notice .insta-a {
  color: #555;
  border-bottom: rgba(85, 85, 85, 0.5019607843) solid 0.5px;
}

.map-placeholder {
  width: 100%;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ddd;
}
.map-placeholder .google-map {
  width: 100%;
  height: 100%;
  border: 1px solid black;
}

.copyright-area {
  text-align: center;
  margin-top: 30px;
}

/* =========================================
   レスポンシブ (タブレット・スマホ用)
   ========================================= */
@media (max-width: 768px) {
  /* ヒーロー */
  .main-copy {
    font-size: 2.8rem;
  }
  /* お店紹介（スマホ：縦並び、横書きに戻す） */
  .intro-container {
    flex-direction: column;
    /* 縦並び */
    align-items: center;
    gap: 30px;
  }
  .intro-content {
    height: auto;
    /* 高さを自動に */
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .intro-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
    margin-left: 0;
    text-align: start;
    letter-spacing: 10px;
    width: 40%;
    line-height: 50px;
    display: flex;
    align-items: center;
  }
  .intro-subtitle {
    font-size: 0.95rem;
    text-align: left;
    /* サブタイトルは左寄せの方が見やすい */
    width: 60%;
    line-height: 40px;
    display: flex;
    align-items: center;
  }
  .intro-image {
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
    /* スマホでは横長にする */
    display: contents;
  }
  /* MENU */
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* お店情報 */
  .info-content {
    grid-template-columns: 1fr;
  }
  .intro {
    flex-direction: column;
    height: auto;
  }
  .attention-text {
    display: none;
  }
  .attention-text-phone {
    display: block;
    font-size: 0.6rem;
    text-align: center;
    margin-top: 20px;
  }
  .hero-overlay {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../006/img/img008.webp");
  }
}/*# sourceMappingURL=setting.css.map */