body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #ffffff; /* 背景色 */
}
/* ヘッダーのスタイル */
.header {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* 要素全体を右寄せ */
  padding: 20px 0;
  background-color: #ffffff;
}

/* ロゴのスタイル */
.logo {
  width: 100px;
  margin-bottom: 5px;
  margin-right: 780px; /* ロゴを右に寄せる */
  margin-top: 50px; /* 上からの余白を追加して下に移動 */
}

/* ロゴのスタイル */
.logo {
  width: 100px;
  margin: 50px auto 5px auto; /* 上下の余白を調整し中央揃え */
  display: block; /* ロゴを中央揃え */
}

/* タイトルのスタイル */
.store-title {
  font-size: 1.5em;
  color: #333333;
  margin: 10px auto; /* 上下の余白を調整し中央揃え */
  position: relative;
  text-align: center; /* タイトルとラインを中央揃え */
  display: inline-block; /* 中央揃えのための調整 */
}

/* タイトルラインのスタイル */
.store-title::before,
.store-title::after {
  content: ""; /* 空のコンテンツでラインを表示 */
  position: absolute;
  top: 50%; /* タイトルの垂直中央に配置 */
  width: 50px; /* ラインの長さ */
  height: 2px; /* ラインの太さ */
  background-color: #86d1ff; /* ラインの色 */
}

.store-title::before {
  left: -60px; /* タイトルの左側に配置 */
}

.store-title::after {
  right: -60px; /* タイトルの右側に配置 */
}





/* 縦型メニュー */
.vertical-menu {
  display: flex;
  flex-direction: column; /* 縦に並べる */
  justify-content: flex-start; /* 上部揃え */
  align-items: center;
  position: fixed; /* スクロール時に追従 */
  top: 120px; /* ヘッダーからの距離 */
  right: 20px; /* 右端からの距離 */
  padding: 20px;
  width: 150px; /* 固定幅 */
  background-color: transparent; /* 背景を透明に */
  box-shadow: none; /* 影を消す */
  z-index: 1000; /* 他の要素より前に表示されるように */
}




/* シャボン玉 */
.bubble {
  width: 100px;
  height: 100px;
  background-color: #ffffff;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  flex-direction: column; /* 縦方向 */
  justify-content: center;
  align-items: center;
  border-radius: 50%; /* 丸くする */
  margin-bottom: 20px; /* 間隔 */
  transition: transform 0.3s, background-color 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.bubble:hover {
  transform: scale(1.1); /* ホバー時に拡大 */
  background-color: #a6d1fe; /* 色変更 */
}

/* 英語テキスト */
.bubble .english {
  font-size: 10px; /* 小さめの文字サイズ */
  color: #aaa; /* 薄いグレー */
  font-weight: normal;
  margin-top: 5px; /* 日本語との間隔 */
}
/* 店舗紹介コンテナ */
.store-container {
  display: flex;
  justify-content: center; /* 横並びで中央揃え */
  align-items: center; /* 縦方向も中央揃え（必要であれば） */
  gap: 20px; /* 各店舗カードの間隔 */
  margin-top: 30px; /* 他の要素からの余白 */
  padding: 0 20px; /* サイドに少し余白 */
  flex-wrap: wrap; /* 小さい画面では折り返し */
  /* margin-left: -130px; 削除 */
}

/* 店舗紹介カード */
.store-card {
  border: 2px dotted #ccc; /* グレーの点線枠 */
  padding: 20px;
  width: 280px; /* カードの幅を設定 */
  border-radius: 8px; /* 角を少し丸く */
  text-align: center;
  background-color: #f9f9f9; /* 背景色を薄いグレーに */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 影を追加して立体感を出す */
}


.store-card h3 {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 10px;
}

.store-card p {
  font-size: 1em;
  color: #666;
  margin-bottom: 10px;
  font-weight: bold;
}

/* サービスリストのスタイル */
.service-list {
  list-style-type: disc; /* 箇条書きのディスク */
  padding-left: 20px; /* 左に余白を設けて内側に揃える */
  text-align: left; /* 左揃えにして整える */
}

.service-list li {
  font-size: 0.9em;
  color: #666;
  line-height: 1.5; /* 行間を調整して読みやすく */
  margin-bottom: 5px;
}

.ribbon-line {
  width: 60%; /* 幅を調整 */
  position: relative;
  background-color: #86d1ff;
  height: 3px;
  margin: 70px auto; /* 上下の余白と中央揃え */
}

/* 両端の丸 */
.ribbon-line::before,
.ribbon-line::after {
  content: "";
  position: absolute;
  top: -5px;
  width: 10px;
  height: 10px;
  background-color: #86d1ff;
  border-radius: 50%;
}

/* 左の丸 */
.ribbon-line::before {
  left: -10px; /* ライン左端に配置 */
}

/* 右の丸 */
.ribbon-line::after {
  right: -10px; /* ライン右端に配置 */
}


.store-detailsd {
  display: flex;
  align-items: flex-start;
  width: 80%;
  margin: 20px auto;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.photo-container {
  display: flex;
  flex-direction: column;
  margin-right: 20px;
}

.store-photo {
  width: 200px;
  height: auto;
  border-radius: 8px;
  margin-top: 40px; /* メイン写真を下にずらす */
}

.store-photo-group {
  display: flex;
  gap: 10px;
  margin-top: 20px;  /* 追加写真間の余白 */
  margin-left: 10px; /* 追加写真全体を右にずらす */
}

.store-photo-small {
  width: 80px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* テキストと地図のコンテナ */
.content-container {
  display: flex;
  gap: 20px; /* テキストと地図の間の余白 */
  width: 100%;
}

.text-content {
  width: 48%; /* テキストの幅を調整 */
}

.map-container {
  width: 38%; /* 地図の幅を調整 */
  height: 300px; /* 地図の高さを設定 */
  border-radius: 8px;
  overflow: hidden;
  transform: translateX(-80px) translateY(20px); /* 左に80px、下に10pxずらす */
}

.note-text {
  color: #999; /* 薄いグレー */
  font-size: 0.9em; /* 少し小さめの文字サイズ */
  margin-left: 10px; /* ボタンとの間に余白を追加 */
  vertical-align: middle; /* テキストをボタンと同じ高さに揃える */
}

.detail-button {
  display: inline-block;
  padding: 8px 16px;
  margin-top: 10px;
  background-color: #86d1ff; /* ボタンの色 */
  color: white;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}
.detail-button:hover {
  background-color: #5fb8e3; /* ホバー時の色 */
}

/* ページの左右に縦ラインを追加 */
.vertical-line {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 30px; /* ラインの幅 */
  background-image: linear-gradient(to bottom, rgb(253, 203, 159) 20%, lightblue 80%); /* 可愛い色合い */
  background-size: cover;
  z-index: 10;
}

.vertical-line.left {
  left: 0; /* 左端 */
}

.vertical-line.right {
  right: 0; /* 右端 */
}