@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,700;1,700&display=swap');

/**** reset ****/
html, body, h1, h2, h3, h4, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    margin: 0;
    padding: 0;
    border: 0;
    font-size:100%;
    /*font-weight: normal;*/
    font-weight: 300;
    vertical-align:baseline;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    line-height: 1;
    _display: inline;
    _zoom:1;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
    display:block;
}
nav, ol, ul {
    list-style: none;
    list-style-type: none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
th, td {
    text-align:left;
    vertical-align:top;
}
img {
    vertical-align:bottom;
}
input, select, textarea {
    vertical-align:middle;
    /*-webkit-appearance: none;*/
    font-size: 1.6rem;
    background: #fff;
    border: none;
    font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 300;
    font-display: swap;
    box-sizing: border-box;
}
i, span {
    font-style: normal;
    font-weight: inherit;
}
strong {
    font-weight: bold;
}
:focus {
    outline: 0;
}
/**** reset ****/

.flex {
    display:flex;
    -webkit-display:flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    flex-wrap:wrap;
    -webkit-flex-wrap:wrap;
    align-items: center;
    -webkit-align-items: center;
}

/**** style ****/

html {
    font-size: 10px;
}
body {
    background-color: var(--site-bg);
    color: #333;
    font-size: 1.6rem;
    font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-display: swap;
    letter-spacing: 0.05em;
}
a {
    /* color: var(--site-color); */
    font-weight: bold;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
}
@media (hover: hover) {
    a:hover {
        text-decoration: none;
        filter: opacity(0.8);
    }
}
br.smpbr {
    display: none;
}
:root {
    --site-color-blue: #308dc2;
    --site-color-green: #1a9a9f;
    --site-bg: #eef7fe;
}


.roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

#contain {
    position: relative;
    overflow: hidden;
}

#header {
    position: fixed;
    width: 100vw;
    top: 0;
    left: 0;
    z-index: 10;
    /* background: linear-gradient(rgba(17 17 17 / 1.0), rgba(17 17 17 / 0.0)); */
    transition: all 0.1s ease;
}

/* #header.scroll {
    background-color: rgba(17 17 17 / 0.9);
} */

.header-wrap {
    width: min(90%, 1400px);
    margin-inline: auto;
    padding: 25px 0;
    transition: all 0.1s ease;
}

.scroll .header-wrap {
    padding: 15px 0;
}

.header-nav {
    gap: 15px;
}

.header-link {
    color: #fff;
}

.btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 10px;
    color: #fff;
    background: linear-gradient(90deg, var(--site-color-blue), var(--site-color-green));
    line-height: 1;
}

.btn::after {
    content: "";
    width: 12px;
    height: 12px;
    background: url("../img/btn_arrow.svg") no-repeat;
    background-size: contain;
}

.header-btn {
    padding: 1em 1.5em 1em 2em;
    border-radius: 2em;
}

.content-wrap {
    width: min(90%, 1200px);
    margin-inline: auto;
}

.main-wrap {
    position: relative;
    background: url("../img/main.jpg") no-repeat center top;
    min-height: 640px;
}

.main-title {
    position: absolute;
    width: 640px;
    height: 90px;
    bottom: 75px;
    left: 50%;
    transform: translateX(-50%);
}

.nav-list {
    justify-content: center;
    gap: 50px;
}

.nav-list li {
    width: 420px;
    text-align: center;
}

.nav-btn {
    position: relative;
    display: block;
    padding: calc(30px + 3em) 30px 55px 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0 0 0 / 0.05), 0 4px 10px rgba(0 0 0 / 0.02);
}

.nav-btn::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.nav-type {
    position: absolute;
    display: block;
    width: 100%;
    padding: 1em;
    top: 0;
    left: 0;
    color: #fff;
    text-align: center;
}

.nav-type-clinic.nav-btn {
    color: var(--site-color-blue);
}

.nav-type-clinic.nav-btn::after {
    background-image: url("../img/icon_side_arrow01.png");
}

.nav-type-place.nav-btn {
    color: var(--site-color-green);
}

.nav-type-place.nav-btn::after {
    background-image: url("../img/icon_side_arrow02.png");
}

.nav-type-clinic .nav-type {
    background-color: var(--site-color-blue);
}

.nav-type-place .nav-type {
    background-color: var(--site-color-green);
}

.nav-text {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.nav-bottom {
    margin-top: 15px;
    font-size: 13px;
    line-height: 1.7;
    color: #666;
    text-align: center;
}

#about {
    margin-top: 120px;
}

.about-head {
    margin-bottom: 60px;
    text-align: center;
    font-size: 3.2rem;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.about-head span {
    display: block;
    margin-top: 20px;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
}

.about-text {
    text-align: center;
    line-height: 2;
}

.about-img {
    margin: 60px 0;
    text-align: center;
}

#clinic {
    margin-top: 90px;
}

.clinic-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 45px;
    font-size: 3.0rem;
    font-weight: bold;
    text-align: center;
    color: var(--site-color-blue);
    letter-spacing: 0.08em;
}

.clinic-head::before,
.clinic-head::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background-color: var(--site-color-blue);
}

.clinic-box-wrap {
    margin-top: 60px;
}

.clinic-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 60px;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 0 20px rgba(0 0 0 / 0.05), 0 4px 10px rgba(0 0 0 / 0.02);
}

.clinic-box:not(:last-of-type) {
    margin-bottom: 60px;
}

.clinic-info {
    flex: 1;
}

.clinic-location {
    display: inline-block;
    padding: 10px 15px;
    color: var(--site-color-blue);
    border: 1px solid var(--site-color-blue);
    font-size: 1.3rem;
    border-radius: 2em;
    font-weight: bold;
}

.clinic-name {
    margin: 1em 0;
    font-size: 2.8rem;
    font-weight: bold;
}

.clinic-text {
    line-height: 2;
}

.clinic-tags {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.clinic-tag {
    padding: 10px 12px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    background-color: var(--site-color-blue);
    border-radius: 5px;
}

.clinic-movie {
    width: 500px;
}

.swiper {
    padding-bottom: 40px !important;
}

.swiper-pagination {
    bottom: 0 !important;
}

.play {
    position: relative;
    display: block;
    transition: all 0.1s ease;
}

.play::after {
    content: "";
    position: absolute;
    display: block;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url("../img/play_btn.svg");
    filter: drop-shadow(0 0 10px rgba(0 0 0 / 1.0));
}

.play img {
    filter: brightness(0.9);
    transition: all 0.1s ease;
}

@media (hover: hover) {
    .play:hover {
        filter: opacity(1.0);
    }
    .play:hover img {
        filter: brightness(1.0);
    }
}

.alignment-slider {
    margin-top: 90px;
}

.alignment-slider .swiper-slide {
    width: 200px !important;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(204 219 230 / 0.3);
    overflow: hidden;
}

.alignment-slider .alignment-type-text {
    background: #f5f5f5;
    text-align: center;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    width: 200px !important;
    background: linear-gradient(#36989c, #308dc2);
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
    line-height: 2;
}

.alignment-list {
    transition-timing-function: linear;
}



/* form */
#inquiry {
    padding: 90px 0 120px 0;
    /* background: #eff3f7; */
    /* color: var(--site-bg); */
}

.inquiry-head {
    margin-bottom: 45px;
    text-align: center;
    font-size: 3.0rem;
    font-weight: bold;
    line-height: 1.5;
}

.inquiry-text {
    text-align: center;
}

.inquiry-cost {
    padding: 20px;
    margin-top: 35px;
    background: #d2e2eb;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

#inquiry .inquiry-cost span {
    font-size: 13px;
}

#form {
    padding: 0 100px;
}

#form input[type=text] {
    padding: 1.0em 1.25em;
    border: 1px solid #c3ced5;
    border-radius: 5px;
}

#form input[type=text]:focus {
    border: 1px solid #7d919d;
}

#form input::placeholder {
    color: #ccc;
}

.form-box-wrap {
    margin-top: 40px;
}

.form-box:not(:last-of-type) {
    margin-bottom: 15px;
}

.form-label-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-label-wrap input[type=radio] {
    display: none;
}

.form-label-box {
    display: flex;
    flex-direction: column;
    width: calc((100% - 30px) / 2);
}

.form-label-text {
    margin-top: 10px;
    font-size: 1.4rem;
    line-height: 1.7;
    color: #666;
}

.form-label {
    position: relative;
    /* width: calc((100% - 15px) / 2); */
    width: 100%;
    padding: 25px 25px 25px 60px;
    margin: 0;
    font-size: 1.8rem;
    font-weight: bold;
    background-color: transparent;
    /* color: var(--site-color-blue); */
    /* box-shadow: 0 0 0 1px #75cceb; */
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.1s ease;
}

.form-label[for=input-clinic] {
    color: var(--site-color-blue);
    box-shadow: 0 0 0 1px var(--site-color-blue);
}

.form-label[for=input-place] {
    color: var(--site-color-green);
    box-shadow: 0 0 0 1px var(--site-color-green);
}

@media (hover: hover) {
    .form-label[for=input-clinic]:hover {
        box-shadow: 0 0 0 1px var(--site-color-blue);
        background-color: #e7f2f8;
    }

    .form-label[for=input-place]:hover {
        box-shadow: 0 0 0 1px var(--site-color-green);
        background-color: #e7f2f8;
    }
}

.form-label::before {
    content: "";
    position: absolute;
    display: block;
    width: 24px;
    height: 24px;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    border-radius: 12px;
    transition: all 0.1s ease;
}

.form-label[for=input-clinic]::before {
    background-color: var(--site-color-blue);
    box-shadow: 0 0 0 1px var(--site-color-blue) inset, 0 0 0 20px #fff inset;
}

.form-label[for=input-place]::before {
    background-color: var(--site-color-green);
    box-shadow: 0 0 0 1px var(--site-color-green) inset, 0 0 0 20px #fff inset;
}

input[type=radio]:checked + .form-label[for=input-clinic] {
    box-shadow: 0 0 0 1px var(--site-color-blue);
    background-color: var(--site-color-blue);
    color: #fff;
}

input[type=radio]:checked + .form-label[for=input-clinic]::before {
    background-color: var(--site-color-blue);
    box-shadow: 0 0 0 5px #fff inset;
}

input[type=radio]:checked + .form-label[for=input-place] {
    box-shadow: 0 0 0 1px var(--site-color-green);
    background-color: var(--site-color-green);
    color: #fff;
}

input[type=radio]:checked + .form-label[for=input-place]::before {
    background-color: var(--site-color-green);
    box-shadow: 0 0 0 5px #fff inset;
}

.form-box input[type=text] {
    width: 100%;
}

.form-button-box {
    margin-top: 35px;
    text-align: center;
}

.form-button-box {
    text-align: center;
}

.form-btn {
    display: inline-flex;
    justify-content: center;
    gap: 0 15px;
    padding: 1.15em 2.5em 1.15em 2.75em;
    min-width: 360px;
    font-size: 2.0rem;
    font-weight: bold;
    border-radius: 2em;
    border: none;
    letter-spacing: 0.1em;
    cursor: pointer;
}

.form-btn::after {
    width: 16px;
    height: 16px;
}

@media (hover: hover) {
    .form-button-box .form-btn:hover {
        opacity: 0.7;
    }
}

#form.loaded {
    display: none;
}

#form-complete {
    display: none;
}

#form.loaded+#form-complete {
    display: block;
}

.form-complete-head {
    margin-top: 30px;
    text-align: center;
}

.form-policy {
    margin-top: 35px;
    text-align: center;
}

.form-policy-text {
    text-align: center;
    font-size: 14px;
}

.form-policy label {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0 7px;
    margin-top: 15px;
    margin-right: 0;
    cursor: pointer;
    font-size: 14px;
}

.form-policy label:has(#form-policy:checked) {
    font-weight: bold;
    color: var(--site-color-blue);
}

#form-policy {
    position: relative;
    margin: 0;
    padding: 0;
    width: 20px;
    height: 20px;
    box-shadow: 0 0 0 1px #aaa inset;
    border-radius: 3px;
    background-color: #fff;
    -webkit-appearance: none;
    appearance: none;
}

#form-policy:checked::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--site-color-blue);
    border-radius: 3px;
}

#form-policy:checked::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 5px;
    top: 4px;
    left: 4px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(-45deg);
    z-index: 1;
}

.form-bottom {
    margin-top: 60px;
    text-align: center;
}

.copyright {
    padding: 30px;
    text-align: center;
    font-size: 1.1rem;
}


@media (max-width: 768px) {
    html {
        font-size: 9px;
    }

    br.smpbr {
        display: inline !important;
    }

    .header-nav li:first-of-type {
        display: none;
    }

    #inquiry {
        padding: 90px 0;
    }

    #form {
        padding: 0;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 8px;
    }

    .header-wrap {
        position: relative;
        padding: 15px 0;
    }

    .header-logo img {
        height: 32px;
        width: auto;
    }

    .main-wrap {
        min-height: 100vw;
        background-image: url("../img/main_s.jpg");
        background-size: contain
    }

    .main-title {
        bottom: 45px;
        font-size: 3.2rem;
        position: absolute;
        width: 100%;
        height: auto;
        padding: 0 7.5vw;
    }

    .main-title-date {
        margin-top: 20px;
        font-size: 2.0rem;
    }

    .nav-wrap {
        padding: 0 5vw;
    }

    .nav-list {
        gap: 5vw;
        align-items: flex-start;
    }

    .nav-list li {
        width: calc((100% - 5vw) / 2);
    }

    .nav-type {
        font-size: 1.4rem;
    }

    .nav-btn {
        padding: calc(30px + 5vw) 5vw 40px 5vw;
    }

    .nav-text {
        font-size: 16px;
        line-height: 1.5;
    }

    .nav-btn::after {
        width: 16px;
        height: 16px;
        bottom: 16px;
    }

    .nav-bottom {
        margin-top: 12px;
        font-size: 11px;
        text-align: left;
    }

    #about {
        margin-top: 50px;
    }

    .about-head {
        margin-bottom: 30px;
        font-size: 2.8rem;
    }

    .about-head span {
        margin-top: 15px;
        font-size: 1.1rem;
    }

    .about-text {
        text-align: left;
    }

    .about-text br {
        display: none;
    }

    .about-img {
        margin: 30px 0;
        padding: 5vw;
    }

    .about-img img {
        width: 100%;
        height: auto;
    }

    #clinic {
        margin-top: 60px;
    }

    .clinic-head {
        gap: 5vw;
        font-size: 2.4rem;
    }

    .clinic-box-wrap {
        margin-top: 30px;
    }

    .clinic-box {
        flex-direction: column;
        gap: 10vw;
        padding: 6.5vw;
        border-radius: 10px;
    }

    .clinic-box:not(:last-of-type) {
        margin-bottom: 30px;
    }

    .clinic-location {
        font-size: 1.6rem;
    }

    .clinic-name {
        font-size: 2.4rem;
    }

    .clinic-tags {
        gap: 8px;
        margin-top: 15px;
    }

    .clinic-tag {
        padding: 8px 10px;
        font-size: 1.4rem;
        border-radius: 3px;
    }

    .clinic-movie {
        width: 100%;
    }

    .swiper {
        padding-bottom: 30px !important;
    }

    .play::after {
        width: 80px;
        height: 80px;
        background-size: contain;
    }

    .alignment-slider {
        margin-top: 45px;
    }

    .alignment-slider.swiper {
        padding-bottom: 0 !important;
    }

    .alignment-slider .swiper-slide {
        width: 150px !important;
        height: 150px;
    }

    .alignment-slider .alignment-type-text {
        height: 150px;
        width: 150px !important;
        font-size: 1.6rem;
    }

    /*form*/
    #inquiry {
        padding: 60px 0;
    }

    .inquiry-head {
        margin-bottom: 20px;
        font-size: 18px;
        line-height: 1.5;
    }

    .inquiry-text {
        font-weight: normal;
        text-align: left;
    }

    .inquiry-text br {
        display: none;
    }

    .inquiry-cost {
        padding: 15px;
        margin-top: 25px;
        font-size: 16px;
    }

    .form-box-wrap {
        margin-top: 25px;
    }

    .form-box:not(:last-of-type) {
        margin-bottom: 10px;
    }

    #form input[type=text] {
        padding: 0.75em 1.0em;
        font-size: 16px;
    }

    .form-policy-text {
        line-height: 1.5;
        text-align: left;
    }

    .form-button-box {
        margin-top: 20px;
    }

    .form-btn {
        /* display: block; */
        width: 100%;
        min-width: 100%;
        padding: 17px 0 19px 0;
        font-size: 16px;
    }

    .form-label-wrap {
        flex-direction: column;
        gap: 10px;
    }

    .form-label {
        width: 100%;
        padding: 20px 25px 20px 60px;
        font-size: 1.8rem;
    }

    .photo-box {
        padding-top: 80%;
    }
}