/* =========================
   shichu-suimei.php 専用CSS
========================= */
/* =========================
   リード文
========================= */
.lead {
    margin: 32px 0 100px;
    font-size: 1.1rem;
    line-height: 2.6;
    letter-spacing: 0.05em;
    color: #4b2e5e;
    text-align: center;
}


/* =========================
   共通セクション
========================= */
.description {
    max-width: 900px;
    margin: 0 auto 10%;
    padding: 0 20px;
}

.description h2 {
    color: #5b2d82;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    letter-spacing: 0.08em;
}

.description h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, #d8b4fe, #c084fc);
    margin: 14px auto 0;
    border-radius: 2px;
}

.description p {
    font-size: 1rem;
    line-height: 2;
    color: #4b2e5e;
    margin-bottom: 28px;
}

.description .point-text {
    text-decoration: underline;
    font-weight: bold;
    color: red;
}

.description ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.description ul li {
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.9;
}

.description ul li strong {
    color: #6d28d9;
}


/* =========================
   FAQ
========================= */
.description.faq li {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(4px);
    padding: 18px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(120, 80, 180, 0.15);
}

.description.faq li strong {
    color: #5b2d82;
}


/* =========================
   まとめ
========================= */
.description.summary p {
    font-size: 1.05rem;
    line-height: 2;
    margin-top: 30px;
}


/* =========================
   リンク
========================= */
.description a {
    color: #a855f7;
    text-decoration: underline;
    transition: 0.3s ease;
}

.description a:hover {
    color: #6d28d9;
}

/* =========================
   陰陽・五行 セクション
========================= */
.inyo-gogyo-section {
    position: relative;
    max-width: 1100px;
    margin: 40px auto;
    padding: 4% 3%;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);
    box-shadow: 0 25px 60px rgba(80, 40, 120, 0.18);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.inyo-gogyo-section img {
    width: 60%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(80, 40, 120, 0.25);
}

.inyo-gogyo-section.gogyo {
    flex-direction: row-reverse;
}

/* テキスト */
.inyo-gogyo-text {
    width: 36%;
    line-height: 2;
    color: #4b2e5e;
}

.inyo-gogyo-text h2 {
    margin-bottom: 24px;
    color: #5b2d82;
}

.inyo-gogyo-text ul li {
    margin-bottom: 12px;
}

.inyo-gogyo-text ul li strong {
    color: #a855f7;
}

/* =========================
   レスポンシブ
========================= */
@media (max-width: 900px) {
    .description {
        width: 100%;
        padding: 0;
    }

    .description p {
        width: 90%;
        margin: 0 auto 6%;
    }

    .description ul {
        width: 96%;
        margin: 0 auto 4%;
    }

    .inyo-gogyo-section {
        flex-direction: column;
        margin: 0 auto;
        background: none;
        backdrop-filter: none;
        box-shadow: none;
        gap: 0;
    }

    .inyo-gogyo-section img {
        width: 100%;
    }

    .inyo-gogyo-section>.inyo-gogyo-text {
        background: rgba(255, 255, 255, 0.55);
        border-radius: 20px;
    }

    .inyo-gogyo-text>ul {
        width: 80%;
        margin-left: 16%;
    }

    .inyo-gogyo-section.gogyo {
        flex-direction: column;
    }

    .inyo-gogyo-section .image,
    .inyo-gogyo-text {
        width: 100%;
    }

    .lead {
        line-height: 2.4;
    }
}

@media(max-width: 767px) {
    .inyo-gogyo-text>ul {
        width: 90%;
        margin-left: 6%;
    }
}

@media(max-width: 400px) {
    .description {
        max-width: 900px;
        margin: 0 auto 18%;
    }
}