@charset "utf-8";

/*
Theme Name: BlankSlate Child
Template: blankslate
*/

:root {
    /* --main-pink: #EC7494; */
    --main-beige: #d2b894;
    --main-blue: #D9F8FF;
    /* --light-pink: #FFFAFA; */
    --light-beige: #fff7eb;
    --star-color: #dddddd;
    --star-background: #fc0;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: "M PLUS Rounded 1c", sans-serif;
    color: #454545;
	background-color: #ffffff;
}

.SiteWrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    overflow-x: hidden;
}

section {
    position: relative;
    scroll-padding-top: 5rem;
}

.section_inner {
    position: relative;
    z-index: 1;
    max-width: 120rem;
    margin-inline: auto;
    padding-inline: 1.5rem;
    padding-block: 6rem;
}

.center_title {
    position: relative;
    text-align: center;
}

.common_h2 {
    position: relative;
    text-align: center;
}

.common_h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -1.8rem;
    transform: translateX(-50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--main-beige);
    box-shadow: -24px 0 0 var(--main-beige),
        24px 0 0 var(--main-beige);
}

.common_h2_blue::after {
    background: var(--main-blue);
    box-shadow: -24px 0 0 var(--main-blue),
        24px 0 0 var(--main-blue);
}

.common_h2_white::after {
    background: #ffffff;
    box-shadow: -24px 0 0 #ffffff,
        24px 0 0 #ffffff;
}

.common_h2>* {
    display: block;
}

.en_h2 {
    font-size: 1.6rem;
    color: var(--main-beige);
    font-weight: 300;
}

.en_h2_blue {
    color: var(--main-blue);
}

.en_h2_white {
    color: #ffffff;
}

.ja_h2 {
    font-size: clamp(3rem, 2.6vw, 3.2rem);
    font-weight: 500;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

@media screen and (max-width:768px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .section_inner {
        padding-block: 3.5rem;
    }

    .commonh2 img:not(.trouble .commonh2 img, .risk .commonh2 img) {
        width: 70%;
    }
}

/* header */
.hbgr {
    display: none;
}

.header {
    position: relative;
}

.header_inner {
    position: relative;
    padding-inline: 1.5rem;
}

.header_container {
    position: fixed;
    display: flex;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 2rem 5rem;
    border-radius: 5rem;
    width: 100%;
    max-width: 115rem;
    margin-inline: auto;
    box-shadow: 0 3px 7px #dddddd;
    z-index: 10;
}

.header_nav_list {
    display: flex;
}

.header_nav_item {
    margin-left: 2rem;
    transition: all .3s;
}

.header_nav_item a {
    position: relative;
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #707070;
    transition: 0.3s;
}

.header_nav_item a::before {
    position: absolute;
    content: '';
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background-color: var(--main-beige);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.header_nav_item a:hover {
    color: #454545;
}

.header_nav_item a:hover::before {
    visibility: visible;
    bottom: -0.8rem;
    opacity: 1;
}

@media screen and (max-width:768px) {
    .header_inner {
        position: relative;
        max-width: 100%;
        margin-inline: unset;
        padding-inline: 0;
    }

    .header_container {
        top: 0;
        padding: 1rem 1.5rem;
        border-radius: 0;
        max-width: 100%;
    }

    .headerNav {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        background-color: var(--light-beige);
        width: 100vw;
        height: 100vh;
        display: flex;
        justify-content: center;
        flex-direction: column;
        place-items: center;
        transform: translateX(100%);
        transition: all 0.3s;
        overflow-x: hidden;
        opacity: 0;
    }

    .headerNav.open {
        transform: translateX(0%);
        overflow-x: visible;
        opacity: 1;
    }

    .header_nav_list {
        flex-direction: column;
        align-items: center;
    }

    .header_nav_item {
        margin-left: 0;
    }

    .header_nav_item:not(:first-child) {
        margin-top: 2rem;
    }

    .header_nav_item a {
        color: #5c5c5c;
        font-size: 2rem;
    }

    .hbgr {
        position: relative;
        display: block;
        width: 5rem;
        height: 5rem;
        background-color: transparent;
        border: none;
    }

    .hbgr span {
        position: absolute;
        content: '';
        top: 50%;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 0.2rem;
        background-color: var(--main-beige);
        opacity: 1;
        transition: all 0.3s;
    }

    .hbgr span:nth-child(1) {
        top: 1rem;
    }

    .hbgr span:nth-child(3) {
        transform: translate(-50%, 1.5rem);
    }

    .hbgr.open span {
        top: 50%;
        left: 0;
        background-color: var(--main-beige);
    }

    .hbgr.open span:nth-child(1) {
        transform: rotate(45deg);
    }

    .hbgr.open span:nth-child(2) {
        display: none;
    }

    .hbgr.open span:nth-child(3) {
        transform: rotate(-45deg);
    }
}

/* fv */

.fv {
    position: relative;
    background-image: url(../images/wisdom/fv/pattern.svg);
    height: 100vh;
}

.fv::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* background-color: #ffffff66; */
    background: #EC7494;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.25) 0%, #d2b894 100%);
    z-index: 0;
}

.fv_img {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
}

.fv_img img {
    object-fit: cover;
    width: 100%;
    height: 90vh;
    border-radius: 0 0 0 18rem;
    border: 3px solid var(--main-beige);
}

.fv_inner {
    position: relative;
    z-index: 1;
    padding-top: 18rem;
    max-width: 100%;
}

.fv_container {
    position: relative;
    /* display: flex;
    justify-content: space-between; */
}

.fv_text {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 70%;
    padding-right: 1.5rem;
}

.fv_fukidashi {
    position: relative;
    border: 1px solid #ffffff;
    text-align: center;
    border-radius: 10rem;
    background-color: #ffffff;
    padding-block: 5rem;
    padding-inline: 4rem;
    width: 780px;
    max-width: 100%;
    /* box-shadow: 3px 3px 6px #0000002b; */
    filter: drop-shadow(5px 5px 3px rgba(0, 0, 0, .3));
}

.fv_fukidashi::after {
    position: absolute;
    content: '';
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 30px 30px 0 30px;
    border-color: #FFFFFF transparent transparent transparent;
    transform: rotate(0deg);
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    filter: drop-shadow(0px 3px 0px #0000002b);
    z-index: 0;
}

.fv_h2 span {
    /* display: inline-block; */
    display: block;
    color: var(--main-beige);
    font-size: clamp(2.9rem, 4.2vw, 5.9rem);
    font-weight: 800;
    line-height: 1.3;
    /* background: linear-gradient(transparent 45%, #ffd0d0 45%); */
}

.fv_h3 {
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.fv_h3 span {
    display: inline-block;
    font-size: clamp(1.8rem, 2.6vw, 2.2rem);
    font-weight: 500;
    color: #ffffff;
    background-color: var(--main-beige);
    padding-inline: 1rem;
}

.fv_text p {
    font-size: clamp(1.5rem, 2.6vw, 1.8rem);
    font-weight: 500;
    line-height: 1.5;
}

.fv_link {
    margin-top: 7rem;
}

.fv_link a {
    display: block;
    padding: 2rem 0;
    /* background-color: #ffb0c5; */
    background-color: #5ec9ea;
    text-align: center;
    border-radius: 2rem;
    box-shadow: 0px 4px 1px #ffffff;
    width: 40rem;
    max-width: 100%;
}

.fv_link a span {
    position: relative;
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
}

.fv_link a span::before {
    position: absolute;
    content: '';
}

.fvTextSvg {
    position: absolute;
    right: 14rem;
    bottom: 24rem;
    transform: rotate(-15deg);
    z-index: 1;
}

.fvTextSvg_sp {
    display: none;
}

.fv_e_01 {
    position: absolute;
    top: 50%;
    right: 8rem;
    transform: translateY(-50%);
    z-index: 1;
}

.fv_e_02 {
    position: absolute;
    bottom: 8rem;
    left: 15rem;
}

@media screen and (max-width:1230px) {
    .fvTextSvg {
        right: 1rem;
    }
}

@media screen and (max-width:1024px) {
    .fvTextSvg {
        width: 36%;
    }
}

@media screen and (max-width:768px) {
    .fv {
        height: 90vh;
    }

    .fv_img {
        width: 90%;
    }

    .fv_img img {
        height: 85vh;
    }

    .fv_inner {
        padding-top: 33rem;
    }

    .fv_container {
        text-align: center;
        text-align: -webkit-center;
    }

    .fv_text {
        position: unset;
        padding-right: 0;
        place-self: center;
    }

    .fv_fukidashi {
        border-radius: 3rem;
        padding-block: 2rem;
        padding-inline: 3rem;
    }

    .fv_h3 {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .fv_link {
        margin-top: 4rem;
    }

    .fvTextSvg {
        display: none;
    }

    .fvTextSvg_sp {
        display: block;
        position: absolute;
        left: 2rem;
        top: 13rem;
        z-index: 1;
        transform: rotate(-15deg);
    }

    .fv_e_01,
    .fv_e_02 {
        display: none;
    }
}

@media screen and (max-width:620px) {
    .fv_h2 span {
        font-size: clamp(2.9rem, 7.9vw, 4.9rem);
        line-height: 1.3;
    }

    .fv_text {
        width: 100%;
    }

    .fv_link a {
        width: 32rem;
    }
}

@media screen and (max-width:520px) {
    .fvTextSvg_sp {
        width: 45%;
    }
}

@media screen and (max-width:450px) {
    .fvTextSvg_sp {
        top: 12rem;
    }
}

/* feature */

.feature {
    background-color: var(--light-beige);
}

.feature_container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 3rem;
    margin-top: 8rem;
}

.feature_h3 {
    font-size: clamp(2rem, 2.6vw, 3.5rem);
    border-left: var(--main-beige) 16px solid;
    padding-left: 1.5rem;
    padding-block: 1rem;
}

.feature_h4 {
    font-size: clamp(1.7rem, 2.6vw, 2.8rem);
    border-top: var(--main-beige) 3px solid;
    border-bottom: var(--main-beige) 3px solid;
    padding-block: 1rem;
    margin-top: 5rem;
    font-weight: 500;
}

.suggest_list {
    margin-top: 3rem;
}

.suggest_item {
    position: relative;
    font-size: clamp(1.5rem, 2.6vw, 1.8rem);
    font-weight: 400;
    line-height: 2;
    padding-left: 3rem;
}

.suggest_item::before {
    position: absolute;
    content: url(../images/wisdom/feature/check.svg);
    top: 50%;
    left: 0;
    transform: translateY(-39%);
}

.feature_box {
    margin-top: 8rem;
}

.feature_item {
    display: flex;
    justify-content: space-between;
    gap: 0 3rem;
    margin-top: 5rem;
    border: 3px solid var(--main-beige);
    border-radius: 3rem;
    padding: 4rem 1.5rem;
    background-color: #ffffff;
}

.feature_item:first-child {
    margin-top: 0;
}

.feature_img {
    position: relative;
    display: inline-block;
}

.feautre_num {
    position: absolute;
    left: 2rem;
    top: 2rem;
    display: inline-block;
    filter: drop-shadow(2px 4px 6px #ffffff);
}

.feature_list_img {
    max-width: 370px;
}

.feature_list_h3 {
    font-size: clamp(2rem, 2.6vw, 2.6rem);
}

.feature_list_text p {
    font-size: clamp(1.6rem, 2.6vw, 1.8rem);
    margin-top: 3rem;
    line-height: 1.8;
}

.feature_e_01 {
    position: absolute;
    z-index: 0;
    left: 0;
    bottom: 0;
}

.feature_e_02 {
    position: absolute;
    z-index: 0;
    right: 0;
    top: 6rem;
}

.circle_top {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
}

.circle_bottom {
    position: absolute;
    z-index: 0;
    right: 0;
    bottom: 0;
}

@media screen and (max-width:768px) {
    .feature_container {
        flex-direction: column;
    }

    .feature_text {
        margin-top: 5rem;
        width: 100%;
    }

    .feature_item {
        flex-direction: column;
        align-items: center;
    }

    .feautre_num {
        left: 2rem;
        bottom: 2rem;
        top: unset;
    }

    .feature_list_img {
        max-width: 100%;
    }

    .feature_list_h3 {
        margin-top: 3rem;
    }

    .feature_list_text p {
        margin-top: 1rem;
    }

    .feature_e_01 {
        width: 30%;
    }

    .feature_e_02 {
        width: 30%;
    }

    .circle_top {
        width: 40%;
    }

    .circle_bottom {
        width: 40%;
    }
}

/* cta */
.cta {
    position: relative;
    background-image: url(../images/wisdom/cta/bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.cta::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    filter: opacity(0.5);
}

.cta_inner {
    position: relative;
    z-index: 1;
}

.cta_h2 {
    position: relative;
    text-align: center;
    text-align: -webkit-center;
    /* bottom: -3rem; */
}

.cta_h2 span {
    display: inline;
    color: #454545;
    font-size: clamp(2.5rem, 2.6vw, 3rem);
    background-image: linear-gradient(to bottom,
            transparent 60%,
            #d2b894 60%);
    background-repeat: no-repeat;
    animation: marker 1s ease-in-out forwards;
    -webkit-text-stroke: 6px #ffffff;
}

.cta_h2 span::before {
    -webkit-text-stroke: 0;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 100%;
}

.cta_h2 span:nth-child(1):before {
    content: '親知らずのお悩みは私たちに';
}

.cta_h2 span:nth-child(2):before {
    content: 'お任せを！';
}

@keyframes marker {
    from {
        background-size: 0%;
    }

    to {
        background-size: 100%;
    }
}

.cta_container {
    background-color: #ffffffbd;
    padding: 5rem 7rem;
    border-radius: 3rem;
    display: flex;
    margin-top: 2rem;
}

.cta_container>* {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta_text {
    position: relative;
    width: 35%;
    flex-direction: column;
    align-items: self-start;
}

.cta_text::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 3px;
    background-color: var(--main-beige);
    right: 0;
}

.cta_btn {
    width: 65%;
    flex-direction: row;
}

.cta_h3 {
    font-size: clamp(1.8rem, 2.6vw, 2rem);
}

.cta_text a {
    font-size: clamp(2.5rem, 2.6vw, 4rem);
    color: #047b96;
    font-weight: 700;
}

.cta_text p {
    font-size: clamp(1.5rem, 2.6vw, 1.8rem);
}

.cta_btn a {
    background-color: var(--main-beige);
    font-size: 4rem;
    padding: 2.6rem 13rem;
    color: #ffffff;
    border-radius: 5rem;
    font-weight: 700;
    box-shadow: 0px 3px 6px #00000045;
}

@media screen and (max-width:1024px) {
    .cta_container {
        padding: 5rem 4rem;
    }

    .cta_text {
        width: 45%;
    }

    .cta_btn {
        width: 55%;
    }

    .cta_h3 {
        font-size: 1.8rem;
    }

    .cta_text a {
        font-size: 4rem;
    }

    .cta_btn a {
        font-size: 3rem;
        padding: 2.6rem 6rem;
    }

    .cta_text p {
        font-size: 1.5rem;
    }
}

@media screen and (max-width:768px) {
    .cta_container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 3rem 1.5rem;
    }

    .cta_text {
        width: 100%;
        align-items: center;
        border-bottom: 3px solid var(--main-beige);
        padding-bottom: 2rem;
    }

    .cta_text::before {
        display: none;
    }

    .cta_btn {
        width: 100%;
        margin-top: 3rem;
    }

    .cta_btn a {
        width: 90%;
        font-size: clamp(2rem, 3.9vw, 3rem);
    }
}

/* faq */
.faq_list {
    margin-top: 8rem;
}

.faq_item {
    border-radius: 2rem;
    overflow: hidden;
    margin-top: 3rem;
}

.faq_item:first-child {
    margin-top: 0;
}

.faq_q {
    position: relative;
    background-color: var(--main-blue);
    padding: 3rem;
}

.faq_q p {
    position: relative;
    font-size: clamp(1.8rem, 2.6vw, 2rem);
    padding-left: 4rem;
    font-weight: 500;
}

.faq_q p::before {
    position: absolute;
    content: 'Q';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(3.6rem, 2.6vw, 4.8rem);
    color: #4BB6D0;
    font-weight: 700;
}

.faq_a {
    position: relative;
    background-color: var(--light-beige);
    padding: 3rem;
}

.faq_a p {
    position: relative;
    font-size: clamp(1.5rem, 2.6vw, 1.6rem);
    line-height: 1.8;
    padding-left: 4rem;
}

.faq_a p::before {
    position: absolute;
    content: 'A';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(3.6rem, 2.6vw, 4.8rem);
    color: var(--main-beige);
    font-weight: 700;
}

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

    .faq_q,
    .faq_a {
        padding: 2rem 1.5rem;
    }
}

/* flow */

.flow_container {
    margin-top: 10rem;
}

.flow_item {
    display: flex;
    margin-top: 5rem;
    gap: 0 3rem;
}

.flow_item:first-child {
    margin-top: 0;
}

.flow_text {
    display: flex;
    flex-direction: column;
    flex: 2;
}

.flow_img {
    display: flex;
    flex: 1;
}

.flow_img img {
    object-fit: contain;
}

.flow_h3 {
    position: relative;
    display: flex;
    align-items: center;
}

.flow_h3 span {
    font-size: clamp(2rem, 2.6vw, 12.4rem);
    font-weight: 700;
    padding-left: 1rem;
}

.flow_num {
    width: 9rem;
}

.flow_text p {
    margin-top: 3rem;
    font-size: clamp(1.6rem, 2.6vw, 1.8rem);
    line-height: 1.8;
}

@media screen and (max-width:768px) {
    .flow_container {
        margin-top: 5rem;
    }

    .flow_item {
        flex-direction: column-reverse;
        align-items: center;
    }

    .flow_item>* {
        flex: unset;
    }

    .flow_text {
        margin-top: 1rem;
    }

    .flow_text p {
        margin-top: 1rem;
    }

    .flow_num {
        width: 6rem;
    }
}

/* greet */
.greet {
    background-color: var(--main-blue);
}

.greet_intro {
    margin-top: 5rem;
    text-align: center;
    text-align: -webkit-center;
}

.greet_intro span {
    position: relative;
    font-size: clamp(1.7rem, 2.6vw, 2.7rem);
    -webkit-text-stroke: 6px #ffffff;
    display: block;
    line-height: 1.8;
}

.greet_intro span::before {
    -webkit-text-stroke: 0;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 100%;
}

.greet_intro span:nth-child(1):before {
    content: '当院は、祖師ケ谷大蔵の住宅地で35年以上、';
}

.greet_intro span:nth-child(2):before {
    content: '地域のみなさまの歯の治療に取り組んできた';
}

.greet_intro span:nth-child(3):before {
    content: '“町の歯医者さん”です。';
}

@keyframes marker {
    from {
        background-size: 0%;
    }

    to {
        background-size: 100%;
    }
}

.greet_container {
    display: flex;
    margin-top: 5rem;
    gap: 0 3rem;
    align-items: center;
}

.greet_img {
    display: flex;
    flex: 2;
    flex-direction: column;
}

.greet_text {
    display: flex;
    flex: 3;
    flex-direction: column;
    background-color: #ffffff;
    padding: 5rem 3rem;
    border-radius: 5rem;
}

.greet_text p {
    font-size: clamp(1.5rem, 2.6vw, 1.6rem);
    line-height: 1.8;
    margin-top: 2rem;
}

.greet_text p:first-child {
    margin-top: 0;
}

@media screen and (max-width:768px) {
    .greet_container {
        flex-direction: column;
        margin-top: 3rem;
    }

    .greet_text {
        margin-top: 3rem;
        padding: 2rem 1.5rem;
        border-radius: 2rem;
    }
}

/* access */
.access_hour {
    margin-top: 8rem;
}

.access_time {
    display: flex;
    margin-top: 5rem;
    gap: 3rem;
}

.hour_table {
    width: 100%;
    border-collapse: collapse;
    border: 3px solid var(--main-beige);
}

.hour_table thead {
    font-weight: 500;
    background-color: var(--main-beige);
    color: #ffffff;
}

.hour_table thead th {
    border-right: 1px solid #ffffff;
}

.hour_table thead td {
    border-left: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
}

.hour_table th,
.hour_table td {
    font-size: clamp(1.6rem, 2.6vw, 1.8rem);
    padding: 1.8rem 2rem;
    text-align: center;
    text-align: -webkit-center;
    border: 1px solid var(--main-beige);
}

.access_time>* {
    display: flex;
    flex: 1;
}

.access_table {
    display: block;
    width: 100%;
    border-collapse: collapse;
}

.access_table tbody {
    width: 100%;
    display: inline-table;
}

.access_table tr {
    border-bottom: 1px solid var(--main-beige);
}

.access_table tr:last-child {
    border-bottom: none;
}

.access_table th,
.access_table td {
    font-size: clamp(1.6rem, 2.6vw, 1.8rem);
    padding: 1.8rem 3rem;
}

.access_table th {
    text-align: right;
    width: 30%;
}

.hour_kome small {
    font-size: 1.4rem;
}

@media screen and (max-width:1045px) {
    .access_time {
        flex-direction: column;
    }

    .access_map iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 2;
    }

    .access_table th,
    .access_table td {
        padding: 1.8rem 1.5rem;
    }
}

@media screen and (max-width:768px) {
    .access_hour {
        margin-top: 5rem;
    }

    .hour_table th,
    .hour_table td {
        padding: 1rem 0.4rem;
    }

    .access_time {
        margin-top: 3rem;
    }
}

/* footer */

.footer {
    background-color: var(--main-beige);
    padding-top: 5rem;
}

.footer-inner {
    width: 1040px;
    max-width: 90vw;
    margin-left: auto;
    margin-right: auto;
}

.footer-block {
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 40px 0;
}

.footer-block:nth-of-type(1) {
    margin-top: 0;
}

.footer-list {
    display: flex;
    flex-wrap: wrap;
    gap: 48px 0;
    max-width: 100%;
}

.footer-list ul {
    width: 400px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
    padding: 0;
}

.footer-list ul li h3 {
    font-size: 24px;
    letter-spacing: 0.06em;
    line-height: 32px;
    font-weight: 700;
    color: #fff;
    position: relative;
}

.footer-list ul li h3::before {
    content: '';
    width: 2px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    left: -8px;
    top: 0;
    bottom: 0;
}

.footer-list ul li a {
    font-size: 16px;
    letter-spacing: 0.06em;
    line-height: 24px;
    font-weight: 500;
    color: #fff;
    opacity: 1;
    transition: all 0.3s;
}

.footer-list ul li a:hover {
    opacity: 0.7;
}

.footer-list ul li p {
    font-size: 16px;
    letter-spacing: 0.06em;
    line-height: 24px;
    font-weight: 500;
    color: #fff;
}

.footer-link {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.footer-link a {
    color: #fff;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 17px;
    font-weight: 400;
    opacity: 1;
    transition: all 0.3s;
}

.footer-link a:hover {
    color: #fff;
    opacity: 0.7;
}

.footer-copy {
    margin-top: 48px;
    text-align: center;
}

.footer-copy small {
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0;
    line-height: 15px;
    font-weight: 400;
}

/* footer menu */
.footer_menu {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    gap: 1px;
    background-color: transparent;
    z-index: 10;
}

.footer_menu>* {
    display: flex;
    width: 50%;
    background-color: var(--main-beige);
    justify-content: center;
    align-items: center;
    padding-block: 1.5rem;
}

.footer_menu p {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.8rem;
}

.footer_menu a>* {
    margin-inline: 0.8rem;
}

@media screen and (min-width:769px) {
    .footer_menu {
        display: none;
    }
}

/* footer menu pc */

.footer_menu_pc {
    position: fixed;
    right: 0;
    bottom: 10rem;
    gap: 1px;
    background-color: transparent;
    z-index: 10;
}

.footer_menu_pc>* {
    background-color: var(--main-beige);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-block: 1rem;
    opacity: 1;
    transition: all 0.3s;
}

.footer_menu_pc a>* {
    color: #ffffff;
}

.footer_menu_pc a:hover {
    background-color: #e291a7;
}

.footer_menu_pc a p {
    margin-top: 0.5rem;
    font-size: 1.6rem;
}

@media screen and (max-width:768px) {
    .footer {
        padding-bottom: 11rem;
    }

    .footer_menu_pc {
        display: none;
    }
}

/* 医院紹介 */
.page_header {
    background-color: var(--main-beige);
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 13rem;
}

.title_h1 span {
    display: block;
    position: relative;
    font-size: clamp(3rem, 2.6vw, 4.5rem);
    color: #ffffff;
}

.title_h1 span::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -1.8rem;
    transform: translateX(-50%);
    width: 19px;
    height: 9px;
    border-radius: 0%;
    background: #ffffff;
    box-shadow: -44px 0 0 #ffffff, 44px 0 0 #ffffff;
}

.aboutConcept_container {
    margin-top: 8rem;
    display: flex;
    gap: 3rem;
}

.aboutConcept_img {
    display: flex;
    flex: 2;
}

.aboutConcept_img img {
    object-fit: contain;
}

.aboutConcept_text {
    display: flex;
    flex-direction: column;
    flex: 3;
}

.aboutConcept_h3 {
    border-left: 5px solid var(--main-beige);
    padding-left: 1rem;
}

.aboutConcept_h3 span {
    display: block;
    font-size: clamp(1.6rem, 2.3vw, 3.2rem);
}

.aboutConcept_para {
    margin-top: 5rem;
}

.aboutConcept_para p {
    font-size: clamp(1.6rem, 2.6vw, 1.8rem);
    line-height: 1.8;
}

.profile {
    margin-top: 8rem;
}

.profile_container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.profile_text {
    display: flex;
    flex-direction: column;
    flex: 3;
}

.profile_img {
    display: flex;
    flex: 2;
}

.profile_h3 {
    font-size: clamp(2rem, 2.6vw, 2.5rem);
    border-left: 5px solid var(--main-beige);
    padding-left: 1rem;
}

.profile_table {
    margin-top: 3rem;
    border-collapse: collapse;
    border: 3px solid var(--main-beige);
}

.profile_table th,
.profile_table td {
    font-size: clamp(1.6rem, 2.6vw, 1.8rem);
    padding: 1.5rem 2rem;
}

.profile_table th {
    font-weight: 700;
    background-color: var(--main-beige);
    color: #ffffff;
}

.profile_table th:first-child {
    border-bottom: 1px solid #ffffff;
}

.profile_table td {
    line-height: 1.8;
}

.profile_table tr:first-child {
    border-bottom: 1px solid var(--main-beige);
}

@media screen and (max-width:768px) {
    .page_header {
        height: 25vh;
        padding-top: 6rem;
    }

    .aboutConcept_container {
        margin-top: 5rem;
        flex-direction: column;
    }

    .aboutConcept_para {
        margin-top: 3rem;
    }

    .profile {
        margin-top: 5rem;
    }

    .profile_container {
        flex-direction: column-reverse;
    }

    .profile_table th {
        width: 31%;
    }
}

/* 予約ボタンSP */
.yoyaku_sp {
    display: none;
}

@media screen and (max-width:768px) {
    .yoyaku_sp {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        text-align: center;
        z-index: 10;
        background-color: var(--light-beige);
        padding: 0.8rem 1.5rem;
        transform: translateY(100%);
        opacity: 0;
        transition: transform .4s ease, opacity .4s ease;
    }

    .yoyaku_sp.is-show {
        transform: translateY(0);
        opacity: 1;
    }

    .yoyaku_sp_btn {
        display: block;
        padding: 2rem 0;
        /* background-color: #ffb0c5; */
        background-color: #5ec9ea;
        text-align: center;
        border-radius: 2rem;
        box-shadow: 0px 4px 1px #0000006c;
        width: 40rem;
        max-width: 100%;
        width: 100%;
        color: #ffffff;
        font-size: 2rem;
        font-weight: 700;
        letter-spacing: 1px;
    }
}