/* ====================================
   おうちスタジオnico - Style Sheet
   ==================================== */

/* ---------- SP/PC display switch ---------- */
.sp-only {
  display: none;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 17.5px;
}

body {
  font-family: 'Zen Maru Gothic', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  color: #5a4a3f;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.8;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: inherit;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #f48fb1, #f06292);
  color: #fff;
  padding: 16px 40px;
  font-size: 1.05rem;
  box-shadow: 0 4px 15px rgba(244, 143, 177, 0.4);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 143, 177, 0.5);
  opacity: 1;
}

.btn-outline {
  background: transparent;
  color: #f48fb1;
  padding: 10px 28px;
  font-size: 0.9rem;
  border: 2px solid #f48fb1;
}

.btn-outline:hover {
  background: #f48fb1;
  color: #fff;
  opacity: 1;
}

.btn-cta {
  background: #fff;
  color: #f06292;
  padding: 18px 50px;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: none;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  opacity: 1;
}

/* ---------- Section Title ---------- */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-label-en {
  display: block;
  font-family: 'Caveat', cursive;
  font-size: 2.2rem;
  font-weight: 600;
  color: #f48fb1;
  margin-bottom: 2px;
  letter-spacing: 0.03em;
  line-height: 1;
}

.section-title h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #5a4a3f;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.title-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.deco-line {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f48fb1, transparent);
}

.deco-icon {
  color: #f48fb1;
  font-size: 0.9rem;
}

/* Section color accents */
.gallery .section-label-en { color: #81d4fa; }
.gallery .deco-line { background: linear-gradient(90deg, transparent, #81d4fa, transparent); }
.gallery .deco-icon { color: #81d4fa; }

.reasons .section-label-en { color: #a5d6a7; }
.reasons .deco-line { background: linear-gradient(90deg, transparent, #a5d6a7, transparent); }
.reasons .deco-icon { color: #a5d6a7; }

/* ---------- Chevron Divider ---------- */
.chevron-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  padding: 0;
  background: #fff;
}

.chevron-row {
  width: 100%;
  height: 30px;
  background-image:
    linear-gradient(135deg, #ffe082 25%, transparent 25%),
    linear-gradient(225deg, #ffe082 25%, transparent 25%),
    linear-gradient(315deg, #ffe082 25%, transparent 25%),
    linear-gradient(45deg, #ffe082 25%, transparent 25%);
  background-position: -20px 0, -20px 0, 0 0, 0 0;
  background-size: 40px 30px;
  background-color: #fff;
  position: relative;
}


.chevron-divider.flip .chevron-row {
  background:
    linear-gradient(135deg, #fff 25%, transparent 25%) -20px 0,
    linear-gradient(225deg, #fff 25%, transparent 25%) -20px 0,
    linear-gradient(315deg, #fff 25%, transparent 25%),
    linear-gradient(45deg, #fff 25%, transparent 25%);
  background-size: 40px 30px;
  background-color: #ffe082;
}

/* ---------- Gallery Tape Effect ---------- */
.gallery-frame {
  position: relative;
  background: #fff;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.tape {
  position: absolute;
  width: 50px;
  height: 18px;
  background: rgba(255, 183, 77, 0.6);
  z-index: 2;
  border-radius: 1px;
}

.tape-left {
  top: -6px;
  left: 15px;
  transform: rotate(-15deg);
}

.tape-right {
  top: -6px;
  right: 15px;
  transform: rotate(12deg);
}

/* Tape color variations */
.gallery-item:nth-child(1) .tape { background: rgba(244, 143, 177, 0.55); }
.gallery-item:nth-child(2) .tape { background: rgba(79, 195, 247, 0.55); }
.gallery-item:nth-child(3) .tape { background: rgba(255, 183, 77, 0.6); }
.gallery-item:nth-child(4) .tape { background: rgba(102, 187, 106, 0.55); }
.gallery-item:nth-child(5) .tape { background: rgba(255, 138, 101, 0.55); }
.gallery-item:nth-child(6) .tape { background: rgba(186, 104, 200, 0.5); }

/* ---------- Scroll Animation ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====================================
   HEADER
   ==================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}

.logo:hover {
  opacity: 1;
}

.logo-text {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.logo-ja {
  font-size: 0.85rem;
  color: #5a4a3f;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.logo-en {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #f06292;
  letter-spacing: 0.02em;
  line-height: 1;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-list li a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.3s, color 0.3s;
  color: #5a4a3f;
}

.nav-list li a:hover {
  background: #fff3e0;
  color: #f06292;
  opacity: 1;
}

.nav-cta {
  background: linear-gradient(135deg, #ff8a65, #f06292);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-left: 8px;
  box-shadow: 0 3px 10px rgba(244, 143, 177, 0.3);
  transition: all 0.3s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(244, 143, 177, 0.4);
  opacity: 1;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #5a4a3f;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  z-index: 999;
  justify-content: center;
  align-items: center;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav ul {
  text-align: center;
}

.mobile-nav ul li {
  margin: 20px 0;
}

.mobile-nav ul li a {
  font-size: 1.2rem;
  font-weight: 500;
  color: #5a4a3f;
  transition: color 0.3s;
}

.mobile-nav ul li a:hover {
  color: #f06292;
  opacity: 1;
}

.mobile-cta {
  display: inline-block;
  background: linear-gradient(135deg, #f48fb1, #f06292);
  color: #fff !important;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 700;
  margin-top: 10px;
}

/* ====================================
   HERO
   ==================================== */
.hero {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Full background image */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Colorful overlay - left side stronger */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 241, 118, 0.7) 0%,
    rgba(255, 224, 130, 0.45) 30%,
    rgba(255, 255, 255, 0.1) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

.hero-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 140px 40px 100px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 3;
}

.hero-text {
  max-width: 560px;
  background: transparent;
  border-radius: 30px;
  padding: 50px 50px;
  box-shadow: none;
  border: none;
}

.hero-text h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.55;
  white-space: nowrap;
  color: #4a3a2f;
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.9), 0 0 16px rgba(255, 255, 255, 0.6);
}

.hero-sub {
  font-size: 16.8px;
  color: #6a5a4f;
  margin-bottom: 35px;
  line-height: 1.9;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.9), 0 0 16px rgba(255, 255, 255, 0.6);
}

.hero .btn-primary {
  font-size: 16.8px;
}

/* Floating bubbles */
.hero-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  animation: float 6s ease-in-out infinite;
  border: none;
}

.b1, .b5 { background: rgba(244, 143, 177, 0.5) !important; }
.b2, .b7 { background: rgba(79, 195, 247, 0.5) !important; }
.b3, .b6 { background: rgba(102, 187, 106, 0.45) !important; }
.b4 { background: rgba(255, 183, 77, 0.55) !important; }

.b1 {
  width: 100px;
  height: 100px;
  background: #f48fb1;
  top: 15%;
  right: 10%;
  animation-delay: 0s;
}

.b2 {
  width: 60px;
  height: 60px;
  background: #ffcc80;
  top: 30%;
  left: 5%;
  animation-delay: 1s;
}

.b3 {
  width: 40px;
  height: 40px;
  background: #f48fb1;
  bottom: 25%;
  left: 15%;
  animation-delay: 2s;
}

.b4 {
  width: 80px;
  height: 80px;
  background: #ffe082;
  top: 10%;
  left: 30%;
  animation-delay: 3s;
}

.b5 {
  width: 50px;
  height: 50px;
  background: #f8bbd0;
  bottom: 30%;
  right: 20%;
  animation-delay: 1.5s;
}

.b6 {
  width: 30px;
  height: 30px;
  background: #ffe0b2;
  top: 50%;
  right: 35%;
  animation-delay: 2.5s;
}

.b7 {
  width: 70px;
  height: 70px;
  background: #f48fb1;
  bottom: 10%;
  right: 5%;
  animation-delay: 0.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 3;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ====================================
   NEWS BAR (simple)
   ==================================== */
.news-bar {
  padding: 30px 0;
  background: #fff;
}

.news-bar-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, #fffde7, #fff8e1, #fff3e0);
  border: 2px solid #ffe082;
  border-radius: 14px;
  padding: 20px 28px;
}

.news-bar-label {
  flex-shrink: 0;
  background: linear-gradient(135deg, #f48fb1, #f06292);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.news-bar-label i {
  margin-right: 4px;
}

.news-list {
  flex: 1;
  min-width: 0;
}

.news-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  flex-wrap: wrap;
}

.news-list li + li {
  border-top: 1px dotted #e8ddd0;
}

.news-date-sm {
  font-size: 0.78rem;
  color: #aaa;
  font-weight: 500;
  flex-shrink: 0;
}

.news-tag-sm {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  flex-shrink: 0;
}

.tag-event {
  background: #fff8e1;
  color: #e6a700;
  border: 1px solid #ffe082;
}

.tag-campaign {
  background: #fce4ec;
  color: #e91e63;
  border: 1px solid #f48fb1;
}

.news-link {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  color: #5a4a3f;
  cursor: pointer;
  padding: 0;
  text-align: left;
  transition: color 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-link:hover {
  color: #f06292;
}

/* ====================================
   MODAL
   ==================================== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  animation: modalIn 0.3s ease;
  text-align: center;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #bbb;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.modal-close:hover {
  background: #f5f5f5;
  color: #5a4a3f;
}

.modal-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ffe082, #ffd54f);
  color: #5a4a3f;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.modal-badge.badge-campaign {
  background: linear-gradient(135deg, #f48fb1, #f06292);
  color: #fff;
}

.modal-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #f06292;
  margin: 0 auto 16px;
}

.modal h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #4a3a2f;
  margin-bottom: 10px;
}

.modal-date {
  font-size: 0.85rem;
  color: #f06292;
  margin-bottom: 16px;
  font-weight: 500;
}

.modal-date i {
  margin-right: 4px;
}

.modal-desc {
  font-size: 0.9rem;
  color: #7a6a5f;
  line-height: 1.85;
  margin-bottom: 20px;
}

.modal-tags {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

/* Tags (shared) */
.tag {
  display: inline-block;
  padding: 4px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 50px;
  background: #fff8e1;
  color: #e6a700;
  border: 1px solid #ffe082;
}

.tag-age {
  background: #e3f2fd;
  color: #1976d2;
  border-color: #90caf9;
}

.tag-limited {
  background: #fce4ec;
  color: #e91e63;
  border-color: #f48fb1;
}

.tag-gift {
  background: #e8f5e9;
  color: #388e3c;
  border-color: #a5d6a7;
}

/* ====================================
   CAMPAIGN MODAL (スペシャルキャンペーン)
   ==================================== */
.modal-campaign-content {
  max-width: 520px;
  text-align: left;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 28px;
}

.modal-campaign-content .modal-badge,
.modal-campaign-content .modal-icon,
.modal-campaign-content h3,
.modal-campaign-content .modal-date,
.modal-campaign-content .modal-desc,
.modal-campaign-content .modal-tags,
.modal-campaign-content .btn {
  text-align: center;
}

.modal-campaign-content .modal-badge,
.modal-campaign-content .modal-icon,
.modal-campaign-content .btn {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.modal-campaign-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.campaign-percent {
  display: inline-block;
  background: linear-gradient(135deg, #f48fb1, #f06292);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-left: 6px;
  vertical-align: middle;
}

.campaign-percent small {
  font-size: 1.2rem;
  font-weight: 800;
}

.campaign-exclude {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: #b38a8a;
}

.campaign-plans {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.campaign-plans li {
  background: #fff5f8;
  border: 1px solid #fad4df;
  border-radius: 16px;
  padding: 14px 16px;
}

.plan-head {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.plan-emoji {
  font-size: 1.1rem;
}

.plan-name {
  font-weight: 700;
  color: #4a3a2f;
  font-size: 0.98rem;
}

.plan-cut {
  margin-left: auto;
  font-size: 0.72rem;
  color: #8a7a6f;
  background: #fff;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid #f0e0e0;
}

.plan-prices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.price-old {
  font-size: 0.9rem;
  color: #aa9a8f;
  text-decoration: line-through;
}

.price-arrow {
  color: #f06292;
  font-weight: 700;
}

.price-new {
  font-size: 1.3rem;
  font-weight: 900;
  color: #e53935;
  letter-spacing: 0.5px;
}

.reservation-box {
  background: linear-gradient(135deg, #fff8f9, #fdeef2);
  border-radius: 16px;
  padding: 18px 18px;
  margin-bottom: 14px;
  border: 1px dashed #f48fb1;
}

.reservation-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #5a4a3f;
  margin-bottom: 10px;
  text-align: center;
}

.reservation-title i {
  color: #f06292;
  margin-right: 6px;
}

.reservation-desc {
  font-size: 0.82rem;
  color: #6a5a4f;
  line-height: 1.75;
  margin-bottom: 12px;
}

.reservation-time {
  font-size: 0.82rem;
  color: #5a4a3f;
  line-height: 1.7;
  margin-bottom: 12px;
  text-align: center;
}

.reservation-time strong {
  color: #f06292;
  font-size: 0.85rem;
}

.reservation-example {
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid #f0e0e0;
}

.example-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #5a4a3f;
  margin-bottom: 6px;
}

.reservation-example ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8rem;
  color: #5a4a3f;
  line-height: 1.85;
}

.reservation-example ul li::before {
  content: "○ ";
  color: #f48fb1;
  font-weight: 700;
}

.campaign-note {
  font-size: 0.78rem;
  color: #a88a7a;
  text-align: center;
  margin-bottom: 18px;
}

@media (max-width: 480px) {
  .modal-campaign-content {
    padding: 28px 18px;
  }
  .campaign-percent {
    font-size: 1.7rem;
  }
  .price-new {
    font-size: 1.15rem;
  }
  .plan-name {
    font-size: 0.9rem;
  }
}

/* ====================================
   PLANS
   ==================================== */
.plans {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff9c4 0%, #fff8e1 50%, #fff 100%);
}

.section-sub {
  font-size: 0.9rem;
  color: #8a7a6f;
  margin-bottom: 10px;
}

.section-sub-tags {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.sub-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: linear-gradient(135deg, #fff, #fff3e0);
  border: 2px solid #ffcc80;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #e65100;
  box-shadow: 0 2px 8px rgba(255, 152, 0, 0.15);
  letter-spacing: 0.03em;
}

.sub-tag i {
  color: #ff9800;
  font-size: 0.9rem;
}

.sub-tag-etc {
  font-size: 0.95rem;
  font-weight: 600;
  color: #8a7a6f;
}

/* Plan Block - alternating image/text layout */
.plan-block {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 70px;
  padding: 40px;
  background: #fff;
  border-radius: 24px;
  border: 3px dashed #ffcc80;
  transition: box-shadow 0.3s;
}

.plan-block:nth-child(odd) {
  border-color: #f48fb1;
}

.plan-block:nth-child(even) {
  border-color: #81d4fa;
}

.plan-block:last-child {
  margin-bottom: 0;
}

.plan-block:hover {
  box-shadow: 0 8px 30px rgba(244, 143, 177, 0.08);
}

.plan-block.reverse {
  flex-direction: row-reverse;
}

.plan-block-text {
  flex: 1;
  min-width: 0;
}

.plan-block-img {
  flex: 0 0 340px;
  text-align: center;
}

/* Plan Label */
.plan-label {
  display: inline-block;
  background: linear-gradient(135deg, #ffe082, #ffd54f);
  color: #5a4a3f;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.plan-label i {
  margin-right: 6px;
}

.label-premium {
  background: linear-gradient(135deg, #f48fb1, #f06292);
  color: #fff;
}

.label-event {
  background: linear-gradient(135deg, #ef9a9a, #e57373);
  color: #fff;
}

/* 撮影会 料金 */
.plan-price-inline {
  margin: 12px 0 8px;
}

.plan-price-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: #e57373;
  letter-spacing: 0.02em;
}

/* 撮影会イメージギャラリー */
.event-gallery {
  margin: -30px 0 70px;
  padding: 30px 40px 40px;
  background: #fff;
  border-radius: 24px;
  border: 3px dashed #ef9a9a;
}

.event-gallery-title {
  text-align: center;
  font-size: 1.1rem;
  color: #e57373;
  margin-bottom: 24px;
  font-weight: 700;
}

.event-gallery-title i {
  margin-right: 6px;
}

.event-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.event-gallery-item {
  text-align: center;
}

.event-gallery-item .plan-photo-frame {
  width: 100%;
}

.event-gallery-item .plan-photo-frame img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.event-gallery-caption {
  display: block;
  margin-top: 10px;
  font-size: 0.82rem;
  color: #7a6a5f;
  font-weight: 600;
}

.event-gallery-caption i {
  margin-right: 4px;
}

.label-shichigosan {
  background: linear-gradient(135deg, #ce93d8, #ab47bc);
  color: #fff;
}

.coming-soon-badge {
  display: inline-block;
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  color: #e6a700;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 8px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.coming-soon-badge i {
  margin-right: 6px;
  animation: hourglass-spin 2.5s ease-in-out infinite;
}

@keyframes hourglass-spin {
  0%, 45% { transform: rotate(0deg); }
  50%, 95% { transform: rotate(180deg); }
  100% { transform: rotate(360deg); }
}

.plan-block.coming-soon .plan-photo-frame img {
  filter: grayscale(0.3) brightness(0.95);
}

/* Coming Soon Banner */
.plan-coming-soon-banner {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 700px;
  margin: 0 auto 50px;
  background: linear-gradient(135deg, #fff9f0, #fff5f8);
  border: 2px dashed #f0e6df;
  border-radius: 18px;
  padding: 20px 28px;
}

.plan-banner-thumb {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 14px;
  overflow: hidden;
}

.plan-banner-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) brightness(0.95);
}

.plan-banner-body {
  flex: 1;
}

.plan-banner-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #5d4e42;
  margin-bottom: 8px;
}

.plan-banner-label i {
  color: #e6a700;
  margin-right: 6px;
}

.plan-banner-text {
  font-size: 0.85rem;
  color: #8a7a6f;
  line-height: 1.7;
  margin: 0;
}

/* Pricing Cards */
.plan-pricing-cards {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 22px;
  background: #fff;
  border: 2px solid #f0e6df;
  border-radius: 14px;
  min-width: 150px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(244, 143, 177, 0.15);
}

.pricing-card-accent {
  border-color: #f48fb1;
  background: linear-gradient(135deg, #fff5f8, #fff);
  box-shadow: 0 2px 12px rgba(244, 143, 177, 0.12);
}

.pricing-card-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  background: #8a7a6f;
  padding: 3px 14px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

.pricing-card-accent .pricing-card-name {
  background: linear-gradient(135deg, #f48fb1, #f06292);
}

.pricing-card-cuts {
  font-size: 0.85rem;
  font-weight: 600;
  color: #8a7a6f;
  margin-top: 2px;
}

.pricing-card-amount {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #f06292;
  line-height: 1.2;
}

.pricing-card-divider {
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  color: #ccc;
}

/* ---- Plan Cards (3-column) ---- */
.plan-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto 50px;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border: 2px solid #f0e6df;
  border-radius: 20px;
  padding: 36px 24px 30px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.plan-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f48fb1, #f06292);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.plan-card-badge.badge-premium {
  background: linear-gradient(135deg, #ce93d8, #ab47bc);
}

.plan-card-header {
  margin-bottom: 16px;
}

.plan-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fce4ec;
  color: #f06292;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.plan-card-premium .plan-card-icon {
  background: #f3e5f5;
  color: #ab47bc;
}

.plan-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #5d4e42;
  margin: 0;
}

.plan-card-price {
  margin-bottom: 4px;
}

.plan-card-amount {
  font-family: 'Quicksand', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #f06292;
  line-height: 1.2;
}

.plan-card-premium .plan-card-amount {
  color: #ab47bc;
}

.plan-card-tax {
  font-size: 0.75rem;
  color: #aaa;
}

.plan-card-cuts {
  font-size: 0.9rem;
  font-weight: 600;
  color: #8a7a6f;
  margin-bottom: 18px;
  padding: 4px 16px;
  background: #fdf6f0;
  border-radius: 20px;
}

.plan-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  width: 100%;
  text-align: left;
}

.plan-card-features li {
  font-size: 0.88rem;
  color: #5d4e42;
  padding: 6px 0;
  border-bottom: 1px dashed #f0e6df;
}

.plan-card-features li:last-child {
  border-bottom: none;
}

.plan-card-features li i {
  color: #f48fb1;
  margin-right: 8px;
  font-size: 0.8rem;
}

.plan-card-premium .plan-card-features li i {
  color: #ce93d8;
}

.plan-card-note {
  font-size: 0.8rem;
  color: #aaa;
  margin: auto 0 0;
  padding-top: 8px;
}

/* Popular plan accent */
.plan-card-popular {
  border-color: #f48fb1;
  box-shadow: 0 4px 20px rgba(244, 143, 177, 0.15);
}

/* Premium plan accent */
.plan-card-premium {
  border-color: #ce93d8;
}

/* Legacy pricing (full-order plan) */
.plan-pricing {
  margin-bottom: 20px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.price-name {
  font-size: 0.9rem;
  color: #5a4a3f;
  font-weight: 700;
}

.price-amount {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #f06292;
  line-height: 1;
}

.price-note {
  font-size: 0.78rem;
  color: #8a7a6f;
}

/* Plan details */
.plan-block h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #4a3a2f;
  margin-bottom: 14px;
}

.plan-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.plan-features span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1px solid #ffe082;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #5a4a3f;
}

.plan-features span i {
  color: #f06292;
  font-size: 0.75rem;
}

.plan-features-plus {
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  font-weight: 700;
  color: #f06292;
  border: none !important;
  background: none !important;
  padding: 0 !important;
}

.plan-desc {
  font-size: 0.88rem;
  color: #7a6a5f;
  line-height: 1.85;
  margin-bottom: 18px;
}

.plan-badge-limited {
  display: inline-block;
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  color: #e6a700;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.plan-badge-limited i {
  margin-right: 4px;
}

.plan-note-extra {
  font-size: 0.8rem;
  color: #e57373;
  font-weight: 500;
  margin-bottom: 16px;
}

.btn-ig {
  font-size: 0.95rem;
}

.btn-ig i {
  margin-right: 6px;
}

/* Plan photo */
.plan-photo-frame {
  position: relative;
  background: #fff;
  padding: 8px;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: inline-block;
}

.plan-photo-frame img {
  width: 100%;
  border-radius: 4px;
  aspect-ratio: 5/4;
  object-fit: cover;
  display: block;
}

.plan-photo-caption {
  display: block;
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  color: #f48fb1;
  margin-top: 10px;
}

/* ====================================
   GALLERY
   ==================================== */
.gallery {
  padding: 80px 0;
  background: linear-gradient(180deg, #e1f5fe 0%, #e3f2fd 50%, #fff 100%);
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 860px;
}

.gallery-item {
  transition: transform 0.3s ease;
  aspect-ratio: 4/3;
}

.gallery-item:nth-child(1) { transform: rotate(-2deg); }
.gallery-item:nth-child(2) { transform: rotate(1.5deg); }
.gallery-item:nth-child(3) { transform: rotate(-1deg); }
.gallery-item:nth-child(4) { transform: rotate(2deg); }
.gallery-item:nth-child(5) { transform: rotate(-1.5deg); }
.gallery-item:nth-child(6) { transform: rotate(1deg); }

.gallery-item:hover {
  transform: rotate(0deg) scale(1.04) !important;
  z-index: 2;
}

.gallery-item:hover .gallery-frame {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.gallery-item .gallery-frame {
  height: 100%;
}

.gallery-item .gallery-frame img {
  aspect-ratio: 4/3;
}

.gallery-caption {
  display: block;
  text-align: center;
  margin-top: 8px;
  font-size: 0.85rem;
  color: #8d6e63;
  font-weight: 500;
  letter-spacing: 0.1em;
}

/* ====================================
   REASONS
   ==================================== */
.reasons {
  padding: 80px 0;
  background: linear-gradient(180deg, #e8f5e9 0%, #f1f8e9 50%, #fff 100%);
}

.reasons .plan-block {
  gap: 30px;
}

.reasons .plan-block:last-child {
  margin-bottom: 0;
}

/* ====================================
   PROFILE
   ==================================== */
.profile {
  padding: 80px 0;
  background: linear-gradient(180deg, #fce4ec 0%, #fff0f5 50%, #fff 100%);
}

.profile .section-label-en { color: #f48fb1; }
.profile .deco-line { background: linear-gradient(90deg, transparent, #f48fb1, transparent); }
.profile .deco-icon { color: #f48fb1; }

.profile-block {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 50px;
  background: #fff;
  border-radius: 24px;
  border: 3px dashed #f8bbd0;
  transition: box-shadow 0.3s;
}

.profile-block:hover {
  box-shadow: 0 8px 30px rgba(244, 143, 177, 0.08);
}

.profile-img {
  flex: 0 0 320px;
  text-align: center;
}

.profile-photo-frame {
  position: relative;
  background: #fff;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: inline-block;
}

.profile-photo-frame img {
  width: 100%;
  border-radius: 4px;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.profile-photo-caption {
  display: block;
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  color: #f48fb1;
  margin-top: 12px;
}

.profile-text {
  flex: 1;
  min-width: 0;
}

.profile-label {
  display: inline-block;
  background: linear-gradient(135deg, #f48fb1, #f06292);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 22px;
  letter-spacing: 0.05em;
}

.profile-label i {
  margin-right: 6px;
}

.profile-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #4a3a2f;
  margin-bottom: 22px;
  line-height: 1.7;
}

.profile-text p {
  font-size: 0.95rem;
  color: #7a6a5f;
  line-height: 2;
  margin-bottom: 18px;
}

.profile-text p strong {
  color: #f06292;
  font-weight: 700;
}

.profile-signoff {
  font-family: 'Caveat', cursive;
  font-size: 1.6rem !important;
  color: #f48fb1 !important;
  margin-top: 10px;
  margin-bottom: 0 !important;
}

.profile-location {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 24px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #f5f0eb, #faf7f4);
  border-radius: 14px;
  border-left: 4px solid #a5d6a7;
}

.profile-location-icon {
  color: #a5d6a7;
  font-size: 1.2rem;
  margin-top: 2px;
  min-width: 20px;
}

.profile-location-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.profile-location-address {
  font-size: 0.92rem !important;
  font-weight: 700;
  color: #5a4a3f !important;
  margin-bottom: 0 !important;
}

.profile-location-note {
  font-size: 0.78rem !important;
  color: #8a7a6f !important;
  line-height: 1.7;
  margin-bottom: 0 !important;
}

.profile-location-note i {
  color: #ccc;
  margin-right: 4px;
  font-size: 0.72rem;
}

/* ====================================
   FLOATING EVENT BUTTON
   ==================================== */
.floating-event {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  width: 96px;
  height: 96px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8a65, #f06292, #ec407a);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(244, 143, 177, 0.45), 0 2px 8px rgba(236, 64, 122, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: inherit;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: floating-bob 2.8s ease-in-out infinite;
}

.floating-event:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 12px 30px rgba(244, 143, 177, 0.55), 0 4px 12px rgba(236, 64, 122, 0.3);
}

.floating-event-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.floating-event-text {
  font-size: 0.72rem;
  line-height: 1.25;
  letter-spacing: 0.03em;
  text-align: center;
}

.floating-event-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(244, 143, 177, 0.6);
  animation: floating-pulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes floating-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes floating-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ====================================
   FAQ
   ==================================== */
.faq {
  padding: 80px 0;
  background: #fffbf0;
}

.faq .section-label-en { color: #ffb74d; }
.faq .deco-line { background: linear-gradient(90deg, transparent, #ffb74d, transparent); }
.faq .deco-icon { color: #ffb74d; }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(90, 74, 63, 0.06);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(90, 74, 63, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #5a4a3f;
  text-align: left;
  line-height: 1.6;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #fff9f0;
}

.faq-q-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb74d, #ffa726);
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.faq-arrow {
  margin-left: auto;
  color: #ffb74d;
  font-size: 0.85rem;
  transition: transform 0.3s;
  min-width: 16px;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: flex;
  gap: 14px;
  padding: 0 24px 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  padding: 0 24px 20px 24px;
  max-height: 200px;
}

.faq-a-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f48fb1, #f06292);
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.faq-answer p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: #6b5b50;
  padding-top: 6px;
}

/* ====================================
   CTA
   ==================================== */
.cta-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #f48fb1, #f06292, #ec407a);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-zigzag-top,
.cta-zigzag-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  height: 20px;
}

.cta-zigzag-top {
  top: 0;
  background:
    linear-gradient(135deg, #fff 33.33%, transparent 33.33%) 0 0,
    linear-gradient(225deg, #fff 33.33%, transparent 33.33%) 0 0;
  background-size: 30px 20px;
}

.cta-zigzag-bottom {
  bottom: 0;
  background:
    linear-gradient(315deg, #fffcf5 33.33%, transparent 33.33%) 0 0,
    linear-gradient(45deg, #fffcf5 33.33%, transparent 33.33%) 0 0;
  background-size: 30px 20px;
}

.cta-deco-left,
.cta-deco-right {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0.1;
  background: #fff;
}

.cta-deco-left {
  top: -60px;
  left: -60px;
}

.cta-deco-right {
  bottom: -60px;
  right: -60px;
}

.cta-section h2 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.cta-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
  background: #fffcf5;
  padding: 60px 20px 0;
  border-top: 3px solid #ffe082;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-info p {
  font-size: 0.85rem;
  color: #8a7a6f;
  margin-bottom: 6px;
  line-height: 1.7;
}

.footer-sns {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-sns a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e0d6c8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5a4a3f;
  font-size: 1rem;
  transition: all 0.3s;
}

.footer-sns a:hover {
  background: #f48fb1;
  border-color: #f48fb1;
  color: #fff;
  opacity: 1;
}

.footer-right h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #5a4a3f;
  margin-bottom: 15px;
}

.footer-right ul li {
  margin-bottom: 10px;
}

.footer-right ul li a {
  font-size: 0.85rem;
  color: #8a7a6f;
  transition: color 0.3s;
}

.footer-right ul li a:hover {
  color: #f06292;
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid #e8ddd0;
  text-align: center;
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #aaa;
}

/* ====================================
   RESPONSIVE
   ==================================== */

/* Tablet */
@media (max-width: 960px) {
  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .news-bar-inner {
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
  }

  .news-link {
    white-space: normal;
  }

  .hero-inner {
    justify-content: center;
    align-items: flex-end;
    padding: 120px 20px 80px;
    padding-top: 45vh;
  }

  .hero-text {
    max-width: 420px;
    text-align: center;
    background: transparent;
  }

  .plan-block {
    flex-direction: column;
    padding: 30px;
    gap: 30px;
  }

  .plan-block.reverse {
    flex-direction: column;
  }

  .plan-block-img {
    flex: none;
    width: 100%;
    max-width: 360px;
  }

  .event-gallery {
    padding: 24px 20px 28px;
    margin: -20px 0 50px;
  }

  .event-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .event-gallery-item .plan-photo-frame img {
    height: 140px;
  }

  .profile-block {
    flex-direction: column;
    padding: 35px 30px;
    gap: 35px;
    text-align: center;
  }

  .profile-img {
    flex: none;
    width: 100%;
    max-width: 280px;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

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

  .footer-sns {
    justify-content: center;
  }

  .plan-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .plan-coming-soon-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 16px;
  }

  .plan-banner-thumb {
    width: 100px;
    height: 100px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  html {
    font-size: 16.5px;
  }

  .header-inner {
    height: 60px;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-inner {
    padding: 110px 20px 40px;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 100vh;
    flex-direction: column;
  }

  .hero-text {
    max-width: 100%;
    padding: 20px 18px 20px 10px;
    border-radius: 20px;
    background: transparent;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .sp-only {
    display: inline;
  }

  .hero-text h1 {
    font-size: 1.15rem;
    white-space: normal;
  }

  .hero-sub {
    font-size: 0.85rem;
    margin-bottom: 25px;
  }

  .hero-text .btn-primary {
    margin-top: auto;
    align-self: flex-end;
    margin-right: 10px;
    margin-bottom: 20px;
  }

  .btn-primary {
    padding: 14px 32px;
    font-size: 0.95rem;
  }

  .section-title h2 {
    font-size: 1.4rem;
  }

  .plans,
  .gallery,
  .reasons,
  .faq {
    padding: 60px 0;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 0.92rem;
    gap: 10px;
  }

  .faq-q-icon,
  .faq-a-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 0.85rem;
  }

  .faq-answer {
    padding: 0 18px 0 18px;
    gap: 10px;
  }

  .faq-item.open .faq-answer {
    padding: 0 18px 16px 18px;
  }

  .faq-answer p {
    font-size: 0.85rem;
  }

  .plan-block {
    padding: 25px 20px;
    gap: 25px;
    margin-bottom: 40px;
  }

  .profile {
    padding: 60px 0;
  }

  .profile-block {
    padding: 30px 22px;
    gap: 28px;
  }

  .profile-text h3 {
    font-size: 1.1rem;
  }

  .profile-text p {
    font-size: 0.88rem;
  }

  .plan-label {
    font-size: 1rem;
  }

  .sub-tag {
    padding: 6px 14px;
    font-size: 0.82rem;
  }

  .sub-tag-etc {
    font-size: 0.82rem;
  }

  .price-amount {
    font-size: 1.5rem;
  }

  .plan-pricing-cards {
    flex-direction: column;
    gap: 10px;
  }

  .pricing-card {
    width: 100%;
    min-width: unset;
    padding: 14px 18px;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
  }

  .pricing-card-amount {
    font-size: 1.4rem;
  }

  .pricing-card-divider {
    font-size: 1.1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 100%;
    padding: 0 10px;
  }

  .gallery-item {
    aspect-ratio: auto;
  }

  .gallery-item:nth-child(n) {
    transform: rotate(0deg);
  }

  .gallery-item .gallery-frame {
    height: auto;
  }

  .gallery-item .gallery-frame img {
    aspect-ratio: 4/3;
    width: 100%;
    height: auto;
  }

  .gallery-caption {
    font-size: 0.75rem;
    margin-top: 6px;
  }

  .cta-section {
    padding: 50px 20px;
  }

  .cta-section h2 {
    font-size: 1.3rem;
  }

  .btn-cta {
    padding: 14px 36px;
    font-size: 1rem;
  }

  .floating-event {
    right: 16px;
    bottom: 16px;
    width: 78px;
    height: 78px;
  }

  .floating-event-icon {
    font-size: 1.2rem;
  }

  .floating-event-text {
    font-size: 0.62rem;
  }
}
