* {
    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;
}
p{
    color: #333;
    font-weight: 400;
}

/* 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 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; }

/* Header */
.header {
    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;
}

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

.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: 40px;
    width: auto;
    transition: all 0.3s ease;
}

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

.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:nth-child(7) { animation-delay: 1.0s; }

.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%;
}

/* 言語切り替えリンク */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.globe-icon {
    font-size: 16px;
    display: inline-block;
}

/* 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;
}

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

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

/* Hero Section */
.hero {
    height: 80vh;
    margin-top: 100px;
    background: url(img/top-img.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: fadeIn 2s ease-out;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 182, 193, 0.1), rgba(255, 192, 203, 0.2));
    animation: float 6s ease-in-out infinite;
}

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

.hero h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 0.5s both;
    position: relative;
}

.hero h1::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: white;
    animation: blink 1s infinite;
    animation-delay: 2s;
}

/* About Section */
.about {
    margin: 50px auto 0;
    padding: 50px 20px;
    background: #fff;
    text-align: center;
    position: relative;
    z-index: 10;
}

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

.section-title {
    width: 100%;
    text-align: center;
    font-size: 35px;
    font-weight: 300;
    margin-bottom: 50px;
    color: #333;
    position: relative;
    display: inline-block;
}

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

.about-text {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    color: #333;
    transition: all 0.3s ease;
}

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

/* Photo Plans */
.photo-plans {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px;
    position: relative;
    z-index: 10;
}

.plans-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.micro-copy {
    font-size: 12px;
    color: #666;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

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

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

.plan-item {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 0.5px solid #999;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.plan-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 182, 193, 0.1), transparent);
    transition: left 0.6s ease;
}

.plan-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 182, 193, 0.3);
}

.plan-item:hover::before {
    left: 100%;
}

.plan-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.3), rgba(255, 192, 203, 0.3)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 250"><rect fill="%23FFB6C1" width="400" height="250"/><text x="200" y="125" text-anchor="middle" font-size="16" fill="white">撮影写真</text></svg>');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}


.plan-title-overlay {
    color: #333;
    font-size: 24px;
    z-index: 3;
    margin: 5px auto;
}

.plan-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plan-info {
    width: auto;
    background: #fceeb7;
    border-radius: 5px;
    padding: 10px;
    margin: 15px;
}

.plan-info-item {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.2;
}

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

.plan-pricing {
    background: white;
    text-align: center;
    padding: 0 20px 10px;
}

.plan-price {
    font-size: 22px;
    color: #333;
    margin-bottom: 5px;
}

.plan-price-tax {
    font-size: 16px;
    color: #333;
}

.plan-item:hover .plan-info {
    background: #FFFF99;
}

/* Wedding Photo Section */
.wedding-photos {
    padding: 100px 20px;
    background: white;
}

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

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.photo-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.photo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 182, 193, 0.8), rgba(255, 192, 203, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 2;
}

.photo-item:hover .photo-overlay {
    transform: translateY(0);
}

/* Gallery Section */
.gallery {
    padding: 100px 20px;
    background: #f8f8f8;
}

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

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

.gallery-item {
    aspect-ratio: 4/3;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

/* SEO Text Section */
.seo-text-section {
    max-width: 1000px;
    margin: 20px auto 30px auto;
    padding: 30px 20px;
    background: #fff;
    position: relative;
    z-index: 10;
}
.sp-only{
    display: none;
}

.seo-text-section h2 {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 1em;
    color: #333;
    line-height: 1.4;
    position: relative;
    padding-bottom: 15px;
}


.seo-text-section h3 {
    font-size: 1.3em;
    font-weight: bold;
    margin: 2em 0 1em 0;
    color: #555;
    line-height: 1.4;
    position: relative;
}

.seo-text-section p {
    margin-bottom: 1.8em;
    line-height: 1.8;
    color: #333;
    font-size: 1em;
    text-align: justify;
}

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

/* Blog Section */
.blog {
    padding: 100px 0 0 ;
    background: white;
}

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

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

.blog-item {
    text-align: left;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-image {
    width: 100%;
    height: 200px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.blog-content {
    padding: 20px;
}

.blog-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.blog-excerpt {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}
/* Blog Section - Additional Styles */
.blog-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #FFB6C1;
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Footer */
.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;
    font-family: 'Comic Sans MS', cursive, sans-serif;
}

.logo-subtext {
    font-size: 12px;
    color: #333;
    font-weight: 400;
}

.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-address {
    margin-bottom: 5px;
}

.footer-email {
    color: #333;
}

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

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header {
        padding: 15px 0 10px;
    }

    .header.scrolled {
        padding: 10px 0 8px;
    }

    .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: 35px;
    }

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

    .hero {
        margin-top: 60px; /* モバイルでのヘッダー高さ分調整 */
    }

    .hero h1 {
        font-size: 32px;
    }
    .photo-plans{
        padding: 20px;
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .footer-nav-section {
        order: 2;
    }

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

    .footer-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .nav-divider {
        display: none;
    }

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

    .plan-image {
        height: 250px;
    }

    .plan-title-overlay {
        font-size: 24px;
        top: 15px;
        left: 15px;
        right: 15px;
    }
    .plan-info{
        margin: 0 0 10px;
    }

    .plan-details {
        padding: 15px;
    }

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

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

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

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

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

    .seo-text-section {
        margin: 60px auto 40px auto;
        padding: 40px 20px;
    }

    .seo-text-section h2 {
        font-size: 1.2em;
        margin-bottom: 0.8em;
    }

    .seo-text-section h3 {
        font-size: 1.2em;
        margin: 1.5em 0 0.8em 0;
    }

    .seo-text-section p {
        font-size: 0.95em;
        line-height: 1.7;
    }

    .view-more-btn {
        padding: 12px 25px;
        font-size: 15px;
    }
    .footer-logo{
        text-align: center;
    }
    .footer-logo-img{
        margin: 0 auto;
        width: auto;
        height: 40px;
        display: inline;
    }
    .sp-only{
        display: block;
    }
}

@media (max-width: 480px) {
    .hero {
        margin-top: 55px; /* 小さい画面でのヘッダー高さ分調整 */
    }

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

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

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

    .mobile-menu {
        width: 100%;
        right: -100%;
    }

    .mobile-menu-header {
        padding: 0 20px;
    }

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

    .logo {
        font-size: 22px;
    }

    .logo img {
        height: 32px;
    }

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

    .plan-image {
        height: 250px;
    }

    .plan-title-overlay {
        font-size: 24px;
        top: 10px;
        left: 10px;
        right: 10px;
    }

    .plan-details {
        padding: 12px;
    }

    .plan-price {
        font-size: 18px;
    }
    .plan-info-item {
        font-size: 13px;
    }

    .seo-text-section {
        margin: 40px auto 30px auto;
        padding: 30px 15px;
        border-radius: 10px;
    }

    .seo-text-section h2 {
        font-size: 1.1em;
        margin-bottom: 0.5em;
    }

    .seo-text-section h3 {
        font-size: 1.1em;
        margin: 1.2em 0 0.6em 0;
    }

    .seo-text-section p {
        font-size: 0.9em;
        line-height: 1.6;
    }

    .view-more-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

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

    .footer-main {
        gap: 25px;
    }

    .footer-nav {
        gap: 10px;
    }

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

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

    .footer-logo-img {
        height: 30px;
        max-width: 160px;
    }

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

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

    /* Plan Page Responsive */
    .plan-intro {
        font-size: 14px;
    }

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

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

    .event-cta-btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .flow-step {
        padding: 20px;
    }

    .flow-icon {
        font-size: 30px;
    }

    .flow-content h3 {
        font-size: 16px;
    }

    .flow-content p {
        font-size: 13px;
    }

    .voice-item {
        padding: 20px;
    }

    .voice-header {
        font-size: 14px;
    }

    .voice-content {
        font-size: 13px;
    }

    .option-name {
        font-size: 14px;
    }

    .option-price {
        font-size: 16px;
    }
} 

/* View More Button */
.view-more-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;
}

.view-more-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);
}
/* 左上の三角形アクセント */
.view-more-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;
}
.view-more-btn:hover {
    background: #FFFFFF;
    color: #333333;
    border-color: #BBBBBB;
    transform: none;
    box-shadow: none;
}

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

.view-more-btn span {
    position: relative;
    z-index: 1;
    transition: none;
}

.view-more-btn:hover span {
    transform: none;
} 

/* Plan Page Specific Styles */
.plan-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 50px;
    text-align: center;
}

.plan-price-box {
    background: #FFD700;
    color: #333;
    padding: 15px 20px;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 5px;
}

.plan-note {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 10px;
}

/* Event Photography Section */
.event-photography {
    padding: 100px 20px;
    background: white;
}

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

.event-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.event-text {
    flex: 1;
}

.event-description {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.event-cta-btn {
    display: inline-block;
    background: #FFD700;
    color: #333;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.event-cta-btn:hover {
    background: #FFC000;
}

.event-image {
    flex: 0 0 400px;
}

.event-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

/* Important Notes Section */
.important-notes {
    padding: 100px 20px;
}

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

.travel-fees {
    margin-bottom: 50px;
}

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

.fees-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.fee-row {
    display: flex;
}

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

.fee-location {
    flex: 1;
    font-weight: 500;
}

.fee-amount {
    font-weight: bold;
    color: #FFD700;
}

.notes-content h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 30px 0 15px 0;
    color: #333;
}

.notes-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.cancellation-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.cancel-row {
    display: flex;
}

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

.cancel-days {
    flex: 1;
    font-weight: 500;
}

.cancel-fee {
    font-weight: bold;
    color: #FF6B6B;
}

/* Options Section */
.options-section {
    padding: 100px 20px;
    background: white;
}

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

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

.option-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.option-item:hover {
    background: #FFD700;
    transform: translateX(5px);
}

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

.option-price {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

/* Shooting Flow Section */
.shooting-flow {
    padding: 100px 20px;
    background: #f8f8f8;
}

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

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

.flow-step {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #FFD700;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.flow-icon {
    font-size: 40px;
    flex: 0 0 60px;
    text-align: center;
}

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

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

/* Customer Voices Section */
.customer-voices {
    padding: 100px 20px;
    background: white;
}

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

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

.voice-item {
    background: #FFD700;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.voice-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

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

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

/* ===== PLAN WEDDING SECTION STYLES ===== */
.plan-wedding-section {
    padding: 80px 0 40px 0;
}
.plan-wedding-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}
.plan-wedding-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}
.plan-wedding-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, transform 0.3s;
}
.plan-wedding-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.13);
    transform: translateY(-5px);
}
.plan-wedding-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}
.plan-wedding-details {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.plan-wedding-title {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}
.plan-wedding-info {
    margin-bottom: 10px;
}
.plan-wedding-info-item {
    font-size: 15px;
    color: #666;
    margin-bottom: 0;
}
.plan-wedding-pricing {
    margin-top: auto;
}
.plan-wedding-price {
    font-size: 20px;
    text-align: center;
}
.plan-wedding-price-tax {
    font-size: 13px;
    color: #999;
}
@media (max-width: 900px) {
    .plan-wedding-list {
        grid-template-columns: 1fr;
    }
    .plan-wedding-image {
        height: 180px;
    }
}