/* リセット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: #fff;
}

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

/* ヘッダー */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    color: #ff6b9d;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.3;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.nav a:hover {
    color: #ff6b9d;
}

.cta-button {
    background-color: #ff6b9d;
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e55a8a;
}

/* ヒーローセクション */
.hero {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    margin-top: 50px;
    text-align: center;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #ff6b9d;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.hero-video {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-video iframe {
    width: 100%;
    height: 350px;
}

/* コンセプトセクション */
.concept {
    padding: 40px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    color: #ff6b9d;
    margin-bottom: 3rem;
    line-height: 1.4;
}

.concept-content {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.concept-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* お客様の写真グリッド */
.customer-photos {
    margin-top: 4rem;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 2rem;
}

.photos-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.customer-note {
    text-align: center;
    color: #ff6b9d;
    font-weight: 500;
    font-size: 1rem;
}

/* キャンペーンセクション */
.campaign, .campaign-repeat, .campaign-final {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.campaign-title {
    text-align: center;
    color: #ff6b9d;
    font-size: 200%;
    margin-bottom: 3rem;
}

.campaign-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.campaign-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.campaign-badge {
    background-color: #ff9bb3;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 140%;
}

.campaign-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.highlight {
    color: #ff6b9d;
    background: linear-gradient(transparent 60%, #ffeb3b 60%);
}

.price-section {
    margin-bottom: 2rem;
}

.price-original {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.price-arrow {
    font-size: 1.5rem;
    color: #333;
    margin: 0.5rem 0;
}

.price-discount {
    font-size: 4rem;
    font-weight: 800;
    color: #ff6b9d;
    line-height: 1;
}

.price-labels {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.label-main {
    background-color: #ff6b9d;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
}

.label-trial {
    background-color: #ffb3c6;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
}

.campaign-description {
    margin-bottom: 2rem;
}

.campaign-description p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.booking-buttons, .booking-buttons-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-hotpepper {
    background-color: #e91e63;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-hotpepper:hover {
    background-color: #c2185b;
}

.btn-line {
    background-color: #00c300;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-line:hover {
    background-color: #00a000;
}

/* お客様の声セクション */
.testimonials {
    padding: 30px 0;
    background-color: #fce4ec;
    background-image: url('images/pearl_pattern.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.voice-header {
    text-align: center;
    margin-bottom: 2rem;
}

.voice-subtitle {
    color: #999;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.voice-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.highlight-pink {
    color: #ff6b9d;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-card-pink {
    background-color: #ff9bb3;
    color: white;
}

.testimonial-image {
    position: absolute;
    top: -30px;
    left: 30px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-image-pink {
    position: absolute;
    top: -30px;
    right: 30px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-image img,
.testimonial-image-pink img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voice-badge {
    position: absolute;
    top: -15px;
    left: 160px;
    background-color: #c2185b;
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.voice-badge-pink {
    position: absolute;
    top: -15px;
    right: 160px;
    background-color: #c2185b;
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.testimonial-content {
    margin-top: 60px;
}

.testimonial-content-pink {
    margin-top: 60px;
}

.testimonial-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ff6b9d;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.testimonial-title-pink {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.testimonial-text-pink {
    font-size: 1rem;
    line-height: 1.8;
    color: white;
    margin-bottom: 1rem;
}

.testimonial-note {
    font-size: 0.8rem;
    color: #999;
    font-style: italic;
}

.testimonial-note-pink {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* 施術紹介セクション */
.treatment-intro {
    padding: 80px 0;
    background-color: #f5f5f5;
    background-image: url('images/pearl_pattern.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.treatment-content {
    align-items: center;
}

.treatment-title {
    color: #ff6b9d;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-align: center;
}

.treatment-subtitle {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.treatment-main-text {
    text-align: center;
    margin-bottom: 3rem;
}

.large-text {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    text-orientation: upright;
    display: inline-block;
}

.treatment-question {
    text-align: center;
}

.question-text {
    background-color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    color: #333;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.treatment-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* 3つのこだわりセクション */
.features {
    padding: 40px 0;
    background-color: #fff;
}

.feature-item {
    margin-bottom: 2rem;
}

.feature-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.feature-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* アクセスセクション */
.access {
    padding: 40px 0;
    background-color: #f0f0f0;
    background-image: url('images/abstract_pattern.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.access-info {
    background-color: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.clinic-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: right bottom; /* X軸は中央、Y軸は一番上 */
    border-radius: 10px;
    margin-bottom: 2rem;
}

.info-details h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item strong {
    color: #ff6b9d;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-item p {
    line-height: 1.6;
    color: #555;
}

.map-container {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* よくある質問セクション */
.faq {
    padding: 80px 0;
    background-color: #fff;
}

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

.faq-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 15px;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.faq-answer {
    line-height: 1.8;
    color: #555;
}

/* 院長紹介セクション */
.director {
    padding: 30px 0;
    background-color: #f9f9f9;
}

.director-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.director-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.director-title {
    font-size: 2rem;
    font-weight: 600;
    color: #ff6b9d;
    margin-bottom: 1rem;
}

.director-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.director-credentials {
    margin-bottom: 2rem;
}

.director-credentials p {
    color: #666;
    font-weight: 500;
}

.director-message p {
    line-height: 1.8;
    color: #555;
}

/* お問い合わせセクション */
.contact {
    padding: 80px 0;
    background-color: #fff;
    background-image: url('images/pink_floral_pattern.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}
/*
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}*/

.contact-info {
    text-align: center;
    background-color: rgba(252, 228, 236, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.phone-number a {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b9d;
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
}

.contact-hours {
    color: #666;
    margin-bottom: 2rem;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b9d;
}

.btn-submit {
    background-color: #ff6b9d;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: #e55a8a;
}

/* フッター */
.footer {
    background-color: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    color: #ff6b9d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-info p {
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-end;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b9d;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #aaa;
    font-size: 0.9rem;
}
/* 固定予約ボタン */
.fixed-booking-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 1001;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    background-color: white;
}

.btn-hotpepper-fixed,
.btn-line-fixed {
    flex: 1;
    padding: 1rem;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-hotpepper-fixed {
    background-color: #e91e63;
    color: white;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-hotpepper-fixed:hover {
    background-color: #c2185b;
    transform: translateY(-2px);
}

.btn-line-fixed {
    background-color: #00c300;
    color: white;
}

.btn-line-fixed:hover {
    background-color: #00a000;
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.2rem;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .btn-hotpepper-fixed,
    .btn-line-fixed {
        padding: 1.2rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .btn-icon {
        font-size: 1rem;
    }
    
    /* メインコンテンツの下部にパディングを追加してボタンと重ならないようにする */
    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 480px) {
    .btn-hotpepper-fixed,
    .btn-line-fixed {
        padding: 1rem 0.5rem;
        font-size: 1.1rem;
        flex-direction: column;
        gap: 0.2rem;
    }
    
    .btn-icon {
        font-size: 1.1rem;
    }
}

/* レスポンシブデザイン */
@media (max-width: 992px) {
    .campaign-content,
    .treatment-content,
    .feature-content,
    .access-content,
    .contact-content,
    .director-content,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .photos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
        display: none;
    }

    .hero {

    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-video iframe {
        height: 250px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .campaign-main-title {
        font-size: 2rem;
    }

    .price-discount {
        font-size: 3rem;
    }

    .voice-title {
        font-size: 1.8rem;
    }

    .large-text {
        font-size: 2rem;
    }

    .phone-number a {
        font-size: 2rem;
    }


    .testimonial-image,
    .testimonial-image-pink {
        position: static;
        margin: 0 auto 1rem;
    }

    .voice-badge,
    .voice-badge-pink {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }

    .testimonial-content,
    .testimonial-content-pink {
        margin-top: 0;
    }
    .hero-content img {
        width: 100%;
        margin: 0 auto;
    }

}

@media (max-width: 480px) {

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-video iframe {
        height: 200px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .campaign-main-title {
        font-size: 1.5rem;
    }

    .price-discount {
        font-size: 2.5rem;
    }

    .voice-title {
        font-size: 1.5rem;
    }

    .large-text {
        font-size: 1.5rem;
    }

    .phone-number a {
        font-size: 1.8rem;
    }


    .booking-buttons,
    .booking-buttons-contact {
        gap: 0.5rem;
    }

    .btn-hotpepper,
    .btn-line {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

