.juku-section {
    background-color: #ffe4e1;
    /* 薄いピンク */
    padding: 100px 20px;
}

.juku-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.juku-container-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


/* コンテンツボックスのスタイル */

.juku-section .content-box {
    /* 白背景 */
    width: 48%;
    /* 2つ横並びにするための幅 */
    margin-bottom: 20px;
    /* スマホ用に下部に余白 */
    padding: 15px;
    box-sizing: border-box;
}


/* タイトルスタイル */

.juku-section .content-title {
    background-color: #ffffff;
    border-radius: 50px;
    color: #000000;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding: 15px 0;
    margin-bottom: 10px;
    width: 100%;
}


/* 画像スタイル */

.juku-section .content-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-top: 25px;
    margin-bottom: 10px;
}


/* 説明文スタイル */

.juku-section .content-description {
    font-size: 14px;
    color: #333333;
    line-height: 1.6;
}


/* セクションタイトルのスタイル */

.juku-section .section-title-container .section-header {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
}

.juku-section .section-title-container .section-header .icon {
    width: 12px;
    height: 12px;
    background-color: red;
    margin-right: 10px;
}

.juku-section .section-title-container .section-header .title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.juku-section .section-title-container .section-subtitle {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    margin-top: 0;
}

.juku-section .section-title-container .section-description {
    font-size: 14px;
    color: #777;
    margin-bottom: 40px;
}

.juku-section .point-title {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
    width: 100%;
}

.juku-section .point-title h3 {
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

.juku-section .circle-view {
    background-color: #FFE4E1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.juku-section .circle-view .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 610px;
    position: relative;
    height: 380px;
    margin: 0 auto;
}

.juku-section .circle-view .circle {
    width: 250px;
    height: 250px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    position: absolute;
}

.juku-section .circle-view .circle:nth-child(1) {
    left: 0;
    bottom: 0;
    z-index: 1;
}

.juku-section .circle-view .circle:nth-child(2) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.juku-section .circle-view .circle:nth-child(3) {
    right: 0;
    bottom: 0;
    z-index: 2;
}

.juku-section .circle-view .number {
    font-size: 32px;
    margin-bottom: 10px;
}

.juku-section .circle-view .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.juku-section .circle-view .title {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 20px;
}

.juku-section .circle-view .description {
    font-size: 12px;
    margin-bottom: 15px;
}


/* 横が短い画面の場合 */

@media (max-width: 700px) {
    .juku-section .circle-view .container {
        flex-direction: column;
        width: 290px;
        /* コンテナの幅を調整 */
        height: auto;
    }
    .juku-section .circle-view .circle {
        width: 290px;
        height: 290px;
        margin: -10px 0;
        /* 円を少し重ねる */
        position: relative;
    }
    .juku-section .circle-view .circle:nth-child(1) {
        z-index: 3;
        /* 最初の円を最前面に */
    }
    .juku-section .circle-view .circle:nth-child(2) {
        z-index: 2;
        /* 二番目の円を中央に */
    }
    .juku-section .circle-view .circle:nth-child(3) {
        z-index: 1;
        /* 三番目の円を最背面に */
    }
    .juku-section .circle-view .number {
        font-size: 35px;
        margin-bottom: 20px;
    }
    .juku-section .circle-view .icon {
        width: 60px;
        height: 60px;
    }
    .juku-section .circle-view .title {
        font-size: 20px;
    }
    .juku-section .circle-view .description {
        font-size: 12px;
    }
}


/* レスポンシブ対応 */

@media (max-width: 768px) {
    .juku-section .content-box {
        width: 100%;
    }
}