@charset "UTF-8";
/* 共通設定 */
:root {
  --color-pink: #fce4ec;
  --color-pink-dark: #f06292;
  --color-blue: #e0f7fa;
  --color-blue-dark: #4dd0e1;
  --color-green: #e8f5e9;
  --color-green-dark: #81c784;
  --color-text: #333333;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--color-text);
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-size: 16px;
  background-color: #fafafa;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
  user-select: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  object-fit: cover;
}

/* セクション共通 */
section {
  padding: 80px 0;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  section {
    padding: 120px 0;
    margin-bottom: 120px;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 36px;
  font-weight: bold;
  color: #3b3b3b;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  line-height: 1.4;
}
.section-title img.title-ornament {
  display: block;
  margin: 0 auto;
  max-width: 50%;
  height: auto;
}

/* リンクとボタン */
a {
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.8;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}
.header-logo {
  font-weight: 700;
  font-size: 1.25rem;
}
.header-nav {
  display: none;
}
@media (min-width: 1024px) {
  .header-nav {
    display: flex;
    gap: 30px;
    align-items: center;
  }
}
.header-contact {
  display: none;
}
@media (min-width: 1024px) {
  .header-contact {
    display: block;
    background-color: var(--color-pink-dark);
    color: #fff;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: bold;
    text-decoration: none;
  }
}

/* Hamburger */
.hamburger {
  display: block;
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 1002;
}
.hamburger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  left: 0;
  transition: all 0.3s;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { bottom: 0; }
@media (min-width: 1024px) {
  .hamburger { display: none; }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 1003;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
  text-align: center;
}
.mobile-menu li {
  margin: 20px 0;
}
.mobile-menu a {
  font-size: 1.25rem;
  color: var(--color-text);
  text-decoration: none;
  font-weight: bold;
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
}

/* FV */
.fv {
  width: 100%;
  height: auto;
  margin-top: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.fv-swiper {
  width: 100%;
  height: auto;
}
.fv-swiper .swiper-slide {
  width: 100%;
  height: auto;
}
.fv picture {
  width: 100%;
  height: auto;
  display: block;
}
.fv img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Scrool Down Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background: #fff;
  margin-top: 10px;
  animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* CTA Wide */
.bg-cta { background-color: var(--color-pink-dark); }
.cta-wide {
  width: 100%;
  background-color: var(--color-pink-dark);
  padding: 40px 20px;
  text-align: center;
  color: #fff;
}
.cta-wide p {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.cta-wide a {
  display: inline-block;
  background: #fff;
  color: var(--color-pink-dark);
  padding: 15px 40px;
  border-radius: 999px;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
}

/* Sections Layouts */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.g-grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 768px) {
  .g-grid-2 { grid-template-columns: 1fr 1fr; }
  .g-grid-asym { grid-template-columns: 40% 60%; }
  .g-grid-asym-rev { grid-template-columns: 60% 40%; }
}

/* Floating Elements */
.bottom-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-pink-dark);
  color: #fff;
  text-align: center;
  padding: 15px;
  font-weight: bold;
  z-index: 999;
  display: block;
}
@media (min-width: 1024px) {
  .bottom-cta { display: none; }
}

.to-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--color-blue-dark);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.to-top.show {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 1024px) {
  .to-top { bottom: 20px; }
}

/* Overrides & Utilities */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  color: #fff;
  padding: 100px 20px;
}
.parallax-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}
.parallax-content {
  position: relative;
  z-index: 2;
}

.table-price {
  width: 100%;
  border-collapse: collapse;
}
.table-price th, .table-price td {
  padding: 10px;
  border-bottom: 1px dashed rgba(255,255,255,0.5);
}
.table-price td {
  text-align: right;
  font-weight: bold;
  font-size: 1.25rem;
}
