/*
Theme Name: BlankSlate Child
Template: blankslate
*/

:root {
    --main-blue-01: #003F8E;
    --main-blue-02: #0091E1;
    --sky-blue: #BEE3F8;
    --light-blue: #F4F9FF;
    --main-yellow: #FFEA00;
    --main-text: #333333;
    --white: #ffffff;
}

html {
    font-family: "Noto Serif JP", serif;
    font-size: 62.5%;
}

.SiteWrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    overflow-x: hidden;
}

a {
    display: block;
    text-decoration: none;
}

a:active,
a:visited,
a:focus {
    color: currentColor;
}

.pc {
    display: block;
}

.tablet,
.sp {
    display: none;
}

@media screen and (max-width:768px) {
    .tablet {
        display: block;
    }

    .pc {
        display: none;
    }
}

@media screen and (max-width:425px) {
    .sp {
        display: block;
    }
}

section {
    padding-block: 8rem;
}

.section_inner {
    max-width: 135.5rem;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

@media screen and (max-width:768px) {
    section {
        padding-block: 2.5rem;
    }
}

.common_h2 .common_h2_top {
    display: block;
    font-size: clamp(2.2rem, 2.6vw, 5.5rem);
    color: var(--main-blue-01);
    line-height: 1.5;
}

.common_h2 .common_h2_bottom {
    display: block;
    font-size: clamp(1.4rem, 2.6vw, 1.8rem);
    color: var(--main-blue-01);
    margin-top: 1.5rem;
}

.yellow_line {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0 0.75rem;
}

.yellow_line:after {
    position: absolute;
    content: "";
    flex: 1 1 auto;
    height: 1px;
    width: 100%;
    background-color: var(--main-yellow);
    top: 50%;
    transform: translateY(-50%);
    margin-left: 1rem;
}

.center {
    text-align: center;
}

.common_btn {
    background-color: var(--main-blue-02);
    border-radius: 5rem;
    padding-block: 2.5rem;
    min-width: 38rem;
    text-align: center;
    box-shadow: 0 3px 6px #929292;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.common_btn span {
    color: var(--white);
    font-size: clamp(1.6rem, 2.6vw, 2rem);
}

.common_btn:hover {
    border: 1px solid var(--main-blue-02);
    background-color: var(--white);
}

.common_btn:hover span {
    color: var(--main-blue-02);
}

@media screen and (max-width:768px) {
    .common_btn {
        min-width: 29rem;
        max-width: 38rem;
        width: 100%;
    }

}

/* header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: background-color 0.3s ease;
}

.header.scrolled {
    background-color: #ffffffd5;
}

.pageHheader {
    background-color: #ffffffd5;
}

.header_inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 10rem;
    height: 10rem;
    z-index: 999;
}

.header_top {
    display: flex;
    justify-content: end;
}

.header_top_container {
    height: 10rem;
}

.header_tel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-inline: 5rem;
    background-color: var(--main-blue-01);
    color: var(--white);
    text-align: center;
}

.header_tel p {
    font-size: 1.5rem;
}

.header_tel p span {
    color: var(--main-yellow);
}

.header_tel a {
    margin-top: 1rem;
}

.header_tel a span {
    font-size: 3.4rem;
    margin-left: 0.5rem;
}

.header_hour {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-inline: 5rem;
    background-color: var(--sky-blue);
}

.header_hour p span {
    display: inline-block;
    color: var(--white);
    background-color: var(--main-blue-01);
    font-size: 1.5rem;
    line-height: 1;
    padding: 0.4rem 1rem;
    margin-bottom: 0.5rem;
}

.header_hour .header_hour_bottom {
    margin-top: 0.5rem;
}

.header_hour span {
    display: block;
    color: var(--main-text);
    font-size: 1.5rem;
}

.header_bottom {
    padding-block: 1.5rem;
    background-color: transparent;
}

.header_nav_list {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 0 3rem;
    padding-right: 2rem;
}

.header_nav_item a {
    text-align: center;
}

.header_nav_item a span {
    font-size: 1.5rem;
    line-height: 1.5;
    color: #000000;
    text-shadow:
        3px 3px 3px #ffffff, -3px -3px 3px #ffffff,
        -3px 3px 3px #ffffff, 3px -3px 3px #ffffff,
        3px 0px 3px #ffffff, -3px -0px 3px #ffffff,
        0px 3px 3px #ffffff, 0px -3px 3px #ffffff;
    margin: 0;
    transition: all 0.3s ease;
}

.header_nav_item a:hover span {
    color: var(--white);
    text-shadow:
        3px 3px 3px #0091E1, -3px -3px 3px #0091E1,
        -3px 3px 3px #0091E1, 3px -3px 3px #0091E1,
        3px 0px 3px #0091E1, -3px -0px 3px #0091E1,
        0px 3px 3px #0091E1, 0px -3px 3px #0091E1;
}

.hbgr {
    position: relative;
    display: none;
}

.hbgr_btn {
    border: none;
    background-color: transparent;
}

.hbgr_btn span {
    position: relative;
    display: block;
    width: 3rem;
    height: 0.1rem;
    background-color: var(--main-blue-01);
}

.hbgr_btn span:first-child {
    top: -1rem;
}

.hbgr_btn span:last-child {
    bottom: -1rem;
}

@media screen and (max-width:1190px) {
    .header_inner {
        padding-left: 1.5rem;
    }

    .header_tel p,
    .header_hour span,
    .header_hour p span {
        font-size: 1.4rem;
    }

    .header_tel,
    .header_hour {
        padding-inline: 2rem;
    }

    .header_logo img {
        width: clamp(10rem, 37.1vw, 20rem);
    }
}

@media screen and (max-width:840px) {

    .header_tel p,
    .header_hour span,
    .header_hour p span {
        font-size: 1.3rem;
    }

    .header_tel,
    .header_hour {
        padding-inline: 1rem;
    }
}

@media screen and (max-width:768px) {
    .header_top {
        display: none;
    }

    .header_inner {
        padding-block: 2rem;
        padding-inline: 1.5rem;
    }

    .hbgr {
        display: block;
    }

    .header_bottom {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--light-blue);
        z-index: 10;
        display: block;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .3s ease, visibility .3s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-top: 8rem;
    }

    .header_bottom.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .header_nav_list {
        flex-direction: column;
        gap: 2rem 0;
        padding: 2rem;
        align-items: center;
    }

    .header_nav_item a span {
        font-size: 2rem;
        color: var(--main-blue-01);
        font-weight: 500;
    }

    /* ハンバーガーボタンのアニメーション */
    .hbgr_btn.active span:first-child {
        transform: rotate(45deg) translate(0.5rem, 0.5rem);
        top: -2px;
    }

    .hbgr_btn.active span:nth-child(2) {
        opacity: 0;
    }

    .hbgr_btn.active span:last-child {
        transform: rotate(-45deg) translate(0.5rem, -0.5rem);
    }

    .hbgr_btn span {
        transition: all 0.3s ease;
    }
}

/* fv */
.fv {
    position: relative;
    padding-top: 10rem;
    padding-bottom: 0;
    margin-top: 10rem;
    background-image: url(./images/fv/01.webp);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 70rem;
    background-position-y: 32%;
}

.fv .section_inner {
    position: relative;
}

.fv_bg_img {
    max-height: 70rem;
    width: 100%;
    object-fit: cover;
}

.fv_text_img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(100%);
    padding-left: 6rem;
}

@media screen and (max-width:870px) {
    .fv_text_img {
        padding-left: 1.5rem;
    }
}

@media screen and (max-width:768px) {
    .fv {
        height: 50vh;
        min-height: unset;
        background-position-x: 18%;
    }

    .fv_text_img {
        width: 90%;
        max-width: 44rem;
        left: 50%;
        transform: translate(-50%, 0%);
        padding-left: 0;
    }
}

/* intro */
.intro {
    position: relative;
    background-image: url(./images/intro/01.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.intro::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffffb0;
}

.section_inner {
    position: relative;
    z-index: 1;
}

.intro .common_h2 {
    font-weight: 700;
}

.intro_container {
    margin-top: 5rem;
}

.intro_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 5rem;
}

.intro_item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--main-blue-01);
    aspect-ratio: 1/1;
    text-align: center;
}

.intro_item span {
    color: var(--white);
    font-weight: 700;
    font-size: clamp(1.8rem, 2.7vw, 3rem);
    line-height: 1.8;
}

.intro_btn {
    display: flex;
    justify-content: center;
    gap: 0 3rem;
    margin-top: 5rem;
}

@media screen and (max-width: 820px) {
    .intro_btn {
        flex-direction: column;
        align-items: center;
        gap: 3rem 0;
    }
}

@media screen and (max-width:768px) {
    .intro_list {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .intro_item span {
        font-size: clamp(1.8rem, 4.6vw, 3rem);
    }
}

/* news */
.news {
    position: relative;
    background-image: url(./images/news/bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.news::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #003f8e0a;
}

.news .section_inner {
    display: flex;
    align-items: center;
}

.news_container {
    max-width: 86rem;
    margin-inline: auto;
}

.news .section_inner .common_h2,
.news .section_inner .news_container {
    display: flex;
    flex-direction: column;
}

.news .section_inner .common_h2 {
    flex: 2;
}

.news .section_inner .news_container {
    flex: 5;
    padding-left: 3rem;
    border-left: 1px solid #707070;
}

.news_item {
    line-height: 1.5;
    margin-top: 2rem;
}

.news_item:first-child {
    margin-top: 0;
}

.news_item a {
    transition: all 0.3s ease;
}

.news_h1 span {
    font-size: 1.6rem;
    color: var(--main-blue-01);
    text-decoration: none;
    transition: all 0.3s ease;
}

.news_item a:hover span {
    text-decoration: underline;
}

@media screen and (max-width:768px) {
    .news .section_inner {
        flex-direction: column;
        align-items: start;
        gap: 5rem 0;
    }

    .news .section_inner .news_container {
        flex: 5;
        padding-left: 0;
        border-left: none;
    }
}

/* access */

.access_table {
    max-width: 78rem;
    margin-inline: auto;
    margin-top: 8rem;
}

.access_table table {
    width: 100%;
    border-collapse: collapse;
}

.access_table thead tr {
    background-color: var(--main-blue-01);
    color: var(--white);
}

.access_table thead tr th,
.access_table thead tr td,
.access_table tbody tr th,
.access_table tbody tr td {
    font-size: 1.6rem;
    padding-block: 2rem;
    text-align: center;
}

.access_table tbody tr:nth-child(odd) {
    background-color: #F4F4F4;
}

.access_table tbody tr:nth-child(even) {
    background-color: var(--light-blue);
}

.access_container {
    display: flex;
    justify-content: space-between;
    gap: 0 3rem;
    margin-top: 8rem;
}

.access_container>* {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.access_map iframe {
    width: 100%;
    max-width: 100%;
}

.access_data table {
    width: 100%;
    border-collapse: collapse;
}

.access_data table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.access_data table tbody tr th,
.access_data table tbody tr td {
    font-size: 1.6rem;
    padding-block: 2rem;
    line-height: 1.5;
}

.access_data table tbody tr th {
    color: var(--main-blue-01);
    text-align: left;
    min-width: 16rem;
}

.access_btn {
    display: flex;
    justify-content: center;
    gap: 0 3rem;
    margin-top: 5rem;
}

@media screen and (max-width:820px) {
    .access_btn {
        flex-direction: column;
        align-items: center;
        gap: 3rem 0;
    }
}

@media screen and (max-width:768px) {
    .access_container {
        flex-direction: column;
        gap: 3rem 0;
        margin-top: 3rem;
    }

    .access_map iframe {
        height: 22rem;
    }

    .access_table {
        margin-top: 5rem;
    }

    .access_data table tbody tr th,
    .access_data table tbody tr td {
        font-size: 1.5rem;
        padding-block: 1.4rem;
    }

    .access_data table tbody tr th {
        min-width: 12rem;
    }
}

/* feature */
.feature {
    background-color: var(--light-blue);
}

.feature_container {
    margin-top: 8rem;
}

.feature_box {
    display: flex;
    justify-content: space-between;
    gap: 0 3rem;
    margin-top: 5rem;
}

.feature_box:first-child {
    margin-top: 0;
}

.feature_box:nth-child(odd) {
    flex-direction: row;
}

.feature_box:nth-child(even) {
    flex-direction: row-reverse;
}

.feature_box>* {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.feature_h3 span {
    color: var(--main-blue-01);
}

.feature_h3_en {
    position: relative;
    display: flex;
    font-size: 1.4rem;
    align-items: center;
    gap: 0 0.75rem;
}

.feature_h3_en::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: var(--main-blue-01);
}

.feature_h3_ja {
    display: block;
    font-size: clamp(1.6rem, 2.6vw, 1.8rem);
    font-weight: 500;
    margin-top: 2rem;
}

.feature_para {
    font-size: clamp(1.5rem, 2.6vw, 1.6rem);
    line-height: 1.8;
    margin-top: 2rem;
}

.feature_img img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 25rem;
    object-fit: cover;
}

@media screen and (max-width:768px) {

    .feature_box:nth-child(odd),
    .feature_box:nth-child(even) {
        flex-direction: column;
    }

    .feature_text {
        margin-top: 3rem;
    }
}

/* treatment */

.treatment {
    position: relative;
    background-image: url(./images/treatment/bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

.treatment:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffffb0;
}

.treatment .section_inner {
    position: relative;
    z-index: 1;
}

.treatment_container {
    margin-top: 8rem;
}

.treat_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.treat_item {
    display: grid;
    /* display: flex;
    align-items: center; */
    position: relative;
    width: 100%;
    box-shadow: 3px 3px 6px #dadada;
    border-radius: 2rem;
}

.treat_item::before {
    position: absolute;
    content: url(./images/icon/arrow_right.svg);
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.6rem;
    height: 0.8rem;
    transition: all 0.3s ease;
}

.treat_item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 1.5rem;
    background-color: var(--white);
    transition: all 0.3s ease;
    border-radius: 2rem;
}


.treat_item a span {
    font-size: 1.6rem;
    color: var(--main-blue-01);
    line-height: 1.5;
    padding-right: 3rem;
}

.treat_item a:hover {
    background-color: var(--main-blue-02);
}

.treat_item a:hover span {
    color: var(--white);
}

/* arrow color to white on hover */
.treat_item:hover::before {
    filter: brightness(0) invert(1);
    right: 0.8rem;
}

.disease_container {
    margin-top: 5rem;
    padding: 4rem;
}

.disease_h3 {
    padding-left: 1.5rem;
}

.disease_h3 span {
    color: var(--main-blue-01);
    font-size: clamp(1.8rem, 2.6vw, 2rem);
    font-weight: 700;
}

.dis_list {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.dis_item {
    width: 100%;
    background: linear-gradient(90deg, rgba(0, 63, 142, 1) 0%, rgba(0, 145, 225, 1) 100%);
    padding: 3rem 0;
    text-align: center;
    border-radius: 2rem;
}

.dis_item span {
    color: var(--white);
    font-size: clamp(1.8rem, 2.6vw, 2rem);
    line-height: 1.5;
}

.treatment_h2 {
    margin-top: 5rem;
}

@media screen and (max-width:768px) {

    .treat_list,
    .dis_list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width:470px) {

    .treat_list,
    .dis_list {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* column */
.column_container {
    margin-top: 5rem;
}

.column_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
}

.column_item {
    width: 100%;
}

.column_item a {
    opacity: 1;
    transition: all 0.3s ease;
}

.column_item a:hover {
    opacity: 0.7;
}

.column_img img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.column_h1 {
    font-size: clamp(1.5rem, 2.6vw, 1.6rem);
    font-weight: 700;
    margin-top: 1.5rem;
    line-height: 1.5;
    color: var(--main-blue-01);
}

.column_btn {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 0 3rem;
    margin-top: 5rem;
}

@media screen and (max-width:768px) {
    .column_list {
        grid-template-columns: repeat(1, 1fr);
        gap: 3rem;
    }
}

/* if */
.if {
    background-color: var(--light-blue);
}

.if_container {
    margin-top: 5rem;
    background-color: var(--white);
    border-radius: 2rem;
    padding: 4rem;
}

.if_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 2rem;
}

.if_item {
    display: flex;
    justify-content: center;
    padding: 2rem 4rem;
    background-color: var(--light-blue);
    border-radius: 5rem;
}

.if_item span {
    color: var(--main-blue-01);
    font-size: clamp(1.5rem, 2.6vw, 1.6rem);
    font-weight: 700;
    line-height: 1.5;
}

@media screen and (max-width:768px) {
    .if_container {
        margin-top: 3rem;
        padding: 2rem;
    }

    .if_item {
        padding: 2rem 1.5rem;
    }
}

@media screen and (max-width:460px) {
    .if_item {
        width: 100%;
    }
}

/* greet */
.greet_container {
    display: flex;
    justify-content: space-between;
    margin-top: 5rem;
    gap: 0 3rem;
}

.greet_container>* {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.greet_h3 span {
    font-size: clamp(2rem, 2.6vw, 2.4rem);
    font-weight: 700;
    line-height: 1.5;
    color: var(--main-blue-01);
}

.greet_para {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-top: 2rem;
}

.greet_btn {
    display: flex;
    justify-content: start;
    gap: 0 3rem;
    margin-top: 5rem;
}

@media screen and (max-width:768px) {
    .greet_container {
        flex-direction: column-reverse;
        gap: 3rem 0;
    }

    .greet_btn {
        justify-content: center;
    }
}

/* contact */
.contact {
    position: relative;
    background-color: var(--light-blue);
}

.contact_container {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 5rem;
    gap: 0 6rem;
}

.contact_container::before {
    position: absolute;
    content: '';
    background-color: #707070;
    height: 100%;
    width: 1px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.contact_container>* {
    display: flex;
    flex: 1;
    flex-direction: column;
    width: 100%;
}

.contact_h3 {
    text-align: center;
}

.contact_h3 span {
    color: var(--main-blue-01);
    font-size: clamp(3rem, 2.6vw, 4rem);
    font-weight: 700;
}

.contact_box_inner {
    margin-top: 5rem;
    background-color: var(--white);
    padding: 3rem 1.5rem;
    border-radius: 2rem;
    text-align: center;
}

.contact_box_inner p {
    font-size: 1.5rem;
    color: var(--main-blue-01);
    line-height: 1.5;
}

.contact_box_inner a {
    margin-top: 2rem;
}

.contact_box_inner a span {
    font-size: clamp(2.3rem, 2.6vw, 4rem);
    font-weight: 700;
    color: var(--main-blue-01);
    margin-left: 1rem;

}

@media screen and (max-width:768px) {
    .contact_container {
        flex-direction: column-reverse;
        gap: 3rem 0;
    }

    .contact_container::before {
        content: none;
    }

    .contact_box_inner {
        margin-top: 2rem;
    }
}

/* footer */
.footer {
    background-color: var(--main-blue-01);
    padding: 8rem 1.5rem;
}

.footer_container {
    display: flex;
    justify-content: space-between;
    gap: 0 6rem;
    align-items: center;
}

.footer_container>* {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.footer_logo img {
    max-width: 27rem;
}

.footer_h2 {
    border-bottom: 1px solid var(--white);
    padding-bottom: 1rem;
}

.footer_h2 span {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.footer_menu_list {
    margin-top: 1.5rem;
}

.footer_menu_item {
    line-height: 1.8;
}

.footer_menu_item a span {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer_menu_item a:hover span {
    color: var(--main-yellow);
}



@media screen and (max-width:670px) {
    .footer {
        padding-block: 5rem;
    }

    .footer_container {
        flex-direction: column;
        gap: 3rem 0;
    }

    .footer_menu {
        width: 100%;
    }
}

/* page common */
.pageForHeader {
    position: relative;
    margin-top: 17.5rem;
    background-image: url(./images/header/01.webp);
    padding-block: clamp(7rem, 10.5vw, 15rem);
    background-position: 27% 45%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

.pageForHeader::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(132deg, rgba(255, 255, 255, 0.6) 0%, rgba(0, 145, 225, 1) 100%);
}

.pageForHeader_inner {
    position: relative;
    max-width: 135.5rem;
    margin-inline: auto;
    padding-inline: 1.5rem;
    z-index: 1;
}

.pageH1 span {
    font-size: clamp(2.4rem, 2.8vw, 4rem);
    color: var(--main-blue-01);
    text-shadow:
        3px 3px 3px #FFFFFF, -3px -3px 3px #FFFFFF,
        -3px 3px 3px #FFFFFF, 3px -3px 3px #FFFFFF,
        3px 0px 3px #FFFFFF, -3px -0px 3px #FFFFFF,
        0px 3px 3px #FFFFFF, 0px -3px 3px #FFFFFF;
    margin: 0;
}

@media screen and (max-width:768px) {
    .pageForHeader {
        margin-top: 10rem;
    }
}

/* about */
.aboutIntro_container {
    display: flex;
    justify-content: space-between;
    gap: 0 5rem;
}

.aboutIntro_container:nth-child(odd) {
    flex-direction: row-reverse;
    margin-top: 10rem;
}

.aboutIntro_container:nth-child(even) {
    flex-direction: row;
    margin-top: 10rem;
}

.aboutIntro_container>* {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.aboutIntro_container .common_h2 .common_h2_top {
    display: block;
    font-size: clamp(2.2rem, 2.9vw, 5.5rem);
    color: var(--main-blue-01);
    line-height: 1.5;
}

.aboutIntro_para {
    margin-top: 5rem;
    font-size: 1.6rem;
    line-height: 1.8;
}

.aboutIntro_para strong {
    font-weight: 700;
    color: var(--main-blue-02);
}

.aboutIntro_img img {
    box-shadow: 3rem 3rem 0 var(--sky-blue);
}

.aboutIntro_container:nth-child(odd) .aboutIntro_img img,
.aboutIntro_container:nth-child(odd) .about_slider {
    box-shadow: -3rem 3rem 0 var(--sky-blue);
}

.about_slider {
    width: 100%;
    max-width: 637.5px;
    height: 100%;
}

.about_slider .slick-list,
.about_slider .slick-track,
.about_slider .slick-slide {
    height: 100%;
}

.about_slider .slick-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    /* 画像のトリミングで高さを揃える */
}

.slick-prev:before,
.slick-next:before {
    color: var(--main-blue-01);
}

.eq_container {
    display: flex;
    justify-content: space-between;
    gap: 5rem;
    margin-top: 8rem;
}

.eq_container>* {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
    background-color: var(--light-blue);
    border-radius: 2rem;
    padding: 3rem;
}

.eq_img img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
    object-fit: cover;
    border-radius: 2rem;
}

.eq_cite_link {
    margin-top: 1rem;
}

.eq_cite_link cite {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--main-blue-01);
}

.eq_text {
    margin-top: 3rem;
}

.eq_h3 {
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--main-blue-01);
}

.eq_para {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-top: 3rem;
    color: var(--main-text);
}

@media screen and (max-width:768px) {

    .aboutIntro_container:nth-child(odd),
    .aboutIntro_container:nth-child(even) {
        flex-direction: column;
        gap: 3rem;
    }

    .aboutIntro_container:first-child {
        margin-top: 0;
    }

    .aboutIntro_para {
        margin-top: 2rem;
        font-size: 1.5rem;
    }

    .about_slider {
        max-width: 100%;
    }

    .slick-prev {
        left: 0;
        z-index: 1;
    }

    .slick-next {
        right: 0;
        z-index: 1;
    }

    .eq_container {
        flex-direction: column;
    }

    .eq_box {
        flex-direction: column-reverse;
        padding-inline: 1.5rem;
    }

    .eq_img {
        margin-top: 3rem;
    }
}

.aboutCare {
    position: relative;
    background-image: url(./images/about/bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom left;
}

.aboutCare::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff75;
    z-index: 0;
}

.aboutCare_container {
    background-color: var(--white);
    border-radius: 2rem;
    text-align: center;
    padding: 4rem;
    margin-top: 8rem;
}

.aboutCare_h3 span {
    display: inline-block;
    background-image: linear-gradient(to bottom,
            transparent 60%,
            #FFEA00 60%);
    background-repeat: no-repeat;
    animation: marker 1s ease-in-out forwards;
    font-size: clamp(2.2rem, 2.9vw, 5.5rem);
    color: var(--main-blue-01);
    line-height: 1.5;
}

@keyframes marker {
    from {
        background-size: 0%;
    }

    to {
        background-size: 100%;
    }
}

.aboutCare_para {
    margin-top: 5rem;
    font-size: 1.6rem;
    line-height: 2;
}

.aboutCare_para strong {
    font-weight: 700;
    color: var(--main-blue-01);
}

.aboutCare_container .aboutCare_para:last-child {
    margin-top: 2rem;
}

.access_v_container {
    display: flex;
    justify-content: space-between;
    gap: 0 3rem;
    margin-top: 5rem;
}

.access_v_container>* {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
}

.access_v_h3 span {
    font-size: clamp(1.8rem, 1.7vw, 2.4rem);
    color: var(--main-blue-01);
}

.access_video {
    margin-top: 2rem;
}

.access_video iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 2;
}

@media screen and (max-width:768px) {

    .aboutCare_container {
        padding: 3rem 1.5rem;
        margin-top: 5rem;
    }

    .aboutCare_para {
        margin-top: 2rem;
    }

    .access_v_container {
        flex-direction: column;
        gap: 3rem 0;
    }
}

/* flow */
.flow_container {
    margin-top: 8rem;
}

.flow_inner {
    display: flex;
    margin-top: 8rem;
    gap: 0 5rem;
}

.flow_inner>* {
    display: flex;
    flex-direction: column;
}

.num_box {
    position: relative;
}

.num_line {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--main-blue-01);
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
}

.num_box::before {
    position: absolute;
    content: '';
    bottom: -5rem;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 3px;
    background-color: var(--main-blue-02);
}

.num_box::after {
    position: absolute;
    content: '';
    bottom: -5.2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 1rem solid transparent;
    border-left: 1rem solid transparent;
    border-top: 1.8rem solid var(--main-blue-02);
    border-bottom: 0;
}

.flow_inner:last-child .num_box:before {
    height: 0;
    width: 0;
}

.flow_inner:last-child .num_box::after {
    content: none;
}

.num_line span {
    color: var(--white);
    font-weight: 800;
    line-height: 1;
    font-size: 2rem;
}

.flow_box {
    display: flex;
    flex-direction: row;
    padding: 4rem 3rem;
    background-color: var(--light-blue);
    border-radius: 5rem;
    gap: 0 3rem;
}

.flow_box>* {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.flow_h3 span {
    font-size: clamp(2rem, 2.6vw, 3rem);
}

.flow_para {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-top: 3rem;
}

.flow_img img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 1.6;
    object-fit: cover;
}

@media screen and (max-width:768px) {
    .flow_inner {
        margin-top: 5rem;
        gap: 0 1rem;
    }

    .num_line {
        width: 3rem;
        height: 3rem;
    }

    .num_box::before {
        bottom: -3rem;
    }

    .num_box::after {
        bottom: -3.5rem;
    }

    .flow_box {
        flex-direction: column;
        gap: 3rem;
        padding: 2rem 1.5rem;
        border-radius: 2rem;
    }

}

/* 基本下層ページ */
.page_container {
    margin-top: 8rem;
}

.horizontal {
    display: flex;
    justify-content: space-between;
    gap: 5rem;
}

.horizontal-reverse {
    flex-direction: row-reverse;
}

.horizontal>* {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.h_h3 {
    text-align: left;
}

.h_h3 span {
    font-size: 2rem;
    font-weight: 500;
    color: var(--main-blue-01);
    padding-left: 1.5rem;
    border-left: 1rem solid var(--main-blue-01);
}

.h_para {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--main-text);
    line-height: 1.8;
    margin-top: 1.5rem;
}

.h_para:first-child {
    margin-top: 0;
}

.h_text ul {
    margin-top: 1.5rem;
}

.h_text ul li {
    position: relative;
    margin-top: 1rem;
}

.h_text ul li:first-child {
    margin-top: 0;
}

.h_text ul li::before {
    position: absolute;
    content: '';
    top: 4px;
    left: 0;
    width: 1rem;
    height: 1rem;
    background-color: var(--main-blue-02);
}

.h_text ul li span {
    padding-left: 1.5rem;
    font-size: 1.6rem;
    font-weight: 500;
}

.h_img img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.page_intro {
    margin-top: 5rem;
    text-align: center;
}

.page_intro p {
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 2;
    color: var(--main-blue-01);
}

.checklist_container {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
    background-color: var(--light-blue);
    padding: 3rem 1.5rem;
    width: 100%;
    border-radius: 2rem;
}

.checklist_item {
    position: relative;
    margin-top: 1.5rem;
}

.checklist_item:first-child {
    margin-top: 0;
}

.checklist_item::before {
    position: absolute;
    content: '';
    width: 4rem;
    height: 4rem;
    left: 0;
    top: 50%;
    transform: translateY(-45%);
    background-image: url(./images/icon/checkbox.svg);
    background-size: contain;
}

.checklist_item span {
    display: block;
    font-size: 2.2rem;
    font-weight: 500;
    padding-left: 4.5rem;
    line-height: 1.5;

}

.rec_table {
    margin-top: 5rem;
}

.rec_table table {
    width: 100%;
    border-collapse: collapse;
}

.rec_table table tr:first-child {
    border-bottom: 1px solid var(--main-blue-01);
}

.rec_table table tr th,
.rec_table table tr td {
    padding: 2rem;
}

.rec_table table tr th {
    font-size: 2.2rem;
    font-weight: 500;
    width: 20%;
    vertical-align: middle;
}

.rec_table table tr td {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.rec_table table tr td span {
    font-size: 1.6rem;
    font-weight: 700;
    background-color: var(--light-blue);
    color: var(--main-text);
    padding: 1rem 1.8rem;
    border-radius: 2rem;
    box-shadow: 3px 3px 6px #e3e3e3;
}

.discover .disease_container {
    margin-top: 0;
}

.discover .dis_item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flow_manga {
    display: flex;
    justify-content: center;
    padding-inline: 1.5rem;
    margin-top: 5rem;
}

.price_table {
    margin-top: 5rem;
}

.price_table table {
    width: 100%;
}

.price_table table thead {
    background-color: var(--main-blue-01);
}

.price_table table thead tr {
    border-bottom: 1px solid transparent;
}

.price_table table thead tr th,
.price_table table thead tr td {
    color: var(--white);
    font-weight: 500;
}

.price_table table thead tr th,
.price_table table thead tr td,
.price_table table tbody tr th,
.price_table table tbody tr td {
    font-size: 1.6rem;
    padding-block: 2rem;
    border: 1px solid var(--white);
    text-align: center;
    line-height: 1.5;
    vertical-align: middle;
}

.price_table table tbody tr th,
.price_table table tbody tr td {
    background-color: var(--light-blue);
}

.price_caution {
    display: block;
    font-size: 1.4rem;
    line-height: 1.8;
}

/* faq */
.faq_box {
    margin-top: 5rem;
    border-radius: 2rem;
    overflow: hidden;
}

.faq_top {
    display: flex;
    align-items: center;
    background-color: var(--main-blue-01);
    padding: 2rem;
}

.faq_bottom {
    display: flex;
    align-items: baseline;
    background-color: var(--light-blue);
    padding: 2rem;
}

.faq_q,
.faq_a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    aspect-ratio: 1/1;
}

.faq_q {
    background-color: var(--white);
}

.faq_a {
    background-color: var(--main-blue-01);
}

.faq_q span,
.faq_a span {
    font-size: 2.2rem;
    font-weight: 500;
}

.faq_q span {
    color: var(--main-blue-01);
}

.faq_a span {
    color: var(--white);
}

.faq_h3 {
    padding-left: 2rem;
}

.faq_h3 span {
    color: var(--white);
    font-size: 2.2rem;
}

.faq_para {
    font-size: 1.6rem;
    line-height: 1.8;
    padding-left: 2rem;
    color: var(--main-text);
}

@media screen and (max-width:768px) {
    .page_container {
        margin-top: 3rem;
    }

    .horizontal {
        flex-direction: column;
        gap: 3rem;
    }

    .page_intro {
        margin-top: 3rem;
    }

    .page_intro p {
        font-size: 1.6rem;
    }

    .checklist_container {
        margin-top: 3rem;
        padding: 2rem 1.5rem;
    }

    .checklist_item span {
        font-size: 1.6rem;
    }

    .rec_table table tr:first-child {
        border-bottom: none;
    }

    .rec_table table tbody tr {
        display: block;
    }

    .g-feature .feature_container {
        margin-top: 3rem;
    }
}

.type_table {
    margin-top: 5rem;
}

.type_table table {
    width: 100%;
    border-collapse: collapse;
}

.type_table thead tr {
    background-color: var(--main-blue-01);
    color: var(--white);
}

.type_table thead tr th,
.type_table thead tr td,
.type_table tbody tr th,
.type_table tbody tr td {
    font-size: 1.6rem;
    padding-block: 2rem;
    padding-inline: 1rem;
    border: 1px solid var(--white);
}

.type_table thead tr th,
.type_table thead tr td {
    text-align: center;
}

.type_table tbody tr th,
.type_table tbody tr td {
    background-color: var(--light-blue);
}

/* single */

.single {
    margin-top: 17.5rem;
}

.post-title {
    font-size: 3.4rem;
    font-weight: 500;
    line-height: 1.5;
}

.post-meta {
    margin-top: 1.2rem;
}

.post-meta .post-date {
    font-size: 1.4rem;
    color: #707070;
    margin-right: 2rem;
}

.post-meta .post-cats a {
    background-color: var(--light-green);
    color: var(--white);
    padding: 0.3rem 1rem;
    line-height: 1;
    font-size: 1.4rem;
    border-radius: 2rem;
}

.post-thumb {
    margin-top: 2rem;
}

.post-thumb img {
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 1.5;
    border-radius: 2rem;
}

.post-content img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 2rem;
}

.post-content h2 {
    position: relative;
    font-size: 2.4rem;
    line-height: 1.5;
    font-weight: 500;
    background-color: var(--main-blue-01);
    color: var(--white);
    padding-left: 2rem;
    padding-block: 1rem;
    margin-top: 2rem;
}

.post-content h2::before {
    position: absolute;
    content: '';
    bottom: -12px;
    left: 2rem;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 12px 11px 0 11px;
    border-color: var(--main-blue-01) transparent transparent transparent;
    transform: rotate(0deg);
}

.post-content h3 {
    font-size: 2rem;
    line-height: 1.5;
    font-weight: 500;
    padding-left: 2rem;
    padding-bottom: 1rem;
    border-left: 5px solid var(--main-blue-01);
    border-bottom: 1px solid var(--main-blue-01);
    margin-top: 2rem;
}

.post-content h4 {
    position: relative;
    font-size: 1.8rem;
    line-height: 1.5;
    font-weight: 500;
    margin-top: 2rem;
    padding-left: 2.5rem;
}

.post-content h4::before {
    position: absolute;
    content: '';
    left: 0;
    top: 5px;
    width: 2rem;
    height: 2rem;
    background-color: var(--main-blue-01);
    border-radius: 50%;
}

.post-content p {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-top: 2rem;
}

.post-content strong {
    font-weight: 700;
}

.post-content ul {
    list-style-type: disc;
    list-style-position: inside;
    margin-top: 2rem;
}

.post-content ol {
    list-style-position: inside;
    margin-top: 2rem;
}

.post-content ol li ol {
    margin-top: 0;
}

.post-content li {
    font-size: 1.6rem;
    margin-top: 1.5rem;
}

.post-content ol li {
    margin-top: 1.5rem;
}

.post-content ul li ul {
    margin-top: 1.5rem;
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.post-content table thead tr th,
.post-content table thead tr td,
.post-content table tbody tr th,
.post-content table tbody tr td {
    font-size: 1.6rem;
    padding-block: 1.4rem;
    padding-left: 1rem;
}

.post-content table thead tr {
    background-color: var(--main-blue-01);
}

.post-content table thead tr th,
.post-content table thead tr td {
    color: var(--white);
    border-right: 1px solid var(--white);
}

.post-content table tbody tr td {
    padding-left: 1.5rem;
}

.post-content table tbody tr th,
.post-content table tbody tr td {
    border: solid 1px #707070;
}

.post-content table tbody tr:first-child th,
.post-content table tbody tr:first-child td {
    border-top: none;
}

.post-content dl {
    font-size: 1.6rem;
    margin-top: 2rem;
}

.post-content dl dt {
    line-height: 1.5;
}

.post-content dl dd {
    line-height: 1.5;
}

.post-content strong {
    font-weight: 500;
}

.post-content blockquote {
    background-color: var(--light-blue);
    padding: 2rem;
    border-radius: 2rem;
    margin-top: 2rem;
}

.post-content blockquote p:first-child {
    margin-top: 0;
}

/* column archive pagination */
/* .column {
    margin-top: 17.5rem;
} */

.column .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.column .pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1.4rem;
    line-height: 1;
    text-decoration: none;
    color: #333;
    background: #fff;
}

.column .pagination .page-numbers:hover {
    border-color: #333;
}

.column .pagination .page-numbers.current {
    background: #333;
    color: #fff;
    border-color: #333;
}

.column .pagination .prev,
.column .pagination .next {
    min-width: 40px;
}

/* news archive pagination */
/* .news-archive {
    margin-top: 17.5rem;
} */

.news-archive .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.news-archive .pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1.4rem;
    line-height: 1;
    text-decoration: none;
    color: #333;
    background: #fff;
}

.news-archive .pagination .page-numbers:hover {
    border-color: #333;
}

.news-archive .pagination .page-numbers.current {
    background: #333;
    color: #fff;
    border-color: #333;
}

.news-archive .pagination .prev,
.news-archive .pagination .next {
    min-width: 40px;
}

@media screen and (max-width: 768px) {
    .single {
        margin-top: 10rem;
    }

    .post-title {
        font-size: 2.2rem;
    }


}