@charset "UTF-8";
/*全ページ共通のカスタムスタイル*/
/*Bootstrapのカスタムスタイル*/
/*1カラムレイアウト用*/
/*ナビバー〜ヘッダー（ページタイトル）〜パンくず*/
/*メイン部分はページごとに異なる*/
/*スライダー*/
/*フッター*/
/*レスポンシブ*/

html, body {
  height: 100%;
  margin: 0;
}

/* ページ全体 */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background-color: white;
}

/* page-wrapperより外の左右背景装飾 */
.side-background {
  position: fixed;
  top: 0;
  bottom: 0;
  width: calc((100vw - 1366px) / 2);
  background-image: url('../img/general/bg01_200-900.jpg');
  background-repeat: repeat;
  background-size: 200px 900px;
  z-index: 0;
  pointer-events: none;
}

.side-background.left {
  left: 0;
}
.side-background.right {
  right: 0;
}

/* メイン */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ナビバーのスタイル */
.navbar {
  height: 52px;
  background-color: #4d5e86;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
}

.navbar-toggler {   /* ナビバーのハンバーガーボタン */
  height: 38px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-toggler-icon {
  width: 1.5em;
  height: 1.5em;
}
.navbar a {   /* ナビバーのリンクのアピアランス */
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.navbar a:hover,
.navbar a:focus {
  color: #fffa9d; /* 淡いグレー */
  font-weight: bold;
  text-decoration: none;
}

.navbar a.active {
  color: #ffc107; /* 黄色アクセント */
  font-weight: bold;
}

.navbar-brand {
  font-size: 1.25rem;
  margin-right: 0;
  white-space: nowrap;
}

.navbar-nav {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.nav-item {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.nav-link {
  padding: 0.5rem 1rem;
  white-space: nowrap;
}

/* ヘッダーとナビバーの間隔を0に */
header {
  padding-top: 56px; /* Adjust based on your navbar height */
}

/* =========================
   ヘッダー
========================= */
header {
  padding: 1rem 0;
  background-color: #f8f9fa;
}

/* =========================
   ヘッダーのタイトル文字
========================= */
/* Base font size */
.top-title {
  font-size: 1.5rem; /* 24px */
  line-height: 1.4;
  font-weight: bold;
  font-family: 'M PLUS Rounded 1c', 'Hiragino Maru Gothic ProN', 'ヒラギノ丸ゴ ProN W4', 'Meiryo UI', 'Meiryo', sans-serif;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .top-title {
    font-size: 1.75rem; /* 28px */
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .top-title {
    font-size: 2rem; /* 32px */
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .top-title {
    font-size: 2.25rem; /* 36px */
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .top-title {
    font-size: 2.5rem; /* 40px */
  }
}

/* =========================
   ヘッダーのタイトル文字の改行調整
========================= */
.top-title span {
    display: inline-block;
    } 

/* =========================
   ナビゲーションアイテムの行の高さを調整
========================= */
.navbar-nav {
  align-items: center; /* 垂直方向の中央揃え */
}

.nav-item {
  display: flex;
  align-items: center; /* テキストを垂直方向に中央揃え */
}

/* セパレータの位置調整*/
.navbar-nav .nav-item:not(:last-child)::after {
  content: "|";
  color: rgba(255, 255, 255, 0.5);
  padding: 0 0.5rem;
  pointer-events: none;
  line-height: 1; /* 行の高さをリセット */
  height: 1em; /* 高さをテキストに合わせる */
  display: flex;
  align-items: center; /* 垂直方向の中央揃え */
} 


/* =========================
   パンくず
========================= */
.breadcrumb {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.breadcrumb-item {
  padding: 0.25rem 0.5rem;
}

.breadcrumb-item a {
  color: #7b7b7b;
}

/* =========================
   スライダー
========================= */
.slider-wrapper {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  border-radius: 0px;
  background: #d3d3d3;
  box-sizing: border-box;
/*左端・右端のスナップ暴れ防止*/
  scroll-padding-left: 50%;
  scroll-padding-right: 50%;
}


.slider {
  display: flex;
  gap: 0.2rem;
  padding: 0.2rem ;
  /* padding-left: 50%; */
  scroll-padding: 0 50%;
}

.slider img {
  height: 80px;     /* ←これが基準の高さ〜スマホベースにする */
  width: auto;       /* ←縦横比維持 */
  object-fit: cover;
  border-radius: 0px;
  scroll-snap-align: center;   /* ←スライド後に中央で止まる */
  background: #9d9d9d;
}

/* =========================
   スライダーのブレイクポイント調整（Bootstrap基準）
========================= */

/* XS（スマホ縦）：3枚表示相当 */
@media (max-width: 575.98px) {
  .slider img {
    height: 80px;  /* ←ここを変更 */
    width: auto;
  }
}

/* SM（スマホ横〜タブレット）：3枚表示相当 */
@media (min-width: 576px) and (max-width: 991.98px) {
  .slider img {
    height: 100px;  /* ←ここを変更 */
    width: auto;
  }
}

/* LG（PC）：5枚表示相当 */
@media (min-width: 992px) {
  .slider img {
    height: 120px;  /* ←ここを変更 */
    width: auto;
  }
}

/* XXL（大画面）：7枚表示相当 */
@media (min-width: 1200px) {
  .slider img {
    height: 80px;  /* ←ここを変更 */
    width: auto;
  }
}

/* =========================
   お店紹介ページの背景画像
========================= */
.shop-bg {
  background-image: url('../img/general/bg_L_1920.png');
  background-repeat: repeat-y;
  background-size: 100%;
}
.card {
border: none;
box-shadow: #c4c4c4 2px 2px 10px; 
}

/* =========================
   フッター
========================= */
footer {
  height: 100px;
width: 100%;
 max-width: 1366px;
 margin: 0 auto;
  background-color: #f1f1f1;
}
.footer-menu {
    font-size: 0.9rem;
    margin-left: 20px;
}
.copyright {
    font-size: 0.8rem;
}

/* =========================
   丸文字タイトル
========================= */
.round-title {
  font-weight: bold;
  font-family: 'M PLUS Rounded 1c', 'Hiragino Maru Gothic ProN', 'ヒラギノ丸ゴ ProN W4', 'Meiryo UI', 'Meiryo', sans-serif;
}
/* =========================
   リード文
========================= */
.lead {
  font-weight: regular;
  font-size: 1.2rem;
  font-family: sans-serif;
  color: #333;
}
/* =========================
   サブメニュー（リスト）の表示設定
========================= */
.sub-menu {
  font-size: 0.9rem;
  line-height: 1.4rem;
  border: 1px solid #dee2e6; /* 1px light gray border */
  border-radius: 0.25rem; /* Optional: adds rounded corners */
  padding: 0.5rem; /* Optional: adds some padding inside the border */
}
.sub-menu ul{
  padding-left: 1rem;
}
.sub-menu li{
  padding-top: -1px;
  padding-bottom: -1px;
}
/* サブメニューのタイトル文字の改行調整 */
.sub-menu span {
    display: inline-block;
    } 
/* カード内のタイトル文字の改行調整 */
.card span {
    display: inline-block;
    } 

/* =========================
   Link Menu 1
========================= */
.linkmenu-1 {
  background-color: #f8f9fa;
}
.linkmenu-1 .nav-link {
  color: #212529;
  transition: all 0.2s ease;
  padding: 0.5rem 1rem;
  display: block; /* 追加: リンクをブロック要素に */
  width: 100%;    /* 追加: 幅を親要素いっぱいに */
}
.linkmenu-1 .nav-item {
  width: 100%;    /* 追加: メニュー項目を親要素いっぱいに */
}
.linkmenu-1 .nav-link:hover,
.linkmenu-1 .nav-link:focus {
  color: #324d75;
  background-color: #f5f583;
  text-decoration: none;
}
.linkmenu-1 .nav-link.active {
  color: #0d6efd;
  font-weight: bold;
}
/* =========================
   Navbarのレスポンシブ対応
========================= */
/* 992px未満のスタイル */
@media (max-width: 991.98px) {
  .navbar-toggler {
    display: block;
  }
  
  .navbar-collapse {
    display: none !important;
  }
  
  .navbar-collapse.show {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    background-color: #325271;
    padding: 0.2rem;
    margin: 0.5rem -1rem;
    border-radius: 0.25rem;
    box-shadow: none;
  }
  
  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    background-color: #eee;
    border-radius: 0.25rem;
    overflow: hidden;
    width: 100%;
  }
  
  .nav-item {
    width: 100%;
    border-bottom: 1px solid #e9ecef;
  }
  
  .nav-link {
    padding: 0.75rem 1.5rem;
    width: 100%;
    color: #324d75 !important;
    transition: background-color 0.2s;
  }
  
  .nav-link:hover,
  .nav-link:focus {
    background-color: #f5f583;
    color: #324d75;
    text-decoration: none;
  }
  
  /* セパレータを非表示 */
  .nav-item::after {
    display: none !important;
  }
}

/* 992px以上のスタイル */
@media (min-width: 992px) {
  .navbar-toggler {
    display: none;
  }
  
  .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  
  .navbar-nav {
    flex-wrap: nowrap;
  }
  
  .nav-item:not(:last-child)::after {
    content: "|";
    color: rgba(255, 255, 255, 0.5);
    padding: 0 0.5rem;
    pointer-events: none;
  }
}

/* 共通のナビゲーションスタイル */
.navbar-nav {
  align-items: center;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.nav-item {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.nav-link {
  padding: 0.5rem 1rem;
  white-space: nowrap;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.navbar a:hover,
.navbar a:focus {
  color: #fffa9d;
  font-weight: bold;
  text-decoration: none;
}

.navbar a.active {
  color: #ffc107;
  font-weight: bold;
}
/* ドロップダウンメニューのスタイル調整 */
@media (max-width: 991.98px) {
  .navbar-collapse {
    position: absolute;
    right: 1rem;
    top: 100%;
    width: auto !important;
    min-width: 200px;
    max-width: calc(100% - 2rem);
  }

  .navbar-collapse.show {
    display: flex !important;
    flex-direction: column;
    width: auto !important;
    min-width: 200px;
    margin: 0;
  }
  
  .navbar-nav {
    width: auto !important;
    min-width: 100%;
  }
  
  .nav-item {
    white-space: nowrap;
  }
}
/* 改行関連 */
/*◆全インデント1字下げの指定*/
.indentplus{
	padding-left:1em;
}

/*◆全インデント4字下げの指定*/
.indentplus4{
	padding-left:4rem;
}

/*◆行頭以外1字下げの指定*/
.ichijisage{
padding-left:1em;
text-indent:-1em;
}

/*◆行頭1字、行頭以外2字下げの指定*/
.nijisage{
padding-left:2em;
text-indent:-1em;
}

/*◆行頭以外3字下げの指定*/
.sanjisage{
	padding-left:3em;
	text-indent:-3em;
	}

/*◆行頭以外4字下げの指定*/
.yojisage{
	padding-left:4em;
	text-indent:-4em;
	}

  /*◆行頭2字、行頭以外3字下げの指定*/
.niji-sanjisage{
padding-left:3em;
text-indent:-1em;
}

/* 改行関連終了 */

/* font-size */
.fs-08 {
	font-size: 0.8rem;
} 

.banner-img {
  max-width: 200px;
  height: auto;
}
