@charset "UTF-8"; /* CSS Document */

/* 共通部分
---------------------------------------- */
html {
  /* ブラウザーの標準フォントサイズを100%に設定 */
  /* これを設定しないと、IEでフォントサイズが100%にならない */
  font-size: 100%;
  scroll-behavior: smooth;

  overflow-x: hidden;
  -webkit-text-size-adjust: 100%; /* iOSの文字サイズ調整を無効化 */
}
body {
  /* GoogleフォントNoto Sans JPを使用 */
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  /* 全体共通指定 */
  font-size: 17px; /* 本文フォントサイズを17pxに設定 */
  line-height: 2; /* 行間を設定 */
  color: white; /* 本文の文字色を設定 */
  background-color: #1f1f1f; /* 背景色を設定 */
}
a {
  text-decoration: none; /* 下線が入らないように設定 */
  color: white; /* 文字色を設定 */
}
img {
  max-width: 100%; /* 画像サイズ指定 */
}
.wrapper {
  max-width: 1340px; /* 最大幅px */
  width: 100%; /* 幅100% */
  margin: 0 auto; /* 中央寄せ */
  padding: 0 5%; /* 左右の余白を設定 */
  text-align: center; /* 中央寄せ */
  box-sizing: border-box; /* ボックスサイズをborder-boxに設定 */
}
.title-font {
  /* タイトルフォントの設定 */
  font-family: "Yuji Syuku", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px; /* タイトルフォントサイズを32pxに設定（section見出しのサイズ） */
}

/*========= ローディング画面のためのCSS ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #333;
  z-index: 9999999;
  text-align: center;
  color: #fff;
}

#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 260px;
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/
.splashbg {
  display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg {
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleX(0);
  background-color: #333; /*伸びる背景色の設定*/
  animation-name: PageAnime;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes PageAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

/*画面遷移の後現れるコンテンツ設定*/
#container {
  opacity: 0; /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* ── ヘッダー部分 ──────────────────────────── */
/* header */
.hero-picture {
  position: relative; /* 相対位置に設定 */
}
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex; /* フレックスボックスを使用 */
  align-items: center; /* 縦方向に中央寄せ */
  box-sizing: border-box; /* ボックスサイズをborder-boxに設定 */
  background-color: rgba(0, 0, 0, 0.5); /* 黒・透明度50% */
  backdrop-filter: blur(3px); /* 背景ぼかし */
  -webkit-backdrop-filter: blur(3px); /* Safari対策 */
  z-index: 100;
  height: 50px; /* ヘッダーの高さを設定 */
}
.header-nav,
.nav-menu ul {
  overflow: visible; /* ← はみ出しを許可！ */
}
.header-text {
  padding: 10px 0 10px 30px; /* 上下の余白を10px、左の余白を30pxに設定 */
  white-space: nowrap; /* テキストの折り返しを防ぐ */
}
/* 初期状態はPC向け（スマホ用は非表示） */
.header-text.pc {
  display: block;
}
.header-text.sp {
  display: none;
}
/* デスクトップ版のナビゲーション */
.nav-menu {
  text-align: right; /* 右寄せ */
  margin-left: auto; /* ←これで右寄せ */
}
.header-nav ul {
  display: flex; /* フレックスボックスを使用 */
  margin-left: auto; /* ←これで右寄せ */
  list-style: none; /* リストスタイルをなしに設定 */
  gap: 25px; /* リストアイテム間の隙間設定 */
  font-size: 18px; /* フォントサイズを設定 */
  padding: 10px 30px; /* 上下の余白を10px、左右の余白を30pxに設定 */
  align-items: center; /* 縦方向に中央寄せ */
  white-space: nowrap; /* テキストの折り返しを防ぐ */
}

/* ── “お問い合わせ” のみ特別スタイル ─────── */
.nav-contact {
  position: relative;
  /* ボタン自体を下にずらしてはみ出させる */
  transform: translateY(20%); /* 数値を変えると飛び出す量を調整可 */
  flex-shrink: 0; /* フレックスアイテムの縮小を防ぐ */
}
.nav-contact-btn {
  display: block;
  /* 予約ボタンのスタイル */
  background: #cc3737; /* ボタンの背景色 */
  padding: 10px 20px; /* 上下、左右の余白 */
  border-radius: 30px; /* 角丸を設定 */
  line-height: 1; /* 行間を設定 */
  text-align: center; /* 中央寄せ */
  white-space: nowrap; /* テキストの折り返しを防ぐ */
  margin: 0 auto; /* 中央寄せ */
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5); /* 影を追加 */
  transition: background-color 0.3s ease, transform 0.3s ease; /* ホバー時の背景色変化をスムーズに */
}
/* 2 行レイアウト */
.nav-contact-btn .label {
  /* 1 行目 */
  display: block;
}
.nav-contact-btn .tel {
  /* 2 行目 */
  display: block;
  margin-top: 5px;
}
.nav-contact :hover {
  /* ホバー時のスタイル */
  transform: scale(1.05); /* 少し大きくなる */
  background-color: #fc8c8c; /* ホバー時の背景色 */
  transition: 0.5s; /* ホバー時の変化を0.5秒に設定 */
}

/* モバイル版のナビゲーション */
/* ハンバーガーメニューのデフォルト非表示 */
.hamburger-sp,
.openbtn {
  display: none;
}

/* ── ヒーローイメージ設定 ──────────────────────────── */
/* スライドショー-動きを組み合わせて全画面で見せる- */
#slider {
  width: 75%; /* ここで70～80%に調整 */
  height: 100vh; /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

.left-content {
  width: 25%; /* 残り30%に文字やロゴなど */
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #000 60%, transparent);
}

.hero-wrapper {
  position: relative;
  width: 100%;
  height: 100vh; /* ← ビューポート高さに */
  overflow: hidden;
  display: flex;
}
.hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* トリミングしながら全画面表示 */
  background-position: center bottom; /* 横は中央・縦は下を基準に表示 */
  display: block;
}
/* 中央のロゴ＋タイトル配置 */
.hero-content {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translate(0%, -50%);
  text-align: left;
  z-index: 2;
}
.hero-logo-sp {
  display: none; /* スマホ版のロゴは非表示 */
}
.hero-logo-pc {
  max-width: 200px;
}
/* Instagramボタンを右下に */
.insta-button {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
}
.insta-button img {
  width: 100px; /* サイズ調整 */
  height: auto;
}
.hero-text,
.store-name {
  white-space: nowrap; /* テキストの折り返しを防ぐ */
  font-weight: 550;
  text-shadow: 4px 4px 5px rgba(0, 0, 0, 1), 0 0 10px rgba(0, 0, 0, 0.5); /* テキストの影を設定 */
}
/* 改行 */
.br-pc {
  display: inline;
}
.br-sp {
  display: none;
}

/* スマホ版のボトムメニューを非表示 */
.bottom-nav {
  display: none;
}

/* ── about section──────────────────────────── */
.about {
  display: flex;
  justify-content: center; /* 横方向中央 */
  align-items: center; /* 縦方向中央 */
  box-sizing: border-box;
}
.about-text {
  max-width: 1000px; /* 幅を制限して可読性UP */
  text-align: left; /* ここで文字は左揃え */
  margin: 50px auto; /* 上下の余白を設定、中央寄せ */
}
.about-image {
  position: relative; /* 相対位置に設定 */
  z-index: 0; /* z-indexを0に設定 */
  padding: 50px;
  margin: 100px auto; /* 中央寄せ */
  overflow: hidden; /* 画像のはみ出しを隠す */
}
.about-image::before {
  content: ""; /* 擬似要素を使用して背景画像を設定 */
  position: absolute; /* 擬似要素を使用して背景画像を設定 */
  inset: 0; /* 親要素に合わせて全体を覆う */
  background-image: url("../images/about-image-1.webp"),
    url("../images/about-image-2.webp");
  background-position: left top, right bottom;
  background-repeat: no-repeat;
  background-size: 400px auto, 400px auto;
  opacity: 0.7; /* ★ ここで透明度を調整！ */
  z-index: -1; /* 背景に回す */
}
.about-text h2,
.about-text p {
  max-width: 1340px; /* 最大幅を設定 */
  text-shadow: -2px -2px 0 rgba(0, 0, 0, 0.6), 0px -2px 0 rgba(0, 0, 0, 0.6),
    2px -2px 0 rgba(0, 0, 0, 0.6), -2px 0px 0 rgba(0, 0, 0, 0.6),
    2px 0px 0 rgba(0, 0, 0, 0.6), -2px 2px 0 rgba(0, 0, 0, 0.6),
    0px 2px 0 rgba(0, 0, 0, 0.6), 2px 2px 0 rgba(0, 0, 0, 0.6);
}
.about-text h2 {
  font-size: 32px;
  margin-bottom: 17px; /* 見出しの下に余白を追加 */
}
.about-text h2 span {
  font-size: 28px;
}
.about-text p {
  font-size: 17px;
  line-height: 2.5; /* 行間を設定 */
  margin-bottom: 17px; /* 文と文の間に余白を追加 */
}

/* ── commitment section────────────────────────── */
/* セクション全体の背景 */
.full-width-bg {
  width: 100%;
  background: url("../images/commitment-background.jpg") repeat center center;
  background-size: cover;
  margin-top: 100px;
}
.commitment-bigtitle {
  transform: translate(0, -40%); /* タイトルを上にずらす */
  max-width: 240px;
  width: 20%; /* 横幅%を設定 */
  height: auto; /* 高さは自動 */
  object-fit: contain; /* 画像のトリミングを防ぐ */
}
.commitment-smalltitle {
  display: none; /* 小タイトルはPC版では非表示 */
}
.commitment {
  padding: 150px 0;
}
/* ブロック全体の横並び */
.commitment-block {
  display: flex;
  align-items: flex-start;
}

/* 各コンテンツ部分 */
.commitment-item {
  display: flex;
  flex-grow: 1;
  align-items: flex-start;
}
/* 画像サイズ統一 */
.commitment-item img {
  width: 45%;
  height: auto;
  object-fit: cover;
}
.commitment-item.reduce-gap {
  margin-bottom: -180px; /* 段落の間の余白を減らす */
}
.commitment-item.increase-gap {
  margin-top: 70px; /* 段落の間に余白を追加 */
  display: flex;
  justify-content: flex-end;
}
/* タイトルのデザイン */
.commitment-title {
  line-height: 1.2; /* 行間を設定 */
  text-align: left; /* タイトルを左揃え */
}
.commitment-title.left-down-tilt {
  transform: rotate(-5deg); /* 傾ける */
  display: inline-block; /* rotateを適用させるため */
}
.commitment-title.right-down-tilt {
  transform: rotate(5deg); /* 傾ける */
  display: inline-block; /* rotateを適用させるため */
}
.commitment-title.title-font {
  font-size: 28px;
  color: black;
}
.right-down-tilt.increase-gap {
  padding-left: 80px; /* 右下傾きタイトルの左側に余白を追加 */
}
.left-down-tilt.increase-gap {
  translate: -50px; /* 左下傾きタイトルの位置を調整 */
}
.text-orange,
.text-black {
  font-size: 40px;
  font-weight: bold;
}
.text-orange {
  color: #f0810f;
}
.text-black {
  color: black;
}
/* 文章デザイン */
.commitment-text {
  display: flex;
  flex-direction: column; /* 縦方向に配置 */
  justify-content: center; /* 縦方向中央寄せ */
  align-items: center; /* 横方向中央寄せ */
}
.commitment-text p {
  color: black;
  padding: 25px 30px; /* 余白を設定 */
  text-align: left; /* テキストを左揃え */
  max-width: 550px; /* 横幅を設定 */
  min-width: 450px; /* 最小幅を設定 */
}

/* 最低限おぼえておきたい動き-スーッ（CSS）- */
/* scrollしたときに画像が線で囲まれてふわっと表示される */
.lineTrigger {
  position: relative; /* 枠線が書かれる基点*/
  display: inline-block; /* 画像サイズに合わせる */
  opacity: 0;
}

.lineTrigger.lineanime {
  animation-name: lineAnimeBase;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes lineAnimeBase {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*枠線が伸びて出現*/
/*上下線*/
.lineTrigger::before,
.lineTrigger::after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background: #333; /* 枠線の色*/
}

/*左右線*/
.line2::before,
.line2::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 0;
  background: #333; /* 枠線の色*/
}

/*上線*/
.lineTrigger::before {
  top: 0;
  left: 0;
}
.lineTrigger.lineanime::before {
  animation: lineAnime 0.5s linear 0s forwards; /*表示されて0秒後に上線が0.5秒かけて表示*/
}

/*右線*/
.line2::before {
  top: 0;
  right: 0;
}
.lineTrigger.lineanime .line2::before {
  animation: lineAnime2 0.5s linear 0.5s forwards; /*表示されて0.5秒後に右線が0.5秒かけて表示*/
}

/*下線*/
.lineTrigger::after {
  bottom: 0;
  right: 0;
}
.lineTrigger.lineanime::after {
  animation: lineAnime 0.5s linear 1s forwards; /*表示されて1秒後に下線が0.5秒かけて表示*/
}

/*左線*/
.line2::after {
  bottom: 0;
  left: 0;
}
.lineTrigger.lineanime .line2::after {
  animation: lineAnime2 0.5s linear 1.5s forwards; /*表示されて1.5秒後に左線が0.5秒かけて表示*/
}

@keyframes lineAnime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes lineAnime2 {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}

/*枠線内側の要素*/
.lineTrigger.lineanime .lineinappear {
  animation: lineInnerAnime 0.5s linear 1.5s forwards; /*1.5秒後に中央のエリアが0.5秒かけて表示*/
  opacity: 0; /*初期値を透過0にする*/
}

@keyframes lineInnerAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 画像の余白防止 */
.lineinappear img {
  display: block;
  width: 100%; /* 必要なら調整 */
  height: auto;
}

/* ── パララックススクロール部分 ──────────────────────────── */
/* パララックススクロール画像 */
.parallax-1 {
  background-image: url("../images/scroll-image1.webp");
}
.parallax-2 {
  background-image: url("../images/scroll-image2.webp");
}
/* パララックススクロールのスタイル */
.parallax-1,
.parallax-2 {
  height: 400px;
  background-attachment: fixed; /* 背景を固定 */
  background-position: center; /* 背景の位置を中央に */
  background-repeat: no-repeat;
  background-size: cover;
}

/* iOSだけscrollに変える */
@supports (-webkit-touch-callout: none) {
  .parallax-1,
  .parallax-2 {
    background-attachment: scroll !important;
  }
}

/* ── menu section──────────────────────────── */
.menu {
  padding: 150px 0 200px; /* 上下の余白を設定 */
}

/* 4-6 じわっ（ぼかしから出現） */
.blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.blurTrigger {
  opacity: 0;
}

.menu-block {
  display: grid; /* グリッドレイアウトを使用 */
  gap: 20px; /* メニュー間の隙間 */
  grid-template-columns: repeat(
    3,
    1fr
  ); /* カラムの設定 1frのボックスが1列に3つ並ぶ指定*/
  padding: 20px 20px 100px; /* グリッド全体の余白を設定 */
}
.menu-item {
  background-color: #d9d9d9; /* アイテムの背景色を設定 */
  position: relative;
}
.menu-item img {
  aspect-ratio: 1/0.6; /* 画像のアスペクト比を1:0.5に設定（横長） */
  object-fit: cover; /* 画像をカバーする */
}
.item-big1 {
  grid-column: 1/1; /* 1列目から1列目までの幅を指定 */
  grid-row: 1/3; /* 1行目から3行目までの高さを指定 */
}
.item-big2 {
  grid-column: 2/2; /* 2列目から2列目までの幅を指定 */
  grid-row: 1/3; /* 1行目から3行目までの高さを指定 */
}
.item-big1 img,
.item-big2 img {
  height: 82%; /* 画像の高さ */
  width: 100%; /* 画像の幅 */
}
.menu-item h4 {
  color: black; /* タイトルの文字色を設定 */
  font-size: 17px;
  line-height: 1.5; /* 行間を設定 */
  align-items: center; /* 縦方向に中央寄せ */
  text-align: center; /* 中央寄せ */
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #d9d9d9;
  height: 16%;
}
.menu-item h4 span {
  font-size: 24px;
}

/* メニューボタン */
.menu-btn {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;

  display: inline-flex; /* インラインフレックスボックスを使用 */
  justify-content: center; /* 横の中央寄せ */
  align-items: center; /* 縦の中央寄せ */
  gap: 30px; /* アイテム間の隙間を設定 */
  background-color: #f0810f; /* 背景色を指定 */
  width: 600px; /* ボタンの幅を指定 */
  height: 100px; /* ボタンの高さを指定 */
  border-radius: 50px; /* 角丸 */
  font-size: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 影を指定 */

  /*アニメーションの指定*/
  transition: ease 0.2s;
}
.menu-label,
.btn-arrow {
  display: inline-block;
}
/*ボタン内spanの形状*/
.menu-btn span {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: white;
}

/*== 背景が流れる（斜め） */
.bgskew::before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: -130%;
  /*色や形状*/
  background: #ffb366;
  width: 120%;
  height: 100%;
  transform: skewX(-25deg);
}

/*hoverした時のアニメーション*/
.bgskew:hover::before {
  animation: skewanime 0.5s forwards; /*アニメーションの名前と速度を定義*/
}

@keyframes skewanime {
  100% {
    left: -10%; /*画面の見えていない左から右へ移動する終了地点*/
  }
}

/* ── information section──────────────────────────── */
.information-background {
  position: relative; /* 相対位置に設定 */
  z-index: 0; /* z-indexを0に設定 */
}
.information-background::before {
  content: ""; /* 擬似要素を使用して背景画像を設定 */
  position: absolute; /* 擬似要素を使用して背景画像を設定 */
  inset: 0; /* 親要素に合わせて全体を覆う */
  background-image: url("../images/gaikan_haikei.webp");
  background-position: right -30px top 0px;
  background-repeat: no-repeat;
  background-size: 1200px auto;
  opacity: 0.25; /* ★ ここで透明度を調整！ */
  z-index: -1; /* 背景に回す */
}
.information {
  padding: 150px 0; /* 上下の余白を設定 */
}
.info-block {
  display: flex; /* フレックスボックスを使用 */
  justify-content: center; /* 横方向中央 */
  align-items: flex-start; /* 縦方向上揃え */
  padding: 30px 0; /* 上下の余白を設定 */
}
.info-image-sp {
  display: none; /* スマホ版非表示 */
}
.info-image-pc {
  width: 50%;
  margin: 0 3% 0 5%;
}
.info-list {
  display: flex; /* フレックスボックスを使用 */
  flex-direction: column; /* 縦方向に配置 */
  justify-content: left; /* 左寄せ */
  text-align: left; /* テキストを左揃え */
  width: 50%; /* 幅を設定 */
  line-height: 1.4; /* 行間を設定 */
}
.info-list th {
  font-weight: bold; /* 太字 */
}
.info-list td {
  padding-bottom: 25px; /* 下の余白を設定 */
}
.itapay-wrap {
  display: inline-flex; /* インラインフレックスボックスを使用 */
  align-items: flex-start; /* アイテムを上揃えにする */
  gap: 5px; /* 文字とアイコンの隙間 */
  white-space: nowrap; /* テキストの折り返しを防ぐ */
}
.info-list img {
  width: 50px;
  height: auto; /* 高さは自動 */
  transform: translate(0, 0%); /* アイコンを上にずらす */
}
.map-container {
  width: 100%;
}
.map-container iframe {
  width: 100%;
  aspect-ratio: 16 / 9; /* アスペクト比で高さを自動計算 */
  border: 0;
}

/* ── contact section────────────────────────── */
.contact {
  padding: 50px 0 200px; /* 上下の余白を設定 */
  display: flex; /* フレックスボックスを使用 */
  justify-content: space-between; /* 左右に配置 */
}
.contact-tel h2,
.contact-sns h2 {
  margin-bottom: 30px; /* 下の余白を設定 */
}
.contact-tel {
  width: 40%;
}
.contact-sns {
  width: 57%;
}
.contact-button {
  display: block; /* ブロック要素のように使う */
  background-color: #cc3737;
  text-align: center; /* 中央寄せ */
  padding: 80px 0px;
  border-radius: 50px; /* 角丸を設定 */
  transition: background-color 0.3s ease, transform 0.3s ease; /* ホバー時の背景色変化をスムーズに */
  box-shadow: inset 0 0 0 10px #cc3737, inset 0 0 0 12px #f0810f; /* 外側を背景で埋めつつ、外から12px位置に白線を描く */
}
.contact-button:hover {
  /* ホバー時のスタイル */
  background-color: #fc8c8c; /* ホバー時の背景色 */
  transition: 0.5s; /* ホバー時の変化を0.5秒に設定 */
}
.contact-button span {
  font-size: 32px; /* フォントサイズを設定 */
  font-weight: bold; /* 太字 */
}
.instagram-grid {
  display: grid; /* グリッドレイアウトを使用*/
  grid-template-columns: repeat(3, 1fr); /* 3列のグリッド */
  row-gap: 8px; /* ← 縦隙間 */
  column-gap: 18px; /* ← 横隙間 */
}
.insta-post {
  width: 100%; /* 画像の幅を設定 */
  aspect-ratio: 1 / 1; /* 正方形にする */
  object-fit: cover; /* はみ出しOKで中央トリミング */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.insta-post:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.insta-follow {
  aspect-ratio: 1 / 1; /* 正方形にする */
  width: 100%; /* 画像の幅を設定 */
  overflow: hidden; /* はみ出しを隠す */
  display: flex; /* フレックスボックスを使用 */
  flex-direction: column; /* 縦方向に配置 */
  justify-content: center; /* 横方向中央 */
  align-items: center; /* 縦方向中央 */
  gap: 10px; /* アイコンとテキストの隙間を設定 */
  padding: 10px; /* 内側の余白を設定 */
  background-color: #efe0c4;
  color: black;
  box-sizing: border-box; /* ボックスサイズをborder-boxに設定 */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.insta-follow p {
  text-align: center;
  margin: 0;
  line-height: 1.2;
}
.insta-icon {
  width: 30%; /* アイコンの幅を設定 */
  height: auto; /* 高さは自動 */
}
.font-size24 {
  font-size: 24px; /* フォントサイズを24pxに設定 */
}
.insta-follow:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ── footer ────────────────────────── */
footer {
  background-color: black; /* フッターの背景色を設定 */
}
.footer-nav {
  display: flex; /* フレックスボックスを使用 */
  justify-content: space-between; /* 左右に配置 */
  align-items: center; /* 縦方向に中央寄せ */
  box-sizing: border-box; /* ボックスサイズをborder-boxに設定 */
  padding: 50px 30px; /* 上下の余白を設定 */
}
.footer-nav img {
  width: 200px; /* ロゴの幅を設定 */
  height: auto; /* 高さは自動 */
}
.footer-nav ul {
  display: flex; /* フレックスボックスを使用 */
  justify-content: space-between; /* 左右に配置 */
  list-style: none; /* リストスタイルをなしに設定 */
  gap: 50px; /* リストアイテム間の隙間設定 */
  font-size: 18px; /* フォントサイズを設定 */
  padding: 10px 0; /* 上下の余白を設定 */
  align-items: center; /* 縦方向に中央寄せ */
}
.footer-nav ul img {
  width: 30px; /* アイコンの幅を設定 */
  height: auto; /* 高さは自動 */
  vertical-align: middle; /* アイコンの縦位置を中央に揃える */
}
.instagram-icon-sp {
  display: none;
}
.copyright {
  text-align: center; /* 中央寄せ */
  padding: 10px 0; /* 上下の余白を設定 */
  font-size: 16px; /* フォントサイズを設定 */
}
/* headerの文章を短く表示*/
@media screen and (max-width: 1200px) {
  /* header文章 */
  .header-text.sp {
    display: block;
  }
  .header-text.pc {
    display: none;
  }
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
  /* 共通設定 */
  p {
    font-size: 15px; /* フォントサイズ */
  }
  .wrapper {
    max-width: 768px; /* 最大幅px */
    width: 100%; /* 幅100% */
    margin: 0 auto; /* 中央寄せ */
    padding: 0 5%; /* 左右の余白を設定 */
    text-align: center; /* 中央寄せ */
    box-sizing: border-box; /* ボックスサイズをborder-boxに設定 */
  }
  .title-font {
    /* タイトルフォントの設定 */
    font-size: 24px; /* タイトルフォントサイズを24pxに設定（section見出しのサイズ） */
  }

  /* ── header ────────────────────────── */
  /* header文章 */
  .header-text.sp {
    display: block; /* スマホ用の文章を表示 */
  }
  .header-text.pc {
    display: none; /* PC用の文章を非表示 */
  }
  .header-text {
    padding: 10px 0 10px 5%; /* 上下の余白を10px、左の余白を5%に設定 */
  }
  .header-nav {
    height: 45px; /* ヘッダーの高さを設定 */
  }
  /* 改行 */
  .br-pc {
    display: none;
  }
  .br-sp {
    display: inline;
  }

  /* ハンバーガーメニュー */
  .openbtn,
  .hamburger-sp {
    display: flex; /* ハンバーガーメニューを表示 */
  }

  /* 5-1-20ここから */
  /*========= ナビゲーションのためのCSS ===============*/
  /*アクティブになったエリア*/
  #g-nav.panelactive {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100%;
    height: 100vh;
  }

  /*丸の拡大*/
  .circle-bg {
    position: fixed;
    z-index: 3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #1f1f1f;
    /*丸のスタート位置と形状*/
    transform: scale(0); /*scaleをはじめは0に*/
    right: -50px;
    top: -50px;
    transition: all 0.6s; /*0.6秒かけてアニメーション*/
  }

  .circle-bg.circleactive {
    transform: scale(50); /*クラスが付与されたらscaleを拡大*/
  }

  /*ナビゲーションの縦スクロール*/
  #g-nav-list {
    display: none; /*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  #g-nav.panelactive #g-nav-list {
    display: block; /*クラスが付与されたら出現*/
  }

  /*ナビゲーション*/
  #g-nav p,
  #g-nav img {
    opacity: 0; /*はじめは透過0*/
    pointer-events: none; /* マウスイベントを受け付けない */
  }
  #g-nav ul {
    opacity: 0; /*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none; /* マウスイベントを受け付けない */
  }

  /*背景が出現後にナビゲーションを表示*/
  #g-nav.panelactive p,
  #g-nav.panelactive img,
  #g-nav.panelactive ul {
    opacity: 1;
  }

  /* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
  #g-nav.panelactive p,
  #g-nav.panelactive img,
  #g-nav.panelactive ul li {
    animation-name: gnaviAnime;
    animation-duration: 1s;
    animation-delay: 0.2s; /*0.2 秒遅らせて出現*/
    animation-fill-mode: forwards;
    opacity: 0;
    pointer-events: auto; /* クリックなど有効に戻す */
  }
  @keyframes gnaviAnime {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  /*リストのレイアウト設定*/
  #g-nav li {
    text-align: center;
    list-style: none;
  }

  #g-nav li a {
    color: white;
    text-decoration: none;
    padding: 10px;
    display: block;
    letter-spacing: 5px;
  }

  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    position: fixed;
    top: -4px;
    right: 10px;
    z-index: 9999; /*ボタンを最前面に*/
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  /* 5-1-20ここまで */
  /* 5-2-4ここから */
  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 5px;
    background-color: #fff;
    width: 45%;
  }

  .openbtn span:nth-of-type(1) {
    top: 13px;
  }

  .openbtn span:nth-of-type(2) {
    top: 19px;
  }

  .openbtn span:nth-of-type(3) {
    top: 25px;
  }

  .openbtn span:nth-of-type(3)::after {
    content: "Menu"; /*3つ目の要素のafterにMenu表示を指定*/
    position: absolute;
    top: 2px;
    left: -2px;
    color: #fff;
    font-size: 0.6rem;
    text-transform: uppercase;
  }

  /*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

  .openbtn.active span:nth-of-type(1) {
    top: 14px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }

  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }

  .openbtn.active span:nth-of-type(3) {
    top: 26px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }

  .openbtn.active span:nth-of-type(3)::after {
    content: "Close"; /*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
    top: 5px;
    left: 4px;
  }
  /* 5-2-4ここまで */

  .hamburger-header-sp {
    width: 100%;
    display: flex; /* フレックスボックスを使用 */
    align-items: center; /* 縦方向に中央寄せ */
    box-sizing: border-box; /* ボックスサイズをborder-boxに設定 */
    height: 45px; /* ヘッダーの高さを設定 */
    padding: 10px 0 10px 30px; /* 上下の余白を10px、左の余白を30pxに設定 */
  }
  .nav-text {
    flex-direction: column; /* 縦方向に配置 */
    gap: 30px;
  }
  .header-nav ul {
    gap: 20px;
  }
  .hamburger-sp.logo {
    display: block; /* スマホ版のロゴを表示 */
    position: absolute;
    top: 50px; /* 画面上からの距離 */
    left: 30px; /* 画面左からの距離 */
    width: 130px;
    height: auto;
    z-index: 10;
  }

  .nav-contact-btn {
    align-items: center; /* 縦方向に中央寄せ */
    padding: 50px 0;
  }

  .label.sp,
  .tel.sp {
    font-size: 15px;
  }
  .nav-icon img {
    max-width: 100px;
    width: 100%;
    height: auto;
  }

  /* ヒーローイメージ部分 */
  #slider {
    width: 100%; /* スマホ版は画面幅いっぱいに */
    height: 100vh; /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  }

  .left-content {
    width: 0%; /* スマホ版はテキスト中央 */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #000 60%, transparent);
  }
  .hero-logo-pc {
    display: none; /* PC版のロゴは非表示 */
  }
  .hero-logo-sp {
    display: block; /* スマホ版のロゴを表示 */
    position: absolute;
    top: 50px; /* 画面上からの距離 */
    left: 30px; /* 画面左からの距離 */
    width: 180px;
    height: auto;
    z-index: 10;
  }
  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    z-index: 2;
  }
  .hero-text {
    margin-top: 50px;
  }

  /* ── 下部固定ナビゲーション ────────────────────────── */
  .bottom-nav {
    display: block;
  }
  #bottom-nav {
    height: 50px;
    width: 100%;
    background: black;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  /* スクロール後に画面下部へ固定 */
  #bottom-nav.fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 900;
  }
  .bottom-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
  }
  .bottom-nav ul li {
    position: relative;
  }
  .bottom-nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 0px 25px;
    display: inline-block;
    font-size: 16px;
  }
  /* liのうち、最後以外に縦線を入れる */
  .bottom-nav ul li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    border-right: 1px solid #fff;
  }

  /* ── about section────────────────────────── */
  .about {
    padding: 100px auto;
  }
  .about-image::before {
    background-position: left -20px top 50px, right -20px bottom 80px;
    background-size: 300px auto, 300px auto;
  }
  .bold-sp {
    font-size: 18px;
    font-weight: bold; /* 太字 */
  }
  .about-text {
    max-width: 100%; /* 幅を100%に設定 */
    margin: 100px auto; /* 上下の余白を設定、中央寄せ */
  }
  .about-text h2 {
    font-size: 24px;
    margin-bottom: 17px; /* 見出しの下に余白を追加 */
  }
  .about-text h2 span {
    font-size: 20px;
  }
  .about-text p {
    font-size: 15px;
    line-height: 2; /* 行間を設定 */
    margin-bottom: 30px; /* 文と文の間に余白を追加 */
  }

  /* ── commitment section────────────────────────── */
  /* 要確認 */

  .full-width-bg {
    margin-top: 10px; /* 背景の上の余白を調整 */
  }
  .commitment-bigtitle {
    display: none; /* 縦タイトルはモバイル版では非表示 */
  }
  .commitment-smalltitle {
    display: block; /* 小タイトルはモバイル版で表示 */
    width: 100%;
    max-width: 400px;
    margin: 0 auto; /* 中央寄せ */
    padding: 50px 0;
  }
  .commitment-block {
    flex-direction: column; /* 縦方向に配置 */
    align-items: stretch; /* 横方向に伸ばす */
    padding-bottom: 50px; /* 下の余白を設定 */
  }
  .commitment-item {
    flex-direction: column; /* 縦方向に配置 */
    align-items: center;
    text-align: center;
  }
  .commitment-item img {
    width: 100%;
  }
  .commitment-item.reduce-gap {
    margin-bottom: 0px;
  }
  .commitment-item.reverse {
    flex-direction: column-reverse; /* 画像とテキストの順序を逆にする */
  }
  .commitment-item.increase-gap {
    margin-top: 0px; /* 段落の間に余白を追加 */
    display: flex;
    justify-content: center; /* 中央寄せ */
  }
  /* タイトルのデザイン */
  .commitment-title {
    line-height: 1.8; /* 行間を設定 */
    text-align: center; /* タイトルを中央揃え */
  }
  .commitment-title.left-down-tilt,
  .commitment-title.right-down-tilt {
    transform: rotate(0deg); /* 傾きをリセット */
  }
  .commitment-title.title-font {
    font-size: 16px;
    color: black;
  }
  .right-down-tilt.increase-gap {
    padding-left: 0px; /* 右下傾きタイトルの左側に余白を追加 */
  }
  .left-down-tilt.increase-gap {
    translate: 0px; /* 左下傾きタイトルの位置を調整 */
  }
  .text-orange,
  .text-black {
    font-size: 20px;
    font-weight: bold;
  }
  .commitment-text p {
    padding: 5px 0 20px; /* 余白を設定 */
    max-width: 600px; /* 横幅を設定 */
    min-width: 0px; /* 最小幅を設定 */
    width: 100%; /* 横幅を100%に設定 */
  }

  /* 文章デザイン */
  .commitment-text {
    display: flex;
    flex-direction: column; /* 縦方向に配置 */
    justify-content: center; /* 縦方向中央寄せ */
    align-items: center; /* 横方向中央寄せ */
  }
  .commitment-text h3 {
    padding-top: 10px;
  }
  .commitment-text p {
    padding: 10px auto; /* 余白を設定 */
    text-align: left; /* テキストを左揃え */
    width: 100%; /* 横幅を設定 */
  }
  /* ── パララックススクロール部分 ──────────────────────────── */
  /* パララックススクロール画像 */
  .parallax-1 {
    background-image: url("../images/scroll-image1-sp.webp");
    margin-bottom: 50px; /* 下の余白を設定 */
  }
  .parallax-2 {
    background-image: url("../images/scroll-image2-sp.webp");
    margin: 100px auto 50px; /* 下の余白を設定 */
  }
  /* パララックススクロールのスタイル */
  .parallax-1,
  .parallax-2 {
    height: 200px;
    background-size: contain; /* 画像のサイズを調整 */
  }

  /* iOSだけscrollに変える */
  @supports (-webkit-touch-callout: none) {
    .parallax-1,
    .parallax-2 {
      background-attachment: scroll !important;
    }
  }

  /* ── menu section──────────────────────────── */
  .menu {
    padding: 100px auto; /* 上下の余白を設定 */
  }
  .menu-block {
    display: block;
    padding: 20px 0 15px; /* block全体の余白を設定 */
  }
  .menu-item {
    margin-bottom: 30px;
  }
  .menu-item img {
    aspect-ratio: 1/0.8; /* 画像のアスペクト比を1:0.8に設定（横長） */
    object-fit: cover; /* 画像をカバーする */
  }
  .menu-item h4 {
    color: black; /* タイトルの文字色を設定 */
    font-size: 17px;
    line-height: 1.2; /* 行間を設定 */
    align-items: center; /* 縦方向に中央寄せ */
    text-align: center; /* 中央寄せ */
    position: static;
    height: 50px;
  }
  .menu-item h4 span {
    font-size: 24px;
  }
  .menu-btn {
    max-width: 450px; /* ボタンの幅を指定 */
    min-width: 320px; /* 最小幅を設定 */
    width: 100%;
    height: 80px; /* ボタンの高さを指定 */
    font-size: 16px;
  }
  .menu-label,
  .btn-arrow {
    display: inline-block;
  }
  .menu-btn:hover {
    /* ホバー時のスタイル */
    background-color: #ffb366; /* ホバー時の背景色 */
    transition: 0.5s; /* ホバー時の変化を0.5秒に設定 */
  }

  /* ── information section──────────────────────────── */
  .information-background::before {
    position: absolute; /* 擬似要素を使用して背景画像を設定 */
    background-position: right -30px top 80px;
  }
  .info-block {
    flex-direction: column; /* 縦方向に配置 */
  }
  .info-image-pc {
    display: none; /* PC版非表示 */
  }
  .info-image-sp {
    display: block; /* スマホ版表示 */
    width: 100%; /* 横幅を100%に設定 */
    margin: 0 auto; /* 中央寄せ */
  }
  .info-list {
    width: 100%; /* 幅を設定 */
    line-height: 1.4; /* 行間を設定 */
    margin: 20px auto;
  }
  /* ── contact section────────────────────────── */
  .contact {
    margin: 60px auto 100px; /* 上下の余白を設定 */
    flex-direction: column; /* 縦方向に配置 */
  }
  .contact-tel,
  .contact-sns {
    width: 100%;
  }
  .contact-tel h2,
  .contact-sns h2 {
    margin-top: 30px;
    margin-bottom: 10px; /* 下の余白を設定 */
  }
  .instagram-grid {
    row-gap: 0px; /* ← 縦隙間 */
    column-gap: 6px; /* ← 横隙間 */
  }
  .insta-follow {
    gap: 8px; /* アイコンとテキストの隙間を設定 */
    padding: 10px; /* 内側の余白を設定 */
  }
  .insta-follow p {
    line-height: 1;
    font-size: 14px;
  }
  /* ── footer ────────────────────────── */
  .footer-nav {
    flex-direction: column; /* 縦方向に配置 */
    align-items: center; /* 縦方向に中央寄せ */
    box-sizing: border-box; /* ボックスサイズをborder-boxに設定 */
    padding: 30px 30px; /* 上下の余白を設定 */
  }
  .footer-nav-menu {
    width: 100%;
    position: relative;
  }
  .instagram-icon-pc {
    display: none;
  }
  .instagram-icon-sp {
    display: block; /* スマホ版表示 */
    width: 30px; /* ロゴの幅を設定 */
    height: auto; /* 高さは自動 */
    position: absolute;
    top: 20px;
    right: 0;
  }
  .footer-nav ul {
    flex-direction: column; /* 縦方向に配置 */
    list-style: none; /* リストスタイルをなしに設定 */
    gap: 30px; /* リストアイテム間の隙間設定 */
    padding: 30px auto; /* 上下の余白を設定 */
    align-items: flex-start;
    justify-content: start;
    text-align: left;
  }
}
