/* ===== Google Font 読み込み (Zen Maru Gothic) ===== */
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap');

/* ===== キーフレーム（アニメーション）定義 ===== */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes wiggle {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-4deg);
  }

  75% {
    transform: rotate(4deg);
  }
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }

  60% {
    transform: scale(1.05) translateY(-3px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes shine {
  0% {
    left: -100%;
  }

  100% {
    left: 200%;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

@keyframes confetti1 {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }

  100% {
    transform: translateY(-30px) rotate(360deg);
    opacity: 0;
  }
}

/* ===== リセット＆ベース ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Zen Maru Gothic', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  background: #FFF9F0;
  color: #333;
  line-height: 1.8;
  font-size: 17px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* ===== レイアウト ===== */
.wrapper {
  width: 950px;
  margin: 0 auto;
  overflow: hidden;
}

/* ===== ファーストビュー ===== */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://awara-seiryu.github.io/image/玄関文字.JPG');
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 0;
  padding: 60px 40px 0;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="3" fill="rgba(255,255,255,0.18)"/></svg>') repeat;
  background-size: 30px 30px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 950px;
  /* 本体の幅に合わせる */
}

.hero-badge {
  display: inline-block;
  background: #FF6B6B;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  padding: 6px 24px;
  border-radius: 30px;
  margin-bottom: 14px;
  letter-spacing: 1px;
  box-shadow: 0 3px 12px rgba(255, 107, 107, 0.35);
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  font-size: 46px;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
  margin-bottom: 8px;
  letter-spacing: 3px;
  font-weight: 900;
}

.hero-sub {
  font-size: 26px;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
  font-weight: 700;
}

.hero-catch {
  font-size: 18px;
  color: #FFFFF0;
  margin-bottom: 12px;
  font-weight: 500;
  line-height: 1.9;
}

/* ===== ヒーロー内アワード表示 ===== */
.hero-award {
  margin-top: 25px;
  background: url('https://awara-seiryu.github.io/image/award-2024-all.png') no-repeat center center;
  background-size: cover;
  border-radius: 25px;
  border: 2px solid rgba(255, 215, 0, 0.4);
  animation: popIn 0.8s ease-out both;
  overflow: hidden;
  width: calc(100% + 20px);
  /* 左右に少し広げる */
  margin-left: -10px;
  box-sizing: border-box;
}

.hero-award-link {
  display: block;
  padding: 30px 45px;
  background: rgba(0, 0, 0, 0.45);
  /* 背景画像を見せつつ文字を読みやすくするオーバーレイ */
  backdrop-filter: blur(2px);
  transition: background 0.3s;
}

.hero-award-link:hover {
  background: rgba(0, 0, 0, 0.35);
}

.hero-award-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: nowrap;
}

.hero-award-chara {
  height: 180px;
  /* 右側の画像と同じサイズに拡大 */
  width: auto;
  filter: drop-shadow(2px 4px 8px rgba(0, 0, 0, 0.25));
  animation: float 3s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-award-text {
  text-align: center;
  /* 中央に寄せる */
  flex-shrink: 1;
}

.hero-award-label {
  font-size: 22px;
  font-weight: 700;
  color: #FFD700;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.hero-award-main {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: 2px;
  background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse 2s ease-in-out infinite;
  white-space: nowrap;
}

.hero-award-gold-img {
  height: 180px;
  /* さらに大きく */
  width: auto;
  filter: drop-shadow(4px 4px 12px rgba(0, 0, 0, 0.5));
  flex-shrink: 0;
}

.hero-award-sub {
  font-size: 20px;
  color: #ffe;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  margin-top: 8px;
  font-weight: 500;
}

/* ===== CTAボタン ===== */
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B6B, #ee5a24);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  padding: 18px 55px;
  border-radius: 50px;
  letter-spacing: 2px;
  box-shadow: 0 6px 22px rgba(238, 90, 36, 0.4);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.cta-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: none;
  animation: shine 3s ease-in-out infinite;
}

.cta-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(238, 90, 36, 0.5);
}

.cta-btn-sub {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-top: 3px;
  letter-spacing: 0;
}

.cta-btn-green {
  background: linear-gradient(135deg, #43e97b, #38c96a);
  box-shadow: 0 6px 22px rgba(56, 201, 106, 0.4);
}

.cta-btn-green:hover {
  box-shadow: 0 12px 30px rgba(56, 201, 106, 0.5);
}

.cta-btn-green::after {
  animation: shine 3s ease-in-out 1.5s infinite;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin: 22px 0;
  flex-wrap: wrap;
}

/* ===== セクション共通 ===== */
.section {
  padding: 45px 30px;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 35px;
  position: relative;
}

.section-title {
  display: inline-block;
  font-size: 32px;
  font-weight: 900;
  color: #e85d26;
  position: relative;
  padding: 0 25px;
}

.section-title::before,
.section-title::after {
  content: '🎵';
  font-size: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.section-title::before {
  left: -8px;
}

.section-title::after {
  right: -8px;
}

.section-subtitle {
  display: block;
  font-size: 14px;
  color: #cc7744;
  margin-top: 5px;
  letter-spacing: 4px;
  font-weight: 700;
}

/* ===== 魅力紹介カード ===== */
.charm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.charm-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 22px 22px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
  animation: popIn 0.6s ease-out both;
}

.charm-card:nth-child(1) {
  animation-delay: 0.1s;
}

.charm-card:nth-child(2) {
  animation-delay: 0.2s;
}

.charm-card:nth-child(3) {
  animation-delay: 0.3s;
}

.charm-card:nth-child(4) {
  animation-delay: 0.4s;
}

.charm-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 0 12px 30px rgba(255, 126, 95, 0.18);
}

.charm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  border-radius: 20px 20px 0 0;
}

.charm-card:nth-child(1)::before {
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
}

.charm-card:nth-child(2)::before {
  background: linear-gradient(90deg, #38f9d7, #43e97b);
}

.charm-card:nth-child(3)::before {
  background: linear-gradient(90deg, #FF6B6B, #ff9a9e);
}

.charm-card:nth-child(4)::before {
  background: linear-gradient(90deg, #FFD700, #ffb347);
}

.charm-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.charm-card-header img {
  height: 65px;
  width: auto;
  animation: wiggle 2.5s ease-in-out infinite;
}

.charm-card-header img:hover {
  animation: none;
  transform: scale(1.15);
}

.charm-card h3 {
  font-size: 22px;
  color: #e85d26;
  line-height: 1.5;
  font-weight: 900;
}

.charm-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.9;
}

/* ===== 写真活用スタイル ===== */
.photo-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.photo-img:hover {
  transform: scale(1.02);
}

.charm-card>.photo-img {
  margin-bottom: 16px;
}

.point-bubble .photo-img {
  margin-top: 14px;
}

.plan-card>.photo-img {
  margin-bottom: 16px;
  margin-top: 10px;
}

.photo-img.photo-contain {
  object-fit: contain;
  box-shadow: none;
}

/* ===== 吹き出しポイント ===== */
.point-section {
  background: linear-gradient(180deg, #FFF3E0, #FFF9F0);
  position: relative;
}

.point-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,126,95,0.06)"/></svg>') repeat;
  background-size: 20px 20px;
  pointer-events: none;
}

.point-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.point-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  background: #fff;
  border-radius: 22px;
  padding: 24px 28px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.point-item:hover {
  transform: translateY(-3px) scale(1.01);
}

.point-item:nth-child(even) {
  flex-direction: row-reverse;
}

.point-item:nth-child(odd) {
  transform-origin: left center;
}

.point-item:nth-child(even) {
  transform-origin: right center;
}

.point-item-chara {
  flex-shrink: 0;
  width: 95px;
  text-align: center;
}

.point-item-chara img {
  height: 85px;
  width: auto;
  animation: float 3s ease-in-out infinite;
  transition: transform 0.3s;
}

.point-item:nth-child(2) .point-item-chara img {
  animation-delay: 0.5s;
}

.point-item:nth-child(3) .point-item-chara img {
  animation-delay: 1.0s;
}

.point-item:nth-child(4) .point-item-chara img {
  animation-delay: 1.5s;
}

.point-item:nth-child(5) .point-item-chara img {
  animation-delay: 2.0s;
}

.point-item-chara img:hover {
  transform: scale(1.15) rotate(5deg);
  animation-play-state: paused;
}

.point-item-body {
  flex: 1;
}

.point-bubble {
  background: linear-gradient(135deg, #FFF9F0, #FFEFE0);
  border: 3px solid #ff7e5f;
  border-radius: 20px;
  padding: 18px 22px;
  position: relative;
  margin-bottom: 0;
}

.point-bubble::before {
  content: '';
  position: absolute;
  top: 22px;
  width: 0;
  height: 0;
  border-style: solid;
}

.point-item:nth-child(odd) .point-bubble::before {
  left: -14px;
  border-width: 10px 14px 10px 0;
  border-color: transparent #ff7e5f transparent transparent;
}

.point-item:nth-child(even) .point-bubble::before {
  right: -14px;
  border-width: 10px 0 10px 14px;
  border-color: transparent transparent transparent #ff7e5f;
}

.point-bubble h3 {
  font-size: 21px;
  color: #e85d26;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.point-bubble h3 .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  color: #fff;
  border-radius: 50%;
  font-size: 15px;
  flex-shrink: 0;
  font-weight: 900;
  box-shadow: 0 2px 8px rgba(255, 126, 95, 0.3);
}

.point-bubble p {
  font-size: 16px;
  color: #555;
  line-height: 1.85;
}

/* ===== プランセクション ===== */
.plan-section {
  background: linear-gradient(135deg, #FFF5EE, #FFE8D6);
  border-radius: 30px;
  margin: 0 15px;
  padding: 45px 30px;
  position: relative;
  overflow: hidden;
}

.plan-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><polygon points="30,5 55,50 5,50" fill="rgba(255,126,95,0.04)"/></svg>') repeat;
  background-size: 40px 40px;
  pointer-events: none;
}

.plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.plan-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px 20px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 28px rgba(255, 126, 95, 0.15);
}

.plan-card-label {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FF6B6B, #ee5a24);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 5px 20px;
  border-radius: 0 0 14px 14px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(238, 90, 36, 0.3);
  letter-spacing: 1px;
}

.plan-card h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
  margin-top: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.plan-card .price {
  font-size: 28px;
  font-weight: 900;
  color: #ee5a24;
}

.plan-card .price small {
  font-size: 13px;
  color: #888;
  font-weight: 500;
}

.plan-card .plan-desc {
  font-size: 15px;
  color: #666;
  margin: 10px 0 14px;
  line-height: 1.65;
}

.plan-card-chara {
  position: absolute;
  bottom: 5px;
  right: 5px;
  height: 75px;
  /* 一回り大きく（55px -> 75px） */
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s, transform 0.3s;
}

.plan-card:hover .plan-card-chara {
  opacity: 1;
  transform: scale(1.15) rotate(-5deg);
}

.plan-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  padding: 10px 28px;
  border-radius: 30px;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s;
  box-shadow: 0 3px 10px rgba(255, 126, 95, 0.25);
}

.plan-btn:hover {
  background: linear-gradient(135deg, #ee5a24, #ff7e5f);
  transform: scale(1.08);
  box-shadow: 0 5px 16px rgba(255, 126, 95, 0.35);
}

/* ===== 客室導線 ===== */
.room-banner {
  border-radius: 22px;
  margin: 0 15px;
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  align-items: center;
}

.room-banner .room-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.room-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 126, 95, 0.75) 0%, rgba(254, 180, 123, 0.7) 50%, rgba(67, 233, 123, 0.7) 100%);
  z-index: 1;
  pointer-events: none;
}

.room-banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 30px 40px;
  width: 100%;
}

.room-banner-text {
  flex: 1;
  color: #fff;
}

.room-banner-text h3 {
  font-size: 24px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.35);
  font-weight: 900;
}

.room-banner-text p {
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.75;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
}

.room-banner .chara-img {
  height: 120px;
  width: auto;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.18));
  animation: float 3s ease-in-out infinite;
  flex-shrink: 0;
}

.btn-white {
  display: inline-block;
  background: #fff;
  color: #e85d26;
  font-size: 16px;
  font-weight: 900;
  padding: 12px 34px;
  border-radius: 30px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s;
}

.btn-white:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

/* ===== 貸切施設エリア ===== */
.facility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.facility-card {
  background: #fff;
  border-radius: 18px;
  padding: 0 0 24px 0;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.facility-img-wrap {
  width: 100%;
  height: 140px;
  overflow: hidden;
  border-bottom: 3px solid #ff7e5f;
  margin-bottom: 12px;
}

.facility-img-wrap .facility-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.facility-card:hover .facility-photo {
  transform: scale(1.1);
}

.facility-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
}

.facility-card:hover {
  transform: translateY(-5px) rotate(1deg);
  box-shadow: 0 10px 25px rgba(255, 126, 95, 0.15);
}

.facility-card .chara-icon {
  height: 80px;
  width: auto;
  margin: -45px auto 10px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(2px 3px 6px rgba(0, 0, 0, 0.25));
  animation: wiggle 3s ease-in-out infinite;
  display: block;
}

.facility-card h3 {
  font-size: 17px;
  color: #e85d26;
  margin-bottom: 8px;
  font-weight: 900;
  padding: 0 15px;
}

.facility-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  padding: 0 15px;
}

.facility-card img:hover {
  animation: none;
  transform: scale(1.15);
}

.facility-card h3 {
  font-size: 17px;
  color: #e85d26;
  margin-bottom: 8px;
  font-weight: 900;
}

.facility-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}

/* ===== 最終CTA ===== */
.final-cta {
  border-radius: 30px;
  margin: 22px 15px 30px;
  padding: 60px 35px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.final-cta-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 126, 95, 0.8) 0%, rgba(254, 180, 123, 0.75) 30%, rgba(67, 233, 123, 0.75) 70%, rgba(56, 249, 215, 0.8) 100%);
  z-index: 1;
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.final-cta h2 {
  font-size: 36px;
  color: #fff;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
  margin-bottom: 12px;
  font-weight: 900;
}

.final-cta .sub-text {
  font-size: 18px;
  color: #fff;
  margin-bottom: 25px;
  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.final-cta-characters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
}

.final-cta-characters img {
  height: 75px;
  width: auto;
  filter: drop-shadow(2px 3px 5px rgba(0, 0, 0, 0.18));
  animation: float 2.5s ease-in-out infinite;
  transition: transform 0.3s;
}

.final-cta-characters img:nth-child(2) {
  animation-delay: 0.35s;
}

.final-cta-characters img:nth-child(3) {
  animation-delay: 0.7s;
}

.final-cta-characters img:nth-child(4) {
  animation-delay: 1.05s;
}

.final-cta-characters img:nth-child(5) {
  animation-delay: 1.4s;
}

.final-cta-characters img:nth-child(6) {
  animation-delay: 1.75s;
}

.final-cta-characters img:nth-child(7) {
  animation-delay: 2.1s;
}

.final-cta-characters img:hover {
  transform: scale(1.2) rotate(-5deg);
  animation-play-state: paused;
}

/* ===== フッター ===== */
.footer {
  text-align: center;
  padding: 22px;
  font-size: 13px;
  color: #888;
  background: linear-gradient(180deg, #FFF9F0, #f0ebe3);
  font-weight: 500;
}

.footer img {
  height: 32px;
  width: auto;
  margin-bottom: 8px;
}

/* ===== デコレーション用キャラ ===== */
.deco-left {
  position: absolute;
  left: 15px;
  height: 70px;
  width: auto;
  opacity: 0.85;
}

.deco-right {
  position: absolute;
  right: 15px;
  height: 70px;
  width: auto;
  opacity: 0.85;
}

/* ===== アクセス帯 ===== */
.access-bar {
  background: #fff;
  border-radius: 18px;
  padding: 25px 35px;
  margin: 0 15px 22px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  gap: 25px;
  transition: transform 0.3s;
}

.access-bar:hover {
  transform: translateY(-2px);
}

.access-bar img {
  height: 80px;
  width: auto;
  animation: wiggle 3s ease-in-out infinite;
}

.access-bar-text {
  flex: 1;
}

.access-bar-text h3 {
  font-size: 22px;
  color: #e85d26;
  margin-bottom: 5px;
  font-weight: 900;
}

.access-bar-text p {
  font-size: 17px;
  color: #666;
  line-height: 1.7;
}

/* ===== 区切りデコ ===== */
.divider {
  text-align: center;
  padding: 14px 0;
}

.divider img {
  height: 50px;
  width: auto;
  opacity: 0.7;
  animation: float 3s ease-in-out infinite;
  transition: transform 0.3s;
}

.divider img:hover {
  transform: scale(1.2) rotate(10deg);
  opacity: 1;
}

/* ===== テキスト強調 ===== */
.text-green {
  color: #e85d26;
}

.text-orange {
  color: #ee5a24;
}

.text-bold {
  font-weight: 900;
}

.text-center {
  text-align: center;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

/* ===== 帯見出し ===== */
.ribbon-heading {
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  padding: 12px 28px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 22px;
  position: relative;
  box-shadow: 0 3px 12px rgba(255, 126, 95, 0.25);
}

.ribbon-heading::after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 22px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 9px 0 9px;
  border-color: #ff7e5f transparent transparent transparent;
}

/* ===== キャラ案内ブロック ===== */
.guide-block {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, #FFFFF0, #FFEFE0);
  border: 3px dashed #ff7e5f;
  border-radius: 18px;
  padding: 20px 22px;
  margin: 18px 0;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: visible;
}

.guide-chara-big {
  height: 120px !important;
  /* 強制的に大きくする */
  max-width: none !important;
  width: auto !important;
  position: absolute;
  right: 15px;
  bottom: 0;
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.15));
  animation: float 3s ease-in-out infinite;
  z-index: 10;
}

.guide-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 126, 95, 0.12);
}

.guide-block img {
  height: 75px;
  width: auto;
  flex-shrink: 0;
  animation: wiggle 3s ease-in-out infinite;
}

.guide-block p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

/* ===== アクセスページ固有スタイル ===== */
.access-map {
  text-align: center;
  margin-bottom: 30px;
}

.access-map iframe {
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.access-info-box {
  display: flex;
  align-items: center;
  background: #f9fdf9;
  border: 2px solid #e0f2e9;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.access-info-text h3 {
  color: #2e8b57;
  margin: 0 0 10px 0;
  font-size: 20px;
}

.access-info-text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.access-chara {
  width: 100px;
  height: auto;
  margin-right: 20px;
}

/* ===== 館内施設ページ固有スタイル ===== */
.facility-intro {
  background: linear-gradient(135deg, #fffef6, #ffefe0);
  border-radius: 24px;
  padding: 28px 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.facility-intro p {
  font-size: 17px;
  color: #555;
}

.facility-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.facility-detail-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}

.facility-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(255, 126, 95, 0.16);
}

.facility-detail-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.facility-detail-body {
  padding: 22px 22px 24px;
}

.facility-detail-body h3 {
  font-size: 24px;
  color: #e85d26;
  margin-bottom: 10px;
  font-weight: 900;
}

.facility-detail-body p {
  font-size: 15px;
  color: #555;
  line-height: 1.85;
}

.facility-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 12px;
}

.facility-meta span {
  display: inline-block;
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(255, 126, 95, 0.25);
}

.facility-note {
  background: #fff7ef;
  border-left: 4px solid #ff7e5f;
  border-radius: 12px;
  padding: 12px 14px;
  margin-top: 14px;
  font-size: 14px;
  color: #666;
}

.facility-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.facility-mini-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}

.facility-mini-card:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: 0 10px 24px rgba(255, 126, 95, 0.14);
}

.facility-mini-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.facility-mini-body {
  padding: 18px 18px 20px;
}

.facility-mini-body h3 {
  font-size: 19px;
  color: #e85d26;
  margin-bottom: 8px;
  font-weight: 900;
}

.facility-mini-body p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

.service-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-chip {
  flex: 1 1 260px;
  background: linear-gradient(135deg, #fff, #fff8f1);
  border: 2px dashed #ffb07a;
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.service-chip h3 {
  font-size: 20px;
  color: #e85d26;
  margin-bottom: 8px;
  font-weight: 900;
}

.service-chip p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
}

.facility-summary {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.facility-summary-row {
  display: flex;
  border-bottom: 1px solid #f3e4d6;
}

.facility-summary-row:last-child {
  border-bottom: none;
}

.facility-summary-label {
  width: 220px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #fff5ee, #ffe8d6);
  color: #e85d26;
  font-weight: 900;
  padding: 18px 22px;
}

.facility-summary-value {
  flex: 1;
  padding: 18px 22px;
  color: #555;
}

.facility-cta-panel {
  border-radius: 28px;
  margin: 0 15px 30px;
  padding: 34px 28px;
  background: linear-gradient(135deg, #fff0e8, #fff7ef);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.facility-cta-panel p {
  font-size: 17px;
  color: #666;
  margin-bottom: 18px;
}
