/* ===============================
  全体
   =============================== */

body {
    color: #000000;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 100%;
    overflow-x: hidden;
}

summary {
    display: block;
    list-style: none;
    cursor: pointer;
}

/* 一部ブラウザで消えなかった場合は以下も追記 */
summary::-webkit-details-marker {
    display: none;
}

summary img {
    display: inline-block;
}

.wrap {
    max-width: 1366px;
    margin: 0 auto;
    position: relative;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #fff;
    width: 100%;
}

.c-title {
    display: block;
    text-align: center;
}

.c-title span {
    display: block;
}

.c-title--ja {
    display: block;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 34px;
    font-weight: bold;
    letter-spacing: 3.4px;
    line-height: 49px;
    margin-bottom: 8px;
}

@media screen and (max-width: 767px) {
    .c-title--ja {
        font-size: 24px;
        margin-bottom: 0;
    }
}

.c-title--en {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 40px;
    line-height: 1.42;
}

.br-sp {
    display: none;
}

@media screen and (max-width: 767px) {
    .br-sp {
        display: block;
    }
}

/* ===============================
  ヘッダー
   =============================== */

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: clamp(12px, 2vw, 32px);
    flex-wrap: nowrap;
    padding-left: 4.62%;
    padding-right: 60px;
}

@media screen and (max-width: 1200px) {
    .header__inner {
        padding-right: 0;
        gap: 0;
        height: 60px;
    }
}

.header__inner--wrap h1 {
    font-size: 12px;
    padding-top: 8px;
}
@media screen and (max-width: 1200px) {
    .header__inner--wrap h1 {
        font-size: 9px;
        padding-top: 0;
    }
}
@media screen and (max-width: 1200px) {
    .header__logo-img {
        max-width: 184px;
        height: auto;
        margin-top: 3px;
    }
}

.header__nav {
    margin-left: auto;
    margin-right: 24px;
    min-width: 0;
}

@media screen and (max-width: 1200px) {
    .header__nav {
        display: none;
    }
}

.header__nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: clamp(8px, 1.6vw, 24px);
    white-space: nowrap;
}

.header__nav-item {
    margin-left: 32px;
}

.header__nav-list a {
    text-decoration: none;
    font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
    font-weight: bold;
    font-size: 15px;
    line-height: 21px;
    white-space: nowrap;
    word-break: keep-all;
    transition: color 0.3s ease;
}

.header__nav-list a:hover {
    color: #606060;
}

.header__contact {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.8vw, 24px);
}

@media screen and (max-width: 1200px) {
    .header__contact {
        height: 100%;
        margin-left: auto;
    }
    .clinic-tel {
        height: 100%;
    }
}

.clinic-tel img {
    display: block;
    height: clamp(36px, 4.2vw, 47px);
    width: auto;
}

@media screen and (max-width: 1200px) {
    .clinic-tel img {
        height: 100%;
    }
}

/* アクセスボタン */
.clinic-access {
    display: inline-block;
    background-color: #222222;
    color: #ffffff;
    font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
    font-weight: bold;
    height: 47px;
    aspect-ratio: 115 / 47;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    text-align: center;
    line-height: 47px;
    white-space: nowrap;
    word-break: keep-all;
    transition: opacity 0.5s;
}

@media screen and (max-width: 1200px) {
    .clinic-access {
        display: none;
    }
}

.clinic-access:hover {
    opacity: 0.6;
}

/* ハンバーガーメニュー */
.hamburger-wrapper {
    display: none;
}
@media screen and (max-width: 1200px) {
    .hamburger-wrapper {
        display: grid;
        background-color: #000;
        place-content: center;
        height: 100%;
        aspect-ratio: 1;
        cursor: pointer;
        position: relative;
    }
}
.hamburger-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}
.hamburger-btn .hamburger-icon:last-child {
    opacity: 0;
    transition: opacity 0.2s ease-out;
}
.hamburger-btn .hamburger-icon:first-child {
    opacity: 1;
    transition: opacity 0.2s ease-out;
}
.hamburger-btn.active .hamburger-icon:first-child {
    opacity: 0;
}
.hamburger-btn.active .hamburger-icon:last-child {
    opacity: 1;
}

.sp-menu {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #fff;
    z-index: 4;
    left: 0;
    top: 60px;
    overflow-y: auto;
}
.sp-menu.active {
    display: block;
}

.sp-menu__child {
    text-align: center;
    font-size: 17px;
    font-weight: bold;
    margin-top: 80px;
}

.sp-menu__child li {
    margin-bottom: 40px;
}

.tel-btn {
    text-align: center;
    margin-bottom: 40px;
}

.sp-menu__medicalhours {
    text-align: center;
    margin-bottom: 37px;
}

.sp-menu__medicalhours-img {
    max-width: 100%;
    height: auto;
}

.close-btn {
    width: 100%;
    height: 60px;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

/* ===============================
  ヒーロー（FV）
   ===================================================== */

.fv {
    position: relative;
    margin-bottom: 172px;
    margin-top: 60px;
}
@media screen and (max-width: 767px) {
    .fv {
        margin-top: 60px;
        margin-bottom: 40px;
    }
}

.fv__back-image-wrapper {
    position: relative;
}

.fv__back-image-wrapper img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.fv__text {
    position: absolute;
    font-size: clamp(1.588rem, 1.21rem + 2.39vw, 3rem);
    line-height: 1.46;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 10, 1);
    bottom: 6.93%;
    left: 7.32%;
}

@media screen and (max-width: 767px) {
    .fv__text {
        left: 1.8%;
    }
}

/* 診療時間の表 */

.clinic-hours-fv-wrapper {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 0;
    right: 0;
    transition: transform 1s ease;
    overflow: hidden;
    pointer-events: none;
}

.clinic-hours-fv-inner {
    transition: transform 0.6s ease;
}
.clinic-hours-fv {
    transition: transform 0.6s ease;
}
.throttle-scroll-down .clinic-hours-fv {
    transform: translateX(-50px);
}

.clinic-hours-fv {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.clinic-hours__label {
    display: block;
    width: 50px;
    height: 178px;
    object-fit: cover;
    pointer-events: all;
    transition: opacity 0.5s;
    cursor: default;
}
.throttle-scroll-down .clinic-hours__label:hover {
    cursor: pointer;
    opacity: 0.6;
}
@media screen and (max-width: 520px) {
    .clinic-hours__label-sp {
        width: 100%;
        height: auto;
    }
}

.clinic-hours__table {
    display: block;
    width: 401px;
    height: 178px;
    object-fit: cover;
}

@media screen and (max-width: 520px) {
    .clinic-hours__table-sp {
        width: 100%;
    }
    #toggle-clinic-hours-borad-sp {
        width: 100%;
    }
}

@media screen and (max-width: 520px) {
    .clinic-hours-modal {
        display: grid;
        position: fixed;
        bottom: calc(100vw * 48 / 101 * -1);
        left: 0;
        width: 100%;
        transition: bottom 0.6s ease;
    }
    .clinic-hours-modal.active {
        bottom: 0;
    }
}

/* ===============================
   感染対策
   ===================================================== */

/* ラッパー */
.infection-control-wrapper {
    max-width: 1000px;
    width: 73%;
    margin: 0 auto;
    margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
    .infection-control-wrapper {
        width: calc(100% - 40px);
    }
}

.infection-control {
    background-color: #fff;
    border: 1px solid #d30000;
    border-radius: 16px;
    position: relative;
}

@media screen and (max-width: 767px) {
    .infection-control[open] {
        padding-bottom: 40px;
    }
}

.infection-control__btn {
    position: absolute;
    content: "";
    right: 40px;
    top: 40px;
    transform: rotate(-90deg) translateY(-50%);
    transform-origin: top;
    width: 24px;
    height: 20px;
    transition: rotate 0.25s ease;
    background: url(../assets/images/infection-arrow.svg) no-repeat center /
        contain;
}

@media screen and (max-width: 767px) {
    .infection-control__btn {
        top: auto;
        right: 50%;
        bottom: 48px;
        transform: rotate(-90deg) translateX(-50%);
        transform-origin: right;
        transition: none;
    }
}

.infection-control[open] .infection-control__btn {
    rotate: 180deg;
}

@media screen and (max-width: 767px) {
    .infection-control[open] .infection-control__btn {
        bottom: 0;
    }
}

.infection-control_title {
    font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
    font-size: 20px;
    letter-spacing: 0.1em;
    font-weight: bold;
    color: #d30000;
    line-height: 1.6;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 767px) {
    .infection-control_title {
        font-size: 18px;
        flex-direction: column;
        gap: 8px;
    }
}

.infection-control_title::before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 32px;
    background-image: url(../assets/images/kansentaisaku-check.svg);
    margin-right: 24px;
}

@media screen and (max-width: 767px) {
    .infection-control_title::before {
        margin-right: 0;
    }
}

.infection-control-summary {
    padding-block: 24px;
    transition: 0.5s opacity;
}

@media screen and (max-width: 767px) {
    .infection-control-summary {
        padding-bottom: 64px;
    }
    .infection-control[open] .infection-control-summary {
        padding-bottom: 24px;
    }
}

.infection-control-summary:hover {
    opacity: 0.6;
}

.infection-control__list {
    padding-left: 1.5em;
    margin-left: 40px;
    margin-right: 40px;
    margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
    .infection-control__list {
        padding-left: 0;
        margin-inline: 20px;
    }
}

.infection-control__list li {
    position: relative;
    padding-left: 0.8em;
}

.infection-control__list li::before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #000;
    top: 0.7em;
    left: 0;
}

.infection-control__item {
    font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
}

.infection-control__item:last-child {
    margin-bottom: 0;
}

/* ===============================
  院長ごあいさつ
===================================================== */

@media screen and (max-width: 767px) {
    .message-wrapper {
        width: calc(100% - 40px);
        margin-inline: auto;
    }
}

.message__content {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.064em;
    text-align: center;
    margin-bottom: 64px;
}
@media screen and (max-width: 1200px) {
    .message__content {
        font-size: 20px;
    }
}

.about-clinic-direactor__inner {
    max-width: 874px;
    width: calc(100% - 40px);
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    gap: 84px;
    align-items: flex-start;
    margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
    .about-clinic-direactor__inner {
        flex-direction: column-reverse;
        gap: 24px;
        width: auto;
    }
}

/* スクリーンリーダー */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    border: 0;
}
:where(.sp-only) {
    display: none;
}
@media screen and (max-width: 520px) {
    .pc-only {
        display: none;
    }
}

/* 右カラム：経歴・趣味 */
.about-clinic-direactor__content {
    flex: 1 1 60%;
    min-width: 280px;
    font-size: 17px;
    margin-left: 24px;
}

@media screen and (max-width: 1024px) {
    .about-clinic-direactor__content {
        margin-inline: auto;
    }
}

/* ── 経歴 ───────────────────── */
.about-clinic-direactor__career {
    margin-bottom: 40px;
}
.about-clinic-direactor__career-title {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: bold;
    /* Bold */
    font-size: 22px;
    /* XD */
    line-height: 32px;
    /* XD */
    letter-spacing: 0.1em;
    /* XD */
    color: #000;
    margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
    .about-clinic-direactor__career-title {
        text-align: center;
    }
}

.about-clinic-direactor__career-content {
    display: grid;
    grid-template-columns: max-content 1fr;
    column-gap: 25px;
    row-gap: 10px;
}

.about-clinic-direactor__career-item {
    display: contents;
}

.about-clinic-direactor__career-date,
.about-clinic-direactor__career-desc {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 25px;
    letter-spacing: 1.09px;
    color: #000;
}

@media screen and (max-width: 767px) {
    .about-clinic-direactor__career-date,
    .about-clinic-direactor__career-desc {
        font-size: 15px;
    }
}

.about-clinic-direactor__career-desc ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.about-clinic-direactor__career-desc li {
    margin: 0;
    padding: 0;
}

/* ── 趣味 ───────────────────── */
.about-clinic-direactor__hobby-title {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: bold;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0.1em;
    color: #000;
    margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
    .about-clinic-direactor__hobby-title {
        text-align: center;
    }
}

.about-clinic-direactor__hobby-text {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 25px;
    letter-spacing: 1.09px;
    color: #000;
    text-align: left;
}
@media screen and (max-width: 767px) {
    .about-clinic-direactor__hobby-text {
        text-align: center;
    }
}

/* 左カラム：写真 */
.about-clinic-direactor__image {
    flex: 0 0 35%;
    max-width: 360px;
    margin: 0 auto;
    display: grid;
    justify-items: center;
    gap: 24px;
}

/* 氏名*/
.about-clinic-direactor__profile {
    text-align: center;
}

.about-clinic-direactor__title {
    display: inline-block;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: bold;
    font-size: 15px;
    line-height: 21px;
    letter-spacing: 1.5px;
    margin-left: 16px;
}

.about-clinic-direactor__name {
    display: inline-block;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: bold;
    font-size: 19px;
    line-height: 27px;
    letter-spacing: 1.9px;
    margin-left: 16px;
}

/* ===============================
  診療のご案内
   ===================================================== */

/* ===== リスト全体 ===== */

.medical-service-wrapper {
    background-image: url(../assets/images/bg-services.png);
    background-repeat: repeat;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
}

.medical-service {
    max-width: 1000px;
    margin-inline: auto;
    padding: 100px 0;
    width: calc(100% - 40px);
}
@media screen and (max-width: 767px) {
    .medical-service {
        padding: 80px 0;
    }
}

.medical-service__departments-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media screen and (max-width: 767px) {
    .medical-service__departments-list {
        grid-template-columns: auto;
        gap: 8px;
    }
}

/* ===== カード共通 ===== */
.medical-service__departments-item {
    display: grid;
    align-items: center;
}

/* 診療サービス */
.medical-service__list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #d3d3d0;
    border-radius: 16px;
    width: 100%;
    margin: 40px auto;
    padding: 24px 64px;
}

@media screen and (max-width: 767px) {
    .medical-service__list {
        flex-wrap: wrap;
        gap: 40px 16px;
        padding: 40px 24px;
        max-width: 500px;
    }
}

.medical-service__list-img {
    max-width: 100%;
}
@media screen and (max-width: 767px) {
    .medical-service__list-img {
        width: 100%;
        height: auto;
    }
}

.medical-service__item-label {
    position: relative;
    display: inline-block;
    padding-left: 48px;
    line-height: 40px;
    font-size: 20px;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    .medical-service__item-label {
        font-size: 18px;
    }
}
.medical-service-vaccination__body {
    display: contents;
}

@media screen and (max-width: 767px) {
    .vaccination .medical-service__item-label {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        line-height: 1.2;
        width: 40px;
        padding-left: 0;
    }
    .medical-service-vaccination__body {
        display: block;
    }
    .medical-service-vaccination__body .medical-service__bullets {
        margin-top: 0;
    }
}

.medical-service__item-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
    background: no-repeat center / contain;
}

@media screen and (max-width: 767px) {
    .medical-service__item.vaccination {
        width: 100%;
        display: flex;
        gap: 16px;
        align-items: center;
    }
    .vaccination .medical-service__item-label::before {
        position: static;
        transform: none;
    }
}

.medical-checkup {
    width: 22%;
}

@media screen and (max-width: 767px) {
    .medical-checkup {
        width: auto;
    }
}

/* アイコン切り替え */

.medical-service__item.vaccination .medical-service__item-label::before {
    background-image: url("../assets/images/syringe.svg");
}

.medical-service__item.medical-tests .medical-service__item-label::before {
    background-image: url("../assets/images/stethoscope.svg");
}

.medical-service__item.medical-checkup .medical-service__item-label::before {
    background-image: url("../assets/images/check-up.svg");
}

.medical-service__bullets {
    margin-top: 16px;
}

.medical-service__bullets li,
.medical-service__item p {
    position: relative;
    padding-left: 1.2em;
    font-size: 17px;
    line-height: 1.47;
    letter-spacing: 0.064em;
}
.medical-service__item p {
    padding-left: 0;
}

@media screen and (max-width: 767px) {
    .medical-service__bullets li,
    .medical-service__item p {
        line-height: 1.3;
        font-size: 15px;
    }
    .medical-service-vaccination__body p {
        padding-left: 0;
        white-space: nowrap;
    }
}

.medical-service__bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #54b78a;
}

/* 連携病院 */
.medical-service__other {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
@media screen and (max-width: 767px) {
    .medical-service__other {
        flex-direction: column;
        gap: 40px;
    }
}

.coop-hospital {
    background-color: #e7f6f0;
    border-radius: 16px;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 40px;
    padding-right: 40px;
}

@media screen and (max-width: 767px) {
    .coop-hospital {
        width: 100%;
        padding: 40px 24px;
    }
}

.coop-hospital-label {
    display: block;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: bold;
    font-size: 20px;
    line-height: 20px;
    text-align: left;
    margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
    .coop-hospital-label {
        font-size: 18px;
        text-align: center;
    }
}

.coop-hospital__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    align-items: stretch;
}

@media screen and (max-width: 767px) {
    .coop-hospital__list {
        grid-template-columns: 1fr;
        gap: 8px;
        justify-items: center;
    }
}

.coop-hospital__item {
    width: 100%;
}

.coop-hospital__item picture {
    display: block;
}

.coop-hospital__item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media screen and (max-width: 767px) {
    .coop-hospital__item img {
        width: 100%;
    }
    .medical-service__other-clinic-hours {
        width: 100vw;
    }
    .medical-service__other-clinic-hours img {
        width: 100%;
    }
}

.clinic-hours {
    max-width: 100%;
    object-fit: contain;
}

/* 病院の写真 */
.clinic-photos {
    display: flex;
    width: 100%;
}

.clinic-photo {
    object-fit: cover;
    flex: 1;
    width: 100%;
}

.clinic-photo img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 230px;
    object-fit: cover;
}

/* ===============================
アクセス
   ===================================================== */

.access-wrapper {
    max-width: 1000px;
    width: calc(100% - 40px);
    margin-inline: auto;
    margin-top: 64px;
    margin-bottom: 100px;
}

@media screen and (max-width: 1200px) {
    .access-wrapper {
        max-width: 470px;
    }
    .access__text {
        display: contents;
    }
}

.access__tel {
    font-size: 16px;
}

.access__tel-number {
    font-family: "Inter", sans-serif;
    font-weight: bold;
    font-size: 17px;
    letter-spacing: 0.04em;
}

.access__inner {
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 1200px) {
    .access__inner {
        flex-direction: column;
    }
}

.access__text .c-title {
    display: block;
    text-align: left;
}

.access__title {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: bold;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 2.2px;
}

.access__address p {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
}

.access__list {
    display: flex;
    background-color: #f7f7f7;
    gap: 42px;
    padding-top: 17px;
    padding-left: 24px;
    padding-bottom: 18px;
    padding-right: 24px;
    margin-top: 24px;
}

@media screen and (max-width: 1200px) {
    .access__list {
        flex-direction: column;
        gap: 24px;
        order: 2;
    }
}

.access__item ul {
    margin-top: 16px;
}

.access__item span {
    color: #54b78a;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 18px;
    font-weight: bold;
    line-height: 26px;
    letter-spacing: 0;
}
@media screen and (max-width: 767px) {
    .access__item span {
        font-size: 17px;
    }
}

.access__item li {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    letter-spacing: 0;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
@media screen and (max-width: 767px) {
    .access__item li {
        font-size: 15px;
    }
}

.access__item li::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 16px;
    scale: 0.5 1;
    background-color: #000;
    margin-right: 10px;
    vertical-align: middle;
}

.access__map-link {
    display: block;
    width: 320px;
    text-align: center;
    font-size: 16px;
    padding: 10px 6em 8px;
    font-family: "Inter", sans-serif;
    font-weight: bold;
    position: relative;
    border: 2px solid #cdcdcd;
    border-radius: 20px;
}

@media screen and (max-width: 1200px) {
    .access__map-link {
        display: block;
        margin-inline: auto;
        margin-top: 24px;
    }
}

.access__map-link-text {
    transition: 0.5s opacity, 0.5s letter-spacing;
}

.access__map-link:hover .access__map-link-text {
    letter-spacing: 0.08em;
    opacity: 0.6;
}

.access__map-link-icon {
    position: absolute;
    right: 1.5em;
    top: 50%;
    transform: translateY(-50%);
}

.googlemaps {
    max-width: 470px;
    width: 100%;
}

@media screen and (max-width: 1200px) {
    .googlemaps {
        margin-inline: auto;
        margin-top: 40px;
    }
}

.gmap_iframe {
    aspect-ratio: 470 / 430;
    max-width: 470px;
    width: 100%;
    height: auto;
}

/* ===============================
フッター
   ===================================================== */

.footer {
    background-color: #f9f9f9;
    padding-top: 72px;
    padding-bottom: 40px;
    position: relative;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .footer {
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 520px) {
    .footer {
        z-index: 0;
    }
}

.footer__logo {
    font-size: 12px;
    padding-top: 8px;
}

@media screen and (max-width: 767px) {
    .footer__logo {
        margin-bottom: 40px;
        text-align: center;
    }
}

.footer__inner {
    width: calc(100% - 40px);
    max-width: 1000px;
    margin: 0 auto;
}

.footer__content {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 767px) {
    .footer__content {
        flex-direction: column;
    }
}

.footer__nav {
    display: flex;
    flex-direction: column;
    align-items: cneter;
    gap: 15px;
}

@media screen and (max-width: 767px) {
    .footer__nav {
        gap: 24px;
        align-items: center;
    }
}

.footer__nav-list {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .footer__nav-list {
        flex-direction: column;
        gap: 24px;
    }
}

.clinic-tel {
    margin-left: auto;
}

@media screen and (max-width: 767px) {
    .clinic-tel {
        margin-right: auto;
    }
}

.footer__nav-item {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: bold;
    font-size: 15px;
    line-height: 21px;
    margin-left: 40px;
    transition: color 0.5s ease;
}

@media screen and (max-width: 767px) {
    .footer__nav-item {
        margin-left: 0;
        font-size: 17px;
    }
}

.footer__nav-item:hover {
    color: #606060;
}

.footer__copyright {
    display: block;
    text-align: center;
    padding-top: 72px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
}
