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

.hero-image-container {
  display: flex;
  justify-content: center;
}

.hero-image {
  width: 100vw;
}

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

.copy-icon-container {
  width: 1000px;
  height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  text-align: center;
}

.copy-text {
  color: var(--black);
  font-family: var(--font-family-line_seed_jp_otf-regular);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 6.60px;
  line-height: 60px;
}

.copy-underline {
  background: linear-gradient(rgba(255, 192, 203, 0.5), rgba(255, 192, 203, 0.5)) bottom;
  background-size: 100% 7px;
  background-repeat: no-repeat;
  /* ここの数値で高さ調整できる！ */
  background-position: 0 90%;
}

.copy-spacing {
  height: 20px;
}

.copy-text-strong {
  padding-left: 30px;
  color: var(--black);
  font-family: var(--font-family-line_seed_jp_otf-regular);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 12px;
}

.copy-member-icon {
  position: absolute;
}

.copy-member-icon-container-left {
  position: absolute;
  top: 20px;
  left: 20px;
}

.copy-member-icon-chika {
  width: 80px;
  height: 80px;
  top: 0px;
  left: 100px;
  transform: rotate(-10deg);
}

.copy-member-icon-yoshiko {
  width: 60px;
  height: 60px;
  top: 150px;
  left: 30px;
  transform: rotate(20deg);
}

.copy-member-icon-ruby {
  width: 70px;
  height: 70px;
  top: 300px;
  left: 100px;
}

.copy-member-icon-you {
  width: 80px;
  height: 80px;
  top: 430px;
  left: 30px;
  transform: rotate(-20deg);
}

.copy-member-icon-container-right {
  position: absolute;
  top: 20px;
  right: 20px;
}

.copy-member-icon-mari {
  width: 70px;
  height: 70px;
  top: 0px;
  right: 60px;
  transform: rotate(20deg);
}

.copy-member-icon-kanan {
  width: 60px;
  height: 60px;
  top: 120px;
  right: 130px;
  transform: rotate(10deg);
}

.copy-member-icon-dia {
  width: 70px;
  height: 70px;
  top: 230px;
  right: 30px;
  transform: rotate(-10deg);
}

.copy-member-icon-riko {
  width: 80px;
  height: 80px;
  top: 350px;
  right: 100px;
  transform: rotate(20deg);
}

.copy-member-icon-hanamaru {
  width: 60px;
  height: 60px;
  top: 460px;
  right: 50px;
}

/* アイコンの基本設定 */
.copy-member-icon-container-left,
.copy-member-icon-container-right {
  position: absolute;
  width: 100%;
  max-width: 1200px;
  opacity: 1;
  visibility: visible;
  /* displayの代わりにvisibilityを使用 */
  transition: opacity 0.5s ease, visibility 0.5s ease;
  /* visibilityもトランジションに含める */
}

/* 950px以下でフェードアウト */
@media screen and (max-width: 950px) {

  .copy-member-icon-container-left,
  .copy-member-icon-container-right {
    opacity: 0;
    visibility: hidden;
    /* displayの代わりにvisibilityを使用 */
  }
}

/* 泡 */

.bubble-1 {
  width: 20px;
  height: 20px;
  line-height: 20px;
  background-color: #fedfe1;
  border-radius: 50%;
  position: absolute;
  top: 40px;
  left: 30px;
}

.bubble-2 {
  width: 10px;
  height: 10px;
  line-height: 10px;
  background-color: #fedfe1;
  border-radius: 50%;
  position: absolute;
  top: 70px;
  left: 50px;
}

.bubble-3 {
  width: 20px;
  height: 20px;
  line-height: 20px;
  background-color: #fedfe1;
  border-radius: 50%;
  position: absolute;
  top: 200px;
  left: 150px;
}

.bubble-4 {
  width: 15px;
  height: 15px;
  line-height: 15px;
  background-color: #fedfe1;
  border-radius: 50%;
  position: absolute;
  top: 350px;
  left: 29px;
}

.bubble-5 {
  width: 10px;
  height: 10px;
  line-height: 10px;
  background-color: #fedfe1;
  border-radius: 50%;
  position: absolute;
  top: 380px;
  left: 20px;
}

.bubble-6 {
  width: 15px;
  height: 15px;
  line-height: 15px;
  background-color: #fedfe1;
  border-radius: 50%;
  position: absolute;
  top: 480px;
  left: 150px;
}

.bubble-7 {
  width: 10px;
  height: 10px;
  line-height: 10px;
  background-color: #fedfe1;
  border-radius: 50%;
  position: absolute;
  top: 250px;
  left: 20px;
}

/* 泡　アニメーション　左 */
.bubble-left {
  width: 100px;
  height: 50px;
  position: absolute;
  top: 20px;
  left: 20px;
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}

.bubble-8 {
  width: 20px;
  height: 20px;
  line-height: 20px;
  background-color: #fedfe1;
  border-radius: 50%;
  position: absolute;
  top: 120px;
  right: 30px;
}

.bubble-9 {
  width: 10px;
  height: 10px;
  line-height: 10px;
  background-color: #fedfe1;
  border-radius: 50%;
  position: absolute;
  top: 100px;
  right: 50px;
}

.bubble-10 {
  width: 20px;
  height: 20px;
  line-height: 20px;
  background-color: #fedfe1;
  border-radius: 50%;
  position: absolute;
  top: 240px;
  right: 150px;
}

.bubble-11 {
  width: 15px;
  height: 15px;
  line-height: 15px;
  background-color: #fedfe1;
  border-radius: 50%;
  position: absolute;
  top: 30px;
  right: 180px;
}

.bubble-12 {
  width: 10px;
  height: 10px;
  line-height: 10px;
  background-color: #fedfe1;
  border-radius: 50%;
  position: absolute;
  top: 350px;
  right: 20px;
}

.bubble-13 {
  width: 15px;
  height: 15px;
  line-height: 15px;
  background-color: #fedfe1;
  border-radius: 50%;
  position: absolute;
  top: 380px;
  right: 29px;
}

.bubble-14 {
  width: 10px;
  height: 10px;
  line-height: 10px;
  background-color: #fedfe1;
  border-radius: 50%;
  position: absolute;
  top: 480px;
  right: 180px;
}

/* 泡　アニメーション　右 */

.bubble-right {
  width: 100px;
  height: 50px;
  position: absolute;
  top: 20px;
  right: 20px;
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}

@keyframes floating-y {
  0% {
    transform: translateY(-10%);
  }

  100% {
    transform: translateY(20%);
  }
}


.description-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  text-align: center;
}

.subtitle-text {
  color: var(--black);
  font-family: var(--font-family-line_seed_jp_otf-regular);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 10px;
}

.spacing {
  margin-top: 30px;
}

.strong-text {
  color: var(--cabaret);
  font-family: var(--font-family-line_seed_jp_otf-regular);
  font-size: 32px;
  letter-spacing: 10px;
  line-height: normal;
}

/* リンクボタンのベーススタイル */
.link-button {
  border: none;
  border-radius: 22px;
  width: 700px;
  height: 100px;
  cursor: pointer;
  color: var(--white);
  font-family: var(--font-family-line_seed_jp_otf-bold);
  font-size: 30px;
  letter-spacing: 10px;
}

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

/* リンクボタン　スタンプラリー　グッズの詳細はこちら */
.link-button-goods-page {
  background-color: var(--moonstone);
}

.facility-grid-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  text-align: center;
}

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

.facility-grid-item {
  background: white;
  border-radius: 8px;
  border: var(--moonstone) 10px solid;
  /* 画像がはみ出ないように */
  overflow: hidden;
  padding: 15px;
  position: relative;
}

.facility-grid-photo {
  width: 100%;
  height: 120px;
  /* 画像比率キープ */
  object-fit: cover;
}

/* スタンプと温泉名のスタイル */
.stamp-name-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: start;
  margin-top: 10px;
}

.stamp-name-text {
  color: var(--black);
  font-family: var(--font-family-line_seed_jp_otf-regular);
  font-size: 16px;
}

.facility-name-text {
  color: var(--black);
  font-family: var(--font-family-line_seed_jp_otf-bold);
  font-size: 18px;
}

.facility-grid-stamp {
  width: 80px;
  height: 80px;
  position: absolute;
  right: 0px;
  top: 0px;
  transform: rotate(-15.00deg);
  overflow: hidden;
  object-fit: cover;
}

/* リンクボタン　施設詳細はこちら */
.link-button-facility-page {
  background-color: var(--cabaret);
}

.map-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  text-align: center;
}

.map-caption-text {
  color: var(--black);
  font-family: var(--font-family-line_seed_jp_otf-regular);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 4.50px;
}

.map-background {
  background: linear-gradient(180deg, rgb(117.54, 197.92, 226.39) 39.5%, rgb(135.48, 214.37, 234.92) 100%);
  width: 920px;
  height: 1280px;
}

.map-frame {
  display: flex;
  align-items: flex-start;
  width: 920px;
  height: 1280px;
  overflow: hidden;
  position: relative;
}

.map-title {
  color: var(--cabaret);
  font-family: var(--font-family-line_seed_jp_otf-bold);
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 15.00px;
  position: absolute;
  top: 50px;
  left: 210px;
}

.map-image {
  background-image: url(/img/map-east-shizuoka.png);
  background-position: 50% 50%;
  background-size: cover;
  width: 1456px;
  height: 1335px;
  margin-left: -140px;
  margin-top: -68px;
}

.map-rail {
  width: 695px;
  height: 210px;
  position: absolute;
  top: 510px;
  left: 30px;
}

.map-pin-pos-station {
  position: absolute;
  top: 570px;
  left: 420px;
}

.map-pin-station {
  width: 60px;
  position: relative;
  left: -5px;
}

.map-caption {
  color: var(--cabaret);
  font-family: var(--font-family-line_seed_jp_otf-bold);
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  text-shadow: #fff 2px 0, #fff -2px 0, #fff 0 -2px, #fff 0 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px, rgba(0, 0, 0, .5) 3px 3px 3px;
}

.map-caption-station {
  position: absolute;
  top: 50px;
  left: -13px;
}

.map-pin-pos-fuji {
  position: absolute;
  top: 230px;
  left: 300px;
  cursor: pointer;
}

.map-pin-fuji {
  width: 90px;
}

.map-caption-fuji {
  margin-top: -15px;
}

/* ピンのスタイル */
.map-pin {
  width: 45px;
  height: 68px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* ピンをマウスオーバーでアニメーション */
.map-pin:hover {
  animation: bounce 0.5s ease infinite alternate;
}

/* ピンアニメーション設定 */
@keyframes bounce {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

.map-pin-pos-chika {
  position: absolute;
  top: 660px;
  left: 490px;
}

.map-pin-pos-riko {
  position: absolute;
  top: 595px;
  left: 480px;
}

.map-pin-pos-kanan {
  position: absolute;
  top: 500px;
  left: 450px;
}

.map-pin-pos-dia {
  position: absolute;
  top: 910px;
  left: 665px;
}

.map-pin-pos-you {
  position: absolute;
  top: 720px;
  left: 355px;
}

.map-pin-pos-yoshiko {
  position: absolute;
  top: 480px;
  left: 550px;
}

.map-pin-pos-hanamaru {
  position: absolute;
  top: 645px;
  left: 535px;
}

.map-pin-pos-mari {
  position: absolute;
  top: 640px;
  left: 452px;
}

.map-pin-pos-ruby {
  position: absolute;
  top: 500px;
  left: 370px;
}

.map-google {
  left: 200px;
  letter-spacing: 6.60px;
  top: 6132px;
  width: 880px;
}

/* リンクボタン　Google MAP */
.link-button-map-page {
  background-color: var(--moonstone);
}

.questionnaire-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  text-align: center;
}

.link-button-questionnaire-page {
  background-color: var(--cabaret);
}

.sns-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 100%;
  text-align: center;
  margin-bottom: 136px;
}

/* xタイムライン埋め込み */
.twitter-timeline {
  overflow: hidden;
  /* 表示済みの紫を黒にする */
  color: var(--black) !important;
  font-family: var(--font-family-line_seed_jp_otf-regular);
  font-size: 28px;
}

/* フッターページリンクのコンテナ要素 */
.page-link-container-top {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  gap: 12px;
}

/* マップ詳細モーダル関連のスタイル ここから↓ */

/* モーダルのオーバーレイ */
.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.75);
  padding: 50px 30px;
  border-radius: 15px;
  width: 750px;
  height: 580px;
  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);
}

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

.facility-content {
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.facility-content.active {
  opacity: 1;
}

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

.close-button {
  width: 35px;
  height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1);
  transition: transform 0.5s ease;
}

.close-button:hover {
  transform: scale(1.1);
}

/* 左右矢印ボタンのスタイル */
.arrow-button-container {
  position: relative;
}

.arrow-button {
  cursor: pointer;
  position: absolute;
  top: 180px;
  width: 36px;
  height: 57px;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.arrow-button:hover {
  transform: scale(1.1);
}

/* 左矢印ボタン */
.arrow-button.left {
  left: 0;
}

/* 右矢印ボタン */
.arrow-button.right {
  right: 0;
}

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

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

/* モーダル内のピン画像のスタイル */
.pin-image {
  width: 36px;
  height: 57px;
  margin-bottom: 5px;
}

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

/* キャプションのスタイル */
.facility-caption {
  display: flex;
  align-items: center;
  height: 60px;
  text-align: center;
  color: var(--white);
  font-family: var(--font-family-line_seed_jp_otf-bold);
  font-size: 16px;
  letter-spacing: 5px;
}

.stamp-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 500px;
}

/* モーダル内のスタンプ画像のスタイル */
.stamp-image {
  width: 200px;
  height: 200px;
}

/* モーダル内の施設画像のスタイル */
.modal-facility-image {
  max-width: 200px;
  max-height: 150px;
}

.button-container {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

/* リンクボタン */
.btn {
  width: 300px;
  height: 50px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  color: var(--white);
  font-family: var(--font-family-line_seed_jp_otf-bold);
  font-size: 20px;
  letter-spacing: 4.5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn:hover {
  transition: 0.3s;
}

.btn.hp {
  background-color: var(--cabaret);
}

.btn.hp:hover {
  background-color: #e3b0bd;
}

.btn.map {
  background-color: var(--moonstone);
}

.btn.map:hover {
  background-color: #a2d0d7;
}


/* マップ詳細モーダルのスタイル ここまで↑ */
