/* ===================================
   Global Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #e50914;
    --dark-bg: #000000;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --accent-glow: rgba(229, 9, 20, 0.6);
}

body {
    font-family: 'Arial', 'Helvetica Neue', sans-serif;
    background: linear-gradient(to bottom, #000000 0%, #000000 100%);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

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

/* ===================================
   Header & Hamburger Menu
   =================================== */
.header {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 30px;
}

.hamburger {
    width: 40px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-red);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--accent-glow);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(13.5px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-13.5px) rotate(-45deg);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98), rgba(229, 9, 20, 0.1));
    backdrop-filter: blur(10px);
    transition: right 0.4s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 2px solid var(--primary-red);
}

.nav-menu.active {
    right: 0;
}

.nav-menu ul {
    list-style: none;
    text-align: center;
}

.nav-menu ul li {
    margin: 30px 0;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-link::before {
    content: '☆';
    position: absolute;
    left: -30px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-red);
}

.nav-link:hover {
    color: var(--primary-red);
    text-shadow: 0 0 20px var(--accent-glow);
    transform: translateX(10px);
}

.nav-link:hover::before {
    opacity: 1;
    left: -25px;
}

/* ===================================
   Hero Section (First View)
   =================================== */
.hero {
    width: 100%;
    position: relative;
    z-index: 1;
    padding-bottom: 300px;
    margin-bottom: -300px;
}

.hero-image {
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 1025px) {
    .hero {
        padding-bottom: 500px;
        margin-bottom: -500px;
    }
}

/* PC/ノートPC用画像 */
.hero-image-pc {
    width: 100%;
    display: block !important;
    max-width: 100%;
}

/* タブレット/スマートフォン用画像 */
.hero-image-mobile {
    width: 100%;
    display: none !important;
    max-width: 100%;
}

/* レスポンシブで画像を切り替え */
@media (max-width: 1024px) {
    .hero-image-pc {
        display: none !important;
    }
    
    .hero-image-mobile {
        display: block !important;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 1s ease 2s backwards;
    z-index: 10;
}

.scroll-indicator span {
    color: var(--primary-red);
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 3px;
    text-shadow: 0 0 10px var(--accent-glow);
}

.scroll-arrow {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-red), transparent);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(15px);
        opacity: 0.5;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* ===================================
   Background Video
   =================================== */
.background-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* ===================================
   Section Styles
   =================================== */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.section:first-of-type {
    margin-top: 1200px;
}

/* Responsive adjustments for NEWS section margin */
@media (min-width: 769px) and (max-width: 1024px) {
    .section:first-of-type {
        margin-top: 1800px;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {
    .section:first-of-type {
        margin-top: 3000px;
    }
}

@media (min-width: 1441px) {
    .section:first-of-type {
        margin-top: 3500px;
    }
}

.section-dark {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.4), rgba(26, 5, 5, 0.4));
}

/* Section Header with Stars */
.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    gap: 20px;
}

.stars-left,
.stars-right {
    color: var(--primary-red);
    font-size: 20px;
    letter-spacing: 5px;
    animation: starsPulse 2s ease-in-out infinite;
    text-shadow: 0 0 10px var(--accent-glow);
}

@keyframes starsPulse {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 10px var(--accent-glow);
    }
    50% {
        opacity: 0.6;
        text-shadow: 0 0 5px var(--accent-glow);
    }
}

.section-title-box {
    background: repeating-linear-gradient(
        45deg,
        var(--primary-red),
        var(--primary-red) 10px,
        #c50812 10px,
        #c50812 20px
    );
    padding: 15px 50px;
    transform: skewX(-10deg);
    box-shadow: 0 0 30px var(--accent-glow);
}

.section-title {
    color: #000000;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 5px;
    transform: skewX(10deg);
}

/* ===================================
   NEWS Section
   =================================== */
.news-list {
    max-width: 900px;
    margin: 0 auto;
}

.news-item {
    border-bottom: 1px solid rgba(229, 9, 20, 0.3);
    padding: 25px 0;
    display: flex;
    gap: 30px;
    align-items: center;
    transition: all 0.3s ease;
}

.news-item:hover {
    background: rgba(229, 9, 20, 0.05);
    padding-left: 20px;
    border-left: 3px solid var(--primary-red);
}

.news-date {
    color: var(--primary-red);
    font-weight: bold;
    font-size: 18px;
    min-width: 120px;
}

.news-text {
    color: var(--text-white);
    font-size: 16px;
    line-height: 1.8;
}

.news-hidden {
    display: none;
}

.news-hidden.show {
    display: flex;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-more-btn {
    display: block;
    margin: 40px auto 0;
    padding: 12px 40px;
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-more-btn:hover {
    background: var(--primary-red);
    color: var(--text-white);
}

.news-more-btn.hidden {
    display: none;
}

/* ===================================
   ABOUT Section
   =================================== */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.about-content p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
}

/* ===================================
   PRODUCTS Section
   =================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-item {
    background: linear-gradient(145deg, #1a0505, #0a0a0a);
    border: 2px solid rgba(229, 9, 20, 0.3);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.product-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(229, 9, 20, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 40px var(--accent-glow);
}

.product-item:hover::before {
    opacity: 1;
}

.product-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image img {
    width: 80%;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
    display: block;
}

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.product-title {
    color: var(--primary-red);
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-subtitle {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.product-details {
    margin-top: 20px;
}

.product-price {
    color: var(--primary-red);
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.product-features {
    list-style: none;
    color: var(--text-gray);
    font-size: 14px;
    line-height: 2;
}

.product-features li::before {
    content: '☆ ';
    color: var(--primary-red);
    margin-right: 5px;
}

/* ===================================
   RESERVATION Section
   =================================== */
.reservation-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.reservation-text {
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: 40px;
}

.btn-reservation {
    display: inline-block;
    padding: 20px 60px;
    background: var(--primary-red);
    color: var(--text-white);
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 3px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 30px var(--accent-glow);
    position: relative;
    overflow: hidden;
}

.btn-reservation::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-reservation:hover::before {
    width: 300px;
    height: 300px;
}

.btn-reservation:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 50px var(--accent-glow);
}

.store-benefits {
    margin-top: 80px;
    text-align: left;
}

.store-benefits h3 {
    color: var(--primary-red);
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.store-benefits ul {
    list-style: none;
    color: var(--text-gray);
    line-height: 2.5;
}

.store-benefits ul li {
    padding-left: 20px;
    position: relative;
}

.store-benefits ul li::before {
    content: '▶';
    color: var(--primary-red);
    position: absolute;
    left: 0;
}

.store-benefits .note {
    margin-top: 30px;
    font-size: 14px;
    color: var(--text-gray);
    text-align: center;
}

/* ===================================
   MOVIE Section
   =================================== */
.movie-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.movie-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.movie-slider::-webkit-scrollbar {
    display: none;
}

.movie-item {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.movie-item:hover {
    transform: translateY(-10px);
}

.movie-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid rgba(229, 9, 20, 0.3);
    transition: all 0.3s ease;
}

.movie-item:hover .movie-thumbnail {
    border-color: var(--primary-red);
    box-shadow: 0 0 30px var(--accent-glow);
}

.movie-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button svg {
    width: 100%;
    height: 100%;
}

.movie-item:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.movie-item:hover .play-button svg circle {
    fill: rgba(255, 255, 255, 0.8);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(229, 9, 20, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--primary-red);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn-prev {
    left: 0;
}

.slider-btn-next {
    right: 0;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.video-modal.active {
    display: block;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.video-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: var(--primary-red);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.video-modal-close:hover {
    background: white;
    color: var(--primary-red);
    transform: rotate(90deg);
}

.video-modal-iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-modal-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .movie-item {
        flex: 0 0 80%;
        min-width: 280px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .movie-slider-wrapper {
        padding: 0 50px;
    }
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: #000000;
    padding: 60px 20px 40px;
    text-align: center;
    position: relative;
    z-index: 3;
}

.footer__top {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer__top dl {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer__top dt {
    color: var(--text-white);
    font-size: 14px;
    font-weight: normal;
    border: 1px solid var(--text-white);
    padding: 8px 25px;
    white-space: nowrap;
}

.footer__top dd {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer__top dd a {
    display: inline-block;
    transition: all 0.3s ease;
}

.footer__top dd a:hover {
    opacity: 0.7;
    transform: translateY(-3px);
}

.footer__top dd svg {
    width: 38px;
    height: 38px;
}

.footer__privacypolicy {
    color: var(--text-white);
    font-size: 14px;
    text-decoration: none;
    border: 1px solid var(--text-white);
    padding: 8px 25px;
    display: inline-block;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer__privacypolicy:hover {
    background: var(--text-white);
    color: #000000;
}

.footer__copyright {
    color: var(--text-white);
    font-size: 11px;
    letter-spacing: 0.5px;
    margin-top: 30px;
}

/* ===================================
   Back to Top Button
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px var(--accent-glow);
    z-index: 998;
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.back-to-top span {
    font-size: 24px;
    font-weight: bold;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-title-box {
        padding: 12px 10px;
    }

    .section-title {
        font-size: 24px;
    }

    .stars-left,
    .stars-right {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .news-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .news-date {
        min-width: auto;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        width: 100%;
    }

    .btn-reservation {
        padding: 15px 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 20px;
        letter-spacing: 3px;
    }

    .section-header {
        gap: 10px;
    }

    .stars-left,
    .stars-right {
        font-size: 10px;
    }
}


.op {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 3000;
  transition: opacity 1.5s, transform 1.5s;
}
.op.fadeout {
  opacity: 0;
  transform: scale(1.2);
  pointer-events: none;
}
.op__inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}
.op__img {
  width: 25%;
  height: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 15%;
     object-position: 50% 15%;
}
.op__img01, .op__img03, .op__img05, .op__img07 {
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 80%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 0% 100%;
  -webkit-mask-position: top center;
  mask-image: linear-gradient(to bottom, #000 0%, #000 80%, transparent 100%);
  mask-repeat: no-repeat;
  mask-size: 0% 100%;
  mask-position: top center;
}
.op__img02, .op__img04, .op__img06 {
  -webkit-mask-image: linear-gradient(to top, #000 0%, #000 80%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 0% 100%;
  -webkit-mask-position: bottom center;
  mask-image: linear-gradient(to top, #000 0%, #000 80%, transparent 100%);
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 0;
          mask-size: 100% 0;
  mask-position: bottom center;
}
.op__img01.on {
  animation: mask01 0.6s ease 0.2s forwards;
}
.op__img02.on {
  animation: mask01 0.6s ease 0.32s forwards;
}
.op__img03.on {
  animation: mask01 0.6s ease 0.44s forwards;
}
.op__img04.on {
  animation: mask01 0.6s ease 0.56s forwards;
}
.op__img05.on {
  animation: mask01 0.6s ease 0.68s forwards;
}
.op__img06.on {
  animation: mask01 0.6s ease 0.8s forwards;
}
.op__img07.on {
  animation: mask01 0.6s ease 0.94s forwards;
}
.op__logo {
  width: 25%;
  height: 50%;
  padding: 10px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-mask-image: linear-gradient(to top, #000 0%, #000 80%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 0% 100%;
  -webkit-mask-position: bottom center;
  mask-image: linear-gradient(to top, #000 0%, #000 80%, transparent 100%);
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 0;
          mask-size: 100% 0;
  mask-position: bottom center;
}
@media screen and (max-width: 768px) {
  .op__logo {
    padding: 2.6666666667vw;
  }
}
.op__logo.on {
  animation: mask01 0.6s ease 1.06s forwards;
}
.op__logo img {
  height: 100%;
  width: 100%;
  max-width: 250px;
  -o-object-fit: contain;
     object-fit: contain;
}

@keyframes mask01 {
  from {
    -webkit-mask-size: 100% 0%;
    mask-size: 100% 0%;
  }
  to {
    -webkit-mask-size: 100% 200%;
    mask-size: 100% 200%;
  }
}

.ichigo {
    display: block;
    max-width: 160px;
    height: auto;
    margin: 10px auto 30px;
}

.store-col {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .store-col {
    flex-direction: column;
    gap: 40px;
  }
}
.store-col > ul {
  width: calc(60% - 5px);
}
@media screen and (max-width: 768px) {
  .store-col > ul {
    width: 100%;
  }
}
.store-col > img {
  width: calc(40% - 5px);
  height: auto;
}
@media screen and (max-width: 768px) {
  .store-col > img {
    width: 75%;
    display: block;
    margin: 0 auto;
  }
}
