@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

:root {
  --color-primary-light: #fef6f8;   /* 非常に柔らかな薄ピンク */
  --color-primary-medium: #fbcfe8;  /* パステルピンク */
  --color-primary-dark: #f472b6;    /* 強めのアクセントピンク */
  --color-accent: #db2777;           /* ボタン等に用いるローズピンク */
  --color-text-main: #3e2723;        /* 上品なダークブラウン */
  --color-bg-white: #ffffff;
  --font-family: 'Noto Sans JP', sans-serif;
}

/* コピペ・テキスト選択防止 */
*, *::before, *::after {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

body {
  font-family: var(--font-family);
  color: var(--color-text-main);
  background-color: var(--color-bg-white);
  line-height: 1.9;
  letter-spacing: 0.06em;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* リンクとインタラクション */
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* セクション間余白ルール (SP: 80px / PC: 120px以上) */
section {
  margin-bottom: 80px;
}
@media (min-width: 1024px) {
  section {
    margin-bottom: 140px;
  }
}

/* 画像制限ルール: 角丸・シャドウ禁止 */
img {
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* 白ロゴ可視化のためのフィルタ */
img[src*="logo1.png"] {
  filter: drop-shadow(0 0 2px rgba(62, 39, 35, 0.8)) drop-shadow(0 0 1px rgba(62, 39, 35, 1));
}

/* ヘッダー固定スタイル */
header {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.85);
  transition: all 0.4s ease;
  z-index: 100;
}

/* FV Swiper 調整 */
.fv-swiper {
  width: 100%;
  height: 100vh;
  position: relative;
}
.fv-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.fv-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}

/* スクロールダウンあしらい */
.scroll-down-wrapper {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.scroll-down-text {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-text-main);
  margin-bottom: 8px;
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.6);
}
.scroll-down-arrow {
  width: 1px;
  height: 48px;
  background-color: rgba(62, 39, 35, 0.4);
  position: relative;
  overflow: hidden;
}
.scroll-down-arrow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 16px;
  background-color: var(--color-text-main);
  animation: scrollDown 2.2s infinite ease-in-out;
}
@keyframes scrollDown {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  65% {
    transform: translateY(48px);
    opacity: 0;
  }
  100% {
    transform: translateY(48px);
    opacity: 0;
  }
}

/* ブロークングリッド用 */
.broken-grid-image {
  transform: translate(12px, -12px);
}
@media (min-width: 1024px) {
  .broken-grid-image {
    transform: translate(24px, -24px);
  }
}

/* パララックス効果 */
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* iOS対応のためのメディアクエリ（iOSではfixedが崩れることがあるためスクロールにする） */
@supports (-webkit-touch-callout: none) {
  .parallax-section {
    background-attachment: scroll;
  }
}

/* モーダルギャラリー */
.modal-overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ボタンのエフェクト */
.hover-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.6s ease;
}
.hover-btn:hover::before {
  left: 100%;
}
.hover-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(219, 39, 119, 0.3);
}

/* カスタムスクロールバー */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-primary-light);
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

/* ==========================================
   FVコンテンツカード・アニメーション
   ========================================== */
.fv-content-card {
  position: relative;
  background-color: transparent;
  border: none;
  box-shadow: none;
  opacity: 0;
  animation: fvFadeInUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.3s;
}

.fv-content-card h1,
.fv-content-card p {
  text-shadow: 0 0 15px rgba(255, 255, 255, 1), 
               0 0 10px rgba(255, 255, 255, 1), 
               0 0 5px rgba(255, 255, 255, 0.8);
}

@keyframes fvFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

