/* ========================================
   LP専用スタイル - 独立したスタイルシート
   ======================================== */

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

html {
  scrollbar-gutter: stable;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
}

body {
  font-family: 'Yomogi', sans-serif;
  color: #666666;
  line-height: 1.6;
  background-color: #ffe4ec;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  max-width: 100vw;
  height: auto;
  min-height: 100%;
}

/* LPフォルダと同じ構造にするため、bodyは通常のoverflow */

/* LPページ専用のbodyスタイル */
body.lp-page-body {
  overflow-x: hidden !important;
  overflow-y: auto !important;
  height: auto !important;
  min-height: 100vh !important;
  max-height: none !important;
  position: static !important;
}

/* 通常のテーマの.main-containerがLPページに影響しないように */
body.lp-page-body .main-container {
  margin-top: 0 !important;
  padding: 0 !important;
  max-width: none !important;
  overflow: visible !important;
}

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

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

/* ========================================
   ヘッダースタイル
   ======================================== */
.vn-header.lp-header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100vw;
  top: 0;
  z-index: 1000;
  color: #880e4f;
  padding: 0 5px 0 0;
}

.lp-header .header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.lp-header .header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.lp-header .header-logo img {
  height: 60px;
  width: auto;
}

.lp-header .gnav {
  background-color: transparent;
}

.lp-header .primary-menu {
  display: flex;
  list-style: none;
  align-items: center;
  margin: 0;
}

.lp-header .primary-menu li {
  margin-left: 30px;
  position: relative;
}

.lp-header .primary-menu a {
  color: #ff6495;
  font-weight: 500;
  font-size: 1rem;
  padding: 5px 0;
  position: relative;
  font-family: 'Yomogi', sans-serif;
  transition: color 0.3s ease;
}

.lp-header .primary-menu a:hover {
  color: #ff90b3;
}

.lp-header .primary-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #ff90b3;
  transition: width 0.3s ease;
}

.lp-header .primary-menu a:hover::after {
  width: 100%;
}

.lp-header .menu-toggle {
  display: block;
  background-color: #FFA9BA;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-header .gnav[hidden] {
  display: none;
}

.lp-header .gnav.is-open {
  display: block;
}

@media (min-width: 768px) {
  .lp-header .menu-toggle {
    display: none;
  }
  .lp-header .gnav {
    display: block !important;
  }
}

@media (max-width: 768px) {
  .lp-header .header-top {
    flex-direction: row;
    justify-content: space-between;
  }

  .lp-header .menu-toggle {
    display: block;
  }

  .lp-header .gnav {
    display: none;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
  }

  .lp-header .gnav.active {
    display: block;
  }

  .lp-header .primary-menu {
    flex-direction: column;
    padding: 20px 0;
  }

  .lp-header .primary-menu li {
    margin: 10px 0;
  }
}

@media (max-width: 576px) {
  .lp-header .header-logo img {
    height: 50px;
  }

  .lp-header .header-container {
    padding: 0 15px;
  }
}

/* ========================================
   フッタースタイル
   ======================================== */
.vn-footer.lp-footer {
  background-color: #ff6495;
  color: #ffffff;
  padding: 60px 0 40px;
  text-align: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.lp-footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.lp-footer .footer-logo {
  margin: -20px 0 30px 0;
}

.lp-footer .footer-logo img {
  height: 60px;
  width: auto;
}

.lp-footer .footer-sns {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
}

.lp-footer .sns-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.lp-footer .sns-icon img {
  width: 48px;
}

.lp-footer .sns-icon:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.lp-footer .footer-bottom {
  font-size: 0.85rem;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.lp-footer .copyright {
  margin: 10px 0 0 0;
  font-family: 'Yomogi', sans-serif;
}

.lp-footer .footer-policies {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.lp-footer .footer-policies a {
  color: #ffffff;
  font-size: 0.85rem;
  transition: color 0.3s ease;
  font-family: 'Yomogi', sans-serif;
}

.lp-footer .footer-policies a:hover {
  color: #ffe4ec;
}

@media (max-width: 768px) {
  .lp-footer {
    padding: 30px 0 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .lp-footer .footer-logo img {
    height: 48px;
    margin: 20px 0 0 0;
  }

  .lp-footer .footer-policies a {
    font-size: 0.8rem;
  }

  .lp-footer .sns-icon {
    width: 64px;
    height: 64px;
  }

  .lp-footer .sns-icon img {
    width: 42px;
  }
}

/* ========================================
   メインコンテナ（LPページでは使用しない）
   ======================================== */
/* LPページではheader-lp.phpとfooter-lp.phpで.main-containerを出力していません */

/* ========================================
   トップへ戻るボタン
   ======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff4d91, #ff6aa2);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 16px rgba(255, 77, 145, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(255, 77, 145, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* LP用のグローバルスタイル */
.lp-page {
    font-family: 'Yomogi', sans-serif;
    color: #666666;
    line-height: 1.6;
    background-color: #ffe4ec;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.2em;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    min-height: 100vh;
    overflow: visible !important; /* 切り抜きが表示されるように */
    position: relative;
}

/* LPページのすべてのセクションにz-indexを設定 */
.lp-page section {
    position: relative;
    z-index: auto;
}

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

.lp-page a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.lp-page ul {
    list-style: none;
}

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

.lp-c-pink {
    color: #ff4d91!important
}

/* ========================================
   メインビジュアル
   ======================================== */
.lp-main-visual {
    position: relative;
    width: 100%;
    min-height: 80vh;
    overflow: visible;
    background-image: url('../images/bg.jpg');
    background-size: 800px 800px;
    background-repeat: repeat;
    background-position: top left;
    margin: 0;
    margin-top: 108px; /* fixedヘッダー分の余白（padding 20px + logo 60px + padding 20px = 100px） */
    padding: 0;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 5vw), 50% 100%, 0 calc(100% - 5vw));
    margin-bottom: -5vw;
    z-index: 100;
}

/* スマホ版でのヘッダーの高さ調整 */
@media (max-width: 576px) {
    .lp-main-visual {
        margin-top: 98px; /* padding 20px + logo 50px + padding 20px = 90px */
    }
}

.lp-main-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 1;
    pointer-events: none;
    clip-path: inherit;
}

.lp-main-visual-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 80vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    align-items: stretch;
    gap: 0;
    padding: 0;
    z-index: 2;
}

.lp-main-visual-content {
    position: relative;
    z-index: 2;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    padding-left: 60px;
    padding-right: 40px;
    height: 100%;
    box-sizing: border-box;
    opacity: 0;
    animation: lpFadeInUp 1s ease-out forwards;
}

.lp-main-visual-content-sp {
    display: none;
}

.lp-main-visual-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 80vh;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.lp-main-visual-bg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    display: block;
}

.lp-main-title-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin-bottom: 20px;
    animation: lpFadeInUp 1s ease-out 0.2s both;
}

.lp-release-date-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    display: block;
    animation: lpFadeInUp 1s ease-out 0.4s both;
}

@keyframes lpFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   STORE PAGESセクション
   ======================================== */
.lp-store-pages-section {
    background-color: #ffe4ec;
    padding: 5vw 0;
    position: relative;
}

.lp-store-pages-section .lp-container {
    padding-bottom: 60px;
}

.lp-store-pages-section::after {
    content: '';
    position: absolute;
    bottom: -6vw;
    left: 0;
    width: 100%;
    height: 6vw;
    background-color: #ffe4ec;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    z-index: 10;
}

.lp-product-package-image {
    text-align: center;
    margin: 0 auto 60px;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.lp-product-package-image.in-view {
    opacity: 1;
    transform: translateY(0);
}

.lp-product-package-image img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.lp-store-banners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.lp-store-banners.in-view {
    opacity: 1;
    transform: translateY(0);
}

.lp-store-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    border-radius: 8px;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 900;
    font-family: "Zen Maru Gothic", "ヒラギノ丸ゴ ProN W4", "Hiragino Maru Gothic ProN", "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    min-height: 80px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    width: 100%;
    max-width: min(600px, 95%);
}

.lp-store-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.lp-store-button:active {
    transform: translateY(-2px) scale(1.02);
    transition: all 0.1s ease;
}

.lp-store-button-text {
    position: relative;
    z-index: 1;
    letter-spacing: 0.1em;
    color: inherit;
}

.lp-store-button-dlsite {
    background: #ffffff;
    color: #3b82f6;
    border: 3px solid #3b82f6;
}

.lp-store-button-dlsite:hover {
    background: #3b82f6;
    color: #ffffff !important;
    border-color: #3b82f6;
}

.lp-store-button-dlsite:hover .lp-store-button-text {
    color: #ffffff;
}

.lp-store-button-fanza {
    background: #ffffff;
    color: #ef4444;
    border: 3px solid #ef4444;
}

.lp-store-button-fanza:hover {
    background: #ef4444;
    color: #ffffff !important;
    border-color: #ef4444;
}

.lp-store-button-fanza:hover .lp-store-button-text {
    color: #ffffff;
}

/* ========================================
   セクション共通スタイル
   ======================================== */
.lp-page section {
    padding: 80px 0;
    position: relative;
}

.lp-section-title {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.lp-section-title.in-view {
    opacity: 1;
    transform: translateY(0);
}

.lp-title-text {
    display: block;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: #666666;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    font-family: "Zen Maru Gothic", "ヒラギノ丸ゴ ProN W4", "Hiragino Maru Gothic ProN", "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.lp-title-text .first-char {
    color: #ff4d91;
}

.lp-title-sub {
    display: block;
    margin-top: -10px;
    font-size: clamp(16px, 2vw, 20px);
    color: #666666;
    font-weight: bold;
    font-family: "Zen Maru Gothic", "ヒラギノ丸ゴ ProN W4", "Hiragino Maru Gothic ProN", "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

/* ========================================
   ストーリーセクション
   ======================================== */
.lp-story-section {
    background-image: url('../images/bg.jpg');
    background-size: 800px 800px;
    background-repeat: repeat;
    background-position: top left;
    position: relative;
    padding: 5vw 0;
}

.lp-story-section::after {
    content: '';
    position: absolute;
    bottom: -6vw;
    left: 0;
    width: 100%;
    height: 6vw;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
        url('../images/bg.jpg');
    background-size: 100% 100%, 800px 800px;
    background-repeat: no-repeat, repeat;
    background-position: center, top left;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    z-index: 10;
}

.lp-story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 0;
}

.lp-story-section .lp-container {
    position: relative;
    z-index: 1;
}

.lp-story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 15px;
}

.lp-story-text {
    font-size: clamp(16px, 2.5vw, 20px);
    line-height: 2;
    color: #333333;
    font-weight: bold;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.lp-story-text:last-child {
    margin-bottom: 0;
}

.lp-story-text.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   キャラクターセクション
   ======================================== */
.lp-character-section {
    background-color: #ffe4ec;
    position: relative;
    padding: 5vw 0;
}

.lp-character-section::after {
    content: '';
    position: absolute;
    bottom: -6vw;
    left: 0;
    width: 100%;
    height: 6vw;
    background-color: #ffe4ec;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    z-index: 10;
}

.lp-character-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.lp-character-image {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.lp-character-image.in-view {
    opacity: 1;
    transform: translateX(0);
}

.lp-character-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.lp-character-info {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 15px;
    color: #333333;
    font-weight: bold;
}

.lp-character-info.in-view {
    opacity: 1;
    transform: translateX(0);
}

.lp-character-name {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: bold;
    color: #ff4d91;
    margin-bottom: 10px;
}

.lp-character-cv {
    font-size: 18px;
    color: #333333;
    margin-bottom: 30px;
}

.lp-character-description {
    font-size: 16px;
    line-height: 2;
    color: #333333;
}

/* ========================================
   サンプルセクション
   ======================================== */
.lp-sample-section {
    background-image: url('../images/bg.jpg');
    background-size: 800px 800px;
    background-repeat: repeat;
    background-position: top left;
    position: relative;
    padding: 5vw 0;
}

.lp-sample-section::after {
    content: '';
    position: absolute;
    bottom: -6vw;
    left: 0;
    width: 100%;
    height: 6vw;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
        url('../images/bg.jpg');
    background-size: 100% 100%, 800px 800px;
    background-repeat: no-repeat, repeat;
    background-position: center, top left;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    z-index: 10;
}

.lp-sample-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 0;
}

.lp-sample-section .lp-container {
    position: relative;
    z-index: 1;
}

.lp-sample-video-container {
    max-width: min(500px, 95%);
    width: 95%;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.lp-sample-video-container.in-view {
    opacity: 1;
    transform: translateY(0);
}

.lp-sample-video {
    width: 100%;
    height: auto;
    max-height: 750px;
    aspect-ratio: 2 / 3;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    background-color: #000;
}

/* ========================================
   トラックリストセクション
   ======================================== */
.lp-tracklist-section {
    background-color: #ffe4ec;
    position: relative;
    padding: 5vw 0;
}

.lp-tracklist-section::after {
    content: '';
    position: absolute;
    bottom: -6vw;
    left: 0;
    width: 100%;
    height: 6vw;
    background-color: #ffe4ec;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    z-index: 10;
}

.lp-tracklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.lp-tracklist-grid.in-view {
    opacity: 1;
    transform: translateY(0);
}

.lp-tracklist-column {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.lp-tracklist-category-title {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 700;
    color: #ff4d91;
    margin-bottom: 20px;
    text-align: center;
    font-family: "Zen Maru Gothic", "ヒラギノ丸ゴ ProN W4", "Hiragino Maru Gothic ProN", "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    border-bottom: 2px solid #ff4d91;
    padding-bottom: 10px;
}

.lp-tracklist-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-tracklist-item {
    font-size: clamp(16px, 2vw, 18px);
    color: #333333;
    line-height: 2;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 77, 145, 0.2);
    font-weight: 500;
}

.lp-tracklist-item:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .lp-tracklist-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ========================================
   クレジットセクション
   ======================================== */
.lp-credit-section {
    background-image: url('../images/bg.jpg');
    background-size: 800px 800px;
    background-repeat: repeat;
    background-position: top left;
    position: relative;
    padding: 5vw 0;
    margin-bottom: 0;
}

/* 切り抜き装飾は不要（フッターが隠れないように）*/
.lp-credit-section::after {
    display: none;
}

.lp-credit-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 0;
}

.lp-credit-section .lp-container {
    position: relative;
    z-index: 1;
}

.lp-product-credits {
    background: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 3px solid #ff4d91;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.lp-product-credits.in-view {
    opacity: 1;
    transform: translateY(0);
}

.lp-credits-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 500px;
    margin: 0 auto;
}

.lp-credit-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.lp-credit-label {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: bold;
    text-align: left;
}

.lp-credit-value {
    font-size: clamp(16px, 2.5vw, 20px);
    color: #333333;
    font-weight: bold;
    line-height: 1.8;
    text-align: left;
}

/* ========================================
   レスポンシブデザイン
   ======================================== */

/* タブレット・小さめPCサイズ */
@media (max-width: 1230px) and (min-width: 769px) {
    .lp-main-visual {
        min-height: 50vh;
        height: auto;
    }

    .lp-main-visual-container {
        min-height: 50vh;
        height: auto;
    }

    .lp-main-visual-image {
        min-height: 50vh;
        height: 100%;
    }

    .lp-main-visual-bg {
        height: 100%;
        object-fit: cover;
    }

    .lp-main-visual-content {
        padding-left: 40px;
        padding-right: 20px;
    }

    .lp-main-title-image {
        max-width: 90%;
    }

    .lp-release-date-image {
        max-width: 80%;
    }
}

/* スマホサイズ */
@media (max-width: 768px) {
    .lp-main-visual {
        min-height: 0;
        height: auto;
        position: relative;
    }

    .lp-main-visual-container {
        grid-template-columns: 1fr;
        min-height: 0;
        height: auto;
        position: relative;
    }

    .lp-main-visual-content-pc {
        display: none !important;
    }

    .lp-main-visual-image {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 0;
        display: block;
    }

    .lp-main-visual-content-sp {
        display: flex !important;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 0 5vw;
        text-align: center;
        z-index: 3;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 65vw;
        box-sizing: border-box;
    }

    .lp-main-visual-content-sp .lp-main-title-image {
        max-width: 90%;
        margin-bottom: 15px;
    }

    .lp-main-visual-content-sp .lp-release-date-image {
        max-width: 90%;
    }

    .lp-main-visual-bg {
        width: 100%;
        height: auto;
        min-height: 0;
        object-fit: contain;
        object-position: top center;
        display: block;
    }

    .lp-store-banners {
        gap: 20px;
    }

    .lp-character-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lp-character-image {
        transform: translateY(-30px);
    }

    .lp-character-image.in-view {
        transform: translateY(0);
    }

    .lp-character-info {
        transform: translateY(30px);
    }

    .lp-character-info.in-view {
        transform: translateY(0);
    }

    .lp-sample-video-container {
        padding: 0 20px;
    }

    .lp-page section {
        padding: 60px 0;
    }

    .lp-credit-row {
        grid-template-columns: 120px 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .lp-main-visual {
        min-height: 0 !important;
        height: auto !important;
    }

    .lp-main-visual-container {
        min-height: 0 !important;
        height: auto !important;
    }

    .lp-main-visual-image {
        min-height: 0 !important;
        height: auto !important;
    }

    .lp-main-visual-bg {
        height: auto !important;
        min-height: 0 !important;
    }

    .lp-main-visual-content {
        padding: 0 15px;
    }

    .lp-main-visual-content-sp {
        padding-top: 60vw !important;
    }

    .lp-main-visual-content-sp .lp-main-title-image {
        max-width: 95%;
    }

    .lp-main-visual-content-sp .lp-release-date-image {
        max-width: 95%;
    }

    .lp-section-title {
        margin-bottom: 40px;
    }

    .lp-story-text {
        font-size: 14px;
    }

    .lp-credit-row {
        grid-template-columns: 100px 1fr;
        gap: 15px;
    }
}

