.article-page-title-01,
.article-page-title-02,
.article-page-title-03,
.article-page-title-04,
.article-page-title-05,
.article-page-title-06,
.article-page-title-07,
.article-page-title-08,
.article-page-title-pickup {
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
    padding: 20px; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    position: relative; 
    z-index: 0; 
    border-radius: 10px; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); 
    overflow: hidden;
    font-size: 2.4rem; 
    font-weight: 700;
    color: #333; 
    line-height: 1.4;
    text-align: center;
    margin-bottom: 30px;
    aspect-ratio: 16/9;
}

.article-page-title-01 .title-text-content,
.article-page-title-02 .title-text-content,
.article-page-title-03 .title-text-content,
.article-page-title-04 .title-text-content,
.article-page-title-05 .title-text-content,
.article-page-title-06 .title-text-content,
.article-page-title-07 .title-text-content,
.article-page-title-08 .title-text-content,
.article-page-title-pickup .title-text-content {
    color: #333;
    text-shadow: none;
}

.article-page-title-01 { background-image: url('../2026-autumn_images/article-main-image-01.webp'); }
.article-page-title-02 { background-image: url('../2026-autumn_images/article-main-image-02.webp'); }
.article-page-title-03 { background-image: url('../2026-autumn_images/article-main-image-03.webp'); }
.article-page-title-04 { background-image: url('../2026-autumn_images/article-main-image-04.webp'); }
.article-page-title-05 { background-image: url('../2026-autumn_images/article-main-image-05.webp'); }
.article-page-title-06 { background-image: url('../2026-autumn_images/article-main-image-06.webp'); }
.article-page-title-07 { background-image: url('../2026-autumn_images/article-main-image-07.webp'); }
.article-page-title-08 { background-image: url('../2026-autumn_images/article-main-image-08.webp'); }
.article-page-title-pickup { background-image: url('../../images/2026-autumn-pickup-image.webp'); }

.article-page-title-01::before,
.article-page-title-02::before,
.article-page-title-03::before,
.article-page-title-04::before,
.article-page-title-05::before,
.article-page-title-06::before,
.article-page-title-07::before,
.article-page-title-08::before,
.article-page-title-pickup::before {
    content: '';
}

.article-page-title-01:not(:empty)::before,
.article-page-title-02:not(:empty)::before,
.article-page-title-03:not(:empty)::before,
.article-page-title-04:not(:empty)::before,
.article-page-title-05:not(:empty)::before,
.article-page-title-06:not(:empty)::before,
.article-page-title-07:not(:empty)::before,
.article-page-title-08:not(:empty)::before,
.article-page-title-pickup:not(:empty)::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 35%;
    background-color: rgba(255, 255, 255, 0.82);
    z-index: -1;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .article-page-title-01,
    .article-page-title-02,
    .article-page-title-03,
    .article-page-title-04,
    .article-page-title-05,
    .article-page-title-06,
    .article-page-title-07,
    .article-page-title-08,
    .article-page-title-pickup {
        font-size: 1.6rem;
        padding: 0 15px;
    }
    .article-page-title-01:not(:empty)::before,
    .article-page-title-02:not(:empty)::before,
    .article-page-title-03:not(:empty)::before,
    .article-page-title-04:not(:empty)::before,
    .article-page-title-05:not(:empty)::before,
    .article-page-title-06:not(:empty)::before,
    .article-page-title-07:not(:empty)::before,
    .article-page-title-08:not(:empty)::before,
    .article-page-title-pickup:not(:empty)::before {
        height: 65%;
    }
}


.content-flex-recipe {
    display: flex;
    flex-direction: row; 
    gap: 30px; 
}
.flex-left {
    display: flex;
    flex-direction: column;
}
.flex-right {
    justify-self: center;
}
.content-flex .flex-left {
    flex: 1;
}
.content-flex .flex-right {
    flex: 1;
}
.content-flex-recipe .flex-left {
    flex: 2;
}
.content-flex-recipe .flex-right {
    flex: 1;
}
.flex-right img {
    width: 100%;
    height: auto;
}
.bg-yellow {
    background-color: #fdcb66;
    padding: 10px 30px;
    border-radius: 45px;
    display: inline-block;
    align-self: flex-start;
}
.recipe-title {
    display: inline-block;
    position: relative;
    z-index: 1;
}
.recipe-time {
    padding-left: 50px;
    position: relative;
}
.recipe-time::before {
    content: url('../2025-autumn_images/recipe-time.webp');
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.recipe-list {
    list-style: none;
    padding: 0;
    width: 550px; 
}
.recipe-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}
.recipe-grid-container {
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 60px; 
    padding: 20px; 
    margin: 0;
    list-style: none;
    counter-reset: recipe-counter;
}

.recipe-grid-item {
    display: flex;
    flex-direction: column;
    gap: 15px; 
    text-align: left;
    counter-increment: recipe-counter;
}
                  
.recipe-grid-item img {
    max-width: 100%; 
    height: auto; 
    margin-bottom: 15px; 
}
.instruction {
    margin: 0;
    position: relative;
    padding-left: 1.8em;
}
.instruction::before {
    content: counter(recipe-counter) "."; 
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}
.note-recipe {
    margin: 0;
    font-size: 0.9em;
    color: #333333;
    padding-left: 3.2em;
    text-indent: -1.2em;
}
.recipe-steps {
    counter-reset: halloween-step-counter; 
}
.recipe-steps .step p {
    position: relative; 
    padding-left: 2em; 
}
.recipe-steps .step p::before {
    counter-increment: halloween-step-counter; 
    content: counter(halloween-step-counter) ".";
    position: absolute; 
    left: 0;
    top: 0;
    font-weight: bold;
    color: #333; 
}
@media (max-width: 768px) {
    .recipe-grid-container {
        grid-template-columns: repeat(2, 1fr); 
    }
}
@media (max-width: 480px) {
    .recipe-grid-container {
        grid-template-columns: 1fr; 
    }
}

.ls-none {
    list-style: none!important;
}
.recipe-point-title {
    background-color: #fdcb66;
    padding: 5px 20px;
}
.recipe-point-list {
    border: #fdcb66 3px solid;
}

@media screen and (max-width: 768px) {
    .content-flex-recipe {
        display: flex;
        flex-direction: column-reverse;
        gap: 30px;
    }
}

.recipe-column-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding-top: 40px;
}

.ingredient-list {
    list-style: none;
    padding-left: 0;
    margin: 10px auto 0;
    width: 600px;
    max-width: 100%;
}

.ingredient-item {
    display: flex;
    align-items: baseline;
    margin-bottom: 8px;
    font-size: 1.6rem;
    color: #333;
    line-height: 1.6;
}

.ingredient-name {
    flex-shrink: 0; 
}

.ingredient-dots {
    flex-grow: 1;
    margin: 0 5px;
    border-bottom: 2px dotted #999;
    position: relative;
    top: -5px;
}

.ingredient-amount {
    flex-shrink: 0;
    text-align: right;
}

.group-A-container {
    position: relative;
    padding-right: 40px; 
}

.group-A-container::after {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    right: 10px;
    width: 10px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
}

.group-A-mark {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border: 1px solid #f79659;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    background-color: #f79659;
    color: #fff;
    line-height: 1;
}
.inline-group-mark {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background-color: #f79659;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    line-height: 1;
    margin: 0 2px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}
@media screen and (max-width: 768px) {
    .group-A-container {
        padding-right: 40px;
    }
    .group-A-container::after {
        content: "";
        position: absolute;
        top: 15px;
        bottom: 5px;
        left: auto;
        right: 10px;
        width: 10px;
        border-top: 1px solid #333;
        border-right: 1px solid #333;
        border-bottom: 1px solid #333;
    }
    .group-A-mark {
        position: absolute;
        top: 50%;
        left: auto;
        right: -20px;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        border: 1px solid #f79659;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        background-color: #f79659;
        color: #fff;
        line-height: 1;
    }
    
    .ingredient-list {
        width: 100%;
        margin-top: 10px;
    }
    .ingredient-item {
        font-size: 1.15rem;
        line-height: 1.5;
    }
    .ingredient-name {
        flex-shrink: 1; 
        max-width: 65%;
    }
    .ingredient-dots {
        flex-grow: 1;
        min-width: 10px;
    }
    .ingredient-amount {
        flex-shrink: 0;
        max-width: 30%;
    }
}

.recipe-detail {
    position: relative;
    padding-top: 0;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.recipe-detail > span {
    position: absolute;
    top: 30px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    background-color: #d14686;
    border-radius: 50%;
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    font-family: 'Zen Maru Gothic', serif;
    z-index: 2;
}
@media screen and (max-width: 768px) {
    .recipe-detail > span {
        position: absolute;
        top: 30px;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        background-color: #d14686;
        border-radius: 50%;
        color: #fff;
        font-size: 24px;
        font-weight: bold;
        font-family: 'Zen Maru Gothic', serif;
        z-index: 2;
    }
}
.recipe-title {
    padding-left: 50px;
    min-height: 64px;
    display: flex;
    align-items: center;
}
.recipe-title .section-title .title-text {
    color: #d14686;
    padding: 0 10px;
    font-size: 1.8rem;
    display: inline-block;
    white-space: nowrap;
    width: auto;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20" preserveAspectRatio="none"%3E%3Crect width="100" height="20" fill="%23fff352"/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: 0 85%;
    background-size: 100% 11px;
}
@media screen and (max-width: 768px) {
    .recipe-title {
        padding-left: 60px;
        min-height: 50px;
    }
    .recipe-title .section-title .title-text {
        color: #d14686;
        padding: 0;
        font-size: 1.3rem;
        display: inline;
        white-space: normal;
        word-break: break-word;
        width: auto;
        background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20" preserveAspectRatio="none"%3E%3Crect width="100" height="20" fill="%23fff352"/%3E%3C/svg%3E');
        background-repeat: no-repeat;
        background-position: 0 85%;
        background-size: 100% 11px;
    }
}
.recipe-title .section-title {
    display: inline-block;
    width: auto;
    margin-bottom: 0;
}
.recipe-title .section-title .title-text::before,
.recipe-title .section-title .title-text::after {
    display: none;
}
.recipe-detail img {
    justify-self: center;
    width: 600px;
    max-width: 100%;
    padding: 1.0em;
}
.step-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding-top: 40px;
    position: relative;
}
.step-column span {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(0%);
}

.article-body-content ol.recipe-step-list {
    margin: 20px 0 !important;
    padding-left: 0 !important;
    max-width: 100% !important;
}

.recipe-step-list {
    counter-reset: spring-step-counter;
    list-style: none;
    padding: 0;
    margin: 0;
}

.recipe-step-list > li {
    position: relative;
    padding-left: 1.8em;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
}

.recipe-step-list > li::before {
    position: absolute;
    top: 3px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background-color: transparent;
    border: none;
    border-radius: 0;
    color: #333;
    font-size: 1.6rem;
    font-weight: normal;
    font-family: 'Zen Maru Gothic', serif;
    z-index: 2;
    line-height: 1;
}

.recipe-step-list > li:nth-child(1)::before { content: "①"; }
.recipe-step-list > li:nth-child(2)::before { content: "②"; }
.recipe-step-list > li:nth-child(3)::before { content: "③"; }
.recipe-step-list > li:nth-child(4)::before { content: "④"; }
.recipe-step-list > li:nth-child(5)::before { content: "⑤"; }
.recipe-step-list > li:nth-child(6)::before { content: "⑥"; }
.recipe-step-list > li:nth-child(7)::before { content: "⑦"; }
.recipe-step-list > li:nth-child(8)::before { content: "⑧"; }
.recipe-step-list > li:nth-child(9)::before { content: "⑨"; }
.recipe-step-list > li:nth-child(10)::before { content: "⑩"; }

.recipe-step-list > li > p {
    margin: 0;
    width: 100%;
    line-height: 1.6;
}
.step-column img {
    justify-self: center;
    width: 300px;
    height: auto;
    padding: 0;
}
.recipe-step-list > li img {
    width: 300px;
    max-width: 100%;
    height: auto;
    margin: 0;
    align-self: flex-start;
}
.recipe-step-list > li .login-btn {
    align-self: flex-start;
}

.idea {
    padding: 0 40px 40px 40px;
    border: #a5a4a4 2px dashed;
    border-radius: 10px;
}
.idea-title {
    padding-left: 50px;
    position: relative;
}
.idea-title::before {
    content: url('../2025-autumn_images/idea-title.webp');
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.idea .content-flex .flex-left {
    flex: 1;
}
.idea .content-flex .flex-right {
    flex: 1;
}
.idea img {
    max-width: 300px;
    width: 100%;
    height: auto;
}
@media screen and (max-width: 768px) {
    .idea img {
        max-width: 100%;
    }
}

.img-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.content-flex-images {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: left;
    margin: 20px 0;
    width: 100%;
}
.content-flex-images img {
    width: 48%;
    height: auto;
    max-width: 300px;
}
@media screen and (max-width: 768px) {
    .content-flex-images {
        flex-direction: column;
        align-items: center;
    }
    .content-flex-images img {
        width: 100%;
        max-width: 300px;
    }
}

.login-btn-container {
    text-align: center;
    margin: 25px 0;
}
.login-btn {
    display: inline-block;
    background-color: #E59EDD;
    color: #fff !important;
    font-weight: bold;
    font-size: 1.8rem;
    padding: 12px 40px;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.login-btn:hover {
    background-color: #d182c8;
    text-decoration: none;
    transform: translateY(-2px);
}
.login-btn:active {
    transform: translateY(0);
}
@media screen and (max-width: 768px) {
    .login-btn {
        font-size: 1.2rem;
        padding: 10px 24px;
    }
    .section-subtitle {
        font-size: 1.3rem;
        padding: 10px 14px;
    }
}

.section-subtitle {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-top: 2em;
    margin-bottom: 1em;
    padding: 12px 18px;
    background-color: #f7f7f7;
    border-left: 7px solid #D86ECC;
    border-right: 7px solid #D86ECC;
    border-radius: 4px;
    scroll-margin-top: 150px;
}


.login-info-box {
    margin: 15px 0;
    padding: 15px 20px;
    background-color: #fdfaf2;
    border-radius: 8px;
    border-left: 5px solid #E59EDD;
    width: 100%;
    box-sizing: border-box;
}
.login-info-box ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
    line-height: 1.6;
}
.login-info-box li {
    list-style: none !important;
    font-size: 1.25rem;
}

.register-branch-box {
    margin: 15px 0;
    padding: 15px 20px;
    background-color: #fdfaf2;
    border-radius: 8px;
    border-left: 5px solid #be92ba;
    width: 100%;
    box-sizing: border-box;
}
.register-branch-box .branch-title {
    font-weight: bold;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .recipe-step-list > li {
        padding-left: 1.6em;
    }
    .login-info-box,
    .register-branch-box {
        padding: 12px 14px;
    }
    .login-info-box li {
        font-size: 1.05rem;
    }
}
.benefit-flow {
    border: 2px solid #666;
}

.note-text {
    color: #666 !important;
}

.separator-dashed {
    border: none;
    border-top: 1px dashed #ccc;
    margin: 40px 0;
}

.bottom-banner-img {
    width: 70%;
    max-width: 100%;
}
@media screen and (max-width: 768px) {
    .bottom-banner-img {
        width: 100%;
    }
}

.normal-range-box {
    background-color: #FCEFE6;
    padding: 25px 30px;
    border-radius: 12px;
    max-width: 100%;
    margin: 25px 0;
}
.normal-range-box.has-ill {
    display: flex;
    align-items: center;
    gap: 30px;
}
.normal-range-box.has-ill .normal-range-content {
    flex: 1;
}
.normal-range-box.has-ill .normal-range-ill {
    width: 180px;
    height: auto;
    flex-shrink: 0;
    align-self: flex-end;
}
@media screen and (max-width: 768px) {
    .normal-range-box.has-ill {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    .normal-range-box.has-ill .normal-range-ill {
        width: 130px;
    }
}
.normal-range-box .normal-range-title {
    text-align: center;
    font-size: 1.35rem;
    font-weight: bold;
    color: #333;
    margin-top: 0;
    margin-bottom: 20px;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.normal-range-box ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
}
.normal-range-box li {
    line-height: 1.8;
    margin-bottom: 12px !important;
    list-style: none !important;
    color: #333;
    padding-left: 0 !important;
}
.normal-range-box li:last-child {
    margin-bottom: 0 !important;
}

.trouble-title {
    font-weight: bold;
    color: #d14686;
    font-size: 1.35rem;
    margin-top: 25px;
    margin-bottom: 10px;
}


.trouble-symptoms-box {
    border: 2px solid #FCEFE6;
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: 15px;
    margin-bottom: 25px;
    max-width: 80%;
    background-color: #fff;
    display: flex;
    align-items: center;
    gap: 25px;
}
.trouble-symptoms-box .trouble-symptoms-content {
    flex: 1;
}
.trouble-symptoms-box .trouble-symptoms-ill {
    width: 150px;
    height: auto;
    flex-shrink: 0;
}
@media screen and (max-width: 768px) {
    .trouble-symptoms-box {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    .trouble-symptoms-box .trouble-symptoms-ill {
        width: 110px;
    }
}
.trouble-symptoms-box .symptoms-title {
    font-weight: bold;
    font-size: 1.25rem;
    color: #333;
    margin-top: 0;
    margin-bottom: 10px;
}
.trouble-symptoms-box ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
}
.trouble-symptoms-box li {
    font-size: 1.15rem !important;
    line-height: 1.6;
    margin-bottom: 8px !important;
    list-style: none !important;
    color: #333;
    padding-left: 0 !important;
}
.trouble-symptoms-box li:last-child {
    margin-bottom: 0 !important;
}

.text-pink {
    color: #d14686;
}

.overuse-check-box {
    border: 2px dashed #FF9EDD;
    border-radius: 10px;
    padding: 20px 25px;
    margin: 25px 0;
    max-width: 650px;
    background-color: #fff;
}
.overuse-check-box .check-box-title-container {
    display: flex;
    align-items: flex-end;
    margin-bottom: 20px;
    margin-top: 0;
}
.overuse-check-box .check-box-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #d14686;
    margin: 0;
    border-bottom: 3px solid #d14686;
    padding-bottom: 8px;
    padding-right: 15px;
    display: inline-block;
}
.overuse-check-box .check-box-title span {
    color: #333;
}
.overuse-check-box .pen-icon {
    width: 55px;
    height: auto;
    margin-left: -6px;
    position: relative;
    bottom: 6px;
}
.overuse-check-box ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
}
.overuse-check-box li {
    font-size: 1.2rem !important;
    line-height: 1.8;
    margin-bottom: 10px !important;
    list-style: none !important;
    color: #333;
    padding-left: 0 !important;
}
.overuse-check-box li:last-child {
    margin-bottom: 0 !important;
}

.flower-list-container {
    margin: 25px 0;
    max-width: 650px;
}
.flower-list-item {
    margin-bottom: 25px;
}
.flower-list-item:last-child {
    margin-bottom: 0;
}
.flower-list-title-area {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.flower-list-title-area .flower-icon {
    width: 24px;
    height: auto;
    margin-right: 8px;
}
.flower-list-title-area .flower-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #d14686;
    margin: 0;
}
.flower-list-item ul {
    list-style: none !important;
    padding-left: 15px !important;
    margin: 0 !important;
}
.flower-list-item li {
    font-size: 1.15rem !important;
    line-height: 1.6;
    margin-bottom: 6px !important;
    list-style: none !important;
    color: #333;
}
.flower-list-item li:last-child {
    margin-bottom: 0 !important;
}

.child-dependency-box {
    border: 2px solid #333;
    border-radius: 8px;
    margin: 30px 0;
    max-width: 650px;
    background-color: #fff;
    overflow: hidden;
    position: relative;
    padding-top: 15px;
}
.child-dependency-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: repeating-linear-gradient(90deg, #F3B2C1, #F3B2C1 20px, #F9DBE1 20px, #F9DBE1 40px);
}
.child-dependency-content {
    display: flex;
    align-items: center;
    padding: 20px;
}
.child-dependency-text {
    flex: 1;
    padding-right: 15px;
}
.child-dependency-text h4 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-top: 0;
    margin-bottom: 12px;
    display: inline-block;
    padding-bottom: 5px;
    background-image: radial-gradient(#FF9EDD 20%, transparent 20%);
    background-size: 8px 8px;
    background-repeat: repeat-x;
    background-position: left bottom;
}
.child-dependency-text p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0;
}
.child-dependency-image {
    width: 150px;
    height: auto;
    flex-shrink: 0;
}
@media screen and (max-width: 768px) {
    .child-dependency-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .child-dependency-text {
        padding-right: 0;
        margin-bottom: 15px;
    }
    .child-dependency-image {
        width: 120px;
        align-self: flex-end;
    }
}

.health-consultation-box {
    background-color: #F3FFFE;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
}
.health-consultation-box p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
}
.health-consultation-box .note-text {
    font-size: 0.9rem !important;
    color: #666;
    margin-bottom: 25px;
    display: block;
    line-height: 1.5;
}
.health-consultation-box .banner-img {
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
    display: block;
    justify-self: center;
}
.health-consultation-box .btn-container {
    text-align: center;
}
.health-consultation-box .btn-pink {
    display: inline-block;
    background-color: #FCE5F2;
    color: #333 !important;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 12px 60px;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 3px 6px rgba(0,0,0,0.05);
    border: 1px solid #FF9EDD;
}
.health-consultation-box .btn-pink:hover {
    background-color: #f7bcd4;
    transform: translateY(-2px);
    text-decoration: none;
}
.health-consultation-box .btn-pink:active {
    transform: translateY(0);
}

.prevent-test-box {
    background-color: #FFF2F9;
    border-radius: 12px;
    padding: 25px 30px;
    margin: 25px 0;
    max-width: 820px;
    justify-self: center;
}
.prevent-test-box .test-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}
.prevent-test-box .test-subtitle {
    color: #e20074;
    font-weight: bold;
    font-size: 1.4rem;
    margin: 0 0 5px 0;
}
.prevent-test-box .test-title-img {
    width: auto;
    height: 55px;
    max-width: 100%;
}
.prevent-test-box .test-desc {
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 15px 0;
    color: #333;
}
.prevent-test-box .test-content {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.prevent-test-box .test-ill-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
    flex: 1;
    margin-right: 20px;
}
.prevent-test-box .test-ill-how-to {
    width: auto;
    height: 100px;
    max-width: 100%;
}
.prevent-test-box .test-char-dialogue {
    display: flex;
    align-items: center;
    gap: 15px;
}
.prevent-test-box .test-ill-boy {
    width: auto;
    height: 80px;
    max-width: 100%;
}
.prevent-test-box .test-dialogue {
    width: auto;
    height: 70px;
    max-width: 100%;
}
.prevent-test-box .test-details {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
    flex-shrink: 0;
    width: 200px;
}
.prevent-test-box .test-details li {
    font-size: 1.0rem !important;
    line-height: 1.8;
    margin-bottom: 8px !important;
    list-style: none !important;
    position: relative;
    padding-left: 24px !important;
}
.prevent-test-box .test-details li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
}
.prevent-test-box .test-details li.target::before {
    background-color: #9AD900;
}
.prevent-test-box .test-details li.cost::before {
    background-color: #FF8A8A;
}
.prevent-test-box .test-details li.how::before {
    background-color: #9AD900;
}
@media screen and (max-width: 768px) {
    .prevent-test-box .test-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .prevent-test-box .test-ill-container {
        margin-right: 0;
        margin-bottom: 20px;
        flex-direction: column;
        align-items: center;
        padding: 15px;
        gap: 0;
    }
    .prevent-test-box .test-char-dialogue {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    .prevent-test-box .test-details {
        width: 100%;
        margin-top: 15px;
    }
}

.manga-container {
    margin: 30px auto;
    text-align: center;
    max-width: 650px;
}
.manga-container img {
    display: block;
    margin: 0 auto;
    width: 70%;
    max-width: 450px;
    height: auto;
}
@media screen and (max-width: 768px) {
    .manga-container img {
        width: 100%;
        max-width: 350px;
    }
}

.bacteria-check-box {
    background-color: #EEF8F8;
    border-radius: 10px;
    padding: 20px 25px;
    margin: 25px 0;
    max-width: 650px;
}
.bacteria-check-box .check-box-title-container {
    display: flex;
    align-items: center;
    border-bottom: 3px dotted #A47AB4;
    padding-bottom: 8px;
    margin-bottom: 20px;
    margin-top: 0;
}
.bacteria-check-box .check-box-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}
.bacteria-check-box .bacteria-icon {
    width: 36px;
    height: auto;
    margin-right: 8px;
}
.bacteria-check-box ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
}
.bacteria-check-box li {
    font-size: 1.2rem !important;
    line-height: 1.8;
    margin-bottom: 10px !important;
    list-style: none !important;
    color: #333;
    padding-left: 0 !important;
}
.bacteria-check-box li:last-child {
    margin-bottom: 0 !important;
}

.prevention-card-container {
    margin: 25px 0;
    max-width: 650px;
}
.prevention-card {
    background-color: #FCFBE3;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}
.prevention-card:last-child {
    margin-bottom: 0;
}
.prevention-card-header {
    display: flex;
    align-items: center;
    border-bottom: 3px dotted #E20074;
    padding-bottom: 10px;
    margin-bottom: 12px;
}
.prevention-card-header .card-icon {
    width: 32px;
    height: auto;
    margin-right: 10px;
    flex-shrink: 0;
}
.prevention-card-header .card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}
.prevention-card .card-desc {
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0;
    color: #333;
}

.text-pink {
    color: #e4007f !important;
}

.section-subtitle-badge-container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 12px;
    margin: 80px 0 20px 0;
    justify-content: center;
}
.section-subtitle-badge-container h2 {
    font-size: 2.2rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}
.section-subtitle-badge-container .badge-blue {
    background-color: #008cd6;
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    padding: 3px 10px;
    border-radius: 6px;
    flex-shrink: 0;
}
@media screen and (max-width: 768px) {
    .section-subtitle-badge-container {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }
    .section-subtitle-badge-container h2 {
        font-size: 1.8rem;
    }
    .section-subtitle-badge-container .badge-blue {
        font-size: 1.2rem;
    }
}

.underline-handdrawn {
    background-image: url('../2026-autumn_images/autumn-06-underline.svg');
    background-repeat: repeat-x;
    background-position: left bottom 2px;
    background-size: auto 12px;
    padding-bottom: 4px;
}

.reform-item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 30px 0 15px 0;
    background-image: url('../2026-autumn_images/autumn-06-underline.svg');
    background-repeat: repeat-x;
    background-position: left bottom 6px;
    background-size: auto 26px;
    padding-bottom: 8px;
    width: fit-content;
}
.reform-item-header .tag-img {
    height: 38px;
    width: auto;
    flex-shrink: 0;
    margin-bottom: 4px;
}
.reform-item-header .reform-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin: 0;
    padding-bottom: 4px;
    padding-right: 8px;
}
@media screen and (max-width: 768px) {
    .reform-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
        background-image: none;
        padding-bottom: 0;
    }
    .reform-item-header .reform-title {
        font-size: 1.15rem;
        background-image: none;
        padding-bottom: 0;
    }
    .reform-item-header .reform-title-text {
        display: inline;
        background-image: url('../2026-autumn_images/autumn-06-underline.svg');
        background-repeat: repeat-x;
        background-position: left bottom 2px;
        background-size: auto 12px;
        padding-bottom: 6px;
        line-height: 1.8;
        padding-right: 8px;
    }
}

.graf-container {
    margin: 20px 0;
    text-align: center;
}
.graf-container img {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: auto;
}

.badge-orange-fill {
    display: inline-block;
    background-color: #E88344;
    color: #fff;
    font-size: 1.05rem;
    font-weight: bold;
    padding: 4px 18px;
    border-radius: 20px;
    margin: 15px 0 10px 0;
}

.meal-cost-box-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0 25px 0;
    width: 100%;
}
.meal-cost-boxes {
    display: flex;
    gap: 15px;
    flex: 1;
}
.meal-cost-box {
    background-color: #FDF5E6;
    border: 1px solid #FFE4B5;
    border-radius: 12px;
    padding: 18px;
    flex: 1;
    align-content: center;
}
.meal-cost-box .box-title {
    color: #D35400;
    font-weight: bold;
    font-size: 1.05rem;
    text-align: center;
    margin-top: 0;
    margin-bottom: 12px;
}
.meal-cost-box p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0;
    color: #333;
    text-align: center;
}
.meal-cost-box .arrow-text {
    font-weight: bold;
    color: #E74C3C;
}
.meal-cost-ill {
    width: 130px;
    height: auto;
    flex-shrink: 0;
}
@media screen and (max-width: 768px) {
    .meal-cost-box-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .meal-cost-boxes {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    .meal-cost-ill {
        width: 110px;
        align-self: center;
    }
}

.medical-limit-table-container {
    margin: 25px 0;
    max-width: 650px;
}
.medical-limit-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}
.medical-limit-table th,
.medical-limit-table td {
    border: 1px solid #79c06e;
    padding: 12px;
    text-align: center;
    font-size: 1.05rem;
}
.medical-limit-table th {
    background-color: #EAF2F8;
    color: #333;
    font-weight: bold;
}
.medical-limit-table tr:nth-child(even) td {
    background-color: #F4F9F4;
}
.medical-limit-table .new-tag {
    background-color: #ffff00;
    color: #333;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid #d14686;
    margin-left: 5px;
}

.consultation-section-wrapper {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-top: 20px;
    margin-bottom: 25px;
}
.consultation-section-wrapper .consultation-text-content {
    flex: 1;
}
.consultation-section-wrapper .consultation-ill {
    width: 200px;
    height: auto;
    flex-shrink: 0;
    align-self: flex-end;
}
@media screen and (max-width: 768px) {
    .consultation-section-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .consultation-section-wrapper .consultation-ill {
        width: 140px;
    }
}

.kessan-box {
    margin-top: 50px;
    border: 7px double #b4dbb2;
    padding: 20px;
}
.kessan-box .kessan-title {
    margin-top: 0;
}
.kessan-box .kessan-title .sub {
    background: #f27190;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    vertical-align: middle;
}
.kessan-box .kessan-title span {
    display: inline-block;
    color: #1ab26b;
}
.kessan-box .disc-list li::marker {
    color: #66c18c;
}
@media screen and (max-width: 768px) {
    .kessan-box {
        padding: 10px 5px;
    }
}

.recipe-step-images {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
}
.recipe-step-list .recipe-step-images img {
    flex: 1;
    min-width: 0;
    max-width: 240px;
    height: auto;
}
.recipe-step-images img:first-child {
    order: 1;
}
.recipe-step-images::after {
    content: "→";
    order: 2;
    font-size: 3.6rem;
    font-weight: bold;
    color: #e37f40;
    line-height: 1;
    flex-shrink: 0;
}
.recipe-step-images img:last-child {
    order: 3;
}

@media screen and (max-width: 768px) {
    .recipe-step-images {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .recipe-step-list .recipe-step-images img {
        width: 100%;
        max-width: 300px;
    }
    .recipe-step-images::after {
        content: "↓";
        font-size: 1.8rem;
        margin: 4px 0;
    }
}

.step-nav-box {
    margin: 25px 0 35px 0;
    padding: 20px 25px;
    background-color: #fdfaf2;
    border-radius: 8px;
    border-left: 6px solid #be92ba;
    width: 560px;
}
.step-nav-box .step-nav-title {
    font-size: 1.45rem;
    font-weight: bold;
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
}
.step-nav-box .step-nav-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}
.step-nav-box .step-nav-btn {
    display: inline-block;
    background-color: #ffffff;
    color: #555555;
    border: 2px solid #be92ba;
    font-size: 1.15rem;
    font-weight: bold;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
}
.step-nav-box .step-nav-btn span {
    color: #be92ba !important;
    transition: color 0.25s ease;
}
.step-nav-box .step-nav-btn:hover {
    background-color: #f7eef6;
    transform: translateY(-2px);
}
.step-nav-box .step-nav-btn.is-active {
    background-color: #be92ba;
    color: #ffffff !important;
    border-color: #be92ba;
    box-shadow: 0 4px 12px rgba(190, 146, 186, 0.4);
}
.step-nav-box .step-nav-btn.is-active span {
    color: #ffffff !important;
}

@media screen and (max-width: 768px) {
    .step-nav-box {
        padding: 15px 18px;
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    .step-nav-box .step-nav-title {
        font-size: 1.25rem;
    }
    .step-nav-box .step-nav-list {
        width: 100%;
        gap: 10px;
    }
    .step-nav-box .step-nav-btn {
        width: 100%;
        text-align: left;
        padding: 10px 18px;
        font-size: 1.05rem;
    }
}

.step-tab-panel {
    display: none;
}
.step-tab-panel.is-active {
    display: block;
    animation: tabFadeIn 0.3s ease;
}
@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-body-content iframe {
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin: 20px 0;
}

.app-install-btn-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
    margin-bottom: 20px;
}
.app-btn-iphone,
.app-btn-android {
    display: inline-block;
    padding: 10px 26px;
    font-size: 1.15rem;
    font-weight: bold;
    color: #111;
    text-decoration: none;
    border-radius: 20px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    text-align: center;
}
.app-btn-iphone {
    background-color: #83c6ea;
    box-shadow: 4px 4px 0 #0093d8;
}
.app-btn-iphone:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #0093d8;
    color: #111;
}
.app-btn-android {
    background-color: #a7d48f;
    box-shadow: 4px 4px 0 #2ea13d;
}
.app-btn-android:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #2ea13d;
    color: #111;
}
@media screen and (max-width: 600px) {
    .app-install-btn-container {
        flex-direction: column;
        gap: 12px;
    }
    .app-btn-iphone,
    .app-btn-android {
        width: 100%;
        font-size: 1.05rem;
    }
}

.app-sub-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px dotted #333;
}

@media (max-width: 768px) {
    .app-sub-title {
        font-size: 1.2rem;
        margin-top: 20px;
        margin-bottom: 10px;
        padding-bottom: 6px;
    }
}

.android-guide-section {
    margin-top: 25px;
    margin-bottom: 30px;
}
.android-step-main-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}
.android-sub-title-orange {
    font-size: 1.2rem;
    font-weight: bold;
    color: #f39800;
    margin-top: 25px;
    margin-bottom: 0!important;
}
.android-sub-title-green {
    font-size: 1.2rem;
    font-weight: bold;
    color: #78ab24;
    margin-top: 30px;
    margin-bottom: 0!important;
}
.android-sub-title-coral {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff5b2d;
    margin-top: 30px;
    margin-bottom: 0!important;
}
.sync-step-header {
    font-size: 1.2rem;
    font-weight: bold;
    color: #78ab24;
    margin-top: 25px;
    margin-bottom: 0!important;
}
.sync-step-header-coral {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff5b2d;
    margin-top: 25px;
    margin-bottom: 15px;
}
.android-download-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 18px 0;
    flex-wrap: wrap;
}
.app-btn-download-yellow {
    display: inline-block;
    background-color: #ffea60;
    color: #333;
    font-weight: bold;
    font-size: 1.15rem;
    padding: 14px 40px;
    border-radius: 30px;
    box-shadow: 4px 4px 0 #deb800;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    text-align: center;
}
.app-btn-download-yellow:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #deb800;
    color: #111;
}
.app-btn-download-yellow:active {
    transform: translate(4px, 4px);
    box-shadow: none;
}
.app-btn-download-green {
    display: inline-block;
    background-color: #88c028;
    color: #333;
    font-weight: bold;
    font-size: 1.15rem;
    padding: 14px 40px;
    border-radius: 30px;
    box-shadow: 4px 4px 0 #5e8c14;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    text-align: center;
}
.app-btn-download-green:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #5e8c14;
    color: #111;
}
.app-btn-download-green:active {
    transform: translate(4px, 4px);
    box-shadow: none;
}
.app-btn-download-coral {
    display: inline-block;
    background-color: #ff8e6e;
    color: #333;
    font-weight: bold;
    font-size: 1.15rem;
    padding: 14px 40px;
    border-radius: 30px;
    box-shadow: 4px 4px 0 #d9491e;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    text-align: center;
}
.app-btn-download-coral:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #d9491e;
    color: #111;
}
.app-btn-download-coral:active {
    transform: translate(4px, 4px);
    box-shadow: none;
}
.qr-code-img {
    width: 120px;
    height: 120px;
    border-radius: 4px;
    display: block;
}
.android-notice-box {
    background-color: #fafafa;
    border: 1px solid #ebebeb;
    border-radius: 6px;
    padding: 15px 20px;
    margin: 15px 0 25px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #333;
}
.android-notice-box p {
    margin-bottom: 8px;
}
.android-notice-box p:last-child {
    margin-bottom: 0;
}
.android-notice-title {
    font-weight: bold;
    color: #333;
}

@media (max-width: 600px) {
    .android-download-row {
        gap: 15px;
    }
    .app-btn-download-yellow,
    .app-btn-download-green,
    .app-btn-download-coral {
        width: 100%;
        padding: 12px 20px;
        font-size: 1.05rem;
    }
    .qr-code-img {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
}

.point-menu-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0 30px;
    -webkit-overflow-scrolling: touch;
}
.point-menu-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    border: 1px solid #333;
    font-size: 0.95rem;
    line-height: 1.5;
    background-color: #fff;
}
.point-menu-table th,
.point-menu-table td {
    border: 1px solid #333;
    padding: 8px 10px;
    text-align: center;
    vertical-align: middle;
    color: #333;
}
.point-menu-table thead th {
    background-color: #df77b5;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    padding: 10px;
}
.point-menu-table .bg-blue-group {
    background-color: #d9effc;
}
.point-menu-table .bg-yellow-group {
    background-color: #fef9db;
}
.point-menu-table .bg-white-group {
    background-color: #ffffff;
}
.point-menu-table .text-left {
    text-align: left;
}
.point-menu-table .text-right {
    text-align: right;
}

.table-scroll-hint {
    display: none;
}
@media screen and (max-width: 768px) {
    .table-scroll-hint {
        display: block;
        font-size: 0.85rem;
        color: #666;
        text-align: left;
        margin-top: 10px;
        margin-bottom: 5px;
    }
    .point-menu-table {
        font-size: 0.85rem;
        min-width: 600px;
    }
    .point-menu-table th,
    .point-menu-table td {
        padding: 6px 8px;
    }
}

.article-body-content .point-notice-box {
    margin: -10px 0 30px;
    padding: 18px 20px;
    background-color: #fdfaf2;
    border: 1px solid #e8dfcf;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
}
.article-body-content .point-notice-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 4px;
    color: #333;
}
.article-body-content .point-notice-box .point-notice-title {
    font-weight: bold;
    color: #00479d;
    font-size: 1.05rem;
    margin-bottom: 8px;
}
.article-body-content .point-notice-box .point-notice-subtitle {
    font-weight: bold;
    color: #333;
    margin-top: 10px;
    margin-bottom: 4px;
}
.article-body-content .point-notice-box ul.point-notice-list {
    list-style: none;
    margin: 4px 0;
    padding-left: 0;
    max-width: 100%;
}
.article-body-content .point-notice-box ul.point-notice-list li {
    list-style: none;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 3px;
    padding-left: 0;
}
.article-body-content .point-notice-box .point-notice-note {
    color: #666;
    font-size: 0.85rem;
    margin-top: 4px;
    margin-bottom: 4px;
}
.article-body-content .point-notice-box .point-notice-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 4px;
    margin-bottom: 4px;
}

.point-expire-box {
    display: flex;
    align-items: center;
    background-color: #fcedf0;
    margin: 30px 0 35px;
    padding: 15px 25px 15px 15px;
    border-radius: 6px;
    gap: 20px;
    width: 550px;
    max-width: 100%;
}
.point-expire-ill {
    width: 100px;
    flex-shrink: 0;
    margin-top: -25px;
    margin-bottom: -10px;
}
.point-expire-text {
    flex: 1;
}
.article-body-content .point-expire-box p.point-expire-title {
    color: #e50012;
    font-weight: bold;
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 6px;
}
.article-body-content .point-expire-box p.point-expire-desc {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    line-height: 1.5;
    margin: 0;
}
.point-expire-desc .text-red {
    color: #e50012;
}

@media screen and (max-width: 768px) {
    .point-expire-box {
        width: 100%;
        max-width: 100%;
        padding: 12px 15px;
        gap: 12px;
        margin: 25px 0;
    }
    .point-expire-ill {
        width: 80px;
        margin-top: -15px;
        margin-bottom: -5px;
    }
    .article-body-content .point-expire-box p.point-expire-title {
        font-size: 1.05rem;
        margin-bottom: 4px;
    }
    .article-body-content .point-expire-box p.point-expire-desc {
        font-size: 0.95rem;
    }
}

.calendar-intro-header {
    background-color: #fdfaf2;
    border-top: 5px solid #be92ba;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.04);
    margin-bottom: 35px;
    text-align: center;
}
.calendar-intro-header h2 {
    font-size: 1.7rem;
    color: #333;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 8px;
}
.calendar-intro-header p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0;
}

.calendar-month-section {
    margin-bottom: 40px;
}
.calendar-month-header {
    font-size: 1.6rem;
    font-weight: bold;
    color: #333;
    padding-left: 0.6em;
    border-left: 4px solid #be92ba;
    margin-top: 35px;
    margin-bottom: 20px;
}

.calendar-event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.calendar-event-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e8e4de;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.calendar-event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    border-color: #be92ba;
}

.calendar-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: bold;
    padding: 3px 10px;
    border-radius: 4px;
    color: #ffffff;
    letter-spacing: 0.05em;
}
.calendar-badge.badge-bosyu {
    background-color: #e53e3e;
}
.calendar-badge.badge-kokuji {
    background-color: #009cdc;
}

.calendar-event-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    margin: 10px 0 14px 0;
}

.calendar-period-box {
    background-color: #fff9e6;
    border-left: 4px solid #f59e0b;
    padding: 8px 12px;
    border-radius: 4px;
    margin-bottom: 14px;
}
.calendar-period-label {
    font-size: 0.8rem;
    font-weight: bold;
    color: #b45309;
    display: block;
    margin-bottom: 2px;
}
.calendar-event-period {
    font-size: 1.25rem;
    font-weight: bold;
    color: #d97706;
}

.calendar-target-box {
    background-color: #f4f6f8;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #555;
}
.calendar-target-label {
    font-weight: bold;
    color: #333;
    margin-right: 6px;
}

@media (max-width: 640px) {
    .calendar-intro-header h2 {
        font-size: 1.35rem;
    }
    .calendar-intro-header p {
        font-size: 0.9rem;
    }
    .calendar-event-grid {
        grid-template-columns: 1fr;
    }
    .calendar-event-title {
        font-size: 1.15rem;
    }
    .calendar-event-period {
        font-size: 1.15rem;
    }
}

.calendar-notice-box {
    background-color: #f6ebf4;
    padding: 18px 24px;
    border-radius: 8px;
    margin: 25px 0 35px 0;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #333;
    text-align: left;
}
.calendar-notice-box a {
    color: #009cdc;
    text-decoration: underline;
    font-weight: bold;
}
@media (max-width: 640px) {
    .calendar-notice-box {
        padding: 14px 16px;
        font-size: 1rem;
        text-align: left;
    }
}

.question-block {
    display: flex; 
    align-items: center; 
    gap: 20px; 
    padding: 20px;
    background-color: #fdfaf2;
    border: 1px solid #ebd8cc;
    border-radius: 8px;
    margin: 25px 0;
    justify-content: center;
}
.question-icon {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
    background-color: #be92ba; 
    color: white; 
    font-size: 26px; 
    font-weight: bold; 
    border-radius: 50%; 
    display: flex; 
    justify-content: center; 
    align-items: center;
}
.question-text {
    font-size: 1.25rem;
    color: #333;
    line-height: 1.6;
}
.content-flex-quiz {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin: 25px 0;
}
.flex-left-quiz {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    justify-content: center;
    align-items: center;
}
.flex-left-quiz img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.flex-right-quiz {
    justify-content: center;
    flex: 1;
}
.flex-right-quiz ul {
    list-style: none !important;
    padding-left: 0 !important;
}
.flex-right-quiz li {
    font-size: 1.15rem;
    line-height: 1.8;
}
.quiz-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    border-left: 6px solid #be92ba;
    padding-left: 12px;
    margin-top: 35px;
    margin-bottom: 15px;
}
.quiz-list {
    margin-left: 0 !important;
    padding-left: 0 !important;
}
.quiz-list li {
    line-height: 1.7; 
    padding-left: 1.5em; 
    list-style: none !important;
    position: relative;
    font-size: 1.15rem;
    margin-bottom: 8px;
}
.quiz-list li::before {
    content: '●'; 
    color: #be92ba; 
    position: absolute;
    left: 0;
    font-size: 0.9em;
}
.labeled-box {
    display: inline-flex; 
    border: 2px solid #be92ba; 
    border-radius: 6px; 
    overflow: hidden; 
    margin: 25px 0; 
}
.labeled-box .box-label {
    background-color: #be92ba; 
    color: white; 
    padding: 10px 20px; 
    font-weight: bold;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}
.labeled-box .box-content {
    background-color: white; 
    color: #333; 
    padding: 10px 20px; 
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .question-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
    }
    .question-icon {
        width: 80px;
        height: 80px;
        font-size: 20px;
    }
    .question-text {
        font-size: 1rem;
        text-align: left;
    }
    .content-flex-quiz {
        flex-direction: column;
        gap: 20px;
    }
    .flex-right-quiz li {
        font-size: 1rem;
    }
}


h2.kessan-title{
    text-align:center;
}

h2.kessan-title span.sub{
    display:inline-block;
    background:#fdc902;
    padding:5px 20px;
    border-radius:100vw;
    font-size:80%;
}

h2.kessan-title span{
    display:block;
}
h3.kessan-title2 {
    margin-top:80px;
    text-align:center;
}

h3.kessan-title2 span{
    margin:0 auto;
    display:inline-block;
    background:#fdc902;
    padding:5px 20px;
    border-radius:100vw;
}


	h3.kessan-title2._kaigo span{
    background:#f79659;
			color:#fff;
        }

.kessan-table02,
.kessan-table{
			margin:0 auto;
			width:70%;
      font-size:1.3rem;
		}

.kessan-table02 td,
.kessan-table02 th,
.kessan-table th,
.kessan-table td{
	padding:5px 10px;
}

.kessan-table th{
	background:#5580c1;
	border-radius:100vw;
	color:#fff;
	width:40%
}

.kessan-table td{
	background:#c7d1ea;
	text-align:right;
}

.kessan-table tbody tr:last-child th{
	background:#3d69aa;
}

.kessan-table02 th{
	background:#f79659;
	border-radius:100vw;
	color:#fff;
	width:40%
}

.kessan-table02 td{
	background:#fedec6;
	text-align:right;
}
.kessan-table02 tbody tr:last-child th{
	background:#e37f40;
}

.kessan-box{
	margin-top:50px;
	border:7px double #b4dbb2;
	padding:20px;
}

h5.kessan-title3{
	text-align:center;
	font-size:1.6em;
}
.kessan-box .kessan-title{
	margin-top:0;
		}

.kessan-box .kessan-title .sub{
	background:#f27190;
	color:#fff;
}
.kessan-box .kessan-title span{
	display:inline-block;
	color:#1ab26b;
}

.kessan-box .disc-list  li::marker{
	color: #66c18c;
}


@media (max-width: 768px) {
    
.kessan-table02,
.kessan-table{
			width:100%;
      font-size:1.0rem;
		}
}
