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

/* 共通設定 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  color: #000;
  padding: 0;
  margin: 0;
}

/* ===== セクション共通の上下余白（PC基準） ===== */
.concept,
.staff,
.menu,
.blog,
.style,
.recruit,
.brand,
.salon-carousel,
.access-section {
  padding-top: 80px;
  padding-bottom: 60px;
}

.access-section{
	padding-bottom: 0px;
}

@media (max-width: 768px) {
  .concept,
  .staff,
  .menu,
  .blog,
  .style,
  .recruit,
  .brand,
  .salon-carousel,
  .access-section {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  
	.access-section{
		padding-bottom: 0px;
	}
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ヘッダー */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #FFFFFF;
  flex-wrap: wrap;
  position: fixed;
  top:0;
  width:100%;
  z-index: 1000;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  font-size: 24px; /* デフォルト */
}

@media (max-width: 768px) {
  .logo {
    font-size: 20px; /* タブレット以下 */
  }
}

@media (min-width: 1200px) {
  .logo {
    font-size: 32px; /* デスクトップ大画面 */
  }
}

/* アイコン全体を横並びにする */
.sns-icons {
  display: flex;
  align-items: center; /* 高さを中央揃え */
  gap: 12px; /* アイコン間隔（お好みで） */
  margin-left: 10px;
}

/* Font Awesomeのアイコンサイズ */
.sns-icon i {
  font-size: 27px;     /* お好みで */
  color: #B98C7A;      /* お好みで */
}

/* 画像アイコンのサイズ調整 */
.sns-icon img {
  width: 38px;  /* インスタアイコンと同じくらいの幅 */
  height: auto; /* 自動調整 */
  display: block;
}

/* 新設：ヘッダー右側の並びを制御 */
.header-nav{
  display:flex;
  align-items:center;
  justify-content: flex-end;
  gap:15px;          /* ナビと予約ボタンの距離 */
  flex:1;
  width: 100%;
}

/* 均等ナビ（横幅いっぱいで等間隔） */
.nav{
  display:flex;
  justify-content:flex-end;  /* これで等間隔 */
  align-items:center;
  gap:15px;                          /* space-betweenで作るので0 */                         /* 余白を全部ナビに与える */
  margin:0;                       /* ← 650px は必ず消す！ */
}

.nav a{
  flex:unset;                 /* 各リンクの幅を同じに */
  text-align:center;
  text-decoration:none;
  padding:15px 0;
  letter-spacing:2px;
}

.nav a,
.nav a:visited,
.nav a:active {
  color:#57463C;           /* 好きな色 */
}
.nav a:hover{
  color:#B98C7A;           /* ホバー時の色 */
}

/* 予約ボタン */
.reserve-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background-color: #B98C7A;
  color:#fff; 
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 2px;
}

.reserve-button i {
  font-size: 16px;
}

@media (max-width: 600px) {
  .reserve-button {
    font-size: 12px;   /* フォント少し小さめ */
    gap: 4px;          /* アイコンとの間隔を詰める */
    padding: 6px 10px; /* コンパクトに */
  }
}

/*ハンバーがメニューここから*/
/* デスクトップではハンバーガーを隠す（既定） */
.hamburger{ display:none; }

/* ===== スマホだけでハンバーガー表示 & 全画面メニュー ===== */
@media (max-width: 900px){
  .hamburger{ display:grid; }          /* ← スマホで三本線を表示 */
  .nav{ display:none !important; }     /* ← PCナビは隠す（既にあれば不要） */


/* ボタンの見た目（共通） */
.hamburger{
  width:44px; height:36px; display:grid; place-items:center;
}
.hamburger span{ display:block; width:20px; height:2px; background:#B98C7A; }
.hamburger span+span{ margin-top:4px; }

/* ===== ここからスマホ用（PCは既存を維持） ===== */
@media (max-width: 900px){
  /* ヘッダーの並び：左から ロゴ→インスタ→予約→三本線（既存順のままでOK） */
  .header{
    display:flex; align-items:center; gap:10px; padding:10px 16px;
  }
  .header-left{ display:flex; align-items:center; gap:10px; }
  .reserve-button{ margin-left:auto; }       /* 予約を右寄せ */
  .hamburger{ display:grid; }                /* 三本線を表示 */

  /* PCの横並びナビは隠す（.nav が既存メニュー） */
  .nav{ display:none !important; }

  /* 全画面オーバーレイメニュー（開いたときだけ表示） */
  .menu-overlay{
    position:fixed; inset:0; z-index:50;
    display:flex; justify-content:center; align-items:flex-start;
    padding-top:72px;                     /* ヘッダー高さ分の余白 */
    background:#C49A87F2;                 /* ブランド色9割不透明 */
  }
  .menu-overlay ul{
    list-style:none; margin:0; padding:0; width:min(86vw,520px);
    border-top:1px solid rgba(255,255,255,.35);
  }
  .menu-overlay li{ border-bottom:1px solid rgba(255,255,255,.35); }
  .menu-overlay a{
    display:block; padding:16px 18px; color:#fff; text-decoration:none;
    font-size:18px; letter-spacing:.04em;
  }

  /* 背景の暗幕（タップで閉じる） */
  .menu-backdrop{
    position:fixed; inset:0; z-index:45; background:rgba(0,0,0,.25);
  }

  /* 初期は非表示（hidden 属性で制御） */
  .menu-overlay[hidden], .menu-backdrop[hidden]{ display:none; }
}

/* 開いた時に三本線を「×」に（お好みで） */
.menu-open .hamburger span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
.menu-open .hamburger span:nth-child(2){ opacity:0; }
.menu-open .hamburger span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }

/* スクロール固定 */
.no-scroll{ overflow:hidden; }

/* —— デスクトップでは三本線を非表示 —— */
.hamburger{ display:none; }

/* 三本線のデザイン（共通） */
.hamburger{
  width:44px; height:36px; display:grid; place-items:center;
  border:1px solid #fff;  background:#FFFFFF; cursor:pointer;
}
.hamburger span{ display:block; width:28px; height:2px; background:#B98C7A; }
.hamburger span+span{ margin-top:3px; }

  .menu-overlay{
    position:fixed; inset:0; z-index:50;
    display:flex; justify-content:center; align-items:flex-start;
    padding-top:72px;                   /* ヘッダー高さぶん余白 */
    background:#C49A87F2;              /* ベージュ90%不透明 */
  }
  .menu-overlay[hidden]{ display:none; }
  .menu-backdrop{ position:fixed; inset:0; z-index:45; background:rgba(0,0,0,.25); }
  .menu-backdrop[hidden]{ display:none; }

  .menu-overlay ul{
    list-style:none; margin:0; padding:0; width:min(86vw,520px);
    border-top:1px solid rgba(255,255,255,.35);
  }
  .menu-overlay li{ border-bottom:1px solid rgba(255,255,255,.35); }
  .menu-overlay a{
    display:block; padding:16px 18px; color:#fff; text-decoration:none;
    font-size:18px; letter-spacing:.04em;
  }

  /* ✖ 右上の閉じるボタン */
  .menu-close{
    position:fixed; top:14px; right:14px; z-index:60;
    width:40px; height:40px; border-radius:50%;
    border:1px solid rgba(255,255,255,.6);
    background:transparent; color:#fff; font-size:22px; line-height:1;
    display:grid; place-items:center; cursor:pointer;
  }
}

/* メニュー開時の三本線を X に変形（任意） */
.menu-open .hamburger span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
.menu-open .hamburger span:nth-child(2){ opacity:0; }
.menu-open .hamburger span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }

/* 背景スクロール固定 */
.no-scroll{ overflow:hidden; }


/* メインビジュアル */
/* PC・タブレット共通 ---------------- */
.main {
  position: relative;
  text-align: center;
  background-color: #F8F1EA;
  padding-top: 80px;        /* 固定ヘッダーぶんの余白（PC用） */
  overflow: hidden;
}

.main-image {
  width: 100%;
  height: auto;
  max-height: 80vh;         /* PCでは画面の8割くらいまで */
  object-fit: cover;
  display: block;
}

.main-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-align: center;
}

.main-text h2 {
  font-size: min(10vw, 120px);
  letter-spacing: 5px;
  font-weight: inherit;
}

.main-text p {
  font-size: min(4vw, 40px);
  letter-spacing: 5px;
}

/* スマホ：FVを画面いっぱいに ---------------- */
@media (max-width: 768px) {
  .main {
    height: 100svh;          /* 画面の高さいっぱい（iOSでも安定版） */
    padding-top: 0;          /* ヘッダーのぶんの余白を消す */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .main-image {
    width: 100%;
    height: 100%;
    max-height: none;        /* 80vh 制限を外す */
    object-fit: cover;       /* 切り取りで全画面にフィット */
  }

  .main-text h2 {
    font-size: 9vw;          /* スマホでは少し小さめに */
  }

  .main-text p {
    font-size: 4vw;
  }
}


/* === conceptセクションここから === */
.concept {
  color: #3a3a3a;
  padding: 60px 20px;
}

.concept__inner {
  max-width: 1100px;
  width: min(1100px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw ,40px);
  padding: clamp(16px, 3vw ,40px);
}

.concept__text {
  flex: 1 1 60%;
  text-align: left;
  line-height: clamp(1.5, 2vw ,1.9px);
  font-size: clamp(10.5px, 1.6vw ,16px);
  letter-spacing: 1.5px;
}

@media (max-width: 900px) {
  .concept_inner {
    position: relative;   /* 絶対配置の基準 */
    display: block;       /* 縦並びに */
    text-align: center;
  }

  .concept__text {
    position: relative;
    z-index: 2; /* ロゴより前面 */
	text-align: center;
	line-height: 1.8;
  }
}

/*スタッフここから*/
.staff {
  padding: 60px 5%;
  text-align: center;
  background-color: #FFFFFF;
}

.section-title {
  font-size: 20px;
  font-weight: normal;
  border-left: 2px solid #4C453F;
  padding-left: 10px;
  text-align: left;
  margin-bottom: 30px;
　letter-spacing: 2px;
  padding-left: 10px;
}

.staff-list {
  display: none;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.staff-list.active {
  display: flex;
}

.staff-item {
  width: 235px;
  height: auto;
  margin-top: 25px;
}

.staff-item img {
  width: 100%;
  display: block;
}

.staff-item p {
  margin-top: 10px;
  font-size: 15px;
}

/* === スマホだけタブ無効＋3列グリッド === */
@media (max-width: 900px) {
  /* タブボタンを非表示 */
  .staff-buttons { display: none; }

  /* 両リストを常に表示（JSの.activeを無視） */
  .staff-list {
    display: flex !important;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;                 /* 40pxだと詰まるので小さめに */
    margin-top: 12px;
  }

  /* 3列（上3つ・下3つ）にする */
  .staff-item {
    width: calc(33.333% - 11px); /* 3列用に幅調整（gapぶん差し引き） */
    margin-top: 0;                /* 余白はgapで管理 */
  }

  /* 画像を正方形で綺麗に収める */
  .staff-item img {
    width: 90%;
    aspect-ratio: 1 / 1;         /* 正方形に */
    object-fit: cover;           /* トリミングしてバランスよく */
    display: block;
  }

  /* 名前の文字サイズも少しだけ小さく */
  .staff-item p {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.2;
	align-items: center;
  }
}
	
/* === MENU セクション === */
/* MENU 全体 */
.menu {
  padding: 60px 5%;
  text-align: center;
  background-color: #F8F1EA;
}
	
.menu-image {
    width: 100%;
    max-width: 400px;      /* 写真の最大幅：調整OK */
    margin: 40px auto 50px; /* 上40 / 下50 の余白 */
    text-align: center;
}

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

/* カテゴリのボタン部分 */
.menu-toggle {
  width: 100%;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 2px;
  padding: 14px 10px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  color: #4C453F;
  border-bottom: 1px solid #d1c7be;
}

.menu-toggle .toggle-icon {
  font-size: 15px;
}

/* 開閉するコンテンツ */
.menu-content {
  display: none;
  padding: 20px 10px;
}

/* 1行ずつの料金行 */
.menu-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 13.5px;
  color: #333;
  border-bottom: 1px dotted #bbb;
}
	
.menu-note {
    margin-top: 20px;     /* 上の余白 調整OK */
    font-size: 12px;    /* 指定のフォントサイズ */
    line-height: 1.6;     /* 読みやすくする */
    color: #4C453F;       /* MENUと統一した落ち着いた色 */
}

.menu-price {
  margin-left: 20px;
  white-space: nowrap;
}


/*ブログここから*/
.blog {
  background-color: #FFFFFF;
  padding: 60px 5%;
}

.blog-title {
  font-size: 20px;
  font-weight: normal;
  color: #4C453F;
  margin-bottom: 30px;
  border-left: 2px solid #4C453F;
  padding-left: 10px;
  letter-spacing: 2px;
  font-family: sans-serif;
}

.blog-items {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.blog-item {
  flex: 1 1 200px;
  max-width: 200px;
  text-decoration: none;
  color: inherit;
  padding-left: 20px;
}

.blog-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  background-size: cover;
  display: block;
  transition: transform 0.4s ease;
  border-radius: 5px;
}

.square-img{
	aspect-ratio:1/1;
	object-fit: cover;
	width: 100%;
	height: auto;
}


.blog-date {
  font-size: 14px;
  color: #3a3a3a;
  margin-top: 20px;
}

.blog-text {
  font-size: 16px;
  color: #3a3a3a;
  margin-top: 4px;
  letter-spacing: 2px;
}
/*ブログここまで*/

/* PCでのみホバーズーム */
@media (hover: hover) and (pointer: fine) {
  .blog-image:hover {
    transform: scale(1.05);
  }
}


/*スタイルここから*/
.style {
  padding: 60px 5%;
  text-align: center;
  background-color: #F8F1EA;
}

.section-title {
  font-size: 20px;
  font-weight: normal;
  color: #4C453F;
  text-align: left;
  border-left: 2px solid #4C453F;
  padding-left: 10px;
  margin-bottom: 30px;
  letter-spacing: 2px;	
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-bottom: 40px;
}

.style-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
  overflow: hidden;
}

/* 拡大アニメーション */
.style-img:hover {
  transform: scale(1.05);
}

.style-viewmore-button {
  display: inline-flex;           /* アイコンとテキストを横並びに */
  align-items: center;           /* 縦中央揃え */
  gap: 8px;                      /* アイコンと文字の間隔 */
  background-color: #B98C7A;     /* ボタンの背景色 */
  color: #F4EFEC;                /* テキスト色 */
  padding: 10px 30px;
  text-decoration: none;
  border-radius: 3px;
  font-size: 16px;
  transition: background-color 0.3s ease;
  letter-spacing: 2px;
  font-weight: normal;
}

.style-viewmore-button:hover {
  background-color: #D6B8AB;
}

.style-viewmore-button .icon {
  font-size: 18px;   /* アイコンの大きさ */
  line-height: 1;
}

/* ========= ボタンのレスポンシブ調整 ========= */
@media (max-width: 768px) {
  .style-viewmore-button {
    font-size: 13px;       /* 16px → 13px に小さく */
    padding: 8px 18px;     /* 横幅も少しコンパクトに */
    gap: 6px;              /* アイコンとの隙間も少し詰める */
  }
}

/*採用ここから*/
.recruit {
  padding: 60px 5%;
  text-align: center;
  background-color: #FFFFFF;
}

.section-title {
  font-size: 20px;
  font-weight: normal;
  border-left: 2px solid #4C453F;
  padding-left: 10px;
  text-align: left;
  margin-bottom: 30px;
  font-family: sans-serif;
}

.recruit-banner img {
  width: 100%;               /* 親に対して100%で拡大縮小 */
  max-width: 900px;	
  height: auto;
  display: block;
  margin: 0 auto;
  transition: opacity 0.3s ease;
}

.recruit-banner img:hover {
  opacity: 0.85;
}

.viewmore-button {
  display: inline-flex;           /* アイコンとテキストを横並びに */
  align-items: center;           /* 縦中央揃え */
  gap: 8px;                      /* アイコンと文字の間隔 */
  background-color: #B98C7A;     /* ボタンの背景色 */
  color: #F4EFEC;                /* テキスト色 */
  padding: 10px 30px;
  text-decoration: none;
  border-radius: 3px;
  font-size: 16px;
  transition: background-color 0.3s ease;
  letter-spacing: 2px;
  font-weight: normal;
  margin-top: 30px;
}

.viewmore-button:hover {
  background-color: #D6B8AB;
}

.viewmore-button .icon {
  font-size: 18px;   /* アイコンの大きさ */
  line-height: 1;
}

	/* ========= ボタンのレスポンシブ調整 ========= */
@media (max-width: 768px) {
	.viewmore-button {
    font-size: 13px;       /* 16px → 13px に小さく */
    padding: 8px 18px;     /* 横幅も少しコンパクトに */
    gap: 6px;              /* アイコンとの隙間も少し詰める */
  }
	}


/*ブランドここから*/
.brand {
	padding: 60px 5%;
	text-align: center;
	background-color: #F8F1EA;
}

.section-title{
	font-size: 20px;
	font-weight: normal;
	border-left: 2px solid #4C453F;
	padding-left: 10px;
	text-align: left;
	margin-bottom: 30px;
}

.slider {
  position: relative;
  max-width: clamp(280px, 90vw, 700px);
  width: 100%;
  height: auto;
  margin: 0 auto;
  overflow: visible;
  border-radius: 4px;
}

.slides {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide {
  min-width: 100%;
  height: auto;
  display: none;
}

.slide.active {
  display: block;
  width: 100%;
}


.dots {
  margin-top: 15px;
  text-align: center
}

/* 矢印本体 */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
}

/* ← → の線（細い三角形風にする） */
.arrow-line {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(-135deg);
  transition: 0.3s;
}

.arrow.right .arrow-line {
  transform: rotate(45deg);
}

.arrow.left {
  left: -40px;  /* スライドの外に出す */
}

.arrow.right {
  right: -40px;
}

/* スマホ用に小さくする */
@media (max-width: 768px) {
  .arrow-line {
    width: 12px;   /* 矢印の横幅を小さく */
    height: 12px;  /* 矢印の縦幅を小さく */
    border-top: 2px solid #333;
    border-right: 2px solid #333;
  }

  .arrow.left {
    left: -25px;   /* 位置も調整（小さくした分だけ内側に寄せる） */
  }

  .arrow.right {
    right: -25px;
  }
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 5px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  margin-bottom: 15px;
}

.dot.active {
  background-color: #5c4226;
}

.thumbnails{
  margin-top: 18px;
  display: grid;
  grid-auto-flow: column;                      /* 横方向に並べる */
  grid-auto-columns: clamp(90px, 20vw, 160px); /* 1枚ぶんの幅を可変に */
  justify-content: center;                     /* 全体を中央寄せ */
  column-gap: 20px;                            /* ★サムネ同士の隙間 */
  padding-inline: clamp(12px, 4vw, 32px);      /* 左右にゆとりを追加 */
}

.thumb{ 
  all: unset; 
  cursor: pointer; 
}

.thumb img{
  width: 100%;
  height: auto;
  display: block;   /* 下の余白を消す */
}

/* ===== ブランド スライダー：スマホレイアウト ===== */
@media (max-width: 768px) {
  .slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;          /* 矢印とドットの間隔 */
    margin-top: 14px;
  }

  /* ドットは行の真ん中 */
  .dots {
    margin: 0;
  }

  /* 矢印ボタンを小さく＆その場配置 */
  .arrow {
    position: static;   /* 絶対配置をやめる */
    width: 24px;
    height: 24px;
    padding: 0;
  }

  .arrow-line {
    width: 12px;
    height: 12px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
  }
}

@media (max-width: 768px) {

  /* 矢印の位置を通常配置に戻す */
  .arrow {
    position: static;
    transform: none;
  }

  /* 矢印＋ドットをまとめて横並び */
  #brand .slider {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #brand .dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 10px;
  }

  /* 矢印サイズをスマホ用に小さく */
  .arrow-line {
    width: 14px;
    height: 14px;
  }

  /* 矢印をドットの左右へ配置 */
  .arrow.left,
  .arrow.right {
    margin: 0 10px;
  }

}

/*美容院内装*/
.salon-carousel {
  overflow: hidden;
  width: 100%;
  padding: 0;
}

.carousel-track {
  display: flex;
  animation: scrollLoop 40s linear infinite;
}

.carousel-track img {
  width: clamp( 200px, 30vw, 300px); /* 適宜調整 */
  height: auto;
  margin-right: 10px;
  flex-shrink: 0;
}

/* アニメーション */
@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.access-section {
  text-align: left;
  background-color: #f9f9f9;
}

.map-full{
	width: 100vw; /*ビューポート幅100%*/
	margin: 0 auto;
	overflow: hidden;
	margin-left: calc(-50vw+50%);
}

.map-full iframe {
  width: 90%;
  height: 350px;
  border: none;
  display: block;
  margin: 0 auto;
}



.footer-nav {
  background-color: #5F4E3E;
  padding: 30px 20px;
}

.shop-access-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.shop-image img {
  width: 300px;
  height: auto;
  border-radius: 4px;
}

.shop-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 14px;
  color: #57463C;
}

.access-info p,
.business-hours p {
  padding-top: 2px;
  font-weight: normal;
  letter-spacing: 2px;
}

.access-info h3, 
.business-hours h3{
	font-weight: normal;
	padding-top: 6px;
}

/*アクセスレスポンシブここから*/

/* ここからスマホ・タブレット向け */
@media (max-width: 900px){
  .shop-access-wrap{
    flex-wrap: nowrap;           /* 折り返さない＝常に横並び */
    justify-content:flex-start;  /* 左から並べる（好みでcenterでもOK） */
    gap:16px;                    /* 余白を少し詰める */
  }

  .shop-image{ 
    flex:0 0 auto;               /* 画像のボックスは縮むが潰れない */
  }

  .shop-image img{
    /* 画面幅に応じて小さくなる可変幅に変更 */
    width: clamp(120px, 38vw, 260px);
    height:auto;
    display:block;
  }

  .shop-info{
    flex:1 1 0;                  /* 右側テキストを残り幅いっぱいに */
    min-width:0;                 /* はみ出し防止 */
    font-size:13px;
    line-height:1.7;
    word-break: break-word;      /* 長い住所のはみ出し対策 */
  }

  .access-info p,
  .business-hours p{
    padding-top:2px;
    margin:0;                    /* 行間だけで詰める */
  }

  .access-info h3,
  .business-hours h3{
    font-weight:normal;
    padding-top:6px;
    margin:0 0 2px;
  }
}
/* ====== ACCESS ブロック共通（PC含む） ====== */
.shop-access-wrap{
  display:flex;
  gap:24px;
  align-items:center;         /* 画像の上端とテキストを揃える */
  justify-content:center;         /* 中央寄せ */
  flex-wrap:nowrap;               /* 常に横並びに固定 */
  width: min(92vw, 820px);        /* 端末中央に収まる幅 */
  margin: 32px auto;              /* 画面中央に配置 */
}

.shop-image{ flex:0 0 auto; }
.shop-image img{
  display:block;
  width: 300px;                   /* PC基準 */
  height:auto;
  border-radius:4px;
}

.shop-info{
  flex:1 1 auto;
  min-width:0;                    /* はみ出し防止 */
  color:#57463C;
}

/* ====== スマホ・タブレット（横並び維持しつつ中央＆小さめ文字） ====== */
@media (max-width: 900px){
  .shop-access-wrap{
    width: min(92vw, 560px);      /* ブロック自体をコンパクトに中央配置 */
    gap:14px;
	align-items: center;
	 justify-content: center;
  }

  .shop-image img{
    /* 画像も可変で小さく。最少110px / 目標34vw / 最大200px */
    width: clamp(110px, 34vw, 200px);
  }

  .shop-info{
    font-size:12px;               /* 本文サイズを小さく */
    line-height:1.4;
  }

  /* 見出し（ACCESS/TELL/OPEN/CLOSE）をさらに控えめに */
  .access-info h3,
  .business-hours h3{
    font-size:12px;
    font-weight:normal;
    margin: 0 0 2px;
    letter-spacing: .02em;
  }

  /* 住所や時間の本文 */
  .access-info p,
  .business-hours p{
    font-size:12px;
    margin: 0 0 2x;
    letter-spacing: .02em;
    word-break: break-word;       /* 長い住所対策 */
  }
}

/* フッター全体 */
.site-footer {
  background: #B98C7A; /* ←変更した背景色 */
  color: #F4EFEC;      /* 文字色は今まで通り */
  padding: 28px 5% 32px;
}

/* ナビリンク */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  letter-spacing: 2px;
}

/* アイコン */
.footer-icons {
  display: flex;
  justify-content: center;
  margin-top: 14px;
  gap: 16px;
  align-items: center;
}

.inst-icon {
  color: #F4EFEC;
  font-size: 27px;
  text-decoration: none;
}

.footer-icons img {
  width: 38px;
  height: auto;
  display: block;
}

/* コピーライト */
.site-footer .copyright {
  margin: 12px 0 0;
  text-align: center;
  font-size: 12px;
  color: #F4EFEC;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .footer-links {
    gap: 20px;
  }
}

/* フッターの帯を消す：背景・影・枠をリセット */
.footer-nav,
.footer-links,
.footer-links li,
.footer-links a {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* ナビ本体はフレックスで並べるだけ */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* アンカーはテキストだけにする（クリック領域は少しだけ余白） */
.footer-links a {
  color: inherit;
  text-decoration: none;
  letter-spacing: 2px;
  padding: 6px 0; /* ここは好みで */
}