/* ここからパンくず */
.breadcrumb {
    font-size: 12px;
    color: #555;
    margin: 20px 0;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    gap: 6px;
    padding: 0;
    margin: 0;
}

.breadcrumb li::after {
    content: ">";
    margin: 0 6px;
    color: #aaa;
}

.breadcrumb li:last-child::after {
    content: "";
    /* 最後は「>」なし */
}

.breadcrumb a {
    text-decoration: none;
    color: #555;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ここまでパンくず */

/* ここからレッスン */

.section_title-lesson {
    padding: 50px;
}

.schedule_list {
    background-color: #F7F6F6;
    list-style: none;
    margin: 0 auto;
    max-width: 600px;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    width: 360px;
}

.schedule_list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

@media (max-width: 570px) {
    .schedule_list {
        width: 300px;
    }

}

.day_icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-weight: bold;
    text-align: center;
    line-height: 40px;
    margin-right: 15px;
    flex-shrink: 0;
}

/* 曜日ごとの色 */
.mon {
    background-color: #4A90E2;
}

/* 青 */
.tue {
    background-color: #F08080;
}

/* ピンク */
.wed {
    background-color: #5BC8AC;
}

/* 緑 */
.thu {
    background-color: #B2EBF2;
}

/* 水色 */
.fri {
    background-color: #FDD835;
}

/* 黄色 */

.lesson_text {
    font-size: 14px;
    line-height: 1.3;
}

.schedule_note {
    text-align: center;
    font-size: 12px;
    margin-top: 30px;
    margin-bottom: 50px;
}

/* ここまでレッスン */


/* ここから講師たち */

.section_title-teachers {
    position: relative;
    margin-bottom: 100px;
}

.section_title-teachers .section_title-center {
    position: relative;
    z-index: 5;
}

.section_title-teachers .title_img {
    position: absolute;
    content: "";
    top: -40%;
    left: 25%;
    width: 473px;
    height: 210px;
    z-index: 3;
}

.title_img {
    max-width: 95%;
    height: auto;
}

@media (max-width: 768px) {
    .section_title-teachers .title_img {
        top: -30%;
        left: 20%;
        width: 60%;
        height: 210px;
    }
}

.teachers {
    position: relative;
    background-image: url(/img/flame-deco/cork.jpg);
    background-repeat: repeat;
    background-size: contain;
    background-position: center;
    padding: 100px 0;
}

.teachers_block {
    display: flex;
}

.name {
    font-size: 20px;
    font-weight: bold;
    margin-left: 10px;
}

.name span {
    font-size: 14px;
}

.teachers_img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    /* はみ出し画像のトリミング用（重要） */
    border-radius: 50%;
    flex-shrink: 0
}

.teachers_block {
    background-color: rgba(255, 255, 255, .8);
    border-radius: 45px;
    padding: 5%;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
}

.teachers_comment {
    padding: 10px;
}

@media (max-width: 570px) {
    .teachers_block {
        display: flex;
        flex-direction: column;
    }

    .teachers_info {
        text-align: center;
        align-items: center;
    }

    .name {
        margin-top: 10px;
        margin-left: 0;
    }

    .teachers_img {
        width: 150px;
        height: 150px;
        margin-left: auto;
        margin-right: auto;
    }
}

.andmore {
    text-align: center;
    margin-top: 50px;
}



/* ここまで講師たち */