* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    0%, 50% {
        border-color: transparent;
    }
    51%, 100% {
        border-color: white;
    }
}

/* Animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* ===== MOBILE HEADER STYLES ===== */
.header {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 0 15px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    animation: slideInDown 0.8s ease-out;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 15px 0 10px;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

.logo {
    font-size: 28px;
    font-weight: 300;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: slideInDown 0.8s ease-out 0.3s both;
    margin-bottom: 15px;
    display: block;
}

.logo img {
    height: 48px;
    display: block;
}

.header.scrolled .logo img {
    height: 40px;
}

.logo:hover {
    transform: scale(1.05);
    color: #555;
}

.nav {
    display: flex;
    gap: 30px;
    justify-content: center;
    width: 100%;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    animation: fadeInUp 0.8s ease-out both;
}

.nav a:nth-child(1) { animation-delay: 0.4s; }
.nav a:nth-child(2) { animation-delay: 0.5s; }
.nav a:nth-child(3) { animation-delay: 0.6s; }
.nav a:nth-child(4) { animation-delay: 0.7s; }
.nav a:nth-child(5) { animation-delay: 0.8s; }
.nav a:nth-child(6) { animation-delay: 0.9s; }

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFB6C1;
    transition: width 0.3s ease;
}

.nav a:hover {
    color: #FFB6C1;
    transform: translateY(-2px);
}

.nav a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    transition: all 0.3s ease;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.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(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    padding: 80px 30px 30px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
}

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

.mobile-menu-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.mobile-menu-logo {
    font-size: 20px;
    font-weight: 300;
    color: #333;
    text-decoration: none;
}

.close-menu-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    background: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.close-menu-btn:hover {
    background: rgba(255, 182, 193, 0.1);
    transform: rotate(90deg);
}

.close-menu-btn::before,
.close-menu-btn::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #333;
    border-radius: 1px;
    transition: background 0.3s ease;
}

.close-menu-btn::before {
    transform: rotate(45deg);
}

.close-menu-btn::after {
    transform: rotate(-45deg);
}

.close-menu-btn:hover::before,
.close-menu-btn:hover::after {
    background: #FFB6C1;
}

.mobile-menu a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu.active a {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu a:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu a:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu a:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu a:nth-child(5) { transition-delay: 0.5s; }
.mobile-menu a:nth-child(6) { transition-delay: 0.6s; }

.mobile-menu a:hover {
    color: #FFB6C1;
    padding-left: 10px;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== HERO SECTION STYLES ===== */
.hero-section {
    position: relative;
    height: 400px;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-image: url(img/features-top.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: relative;
}
.hero-image-plan {
    width: 100%;
    height: 100%;
    background-image: url(img/plan-top.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: relative;
}
.hero-image-plan-wedding {
    width: 100%;
    height: 100%;
    background-image: url(img/plan-wedding-top.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: relative;
}
.hero-image-contact {
    width: 100%;
    height: 100%;
    background-image: url(img/contact-top.jpg);
    background-size: cover;
    background-position: center;
}
.hero-image-gallery {
    width: 100%;
    height: 100%;
    background-image: url(img/gallery-top.jpg);
    background-size: cover;
    background-position: center;
}
.hero-logo {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 32px;
    font-weight: 300;
    color: white;
    text-decoration: none;
    z-index: 10;
    transition: all 0.3s ease;
}

.hero-logo-img{
    width: 100px;
}

.hero-logo:hover {
    transform: scale(1.05);
    color: #f0f0f0;
}

/* Top page hero styles */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #FFB6C1, #FFC0CB);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/hero-bg.jpg') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 300;
    color: white;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.hero h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: white;
    margin: 20px auto;
    animation: typing 2s ease-out;
}

/* ===== NAVIGATION MENU STYLES ===== */
.nav-menu {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    position: relative;
    width: 100%;
    z-index: 999;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nav-menu.visible {
    position: fixed;
    top: 0;
    transform: translateY(0);
}

.nav-menu-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.nav-menu .nav {
    margin: 0;
}

.nav-menu .nav a {
    color: #333;
    font-size: 14px;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.nav-menu .nav a:hover {
    color: #FFB6C1;
    background: rgba(255, 182, 193, 0.1);
    border-radius: 5px;
}

/* ===== MAIN CONTENT STYLES ===== */
.main-content {
    margin-top: 0;
}

/* Section Title */
.section-title {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.section-title.visible::after {
    width: 100px;
}

/* ===== FEATURES SECTION STYLES ===== */
.features-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px 100px;
}

.features-list {
    display: grid;
    gap: 30px;
    margin-top: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
    margin-bottom: 40px;
}

.feature-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-header {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 10px;
}

.feature-number {
    font-size: 58px;
    font-weight: bold;
    color: #333;
    flex-shrink: 0;
}

.feature-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    flex: 1;
}

.feature-content {
    display: grid;
    grid-template-columns: 3fr 4fr;
    gap: 40px;
}

.feature-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.feature-description {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    text-align: left;
    border-right: 12px solid #FFD700;
    padding-right: 15px;
}

/* ===== ABOUT SECTION STYLES ===== */
.about {
    background: #f8f8f8;
    padding: 100px 20px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.about-text:hover {
    transform: translateY(-5px);
    color: #333;
}

/* ===== PHOTO PLANS SECTION STYLES ===== */
.photo-plans {
    background: white;
    padding: 100px 20px;
}

.plans-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.micro-copy {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.micro-copy.visible {
    opacity: 1;
    transform: translateY(0);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.plan-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.plan-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FFB6C1, #FFC0CB);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.plan-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.plan-item:hover::before {
    opacity: 0.1;
}

.plan-image {
    background-size: cover;
    background-position: center;
    position: relative;
}

.plan-title-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    font-weight: 300;
    z-index: 2;
}

.plan-details {
    position: relative;
    z-index: 2;
}

.plan-info {
    margin-bottom: 20px;
}

.plan-info-item {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

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

.plan-pricing {
    text-align: center;
}

.plan-price {
    font-size: 32px;
    font-weight: bold;
    color: #333;
}

.plan-price-tax {
    font-size: 14px;
    color: #999;
}

.plan-item:hover .plan-title-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

.plan-item:hover .plan-info {
    color: #333;
}

/* ===== REPRESENTATIVE SECTION STYLES ===== */
.representative-section {
    padding: 30px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.representative-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 50px;
}

.representative-image {
    width: 100%;
    height: auto;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

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

.representative-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.representative-text p {
    margin-bottom: 20px;
}

.representative-text p:last-child {
    margin-bottom: 0;
}

.social-links {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: #FFB6C1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}
.social-link img{
    width: 100%;
    height: auto;
}
.social-link:hover {
    background: #FF69B4;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.4);
}

/* ===== FAQ SECTION STYLES ===== */
.faq-section {
    background: white;
    padding: 100px 20px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 50px;
}

.faq-item {
    background: white;
    border: 1px solid #fceeb7;
    margin-bottom: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 25px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    position: relative;
    background: #fceeb7;
    transition: all 0.3s ease;
}
.faq-item:nth-child(even) .faq-question{
    background: #fff;
    border: 1px solid #fff;
}

.faq-question::before {
    content: 'Q';
    position: absolute;
    left: 25px;
    top: 25px;
    width: 30px;
    height: 30px;
    background: #f15a24;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
}

.faq-question {
    padding-left: 70px;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: bold;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

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

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 25px;
    max-height: 400px;
}

.faq-answer::before {
    content: 'A';
    position: absolute;
    left: 25px;
    top: 110px;
    width: 30px;
    height: 30px;
    background: #f7931e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    margin-top: -5px;
}

.faq-answer-text {
    margin-left: 45px;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* ===== TRAVEL FEES STYLES ===== */
.travel-fees {
    margin: 30px 0;
}

.travel-fees h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.fees-table {
    border-radius: 8px;
    overflow: hidden;
    margin-top: 1em;
}

.fee-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.fee-row:last-child {
    border-bottom: none;
}

.fee-location {
    flex: 1;
    padding: 15px 20px;
    background-color: #fceeb7;
    color: #333;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
}

.fee-amount {
    flex: 1;
    padding: 15px 20px;
    background-color: #eee;
    color: #333;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
}
.notes-content h3,.notes-content p{
    margin-bottom: 1em;
}
/* ===== CANCELLATION TABLE STYLES ===== */
.cancellation-table {
    border-radius: 8px;
    overflow: hidden;
    margin-top: 1em;
}

.cancel-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.cancel-row:last-child {
    border-bottom: none;
}

.cancel-days {
    flex: 1;
    padding: 15px 20px;
    background-color: #fceeb7;
    color: #333;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
}

.cancel-fee {
    flex: 1;
    padding: 15px 20px;
    background-color: #eee;
    color: #333;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
}

/* ===== FOOTER STYLES ===== */
.footer {
    background: #f8f8f8;
    color: #333;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-nav-section {
    flex: 1;
    display: flex;
    justify-content: center;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-nav a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #FFB6C1;
}

.nav-divider {
    color: #999;
    font-size: 12px;
}

.footer-info-section {
    flex: 0 0 300px;
    text-align: left;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
    display: block;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.footer-cta-btn {
    display: inline-block;
    background: #333;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 14px;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.footer-cta-btn:hover {
    background: #555;
}

.footer-contact {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 12px;
    color: #666;
}

/* ===== OPTIONS SECTION STYLES ===== */
.options-section {
    padding: 60px 20px;
}

.options-container {
    max-width: 1000px;
    margin: 0 auto;
    border: 2px solid #f5d9ad;
    border-radius: 12px;
    padding: 40px;
    position: relative;
}

.options-container .section-title {
    max-width: 350px;
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f5d9ad;
    color: white;
    padding: 10px 30px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    white-space: nowrap;
}

.options-list {
    margin-top: 30px;
}

.option-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

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

.option-item:hover {
    background-color: rgba(245, 217, 173, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin: 0 -20px;
}

.option-name {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

.option-price {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    text-align: right;
    white-space: nowrap;
}

/* ===== SHOOTING FLOW STYLES ===== */
.shooting-flow {
    padding: 60px 20px;
}

.flow-container {
    max-width: 900px;
    margin: 0 auto;
}

.flow-steps {
    margin-top: 50px;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 20px;
    border: 10px solid #fceeb7;
    border-radius: 12px;
    background-color: white;
    margin-bottom: 60px;
    position: relative;
    transition: all 0.3s ease;
}

.flow-step:last-child {
    margin-bottom: 0;
}

.flow-step:hover {
    box-shadow: 0 5px 15px rgba(255, 250, 205, 0.3);
    transform: translateY(-2px);
}

.flow-step::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-top: 30px solid #fceeb7;
}

.flow-step:last-child::after {
    display: none;
}

.flow-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.flow-content {
    flex: 1;
}

.flow-content h3 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.flow-content p {
    font-size: 20px;
    line-height: 1.6;
    color: #666;
}

/* ===== CUSTOMER VOICES STYLES ===== */
.customer-voices {
    padding: 60px 20px;
}

.voices-container {
    max-width: 900px;
    margin: 0 auto;
}

.voices-grid {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.voice-item {
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.voice-item:nth-child(odd) {
    border: 5px solid #FFFACD;
    background-color: white;
}

.voice-item:nth-child(even) {
    background-color: #FFFACD;
    border: none;
}

.voice-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.voice-header {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
}

.voice-content {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.voice-content p {
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .header {
        display: block;
    }
    
    .hamburger {
        display: flex;
    }

    .nav {
        display: none;
    }
    
    .nav-menu {
        display: none;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }

    .logo {
        font-size: 24px;
        margin-bottom: 0;
        margin-right: auto;
    }

    .logo img {
        height: 40px;
    }

    .header.scrolled .logo img {
        height: 32px;
    }

    .hero-section {
        height: 300px;
        margin-top: 50px;
    }
    .hero-logo-img{
        display: none;
    }

    .hero {
        height: 70vh;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-logo {
        font-size: 28px;
        top: 20px;
        left: 20px;
    }

    .nav-menu {
        padding: 10px 0;
    }

    .nav-menu-content {
        padding: 0 15px;
    }

    .nav-menu .nav {
        flex-wrap: wrap;
        gap: 10px;
    }

    .nav-menu .nav a {
        font-size: 13px;
        padding: 8px 12px;
    }

    .main-content {
        margin-top: 30px;
        padding: 40px 15px 0;
    }

    .section-title {
        font-size: 24px;
    }
    .features-section{
        padding: 0 10px 30px;
    }

    .feature-header {
        flex-direction: inherit;
        gap: 15px;
        align-items: center;
        text-align: left;
    }

    .feature-number {
        font-size: 46px;
    }

    .feature-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-image {
        width: 100%;
        margin: 0 auto;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-description {
        font-size: 15px;
    }

    .representative-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .representative-image {
        width: 100%;
        margin: 0 auto;
    }

    .representative-text {
        text-align: left;
    }

    .faq-question {
        font-size: 15px;
        padding: 20px;
        padding-left: 60px;
    }

    .faq-question::before {
        left: 20px;
        top: 20px;
    }

    .faq-question::after {
        right: 20px;
    }

    .faq-answer-text {
        font-size: 14px;
        margin-left: 35px;
    }

    .footer-main {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-info-section {
        flex: none;
        width: 100%;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .plan-title-overlay {
        font-size: 20px;
    }

    .plan-details {
        padding: 0 0 20px;
    }

    .plan-price {
        font-size: 28px;
    }

    .about-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 22px;
    }

    .logo img {
        height: 36px;
    }

    .header.scrolled .logo img {
        height: 28px;
    }

    .hero-section {
        height: 250px;
    }

    .hero {
        height: 60vh;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-logo {
        font-size: 24px;
        top: 15px;
        left: 15px;
    }

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

    .feature-number {
        font-size: 38px;
    }

    .feature-title {
        font-size: 18px;
    }

    .feature-description {
        font-size: 14px;
    }

    .faq-question {
        font-size: 14px;
        padding: 15px;
        padding-left: 50px;
    }

    .faq-question::before {
        left: 15px;
        top: 15px;
        width: 25px;
        height: 25px;
        font-size: 16px;
    }

    .faq-question::after {
        right: 15px;
        font-size: 20px;
    }

    .footer {
        padding: 40px 15px 20px;
    }

    .footer-main {
        flex-direction: column;
        gap: 20px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 10px;
    }

    .footer-nav a {
        font-size: 13px;
    }

    .logo-text {
        font-size: 20px;
    }

    .footer-logo-img {
        height: 32px;
    }

    .footer-cta-btn {
        font-size: 13px;
        padding: 10px 15px;
    }

    .footer-contact {
        font-size: 13px;
    }


    .plan-title-overlay {
        font-size: 18px;
    }

    .plan-details {
        padding: 15px;
    }

    .plan-price {
        font-size: 24px;
    }

    .about-text {
        font-size: 15px;
    }
    
    .fees-table {
        margin: 0 -15px;
    }
    
    .fee-row {
        flex-direction: column;
    }
    
    .fee-location,
    .fee-amount {
        flex: none;
        min-height: 40px;
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .cancellation-table {
        margin: 0 -15px;
    }
    
    .cancel-row {
        flex-direction: column;
    }
    
    .cancel-days,
    .cancel-fee {
        flex: none;
        min-height: 40px;
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .options-container {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .options-container .section-title {
        font-size: 18px;
        padding: 8px 20px;
        top: -15px;
    }
    
    .option-item {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    
    .option-price {
        text-align: center;
        font-size: 16px;
    }
    
    .flow-step {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 20px;
    }
    
    .flow-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
    
    .flow-icon img {
        width: 30px;
        height: 30px;
    }
    
    .flow-content h3 {
        font-size: 18px;
    }
    
    .flow-content p {
        font-size: 14px;
    }
    
    .voice-item {
        padding: 20px;
    }
    
    .voice-header {
        font-size: 16px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .voice-content {
        font-size: 14px;
    }
}
        /* Plan Page Specific Styles */
        .plan-section {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px 100px;
        }

        .plan-intro {
            text-align: center;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .plan-intro p {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 25px;
        }

        .plans-container {
            display: grid;
            max-width: 1000px;
            gap: 40px;
            margin-top: 50px;
        }

        .plan-card {
            background: white;
            border: 1px solid #ddd;
            overflow: hidden;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .plan-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .plan-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .plan-header {
            padding: 10px;
            text-align: center;
        }

        .plan-category {
            font-size: 18px;
            color: #333;
            text-align: left;
        }

        .plan-name {
            font-size: 36px;
            font-weight: bold;
            text-align: left;
            color: #333;
            margin: 0;
        }
        .plan-name2 {
            font-size: 34px;
            font-weight: bold;
            text-align: center;
            color: #333;
            margin: 0;
        }

        .plan-content {
            display: grid;
            grid-template-columns: 3fr 4fr;
            gap: 30px;
            padding:15px 30px;
        }
        /* 偶数番目のプランカードだけ順番を逆にする */
        .plan-card:nth-child(even) .plan-content {
            direction: rtl;
        }
        .plan-card:nth-child(even) .plan-content > * {
            direction: ltr;
        }

        .plan-image {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .plan-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border: 1px solid #ddd;
        }

        .plan-details {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .plan-price-box {
            background: #FCEEB3;
            padding: 5px 15px;
            text-align: center;
            margin-bottom: 24px;
        }
        .plan-price-box2{
            margin-bottom: 24px;
        }
        .plan-price-box.special {
            background: #FCEEB3;
        }

        .plan-price {
            font-size: 28px;
            font-weight: normal;
            color: #333;
        }

        .tax-note {
            font-size: 16px;
            font-weight: normal;
        }

        .plan-specs {
            line-height: 1.8;
            border-left: 2px solid #333;
            text-align: left;
            padding-left: 1em;
        }

        .spec-item {
            font-size: 20px;
            color: #333;
        }

        .spec-note {
            font-size: 14px;
            color: #666;
            margin-top: 15px;
        }

        .plan-description {
            font-size: 18px;
            line-height: 1.7;
            color: #666;
            border-left: 2px solid #333;
            text-align: left;
            padding: 1em ;
            background: #eee;
        }

        .important-notes{
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
            text-align: left;
            padding-left: 1em;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .plan-content {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 20px;
            }

            .plan-name,.plan-name2 {
                font-size: 24px;
            }

            .plan-price {
                font-size: 24px;
            }

            .plan-intro p {
                font-size: 15px;
            }

            .plans-container {
                gap: 30px;
            }
        }

        @media (max-width: 480px) {
            .plan-section {
                padding: 0 15px 60px;
            }

            .plan-name,.plan-name {
                font-size: 18px;
            }

            .plan-price {
                font-size: 22px;
            }

            .plan-header {
                padding: 15px;
            }

            .plan-content {
                padding: 15px;
            }
        }
/* Gallery Page Specific Styles */
.hero-image-gallery {
    width: 100%;
    height: 100%;
    background-image: url(img/gallery-top.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: relative;
}

.gallery-title-section {
    text-align: center;
    padding: 30px 20px 20px;
}

.gallery-category-section {
    padding: 60px 20px;
    position: relative;
}

.gallery-category-section.alternate {
    background-color: #f8f8f8;
}

.gallery-category-container {
    max-width: 1200px;
    margin: 0 auto;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: -5px;
    font-weight: 300;
}

.category-title {
    font-size: 32px;
    font-weight: 300;
    color: #333;
    margin: 0;
    position: relative;
}
.category-title::before{
    content: ' ';
    background-image: url('img/kazari-left.png');
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 1em;
    width: 50px;
    height: 50px;
    vertical-align: middle;
}
.category-title::after{
    content: ' ';
    background-image: url('img/kazari-right.png');
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    margin-left: 1em;
    width: 50px;
    height: 50px;
    vertical-align: middle;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    aspect-ratio: 4/4;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: #f0f0f0;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-item a{
    display: block;
    width: 100%;
    height: 100%;
}
.gallery-item img {
    width: 100%;
    max-width: 450px;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-cta {
    text-align: center;
    margin-top: 30px;
}

.gallery-cta-btn {
    display: inline-block;
    background: #FFFFFF;
    color: #333333;
    width: 80%;
    max-width: 300px;
    margin: 30px auto;
    padding: 15px 30px;
    border: 1px solid #DDDDDD;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: none;
}

.gallery-cta-btn::after {
    content: " ";
    width: 60px;
    height: 10px;
    border-bottom: 1px solid #333;
    border-right: 1px solid #333;
    position: absolute;
    top: 40%;
    right: 25px;
    transform: translateY(-50%) rotate(0deg) skew(45deg);
}

/* 左上の三角形アクセント */
.gallery-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 30px 0 0;
    border-color: #333 transparent transparent transparent;
    z-index: 2;
}

.gallery-cta-btn:hover {
    background: #FFFFFF;
    color: #333333;
    border-color: #BBBBBB;
    transform: none;
    box-shadow: none;
}

.gallery-cta-btn:hover::after {
    transform: translateY(-50%) translateX(5px) rotate(0deg) skew(45deg);
}

.gallery-cta-btn span {
    position: relative;
    z-index: 1;
    transition: none;
}

.gallery-cta-btn:hover span {
    transform: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-category-section {
        padding: 40px 15px;
    }

    .category-title {
        font-size: 26px;
    }

    .category-subtitle {
        font-size: 14px;
    }

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

    .gallery-cta-btn {
        padding: 12px 25px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .category-title {
        font-size: 22px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-cta-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .gallery-category-section {
        padding: 30px 10px;
    }
}
