/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* ヘッダー */
.header-top {
    background: linear-gradient(135deg, #66B2FF 0%, #4A90E2 100%);
    color: white;
    padding: 10px 0;
}

.contact-info {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-weight: 500;
    gap: 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    color: white;
    background: linear-gradient(90deg, #66B2FF, #4A90E2);
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.phone {
    font-size: 18px;
    font-weight: 700;
}

/* ヒーローセクション */
.hero-section {
    background: #FFE4E1;
    position: relative;
    padding: 60px 0 80px;
    overflow: hidden;
    text-align: center;
    color: #2C5282;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 15px,
            rgba(255, 182, 193, 0.2) 15px,
            rgba(255, 182, 193, 0.2) 30px
        );
    pointer-events: none;
    z-index: 0;
}

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

.main-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.title-line1, .title-line2 {
    display: block;
}

.sub-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #FF6B9D;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.flower-icon {
    font-size: 4rem;
    margin: 20px 0;
    animation: float 3s ease-in-out infinite;
}

.hero-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.9);
    color: #FF1493;
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* 花のモチーフ装飾 */
.flower-decoration {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: float 4s ease-in-out infinite;
}

.flower1 {
    top: 15%;
    left: 8%;
    color: #FF69B4;
    animation-delay: 0s;
}

.flower2 {
    top: 25%;
    right: 12%;
    color: #FFB6C1;
    animation-delay: 1.5s;
}

.flower3 {
    bottom: 30%;
    left: 15%;
    color: #FF1493;
    animation-delay: 3s;
}

.flower4 {
    top: 40%;
    right: 25%;
    color: #FFC0CB;
    animation-delay: 2s;
}

.flower5 {
    bottom: 15%;
    right: 8%;
    color: #FF69B4;
    animation-delay: 4s;
}

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

/* セクション共通 */
section {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #2C5282;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #66B2FF, #FF99CC);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* サービス紹介 */
.service-intro {
    background: white;
    position: relative;
    z-index: 0; /* スタッキングコンテキストの基準 */
}

.service-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 25px,
            rgba(255, 182, 193, 0.08) 25px,
            rgba(255, 182, 193, 0.08) 50px
        );
    pointer-events: none;
    z-index: 0; /* 背面に回す！ */
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.price {
    font-size: 1.5rem;
    color: #2C5282;
    margin-top: 20px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: #E53E3E;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.service-column {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border: 3px solid #E2E8F0;
    display: block;
}







.service-column2 {
    background: white;              /* 背景を白に */
    padding: 30px;
    border-radius: 15px;
    border: 3px solid #E2E8F0;
    margin-bottom: 50px;
    opacity: 1;
    display: block;
    overflow: hidden;              /* 角丸からのはみ出しを防ぐ */
    position: relative;            /* 擬似要素制御に必要（下で使う場合） */
}
.service-column2 img {
    background-color: white;
    max-width: 100%;
    height: auto;
    display: block;
    position: relative; /* ← これがないと z-index 効かない */
    z-index: 1;          /* ::before より前に表示されるように */
}








.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.service-item.special {
    background: linear-gradient(90deg, #FFE4E1, #E6F3FF);
    padding: 10px;
    border-radius: 8px;
    font-weight: 700;
    color: #2C5282;
}

.check {
    color: #38A169;
    font-weight: 900;
    margin-right: 15px;
    font-size: 1.3rem;
}

/* 特別サービス */
.special-service {
    background: linear-gradient(135deg, #FFE4E1 0%, #E6F3FF 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    border: 3px solid #FF99CC;
}

.special-badge {
    background: linear-gradient(90deg, #FF6B6B, #FF8E8E);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.special-button {
    background: linear-gradient(135deg, #66B2FF, #4A90E2);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(102, 178, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    gap: 15px;
}

.special-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 178, 255, 0.4);
}

.arrow {
    transition: transform 0.3s ease;
}

.special-button.active .arrow {
    transform: rotate(180deg);
}

.special-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    margin-top: 30px;
}

.special-content.active {
    max-height: 1000px;
}

.special-content h4 {
    color: #2C5282;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.special-content p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-details {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    text-align: left;
    border: 2px solid #E2E8F0;
}

.service-details h5 {
    color: #2C5282;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-details ul {
    list-style: none;
    padding-left: 0;
}

.service-details li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-details li::before {
    content: '🌸';
    position: absolute;
    left: 0;
}

.notice {
    color: #E53E3E;
    font-weight: 700;
    background: #FFF5F5;
    padding: 10px 15px;
    border-radius: 8px;
    border-left: 4px solid #E53E3E;
    margin: 10px 0;
}

/* オプション */
.options {
    background: #F7FAFC;
}

.option-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.option-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #E2E8F0;
    transition: transform 0.3s ease;

}



.option-card img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}




.option-card:hover {
    transform: translateY(-5px);
}

.option-card h4 {
    color: #2C5282;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.option-note {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ご利用の流れ */
.usage-flow {
    background: white;
    padding: 60px 0;
}

.flow-image {
    text-align: center;
    margin-top: 30px;
}

.flow-diagram {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 3px solid #FFB6C1;
}

/* その他サービス */
.other-services {
    background: linear-gradient(135deg, #E6F3FF 0%, #FFE4E1 100%);
}

.other-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.other-service-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2C5282;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.service-icon {
    font-size: 2rem;
}

.cta-text {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #E53E3E;
    margin-top: 30px;
}

/* お客様の声 */
.testimonials {
    background: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.testimonial-card {
    background: #F7FAFC;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #66B2FF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #2D3748;
}

.testimonial-author {
    text-align: right;
    color: #666;
    font-weight: 500;
}

/* 会社情報 */
.company-info {
    background: #F7FAFC;
}

.company-details h4 {
    color: #2C5282;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #66B2FF;
    font-size: 1.1rem;
}

.info-item strong {
    color: #2C5282;
}

/* フッター */
.footer {
    background: linear-gradient(135deg, #2C5282 0%, #1A365D 100%);
    color: white;
    padding: 60px 0;
}

.footer-content {
    text-align: center;
}

.footer-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-method {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    font-size: 3rem;
}

.contact-details h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.phone-number {
    font-size: 2rem;
    font-weight: 900;
    color: #FFE4E1;
}

.email-button {
    background: linear-gradient(90deg, #FF99CC, #FF6B9D);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.email-button:hover {
    transform: translateY(-2px);
}

/* レスポンシブ */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .sub-title {
        font-size: 2rem;
    }
    
    .service-grid,
    .option-grid,
    .other-service-grid,
    .testimonial-grid,
    .info-grid,
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .special-button {
        font-size: 1.2rem;
        padding: 15px 30px;
    }
    
    .hero-text {
        font-size: 1.2rem;
        padding: 12px 25px;
    }
}



/* POPデザイン紹介セクション */
.pop-design-section {
    background: #F7FAFC;
    padding: 60px 0;
}

.pop-image-container {
    position: relative;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-top: 30px;
}

.pop-image-container:hover {
    transform: scale(1.02);
}

.pop-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid #FFB6C1;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.pop-image-container:hover .image-overlay {
    opacity: 1;
}

.zoom-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

/* モーダルウィンドウ */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.8); /* Black w/ opacity */
}

.modal-content {
    margin: 2% auto; /* 15% from the top and centered */
    display: block; /* Display the image inside the modal */
    width: 90%; /* Width of the image */
    max-width: 1200px;
    border-radius: 10px;
}

/* Close button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}


a {
  text-decoration: none;
  color: inherit; /* 必要に応じてリンクの青色も解除 */
}










@media (max-width: 768px) {
    .pop-image {
        width: 100%;
        height: auto;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    .zoom-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .pop-image-container {
        margin: 20px 0;
    }
    
    .zoom-text {
        font-size: 0.9rem;
    }
}


