.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.facility-thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(3, 255px);
  gap: 5px;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.facility-thumbnail-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.facility-thumbnail-container {
  position: relative;
  width: 100%;
  max-width: 800px;
}

.facility-thumbnail {
  width: 100%;
  /* はみ出た部分を隠すよ */
  overflow: hidden;
}

.facility-thumbnail-image {
  width: 255px;
  height: 115px;
  object-fit: cover;
  /* ふわっとした動きに */
  transition: transform 0.3s ease;
}

.facility-thumbnail-image:hover {
  transform: scale(1.05);
}

.facility-thumbnail-member {
  position: absolute;
  right: -15px;
  top: 65px;
  transform: translateY(-50%);
  width: 170px;
  height: 110px;
}

.facility-thumbnail-member-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 顔が中心になるように位置調整 */
  object-position: center 5%;
}

/* 温泉写真のコンテナ要素 */
.facilitiy-contents-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 80px;
  width: 100%;
  text-align: center;
}

.facility-name-stamp-container {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.facility-name-stamp {
  width: 80px;
  margin-right: 10px;
}

.facility-name-container {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 5px;
}

.facility-name-section {
  color: var(--moonstone);
  font-family: var(--font-family-line_seed_jp_otf-bold);
  font-size: 40px;
  letter-spacing: 15px;
}

.stamp-member-text {
  color: var(--black);
  font-family: var(--font-family-line_seed_jp_otf-regular);
  font-size: 22px;
  line-height: normal;
}

.facility-member-container {
  display: flex;
  justify-content: center;
}

.facility-member-image {
  width: 350px;
}

.fukidashi-container {
  position: relative;
}

.speech-bublle {
  background-color: var(--white);
  border: 5px solid;
  border-radius: 40px;
  width: 406px;
  height: 200px;
  padding: 15px;
  margin-bottom: 12px;
}

.fukidashi-pos {
  position: absolute;
  top: 100px;
  left: -25px;
}

.fukidashi-triangle {
  width: 27px;
  height: 27px;
  position: absolute;
}

.fukidashi-triangle-white-left {
  left: 8px;
  /* 左向きの白三角は反転 */
  transform: scaleX(-1);
}

.fukidashi-triangle-base-right {
  left: 429px;
}

.fukidashi-triangle-white-right {
  left: 421px;
}

.favourite-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

/* おすすめ入浴方法 */
.favourite-caption {
  font-family: var(--font-family-line_seed_jp_otf-bold);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 16px;
  text-align: center;
}

.favorite-method-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 100%;
  border-bottom: solid 3px;
  /* 下線を下げる */
  padding-bottom: 2px;
}

.favorite-icon {
  width: 25px;
}

.favorite-method {
  font-family: var(--font-family-line_seed_jp_otf-bold);
  font-size: 20px;
  letter-spacing: 1.5px;
}

.speech-bublle-text {
  height: 124px;
  display: flex;
  align-items: center;
  text-align: start;
  color: var(--black);
  justify-content: center;
  font-family: var(--font-family-line_seed_jp_otf-regular);
  font-size: 15px;
  letter-spacing: 0;
  line-height: normal;
}

.activity-button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 「ポストカードがもらえます」テキスト */
.activity-text {
  color: var(--black);
  font-family: var(--font-family-line_seed_jp_otf-bold);
  font-size: 24px;
  line-height: 32px;
}

/* 詳しい体験内容はこちらボタン */
.activity-button {
  border: none;
  border-radius: 22px;
  height: 45px;
  width: 380px;
  cursor: pointer;
  position: relative;
  margin-top: 12px;
}

.activity-button:hover {
  transition: 0.3s;
  opacity: 0.7;
}

/* 「詳しい体験内容はこちら」ラベル */
.activity-button-label {
  color: var(--white);
  font-family: var(--font-family-line_seed_jp_otf-bold);
  font-size: 18px;
  letter-spacing: 1px;
}

.activity-arrow {
  position: absolute;
  right: 15px;
  top: 15px
}

.facility-image-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 12px 0;
}

.facility-image {
  width: 190px;
  height: 90px;
  object-fit: cover;
}

.facility-info-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.facility-info-block-container {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
}

.facility-info-block {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--chicago);
  width: 100px;
  height: 25px;
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-family-line_seed_jp_otf-regular);
  font-size: 14px;
  margin-left: 8px;
}

.facility-info-text {
  color: var(--black);
  font-family: var(--font-family-line_seed_jp_otf-regular);
  font-size: 15px;
}

/* 詳しい体験内容はこちらボタンカラー 千歌ちゃん */
.activity-button-chika {
  background-color: var(--chika);
}

/* 詳しい体験内容はこちらボタンカラー 梨子ちゃん */
.activity-button-riko {
  background-color: var(--riko);
}

/* 詳しい体験内容はこちらボタンカラー 果南ちゃん */
.activity-button-kanan {
  background-color: var(--kanan);
}

/* 詳しい体験内容はこちらボタンカラー ダイヤちゃん */
.activity-button-dia {
  background-color: var(--dia);
}

/* 詳しい体験内容はこちらボタンカラー 曜ちゃん */
.activity-button-you {
  background-color: var(--you);
}

/* 詳しい体験内容はこちらボタンカラー 善子ちゃん */
.activity-button-yoshiko {
  background-color: var(--yoshiko);
}

/* 詳しい体験内容はこちらボタンカラー 花丸ちゃん */
.activity-button-hanamaru {
  background-color: var(--hanamaru);
}

/* 詳しい体験内容はこちらボタンカラー 鞠莉ちゃん */
.activity-button-mari {
  background-color: var(--mari);
}

/* 詳しい体験内容はこちらボタンカラー ルビィちゃん */
.activity-button-ruby {
  background-color: var(--ruby);
}

/* ↓↓↓ アクティビティモーダル関連のスタイル ↓↓↓ */
/* モーダルのオーバーレイ */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* モーダルダイアログのスタイル */
.modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background-color: rgba(0, 0, 0, 0.8);
  padding: 30px;
  border-radius: 15px;
  width: 760px;
  height: 550px;
  overflow-y: auto;
  z-index: 1001;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
}

.modal-content.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.activity-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* モーダルを閉じるボタンのスタイル */
.close-button-container {
  cursor: pointer;
  position: absolute;
  right: 60px;
  top: 20px;
}

.close-button {
  height: 35px;
  left: 0;
  position: absolute;
  top: 0;
  width: 35px;
}

/* 施設名称のスタイル */
.title-container {
  display: flex;
  align-items: center;
  height: 60px;
}

/* ♨アイコンのスタイル */
.spa-icon {
  height: 30px;
  width: 35px;
  margin-right: 8px;
}

.facility-title {
  color: var(--white);
  font-family: var(--font-family-line_seed_jp_otf-bold);
  font-size: 32px;
  letter-spacing: 7.5px;
}

/* 画像コンテナ要素 */
.image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 15px;
}

/* ポストカード画像 */
.postcard-image {
  max-width: 130px;
  object-fit: cover;
  /* -10度傾ける */
  transform: rotate(-10deg);
}

/* アクティビティ画像がないポストカード画像は傾けない */
.postcard-image.no-ratete {
  transform: rotate(0);
}

/* アクティビティ画像 */
.activity-image {
  max-width: 200px;
  max-height: 180px;
  object-fit: cover;
  transform: rotate(10deg);
}

/* アクティビティ画像なし */
.activity-image.no-image {
  display: none;
}

/* \\ GET // のコンテナ要素 */
.activity-description-container {
  display: flex;
  align-items: center;
  padding: 25px 0;
}

/* \\ GET // のテキスト */
.activity-description {
  padding-left: 20px;
  padding-right: 10px;
  text-align: center;
  color: var(--white);
  font-family: var(--font-family-line_seed_jp_otf-regular);
  letter-spacing: 6px;
  line-height: normal;
}

/* \\ GET // 左右のマーク */
.slash-emphasis {
  width: 23px;
  height: 26px;
  margin: 10px;
  mask-image: url('/img/slash-emphasis.svg');
  -webkit-mask-image: url('/img/slash-emphasis.svg');
  mask-size: contain;
  -webkit-mask-size: contain;
}

/* \\ GET // 左右のマーク(反転して左側に使用) */
.slash-emphasis.left {
  transform: scaleX(-1);
}

/* \\ GET // のテキストカラー 安田屋旅館 千歌ちゃん */
.activity-description-yasudaya {
  color: var(--chika);
}

/* \\ GET // 左右のマークカラー 安田屋旅館 千歌ちゃん */
.slash-emphasis-yasudaya {
  background: var(--chika);
}

/* \\ GET // のテキストカラー 翠泉閣 梨子ちゃん */
.activity-description-suisenkaku {
  color: var(--riko);
}

/* \\ GET // 左右のマークカラー 翠泉閣 梨子ちゃん */
.slash-emphasis-suisenkaku {
  background: var(--riko);
}

/* \\ GET // のテキストカラー 万葉の湯 果南ちゃん */
.activity-description-manyo {
  color: var(--kanan);
}

/* \\ GET // 左右のマークカラー 万葉の湯 果南ちゃん */
.slash-emphasis-manyo {
  background: var(--kanan);
}

/* \\ GET // のテキストカラー 熱川プリンスホテル ダイヤちゃん */
.activity-description-atagawa {
  color: var(--dia);
}

/* \\ GET // 左右のマークカラー 熱川プリンスホテル ダイヤちゃん */
.slash-emphasis-atagawa {
  background: var(--dia);
}

/* \\ GET // のテキストカラー ときわや 曜ちゃん */
.activity-description-tokiwaya {
  color: var(--you);
}

/* \\ GET // 左右のマークカラー ときわや 曜ちゃん */
.slash-emphasis-tokiwaya {
  background: var(--you);
}

/* \\ GET // のテキストカラー ゆうだい温泉 善子ちゃん */
.activity-description-yudai {
  color: var(--yoshiko);
}

/* \\ GET // 左右のマークカラー ゆうだい温泉 善子ちゃん */
.slash-emphasis-yudai {
  background: var(--yoshiko);
}

/* \\ GET // のテキストカラー ニュー八景園 花丸ちゃん */
.activity-description-hakkeien {
  color: var(--hanamaru);
}

/* \\ GET // 左右のマークカラー ニュー八景園 花丸ちゃん */
.slash-emphasis-hakkeien {
  background: var(--hanamaru);
}

/* \\ GET // のテキストカラー 淡島ホテル 鞠莉ちゃん */
.activity-description-awashima {
  color: var(--mari);
}

/* \\ GET // 左右のマークカラー 淡島ホテル 鞠莉ちゃん */
.slash-emphasis-awashima {
  background: var(--mari);
}

/* \\ GET // のテキストカラー ざぶ〜ん ルビィちゃん */
.activity-description-zabun {
  color: var(--ruby);
}

/* \\ GET // 左右のマークカラー ざぶ〜ん ルビィちゃん */
.slash-emphasis-zabun {
  background: var(--ruby);
}

/* アクティビティのコンテナ要素 */
.activity-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 70px;
}

/* アクティビティ項目(名前+値段) */
.activity-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: var(--white);
  font-family: var(--font-family-line_seed_jp_otf-bold);
  letter-spacing: 5px;
}

/* アクティビティ名 */
.activity-item-name {
  font-size: 22px;
  /* 値段とちょっとスペースを空ける */
  margin-right: 5px;
}

/* アクティビティの価格 */
.activity-item-price {
  font-size: 28px;
}

/* アクティビティの価格 */
.activity-item-price {
  font-size: 28px;
}

/* ↑↑↑ モーダル関連のスタイル ↑↑↑ */
