/* =========================
FV
========================= */

.fv {
    background: #f8f6f3;
}

.fv-pc {
    display: block;
    width: 100%;
}

.fv-sp {
    display: none;
}


/* =========================
SP
========================= */

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

    .fv-pc {
        display: none;
    }

    .fv-sp {
        display: block;
        width: 100%;
    }

}

/* =========================
trouble
========================= */

.trouble {
    padding: 100px 0;
    background: #fff;
}

.trouble-inner {
    width: min(1480px, 90%);
    margin: 0 auto;
}

.trouble-title {
    position: relative;
    margin-bottom: 60px;

    color: #6d5142;
    font-size: 3rem;
    font-weight: 500;
    text-align: center;
}

.trouble-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -18px;
    transform: translateX(-50%);

    width: 80px;
    height: 1px;

    background: #6d5142;
}

.trouble-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trouble-item {
    padding: 25px;
    background: #fff;
    border: 1px solid #ddd;
}

.trouble-img {
    margin-bottom: 25px;
}

.trouble-img img {
    width: 100%;
    display: block;
}

.trouble-item h3 {
    margin-bottom: 10px;

    color: #6d5142;
    font-size: 2rem;
    font-weight: 700;
}

.trouble-item p {
    color: #666;
    font-size: 1.4rem;
    line-height: 1.8;
}

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

    .trouble {
        padding: 40px 0;
    }

    .trouble-inner {
        width: 90%;
    }

    .trouble-title {
        margin-bottom: 45px;
        font-size: 2.4rem;
    }

    .trouble-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .trouble-item {
        padding: 15px;
    }

    .trouble-img {
        margin-bottom: 15px;
    }

    .trouble-item h3 {
        font-size: 1.6rem;
    }

    .trouble-item p {
        font-size: 1.2rem;
        line-height: 1.6;
    }

}

/* =========================
concept
========================= */

.concept {
    padding: 120px 0;
    background: #f7f7f7;
}

.concept-inner {
    width: min(1200px, 90%);
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.concept-image-pc {
    width: 38%;
}

.concept-image-pc img {
    width: 100%;
    display: block;
}

.concept-image-sp {
    display: none;
}

.concept-content {
    width: 57%;
}

.concept-sub {
    display: block;
    margin-bottom: 15px;

    color: #8b6d56;
    font-size: 1.4rem;
    letter-spacing: .1em;
}

.concept-title {
    position: relative;

    margin-bottom: 60px;

    color: #6d5142;
    font-size: 3.8rem;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: .05em;
}

.concept-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -22px;

    width: 60px;
    height: 1px;

    background: #8b6d56;
}

.concept-text {
    margin-bottom: 45px;
}

.concept-text p {
    margin-bottom: 18px;

    color: #666;
    font-size: 1.7rem;
    line-height: 2.1;
}

.concept-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.concept-point {
    padding: 25px 15px;

    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;

    text-align: center;
}

.concept-icon {
    margin-bottom: 18px;

    color: #a8825a;
    font-size: 4rem;
}

.concept-point h3 {
    color: #6d5142;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.9;
}


/* =========================
SP
========================= */

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

    .concept {
        padding: 70px 0;
    }

    .concept-inner {
        width: 90%;
        display: block;
    }

    .concept-image-pc {
        display: none;
    }

    .concept-image-sp {
        display: block;
        margin: 0 0 25px;
    }

    .concept-image-sp img {
        width: 100%;
        display: block;
    }

    .concept-content {
        width: 100%;
    }

    .concept-sub {
        margin-bottom: 10px;
        font-size: 1.3rem;
    }

    .concept-title {
        margin-bottom: 30px;
        font-size: 2.8rem;
        line-height: 1.7;
    }

    .concept-title::after {
        bottom: -15px;
    }

    .concept-text {
        margin-bottom: 25px;
    }

    .concept-text p {
        margin-bottom: 15px;
        font-size: 1.5rem;
        line-height: 1.9;
    }

    .concept-points {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .concept-point {
        padding: 15px 5px;
    }

    .concept-icon {
        margin-bottom: 10px;
        font-size: 2.8rem;
    }

    .concept-point h3 {
        font-size: 1.1rem;
        line-height: 1.7;
    }

}

/* =========================
menu
========================= */

.menu {
    padding: 120px 0;
    background: #fff;
}

.menu-inner {
    width: min(1480px, 90%);
    margin: 0 auto;
}

.menu-title {
    margin-bottom: 50px;

    color: #8b6d56;
    font-size: 2.4rem;
    font-weight: 500;
    text-align: center;
}

.menu-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.menu-item {
    background: #fff;
    border: 1px solid #ddd;

    display: flex;
    flex-direction: column;
}

.menu-image img {
    width: 100%;
    display: block;
}

.menu-content {
    padding: 15px;

    display: flex;
    flex-direction: column;
    flex: 1;
}

.menu-content h3 {
    margin-bottom: 10px;

    color: #6d5142;
    font-size: 1.6rem;
    font-weight: 700;
}

.menu-content p {
    margin-bottom: 20px;

    color: #666;
    font-size: 1.3rem;
    line-height: 1.8;

    flex: 1;
}

.menu-btn {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 120px;
    height: 34px;

    margin: 0 auto;

    border: 1px solid #bca28a;

    color: #6d5142;
    font-size: 1.2rem;

    transition: .3s;
}

.menu-btn:hover {
    background: #6d5142;
    color: #fff;
}


/* =========================
SP
========================= */

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

    .menu {
        padding: 70px 0;
    }

    .menu-inner {
        width: 90%;
    }

    .menu-title {
        margin-bottom: 35px;
        font-size: 2rem;
    }

    .menu-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .menu-content {
        padding: 15px;
    }

    .menu-content h3 {
        font-size: 1.7rem;
    }

    .menu-content p {
        font-size: 1.4rem;
        line-height: 1.8;
    }

}

/* =========================
reason
========================= */

.reason {
    padding: 120px 0;
    background: #f1ece6;
}

.reason-inner {
    width: min(1080px, 90%);
    margin: 0 auto;
}

.reason-title {
    margin-bottom: 50px;

    color: #6d5142;
    font-size: 2.8rem;
    font-weight: 500;
    text-align: center;
}

.reason-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.reason-item {
    padding: 25px;

    background: #fff;
    border: 1px solid #ddd;
}

.reason-head {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 15px;
}

.reason-icon {
    color: #a8825a;
    font-size: 2.8rem;
}

.reason-num {
    color: #c9b8a7;
    font-size: 2rem;
    font-weight: 700;
}

.reason-item h3 {
    margin-bottom: 10px;

    color: #6d5142;
    font-size: 1.8rem;
}

.reason-item p {
    color: #666;
    font-size: 1.4rem;
    line-height: 1.8;
}


/* =========================
SP
========================= */

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

    .reason {
        padding: 70px 0;
    }

    .reason-inner {
        width: 90%;
    }

    .reason-title {
        margin-bottom: 35px;
        font-size: 2.2rem;
    }

    .reason-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .reason-item {
        padding: 20px;
    }

    .reason-icon {
        font-size: 2.4rem;
    }

    .reason-num {
        font-size: 1.8rem;
    }

    .reason-item h3 {
        font-size: 1.6rem;
    }

    .reason-item p {
        font-size: 1.3rem;
    }

}

/* =========================
flow
========================= */

.flow {
    padding: 120px 0;
    background: #fff;
}

.flow-inner {
    width: min(1480px, 90%);
    margin: 0 auto;
}

.flow-title {
    margin-bottom: 15px;

    color: #6d5142;
    font-size: 2.8rem;
    font-weight: 500;
    text-align: center;
}

.flow-lead {
    margin-bottom: 50px;

    color: #777;
    font-size: 1.4rem;
    text-align: center;
}

.flow-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.flow-item {
    background: #fff;
}

.flow-image {
    margin-bottom: 15px;
}

.flow-image img {
    width: 100%;
    display: block;
}

.flow-content {
    padding: 0 5px;
}

.flow-num {
    margin-bottom: 8px;

    color: #c9b8a7;
    font-size: 1.4rem;
    font-weight: 700;
}

.flow-content h3 {
    margin-bottom: 10px;

    color: #6d5142;
    font-size: 1.6rem;
    font-weight: 700;
}

.flow-content p {
    color: #666;
    font-size: 1.3rem;
    line-height: 1.8;
}


/* =========================
SP
========================= */

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

    .flow {
        padding: 70px 0;
    }

    .flow-inner {
        width: 90%;
    }

    .flow-title {
        font-size: 2.2rem;
    }

    .flow-lead {
        margin-bottom: 30px;
        font-size: 1.3rem;
    }

    .flow-list {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .flow-image {
        margin-bottom: 12px;
    }

    .flow-content h3 {
        font-size: 1.7rem;
    }

    .flow-content p {
        font-size: 1.4rem;
    }

}

/* =========================
voice
========================= */

.voice {
    padding: 120px 0;
    background: #60acc8;
}

.voice-inner {
    width: min(1480px, 90%);
    margin: 0 auto;
}

.voice-title {
    margin-bottom: 15px;

    color: #fff;
    font-size: 2.8rem;
    font-weight: 500;
    text-align: center;
}

.voice-lead {
    margin-bottom: 50px;

    color: rgba(255, 255, 255, .8);
    font-size: 1.4rem;
    text-align: center;
}


/* slider */

.voice-slider {
    margin: 0 -12px;
}

.voice-slider .slick-slide {
    padding: 0 12px;
}


/* card */

.voice-item {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
}

.voice-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.voice-content {
    padding: 20px;
}

.voice-content h3 {
    margin-bottom: 15px;

    color: #6d5142;
    font-size: 1.8rem;
    line-height: 1.7;
}

.voice-content p {
    margin-bottom: 15px;

    color: #666;
    font-size: 1.4rem;
    line-height: 1.9;
}

.voice-content span {
    color: #999;
    font-size: 1.3rem;
}


/* dots */

.voice-slider .slick-dots {
    bottom: -45px;
}

.voice-slider .slick-dots li button:before {
    color: #fff;
}

.voice-slider .slick-dots li.slick-active button:before {
    color: #fff;
}


/* =========================
SP
========================= */

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

    .voice {
        padding: 70px 0;
    }

    .voice-title {
        font-size: 2.2rem;
    }

    .voice-lead {
        margin-bottom: 30px;
    }

    .voice-slider {
        margin: 0;
    }

    .voice-slider .slick-slide {
        padding: 0;
    }

    .voice-image img {
        height: auto;
    }

    .voice-content {
        padding: 15px;
    }

    .voice-content h3 {
        font-size: 1.7rem;
    }

    .voice-content p {
        font-size: 1.4rem;
    }

}

/* =========================
facility
========================= */

.facility {
    padding: 120px 0;
    background: #fff;
}

.facility-inner {
    width: min(1200px, 90%);
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.facility-left {
    width: 46%;
}

.facility-right {
    width: 50%;
}

.facility-sub {
    display: block;
    margin-bottom: 10px;

    color: #8b6d56;
    font-size: 1.4rem;
}

.facility-title {
    margin-bottom: 25px;

    color: #6d5142;
    font-size: 3.6rem;
    font-weight: 500;
    line-height: 1.7;
}

.facility-text {
    margin-bottom: 30px;

    color: #666;
    font-size: 1.6rem;
    line-height: 2;
}

.facility-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.facility-gallery img {
    width: 100%;
    display: block;
}

.facility-main-image {
    margin-bottom: 0;
}

.facility-main-image img {
    width: 100%;
    display: block;
}

.facility-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
}

.facility-point {
    padding: 20px 10px;

    text-align: center;

    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.facility-icon {
    margin-bottom: 10px;

    color: #a8825a;
    font-size: 2.4rem;
}

.facility-point p {
    color: #666;
    font-size: 1.3rem;
    line-height: 1.8;
}

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

    .facility {
        padding: 70px 0;
    }

    .facility-inner {
        width: 90%;
        display: block;
    }

    .facility-left,
    .facility-right {
        width: 100%;
    }

    .facility-left {
        margin-bottom: 40px;
    }

    .facility-title {
        font-size: 2.8rem;
    }

    .facility-text {
        font-size: 1.5rem;
    }

    .facility-gallery {
        gap: 8px;
    }

    .facility-points {
        grid-template-columns: repeat(3, 1fr);
    }

    .facility-point {
        padding: 15px 5px;
    }

    .facility-icon {
        font-size: 2rem;
    }

    .facility-point p {
        font-size: 1.1rem;
    }

}

/* =========================
faq
========================= */

.faq {
    padding: 120px 0;
    background: #f3efe9;
}

.faq-inner {
    width: min(1080px, 90%);
    margin: 0 auto;
}

.faq-head {
    margin-bottom: 50px;
    text-align: center;
}

.faq-title {
    margin-bottom: 15px;

    color: #6d5142;
    font-size: 3.0rem;
    font-weight: 500;
}

.faq-lead {
    color: #777;
    font-size: 1.5rem;
}

.faq-item {
    border-top: 1px solid #ddd;
}

.faq-item:last-child {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;

    padding: 22px 0;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: none;
    border: none;

    color: #555;
    font-size: 1.6rem;

    cursor: pointer;
}

.faq-icon {
    color: #8b6d56;
    font-size: 2rem;
}

.faq-answer {
    display: none;

    padding: 0 0 25px;

    color: #666;
    font-size: 1.5rem;
    line-height: 1.9;
}

.access {
    padding: 100px 20px;
    background: #fff;
}

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

.access-content {
    display: flex;
    gap: 60px;
    margin-top: 60px;
}

.access-info {
    width: 40%;
}

.access-map {
    width: 60%;
    min-height: 520px;
}

.access-map iframe {
    width: 100%;
    height: 100%;
}

.access-photo img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.access-text {
    margin-top: 25px;
}

.clinic-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.access-text p {
    line-height: 2;
}

.access-table {
    width: 100%;
    margin-top: 30px;
    border-collapse: collapse;
    font-size: 14px;
}

.access-table th,
.access-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.access-table th {
    background: #f8f8f8;
}

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

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

    .access-info,
    .access-map {
        width: 100%;
    }

    .access-map {
        width: 100%;
        min-height: auto;
    }

    .access-map iframe {
        height: 480px;
    }

}

/**********************
フッター
***********************/

.clinic-footer {
    background:
        linear-gradient(rgba(52, 66, 37, .7),
            rgba(52, 66, 37, .7)),
        url(../image/footer-bg-pc.png) center center / cover;
    color: #fff;
}

.footer-cta {
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 20px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.footer-subtitle {
    font-size: 13px;
    letter-spacing: .2em;
    margin-bottom: 10px;
    opacity: .8;
}

.footer-cta-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.footer-cta-text p {
    line-height: 2;
}

/**********************
電話ボックス
***********************/

.footer-tel {
    background: #fff;
    color: #4a3428;
    padding: 35px;
    border-radius: 16px;
    min-width: 340px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
}

/* WEB予約ボタン */

.footer-web-btn {
    display: block;
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;

    background: #8b6b57;
    color: #fff;

    text-decoration: none;
    text-align: center;
    font-size: 14px;
    font-weight: 700;

    border-radius: 8px;
    transition: .3s;
}

.footer-web-btn:hover {
    opacity: .85;
    color: #fff;
}

.footer-tel-label {
    font-size: 13px;
    margin-bottom: 15px;
}

.footer-tel-number {
    display: block;
    font-size: 34px;
    font-weight: 700;
    color: #4a3428;
    text-decoration: none;
    line-height: 1.2;
}

.footer-tel-number:hover {
    color: #4a3428;
}

.footer-tel-time {
    margin-top: 12px;
    font-size: 13px;
    color: #666;
}

/**********************
院情報
***********************/

.footer-info {
    text-align: center;
    padding: 50px 20px 30px;
}

.footer-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-info p {
    line-height: 2;
}

/**********************
コピーライト
***********************/

.footer-copy {
    text-align: center;
    padding: 20px;
    font-size: 12px;
    background: rgba(0, 0, 0, .15);
}

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

@media screen and (max-width:767px) {
    .clinic-footer {
        background:
            linear-gradient(rgba(52, 66, 37, .7),
                rgba(52, 66, 37, .7)),
            url(../image/footer-bg-sp.png) center center / cover;
    }

    .footer-cta {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 80px 20px 50px;
    }

    .footer-cta-text h2 {
        font-size: 30px;
    }

    .footer-tel {
        width: 100%;
        min-width: auto;
        padding: 25px;
    }

    .footer-tel-number {
        font-size: 28px;
    }

}