.c-inner p {
    margin-bottom: 1.5em;
}

.bold {
    font-weight: bold;
}

.flex-box {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.flex-box dt {
    margin: 1em 0 0 0;
    color: #527F32;
    font-size: 2rem;
}

.flex-box dd {
    margin: 0em 0 2em 0;
    color: #000;
}


.flex-box__item {
    flex: 1;
    padding: 0;
}
.flex-box__item iframe {
    width: 100%;
    height: 450px;
    border: none;
    margin-bottom: 2em !important;
}

.greeting h3,.photo h3 {
    color: #527F32;
    margin-bottom: 1em;
    font-size: 1.5em;
}
.greeting strong{
    color: #527F32;
    font-weight: bold;
}
.greeting table {
            border-collapse: collapse;
            width: 100%;
            margin: 20px auto;
        }
        .greeting th, .greeting td {
            background: #fff;
            padding: 20px;
            text-align: left;
            border-bottom: 1px solid #ccc;
        }
        .greeting th {
            background-color: #DFE5BE;
            font-weight: bold;
            width: 150px;
            text-align: center;
        }

    .p-top-feature__list {
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 2.3rem;
        grid-row-gap: 3rem;
        margin-bottom: 3em;
    }
    .p-top-feature__list-box {
    background-color: #F5EEE1;
}



.border-table{
    width: 100%;
}
.border-table th,
.border-table td {  
    border-bottom: 1px dashed #ccc;
    padding: 1em 10px;
    text-align: left;
    vertical-align: middle;
}
.border-table th{
     color: #527F32;
     min-width: 200px;
}

.photo .flex-box{
    margin-bottom: 4em;
}

.photo .flex-box img{
    width: 100%;
    height: auto;
}

.doctor-flex{
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    position: relative;
    z-index: 1;
    grid-template-columns: auto 20%;
    gap: 20px;
    align-items: center;
}

.doctor-flex img {
    width: 100%;
    height: auto;
    object-fit: cover; /* 必要に応じて */
    
}

@media (max-width: 768px) {
    .flex-box {
        display: block;
    }

    .flex-box__item {
        display: block;
        margin-bottom: 1em;
    }
    .p-top-feature__list {
        grid-template-columns: repeat(1, 1fr);
    }

    .doctor-flex{
        display: block;
        margin-bottom: 2em;
    }
    .doctor-flex img {
        width: 80%;
    }
}