html {
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-style: normal;
    line-height: 1.5;
}

main {
    max-width: 640px;
    margin: 0 auto;
    box-shadow: 0 0 10px #0000005e;
    margin-bottom: 14vw;
}
@media screen and (min-width:375px) {
    main {
        margin-bottom: 93px;
    }
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* テキスト */
:root {
    --color-key: #1c2185;
    --color-accent: #e44866;
    --color-marker: #dbdbf4;
    --color-bg: #f8f8f5;
}
.paragraph {
    font-size: calc(25 / 640 * 100vw);
}
.paragraph.--card {
    font-size: calc(22 / 640 * 100vw);
}
@media screen and (min-width:641px) {
    .paragraph {
        font-size: 25px;
    }
    .paragraph.--card {
        font-size: 22px;
    }
}
.title {
    color: var(--color-key);
    text-align: center;
    font-size: calc(38 / 640 * 100vw);
}
@media screen and (min-width:641px) {
    .title {
        font-size: 38px;
    }
}
.pink {
    color: var(--color-accent);
    font-size: calc(45 / 640 * 100vw);
    font-weight: 900;
    display: block;
    margin-top: 5%;
}
@media screen and (min-width:641px) {
    .pink {
        font-size: 45px;
    }
}
.dot {
    position: relative;
}
.dot::before {
    content: '・';
    position: absolute;
    bottom: 60%;
    left: 50%;
    transform: translateX(-50%);
}
.title_l {
    color: var(--color-key);
    font-weight: 900;
    font-size: calc(45 / 640 * 100vw);
    text-align: center;
}
.title_l .pink {
    display: inline;
    font-size: calc(90 / 640 * 100vw);
}
@media screen and (min-width:641px) {
    .title_l {
        font-size: 45px;
    }
    .title_l .pink {
        font-size: 90px;
    }
}
.title_card {
    text-align: center;
    color: var(--color-key);
    text-decoration: underline;
    text-underline-offset: 3px;
    height: calc(100 / 640 * 100vw);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    line-height: 1.5;
    font-size: calc(26 / 640 * 100vw);
}
@media screen and (min-width:641px) {
    .title_card {
        font-size: 26px;
        height: 100px;
    }
}
.title_underline {
    color: var(--color-key);
    text-decoration: underline;
    text-align: center;
    font-size: calc(38 / 640 * 100vw);
}
@media screen and (min-width:641px) {
    .title_underline {
        font-size: 38px;
    }
}
.note {
    font-size: 10px;
}
@media screen and (min-width:641px) {
    .note {
        font-size: 12px;
    }
}
.marker {
    background: linear-gradient(transparent 50%, var(--color-marker) 50%);
}
.blue {
    color: var(--color-key);
}
.fwb {
    font-weight: 900;
}
.title_attention {
    font-size: 10px;
}
@media screen and (min-width:641px) {
    .title_attention {
        font-size: 10px;
    }
}

/* BG */
.bg-gray {
    background-color: var(--color-bg);
}

/* Padding */
.pt10 {
    padding-top: 10%;
}
.pb5 {
    padding-bottom: 5%;
}
.pb10 {
    padding-bottom: 10%;
}
.plr10 {
    padding-left: 10%;
    padding-right: 10%;
}

/* Margin */
.mt5 {
    margin-top: 5%;
}
.mt10 {
    margin-top: 10%;
}
.mb5 {
    margin-bottom: 5%;
}
.mb10 {
    margin-bottom: 10%;
}

/* カード */
.cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3%;
    padding: 3% 3% 20%;
    background-color: var(--color-bg);
}

.cards li {
    position: relative;
    padding: 4%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index:2;
}
.cards li::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 2%;
    left: 2%;
    z-index: -2;
    background-color: var(--color-key);
    opacity: 0.6;
}
.cards li::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #fff;
    border: 1px solid var(--color-key);
}
.cards picture {
    margin-top: auto;
}

/* エクスパレル */
.exparel {
    background-color: #fff;
    padding: 5% 3%;
    margin: 0 5% 5%;
}
.exparel__inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3%;
    margin-top: 10%;
}

/* アコーディオン */
.accordion__body {
    height: 0;
    overflow: hidden;
    transition: 0.3s ease;
}

/* Sticky */
.sticky {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 640px;
    display: grid;
    grid-template-columns: 1fr;
    z-index: 1000;
}

.sticky__tel_num {
    position: absolute;
    top: 7.5vw;
    left: 15vw;
    font-size: 3.6vw;
    color: #1b1f84;
    font-weight: bold;
}
@media screen and (min-width:641px) {
    .sticky__tel_num {
        top: 48px;
        left: 96px;
        font-size: 23px;
}
}

/* FV */
.fv {
    position: relative;
}

.fv__tel {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1vw;
    top: 3.2vw;
    right: 3vw;
    font-size: 3.2vw;
    line-height: 1.2;
    font-weight: bold;
    color: #1b1f84;
    text-decoration: none;
}

@media screen and (min-width:641px) {
    .fv__tel {
        gap: 6px;
        top: 20px;
        right: 19px;
        font-size: 20px;
    }
}

.fv__tel img {
    width: 6vw;
}

@media screen and (min-width:641px) {
    .fv__tel img {
        width: 40px;
    }
}

/* CTA */
.cta {
    position: relative;
}

.cta__link {
    position: absolute;
    top: 14%;
    left: 50%;
    transform: translateX(-50%);
    width: 93%;
}

/* こんなクリニックには注意 */
.danger {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.danger__button {
    padding: 5px 10px;
    border: 1px solid #1e2087;
    border-radius: 50px;
    transition: 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e2087;
    font-weight: bold;
    min-width: 200px;
    background-color: #fff;
    margin: 20px auto;
    font-size: 20px;
}

.danger__button::before {
    content: '続きを読む';
}

.open .danger__button::before {
    content: '閉じる';
}


/* デメリット */
.demerits {
    position: relative;
    padding: 20px;
    width: 85%;
    margin: 0 auto;
    border: 1px solid #1e2087;
    background-color: #fff;
    margin-bottom: 10px;
}

.demerits::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    background-color: #7779b7;
    z-index: -1;
}

.demerits__title {
    text-align: center;
    color: #1e2087;
    font-size: 20px;
    text-decoration: underline;
    font-weight: bold;
    padding-bottom: 20px;
}

.demerits li {
    border-bottom: 1px solid #1e2087;
}

.demerits li:last-of-type {
    border: initial;
}

.demerits__sub-title {
    position: relative;
    color: #1e2087;
    font-weight: bold;
    padding: 15px 0;
}

.demerits__sub-title::before {
    content: '＋';
    font-size: 20px;
    font-weight: 100;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.open .demerits__sub-title::before {
    content: 'ー';
}

.demerits__body div {
    padding-bottom: 20px;
}

/* 価格表 */
.danger.--menu {
    background-color: #f8f9f5;
}

/* スライド */
.swiper {
    background-color: #f8f8f5;
    padding: 0 20px 50px !important;
}

.swiper-slide {
    padding: 20px;
    background-color: #fff;
    border: 1px solid #1e2087;
    position: relative;
}

.swiper-slide__label {
    position: absolute;
    background-color: #1e2087;
    border-radius: 20px;
    top: 30px;
    left: -40px;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    padding: 10px 10px 10px 40px;
}
.swiper-slide__label span {
    font-size: 40px;
}


.swiper-slide__title {
    display: block;
    text-decoration: underline;
    color: #1e2087;
    font-size: 20px;
    font-weight: bold;
    padding: 30px 0 50px;
    padding-left: 30%;
}

.swiper-slide__txt sup {
    margin-top: 20px;
    display: block;
}

.swiper-slide__img {
    margin-top: 20px;
}

/* QA */
.qa {
    margin-bottom: 20px;
}
.qa li {
    border-bottom: 1px solid #1e2087;
}
.qa__title {
    position: relative;
    text-align: center;
    color: #1e2087;
    font-size: 20px;
    font-weight: bold;
    padding: 30px 0;
}

.qa__title::before {
    content: '＋';
    font-size: 25px;
    font-weight: 100;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.open .qa__title::before {
    content: 'ー';
}

.qa__body {
    width: 80%;
    margin: 0 auto;
}

.open .qa__body {
    border-top: 1px solid #1e2087c6;
}

.qa__body__inner {
    padding: 20px 0;
}

/* 店舗一覧 */
.map {
    background-color: #f8f8f6;
}

.map li {
    border-bottom: 1px solid #1e2087;
}

.map__title {
    position: relative;
    text-align: center;
    text-decoration: underline;
    color: #1e2087;
    font-size: 30px;
    font-weight: bold;
    padding: 30px 0;
}

.map__title::before {
    content: '＋';
    font-size: 25px;
    font-weight: 100;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.open .map__title::before {
    content: 'ー';
}

.modal__btn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0px 20px 40px;
}

.modal__btn__item {
    padding: 20px 10px;
    color: #1e2087;
    font-weight: bold;
    font-size: 18px;
    background-color: #fff;
    border: 1px solid #1e2087;
    box-shadow: 10px 10px 0 #7677b1;
    cursor: pointer;
    position: relative;
}

.modal__btn__item::before {
    content: '→';
    position: absolute;
    top: 50%;
    right: 10px;
    color: #1e2087;
    transform: translateY(-50%);
}

.map__content {
    border-top: 1px solid #1e2087;
}

.map__content li {
    background-color: #fff;
}

.map__content__info {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    padding: 20px;
}

.map__content__info dt {
    background-color: #e9e9e9;
    color: #1e2087;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    padding: 10px 0;
}

.map__content__info dd {
    display: flex;
    align-items: center;
    justify-content: start;
}

.map__content__google iframe {
    width: 100%;
    height: 300px;
}

.map__content__access {
    padding: 20px;
}

.map__content__access-title {
    font-weight: bold;
}

/* モーダル */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.269);
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
    z-index: 100;
    padding-bottom: 10%;
}

.modal.is-open {
    visibility: visible;
    opacity: 1;
}

.modal__content {
    width: 90%;
    max-width: 600px;
    background-color: #fff;
    box-shadow: 10px 10px 0 #7677b1;
    position: relative;
}

.modal__content__close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #1e2087;
    font-weight: bold;
    font-size: 25px;
    width: 30px;
    height: 30px;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid;
    cursor: pointer;
}

.modal__content__inner {
    overflow-y: scroll;
    max-height: 70vh;
}

.modal__content__title {
    color: #fff;
    width: fit-content;
    padding: 10px 35px 10px 20px;
    background-color: #1e2087;
    clip-path: polygon(100% 0, calc(100% - 15px) 100%, 0 100%, 0 0);
}


/* タイトル */
.title--map {
    background-color: #f8f8f6;
    padding: 2% 0;
}
@media screen and (max-width:640px) {
    .title--map {
        font-size: 6.875vw;
    }
}