.recommend {
    max-width: 720px;
    width: 100%;
    margin: 90px auto 0;
}
@media screen and (max-width: 767px) {
    .recommend {
        margin: 60px auto 0;
        padding: 0 15px 0;
    }
}
.recommend__ttl {
    margin: 0 auto 28px;
    font-size: 20px;
    text-align: center;
    position: relative;
}
.recommend__ttl::after {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 1px;
    content: "";
    background: #92c2d0;
}
.recommend__list {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
@media screen and (max-width: 767px) {
    .recommend__list {
        display: flex;
        flex-direction: column;
        gap: 20px 0;
    }
}
.recommend__list li {
    width: 30.55555556%;
}
@media screen and (max-width: 767px) {
    .recommend__list li {
        width: 100%;
    }
}
.recommend__item {
    width: 100%;
}
@media screen and (max-width: 767px) {
    .recommend__item {
        display: flex;
        gap: 0 10px;
        max-width: 345px;
        margin: 0 auto;
    }
}
.recommend__img {
    display: block;
    width: 100%;
    height: 146px;
    background: #f5f5f4;
    margin: 0 auto 20px;
    object-fit: cover;
    object-position: center;
}
@media screen and (max-width: 767px) {
    .recommend__img {
        height: 100px;
        margin: 0 auto;
    }
}
.recommend__content .ttl {
    font-size: 17px;
    line-height: 1.4;
    letter-spacing: 0;
    font-weight: 500;
}
@media screen and (max-width: 767px) {
    .recommend__content .ttl {
        font-size: 15px;
    }
}
.recommend__item time {
    display: block;
    font-size: 13px;
    letter-spacing: 0;
    line-height: 1;
    margin: 8px 0 12px;
    font-family: var(--yuGothic);
}
@media screen and (max-width: 767px) {
    .recommend__item time {
        font-size: 11px;
        margin: 6px 0 12px;
    }
}
.recommend__txt {
    display: block;
    width: fit-content;
    font-size: 13px;
    letter-spacing: 0.05em;
    line-height: 1;
    color: #92c2d0;
    font-weight: 700;
    border-bottom: solid 1px #92c2d0;
}
@media screen and (max-width: 767px) {
    .recommend__txt {
        font-size: 11px;
    }
}
.writing {
    background: #f5f5f4;
    max-width: 720px;
    width: 100%;
    margin: 80px auto 0;
    padding: 32px 24px;
}
@media screen and (max-width: 767px) {
    .writing {
    margin: 40px auto 0;
        padding: 20px 15px;
    }
}
.writing__top {
    display: flex;
    align-items: center;
    gap: 0 20px;
    margin: 0 auto 20px;
}
.writing__img__doctor {
    width: 14.88095238%;
}
@media screen and (max-width: 767px) {
    .writing__img__doctor {
        width: 30%;
    }
}
.writing__doctor .job {
    display: block;
    color: #92c2d0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    margin: 0 0 10px;
}
.writing__doctor .post {
    display: block;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    margin: 0 0 10px;
}
@media screen and (max-width: 767px) {
    .writing__doctor__name span,
    .writing__doctor__name small {
        font-size: 14px;
        margin: 0 0 6px;
    }
}
.writing__doctor .name {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
}
@media screen and (max-width: 767px) {
    .writing__doctor .name {
        font-size: 22px;
    }
}
.writing__box {
    background: #fff;
    padding: 20px 24px;
    position: relative;
}
@media screen and (max-width: 767px) {
    .writing__box {
        padding: 15px;
    }
}
.writing__history {
    margin: 0 auto 14px;
}
.writing__box::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    content: "";
    background: #92c2d0;
}

.writing__box__ttl {
    font-size: 16px;
    color: #92c2d0;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    margin: 0 0 10px;
}
.writing__history__item {
    display: flex;
    gap: 0 28px;
    margin: 0 0 4px;
}
@media screen and (max-width: 767px) {
    .writing__history__item {
        gap: 0 15px;
    }
}
.writing__history__item:last-of-type {
    margin: 0;
}
.writing__history__time {
    display: block;
    width: 48px;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1.5;
    font-family: var(--yuGothic);
}
@media screen and (max-width: 767px) {
    .writing__history__time {
        font-size: 13px;
    }
}
.writing__history__txt {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.5;
    display: block;
    width: calc(100% - 76px);
}
@media screen and (max-width: 767px) {
    .writing__history__txt {
        font-size: 13px;
    }
}
.writing__license__list {
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1.5;
}
@media screen and (max-width: 767px) {
    .writing__license__list {
        font-size: 13px;
        letter-spacing: 0;
        line-height: 1.5;
    }
}

.accordion__content {
    max-height: 0; /* JSで初期化するので0でOK */
    overflow: hidden;
    position: relative;
    transition: max-height 0.35s ease;
}

/* 折りたたみ時の下端フェード */
.js-accordion:not(.is-open) .accordion__content::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 40px;
    pointer-events: none;
}

/* トグルボタン */
.accordion__toggle {
    display: block;
    width: 100%;
    margin-top: 14px;
    text-align: center;
    border: none;
    background: transparent;
    color: #92c2d0;
    font-weight: 700;
    cursor: pointer;
}

/* ラベルの出し分け（開閉時） */
.label_more,
.label_less {
    font-size: 14px;
}
.accordion__toggle .label_less {
    display: none;
}
.js-accordion.is-open .accordion__toggle .label_more {
    display: none;
}
.js-accordion.is-open .accordion__toggle .label_less {
    display: inline;
}

/* ボックスの白背景にフェードを馴染ませる */
.writing__box {
    position: relative;
    background: #fff;
}
