/**** 背景変更箇所 *****/
.access-sub {
    background: #fffef8;
}

/*******************************
初めての方へ
********************************/
.fv-first {
    height: 400px;

    display: flex;
    align-items: center;

    color: #fff;

    background:
        linear-gradient(rgba(52, 66, 37, .6),
            rgba(52, 66, 37, .6)),
        url(../image/sub-fv-pc.png) center center / cover;
}

.fv-first-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.fv-first h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

@media screen and (max-width:767px) {

    .fv-first {
        height: 220px;

        background:
            linear-gradient(rgba(52, 66, 37, .6),
                rgba(52, 66, 37, .6)),
            url(../image/sub-fv-sp.png) center center / cover;
    }

    .fv-first h1 {
        font-size: 30px;
    }

}

/**** 院長からのご挨拶 ******/
.first-greeting {
    padding: 100px 20px;
    background: #fff;
}

.first-greeting-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.first-greeting-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
}

.first-greeting-image {
    width: 40%;
}

.first-greeting-image img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.first-greeting-text {
    width: 60%;
}

.first-greeting-text h3 {
    font-size: 26px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.first-greeting-text p {
    line-height: 2.2;
    margin-bottom: 20px;
}

.first-greeting-name {
    margin-top: 30px;
    font-size: 18px;
    font-weight: 700;
}

@media screen and (max-width:767px) {

    .first-greeting {
        padding: 70px 20px;
    }

    .first-greeting-content {
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
    }

    .first-greeting-image,
    .first-greeting-text {
        width: 100%;
    }

    .first-greeting-text h3 {
        font-size: 20px;
    }

}

/**********************
対応症状
***********************/

.first-symptoms {
    padding: 100px 20px;
    background: #f7f5ee;
}

.first-symptoms-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.first-symptoms-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.first-symptom-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 18px 24px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

.first-symptom-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 18px;
}

.first-symptom-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 10px;
}

.first-symptom-card h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    color: #344225;
}

/**********************
スマホ
***********************/

@media screen and (max-width:767px) {

    .first-symptoms {
        padding: 70px 20px;
    }

    .first-symptoms-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 40px;
    }

    .first-symptom-card {
        border-radius: 12px;
        padding: 22px 10px 18px;
    }

    .first-symptom-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 14px;
    }

    .first-symptom-card h3 {
        font-size: 15px;
    }

}

/**********************
施術までの流れ
***********************/

.first-flow {
    padding: 100px 20px;
    background: #fff;
}

.first-flow-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.first-flow-list {
    margin-top: 60px;
}

.first-flow-item {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid #e5e5e5;
}

.first-flow-image {
    width: 320px;
    flex-shrink: 0;
}

.first-flow-image img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.first-flow-content {
    flex: 1;
}

.first-flow-step {
    color: #344225;
    font-weight: 700;
    margin-bottom: 10px;
}

.first-flow-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.first-flow-content p {
    line-height: 2;
}

/**********************
スマホ
***********************/

@media screen and (max-width:767px) {

    .first-flow {
        padding: 70px 20px;
    }

    .first-flow-list {
        margin-top: 40px;
    }

    .first-flow-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 30px 0;
    }

    .first-flow-image {
        width: 100%;
    }

    .first-flow-content h3 {
        font-size: 22px;
    }

    .first-flow-content p {
        font-size: 14px;
        line-height: 1.8;
    }

}

/**********************
初めての方へのご案内
***********************/

.first-guide {
    padding: 100px 20px;
    background: #f7f5ee;
}

.first-guide-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.first-guide-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.first-guide-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
}

.first-guide-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #344225;
    line-height: 1.5;
}

.first-guide-card p {
    line-height: 2;
    color: #555;
}

@media screen and (max-width:767px) {

    .first-guide {
        padding: 70px 20px;
    }

    .first-guide-list {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .first-guide-card {
        padding: 25px;
    }

    .first-guide-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .first-guide-card p {
        font-size: 14px;
        line-height: 1.8;
    }

}

/**********************
ご来院をお考えの方へ
***********************/

.first-message {
    padding: 100px 20px;
    background: #ffffff;
}

.first-message-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.first-message-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
}

.first-message-text {
    width: 55%;
}

.first-message-text h3 {
    font-size: 32px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.first-message-text p {
    line-height: 2.2;
    margin-bottom: 20px;
}

.first-message-image {
    width: 45%;
}

.first-message-image img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

@media screen and (max-width:767px) {

    .first-message {
        padding: 70px 20px;
    }

    .first-message-content {
        flex-direction: column-reverse;
        gap: 30px;
        margin-top: 40px;
    }

    .first-message-text,
    .first-message-image {
        width: 100%;
    }

    .first-message-text h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .first-message-text p {
        font-size: 14px;
        line-height: 1.9;
        margin-bottom: 15px;
    }

}


/**********************
施術メニューFV
***********************/

.fv-menu {
    height: 400px;

    display: flex;
    align-items: center;

    color: #fff;

    background:
        linear-gradient(rgba(52, 66, 37, .6),
            rgba(52, 66, 37, .6)),
        url(../image/sub-fv-pc.png) center center / cover;
}

.fv-menu-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.fv-menu h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

@media screen and (max-width:767px) {

    .fv-menu {
        height: 220px;

        background:
            linear-gradient(rgba(52, 66, 37, .6),
                rgba(52, 66, 37, .6)),
            url(../image/sub-fv-sp.png) center center / cover;
    }

    .fv-menu h1 {
        font-size: 30px;
    }

}

/**********************
施術一覧
***********************/
.treatment-menu {
    padding: 100px 20px;
    background: #fff;
}

.treatment-menu-inner {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

.treatment-menu-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.treatment-menu-card {
    width: 100%;
    min-width: 0;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.treatment-menu-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.treatment-menu-card h3 {
    font-size: 28px;
    color: #344225;
    padding: 25px 25px 10px;
}

.treatment-menu-card p {
    padding: 0 25px 25px;
    line-height: 1.9;
}

@media screen and (max-width:767px) {

    .treatment-menu {
        padding: 70px 20px;
    }

    .treatment-menu-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }

    .treatment-menu-card img {
        height: 220px;
    }

    .treatment-menu-card h3 {
        font-size: 22px;
        padding: 20px 20px 10px;
    }

    .treatment-menu-card p {
        padding: 0 20px 20px;
        font-size: 14px;
        line-height: 1.8;
    }

}

/**********************
当院の施術について
***********************/

.treatment-message {
    padding: 100px 20px;
    background: #f7f5ee;
}

.treatment-message-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.treatment-message-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
}

.treatment-message-image {
    width: 45%;
}

.treatment-message-image img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.treatment-message-text {
    width: 55%;
}

.treatment-message-text h3 {
    font-size: 26px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.treatment-message-text p {
    line-height: 2.2;
    margin-bottom: 20px;
}

/**********************
スマホ
***********************/

@media screen and (max-width:767px) {

    .treatment-message {
        padding: 70px 20px;
    }

    .treatment-message-content {
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
    }

    .treatment-message-image,
    .treatment-message-text {
        width: 100%;
    }

    .treatment-message-text h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .treatment-message-text p {
        font-size: 14px;
        line-height: 1.9;
        margin-bottom: 15px;
    }

}

/*******************************
院長紹介
********************************/
.fv-profile {
    height: 400px;

    display: flex;
    align-items: center;

    color: #fff;

    background:
        linear-gradient(rgba(52, 66, 37, .6),
            rgba(52, 66, 37, .6)),
        url(../image/sub-fv-pc.png) center center / cover;
}

.fv-profile-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.fv-profile h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

@media screen and (max-width:767px) {

    .fv-profile {
        height: 220px;

        background:
            linear-gradient(rgba(52, 66, 37, .6),
                rgba(52, 66, 37, .6)),
            url(../image/sub-fv-sp.png) center center / cover;
    }

    .fv-profile h1 {
        font-size: 30px;
    }

}

/**********************
院長紹介
***********************/

.profile-main {
    padding: 100px 20px;
    background: #fff;
}

.profile-main-inner {
    max-width: 1280px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    gap: 80px;
}

.profile-main-image {
    width: 40%;
}

.profile-main-image img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.profile-main-text {
    width: 60%;
}

.profile-position {
    color: #344225;
    font-size: 16px;
    margin-bottom: 10px;
}

.profile-main-text h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.profile-license {
    display: inline-block;
    padding: 8px 18px;
    background: #344225;
    color: #fff;
    border-radius: 30px;
    margin-bottom: 30px;
    font-size: 14px;
}

.profile-main-text p {
    line-height: 2.2;
    margin-bottom: 20px;
}

@media screen and (max-width:767px) {

    .profile-main {
        padding: 70px 20px;
    }

    .profile-main-inner {
        flex-direction: column;
        gap: 30px;
    }

    .profile-main-image,
    .profile-main-text {
        width: 100%;
    }

    .profile-main-text h2 {
        font-size: 30px;
    }

    .profile-main-text p {
        font-size: 14px;
        line-height: 1.9;
        margin-bottom: 15px;
    }

}

/**********************
当院が大切にしていること
***********************/

.doctor-message {
    padding: 100px 20px;
    background: #f7f5ee;
}

.doctor-message-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.doctor-message-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
}

.doctor-message-text {
    width: 55%;
}

.doctor-message-text h3 {
    font-size: 26px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.doctor-message-text p {
    line-height: 2.2;
    margin-bottom: 20px;
}

.doctor-message-image {
    width: 45%;
}

.doctor-message-image img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

@media screen and (max-width:767px) {

    .doctor-message {
        padding: 70px 20px;
    }

    .doctor-message-content {
        flex-direction: column-reverse;
        gap: 30px;
        margin-top: 40px;
    }

    .doctor-message-text,
    .doctor-message-image {
        width: 100%;
    }

    .doctor-message-text h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .doctor-message-text p {
        font-size: 14px;
        line-height: 1.9;
        margin-bottom: 15px;
    }

}

/**********************
患者様へのお約束
***********************/

.doctor-promise {
    padding: 100px 20px;
    background: #0d8f7e;
    color: #fff;
}

.doctor-promise-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.doctor-promise .section-title {
    color: #fff;
}

.doctor-promise-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.doctor-promise-item {
    text-align: center;
}

.doctor-promise-num {
    font-size: 72px;
    font-weight: 700;
    color: rgba(255, 255, 255, .15);
    line-height: 1;
    margin-bottom: 20px;
}

.doctor-promise-item h3 {
    font-size: 30px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #fff;
}

.doctor-promise-item p {
    line-height: 2;
    color: rgba(255, 255, 255, .85);
}

/**********************
スマホ
***********************/

@media screen and (max-width:767px) {

    .doctor-promise {
        padding: 70px 20px;
    }

    .doctor-promise-list {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-top: 40px;
    }

    .doctor-promise-num {
        font-size: 56px;
        margin-bottom: 15px;
    }

    .doctor-promise-item h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .doctor-promise-item p {
        font-size: 14px;
        line-height: 1.9;
    }

}

/**********************
ご予約について
***********************/

.reserve-about {
    padding: 100px 20px;
    background: #fff;
}

.reserve-about-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.reserve-about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
}

.reserve-about-image {
    width: 45%;
}

.reserve-about-image img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.reserve-about-text {
    width: 55%;
}

.reserve-about-text h3 {
    font-size: 26px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.reserve-about-text p {
    line-height: 2.2;
    margin-bottom: 20px;
}

/**********************
スマホ
***********************/

@media screen and (max-width:767px) {

    .reserve-about {
        padding: 70px 20px;
    }

    .reserve-about-content {
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
    }

    .reserve-about-image,
    .reserve-about-text {
        width: 100%;
    }

    .reserve-about-text h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .reserve-about-text p {
        font-size: 14px;
        line-height: 1.9;
        margin-bottom: 15px;
    }

}

/**********************
ご予約の流れ
***********************/

.reserve-flow {
    padding: 100px 20px;
    background: #f7f5ee;
}

.reserve-flow-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.reserve-flow-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.reserve-flow-item {
    text-align: center;
    position: relative;
}

.reserve-flow-num {
    font-size: 60px;
    line-height: 1;
    color: #344225;
    opacity: .15;
    margin-bottom: 20px;
    font-weight: 700;
}

.reserve-flow-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.reserve-flow-item p {
    line-height: 1.8;
    text-align: left;
}

@media screen and (max-width:767px) {

    .reserve-flow {
        padding: 70px 20px;
    }

    .reserve-flow-list {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }

    .reserve-flow-num {
        font-size: 48px;
        margin-bottom: 10px;
    }

    .reserve-flow-item h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .reserve-flow-item p {
        font-size: 14px;
        line-height: 1.8;
    }

}

.reserve-method {
    padding: 100px 20px;
    background: #fff;
}

.reserve-method-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.reserve-method-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.reserve-method-item {
    background: #f7f5ee;
    padding: 45px 30px;
    border-radius: 15px;
    text-align: center;
}

.reserve-method-label {
    font-size: 13px;
    letter-spacing: .2em;
    color: #344225;
    margin-bottom: 15px;
}

.reserve-method-item h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.reserve-method-item p {
    line-height: 2;
    margin-bottom: 30px;
}

.reserve-method-tel {
    display: block;
    font-size: 34px;
    font-weight: 700;
    color: #344225;
    text-decoration: none;
    margin-bottom: 15px;
    line-height: 1.4;
}

.reserve-method-time {
    font-size: 14px;
}

.reserve-method-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    background: #344225;
    color: #fff;
    text-decoration: none;
    border-radius: 60px;
    transition: .3s;
}

.reserve-method-btn:hover {
    opacity: .85;
}

.reserve-method-btn-line {
    background: #06c755;
}

@media screen and (max-width:767px) {

    .reserve-method {
        padding: 70px 20px;
    }

    .reserve-method-list {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }

    .reserve-method-item {
        padding: 35px 25px;
    }

    .reserve-method-item h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .reserve-method-item p {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .reserve-method-tel {
        font-size: 26px;
    }

    .reserve-method-btn {
        height: 55px;
    }

}

/**********************
予約ページFAQ
***********************/

.reserve-faq {
    padding: 100px 20px;
    background: #f7f5ee;
}

.reserve-faq-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.reserve-faq-list {
    margin-top: 60px;
}

.reserve-faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
}

.reserve-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 25px 70px 25px 30px;
    position: relative;
    font-size: 20px;
    font-weight: 500;
}

.reserve-faq-item summary::-webkit-details-marker {
    display: none;
}

.reserve-faq-item summary::before {
    content: "Q";
    color: #344225;
    font-weight: 700;
    margin-right: 10px;
}

.reserve-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    color: #344225;
}

.reserve-faq-item[open] summary::after {
    content: "－";
}

.reserve-faq-item p {
    padding: 0 30px 30px 30px;
    line-height: 2;
}

.reserve-faq-item p::before {
    content: "A ";
    color: #344225;
    font-weight: 700;
}

/**********************
スマホ
***********************/

@media screen and (max-width:767px) {

    .reserve-faq {
        padding: 70px 20px;
    }

    .reserve-faq-list {
        margin-top: 40px;
    }

    .reserve-faq-item {
        margin-bottom: 15px;
    }

    .reserve-faq-item summary {
        padding: 20px 55px 20px 20px;
        font-size: 16px;
    }

    .reserve-faq-item summary::after {
        right: 20px;
        font-size: 24px;
    }

    .reserve-faq-item p {
        padding: 0 20px 20px 20px;
        font-size: 14px;
        line-height: 1.8;
    }

}