@charset "UTF-8";

.top_hero {
    width: 100%;
    height: 100vh;
    position: relative;

}

.top_hero .logo {
    width: 600px;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.top_hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}



@media screen and (max-width: 520px) {
    .top_hero .logo {
        width: 80%;
    }
}


.sub_hero {
    width: 100%;
    height: 300px;
    position: relative;
    margin-bottom: 100px;
}

.sub_hero .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}







.page_top .read {
    padding: 0 0 80px;
    background-color: #fff;
}

.page_top .read .ttl_obj {
    display: block;
    width: 420px;
    margin: 0 auto;
}

.page_top .read p {
    text-align: center;
    margin-top: 35px;
}


@media screen and (max-width: 520px) {
    .page_top .read {
        padding: 0 5% 50px;
    }

    .page_top .read .ttl_obj {
        width: 90%;
    }
}


/* --------------------------point */
.page_top .point {
    padding: 65px 0 250px;
    background-color: #EAF4FF;
}

.page_top .point h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 55px;
}

.page_top .point h2 span {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 20px;
}

.page_top .point .point_block {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.page_top .point .point_block:nth-child(odd) {
    flex-direction: row-reverse;
}

.page_top .point .point_block+.point_block {
    margin-top: 50px;
}

.page_top .point .point_block .thumb {
    width: 55%;
}

.page_top .point .point_block .text {
    width: 40%;
}

.page_top .point .point_block .text .point_num {
    font-family: 'Annie Use Your Telescope', cursive;
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.page_top .point .point_block .text h3 {
    font-size: 3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.page_top .point .point_block .text .attention {
    display: block;
    font-size: 1.3rem;
    line-height: 1.4;
    margin-top: 20px;
}

.page_top .point .point_block .text .attention a {
    font-size: 1.3rem;
    color: #105682;
}


@media screen and (max-width: 520px) {
    .page_top .point {
        padding: 50px 5% 200px;
    }

    .page_top .point h2 {
        font-size: 2.5rem;

    }

    .page_top .point h2 span {

        font-size: 2rem;

    }

    .page_top .point .point_block,
    .page_top .point .point_block:nth-child(odd) {
        flex-direction: column;
        gap: 20px;
    }

    .page_top .point .point_block .thumb,
    .page_top .point .point_block .text {
        width: 100%;
    }

    .page_top .point .point_block .text .point_num {

        font-size: 2rem;

        margin-bottom: 15px;

    }

    .page_top .point .point_block .text h3 {

        font-size: 2.5rem;

    }

}


/* --------------------------plan */
.page_top .plan {
    margin-top: -150px;
    padding: 250px 0 100px;
    background-color: #fff;

}

.page_top .plan .plan_block {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 50px;
}

.page_top .plan .plan_block .thumb {
    width: 52%;
}

.page_top .plan .plan_block .info {
    width: 48%;
    padding: 0 30px
}

.page_top .plan .plan_block .info h3 {
    font-size: 2rem;
    margin-top: 15px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 35px;
}

.page_top .plan .plan_block .info p.comingsoon {
    font-size: 2.5rem;
    color: #000;
    font-weight: 600;
    margin-top: 50px;
    text-align: center;
}

.page_top .plan .plan_block .info dl {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.page_top .plan .plan_block .info dl+dl {
    margin-top: 10px;
}

.page_top .plan .plan_block .info .price_container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 35px;
    margin-bottom: 10px;
    border-bottom: 1px solid #000;
    padding-bottom: 25px;
}

.page_top .plan .plan_block .info .price_container .price {
    width: 48%;
}

.page_top .plan .plan_block .info .price_container .price h4 {
    width: 100%;
    color: #fff;
    background-color: #000;
    padding: 12px 0;
    text-align: center;
    margin-bottom: 10px;
}

.page_top .plan .plan_block .info .price_container .price ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.page_top .plan .plan_block .info .price_container .price ul li {
    width: 100%;
    font-size: 1.6rem;
    letter-spacing: .05em;
    font-weight: 500;
    text-align: center;
}

.page_top .plan .plan_block .info a.medical_report {
    display: inline-block;
    text-align: center;
    border: 1px solid #000;
    color: #000;
    background-color: #fff;
    padding: 12px 30px;
    margin-top: 15px;
}


@media screen and (max-width: 520px) {
    .page_top .plan {
        margin-top: -75px;
        padding: 100px 5% 50px;
    }

    .page_top .plan .plan_block {
        flex-direction: column;
        margin-top: 50px;
    }

    .page_top .plan .plan_block .info {
        display: contents;
        /* .infoの中身を.plan_blockの直接の子要素として扱う */
    }

    .page_top .plan .plan_block .info>h3 {
        order: -1;
        /* 見出しを一番上に配置 */
        width: 100%;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .page_top .plan .plan_block .thumb {
        order: 0;
        /* 画像を二番目に配置 */
        width: 100%;
        margin-bottom: 20px;
    }

    .page_top .plan .plan_block .info>*:not(h3) {
        order: 1;
        /* 見出し以外の要素を画像の下に配置 */
        width: 100%;
    }

    /* aタグ(ボタン)の幅が100%にならないように上書き */
    .page_top .plan .plan_block .info>a {
        width: auto;
    }

    .page_top .plan .plan_block .info .price_container .price {
        width: 100%;
    }
}


/* --------------------------rental */
.page_top .rental {
    padding: 100px 0;
    background-color: #fcfcfc;
}

.page_top .rental h2 {
    text-align: center;
}

.page_top .rental h2 span {
    background-color: #000;
    color: #fff;
    padding: 7.5px 50px;
}

.page_top .rental p {
    text-align: center;
    margin-top: 30px;
    font-size: 1.6rem;
}

.page_top .rental .rental_table {
    width: 100%;
    max-width: 800px;
    margin: 50px auto 0;
    border-collapse: collapse;
}

.page_top .rental .rental_table th,
.page_top .rental .rental_table td {
    padding: 15px 10px;
    border-bottom: 1px solid #ddd;
    line-height: 1.5;
}

.page_top .rental .rental_table th {
    text-align: left;
    font-size: 2rem;
    padding-top: 30px;
}

.page_top .rental .rental_table td:nth-child(1) {
    width: 70%;
}

.page_top .rental .rental_table td:nth-child(2) {
    width: 30%;
    text-align: right;
    font-size: 1.6rem;
    font-weight: 500;
}


@media screen and (max-width: 520px) {
    .page_top .rental {
        padding: 50px 5%;
    }

    .page_top .rental .rental_table th {
        font-size: 1.6rem;
    }

    .page_top .rental .rental_table td {
        display: block;
        width: 100% !important;
        text-align: left !important;
        border: none;
    }

    .page_top .rental .rental_table tr {
        border-bottom: 1px solid #ddd;
    }

    .page_top .rental .rental_table td:nth-child(1) {
        padding-bottom: 5px;
    }

    .page_top .rental .rental_table td:nth-child(2) {
        padding-top: 5px;
        text-align: left !important;
    }
}


/* --------------------------contact */
.page_top .contact {
    padding: 100px 0;
    background-color: #EAF4FF;
    /* 青系背景 */
}

.page_top .contact h2 {
    text-align: center;
}

.page_top .contact h2 span {
    background-color: #000;
    color: #fff;
    padding: 7.5px 50px;
}

.page_top .contact .contact_sub_ttl {
    text-align: center;
    margin-top: 30px;
    font-size: 1.6rem;
    font-weight: 500;
}

.page_top .contact .contact_btn_wrap {
    max-width: 600px;
    margin: 50px auto 0;
    text-align: center;
}

.page_top .contact .contact_btn_wrap .contact_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    transition: opacity 0.3s, transform 0.3s;
}

.page_top .contact .contact_btn_wrap .contact_btn:hover {
    opacity: 0.8;
    transform: translateY(-3px);
}

.page_top .contact .contact_btn_wrap .contact_btn.reserve_btn {
    background: linear-gradient(135deg, #7ec9e6, #5A9EB4);
}

.page_top .contact .contact_btn_wrap .line_txt {
    margin: 40px 0 15px;
    font-size: 1.6rem;
    font-weight: 500;
}

.page_top .contact .contact_btn_wrap .contact_btn.line_btn {
    background-color: #06C755;
}

.page_top .contact .contact_btn_wrap .contact_btn.line_btn img {
    height: 30px;
    width: auto;
    margin-right: 15px;
}

@media screen and (max-width: 520px) {
    .page_top .contact {
        padding: 50px 5%;
    }

    .page_top .contact .contact_btn_wrap .contact_btn {
        font-size: 1.6rem;
        padding: 15px;
    }
}

/* --------------------------spot */
.page_top .spot {
    padding: 100px 0 100px;
    background-color: #fff;

}

.page_top .spot .container {
    display: flex;
    flex-wrap: wrap;
    gap: 3.333%;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.page_top .spot .container .item {
    width: 30%;
    text-align: center;
}

.page_top .spot .container .item .thumb {
    width: 100%;
}

.page_top .spot .container .item h3 {
    font-size: 2rem;
    margin-top: 15px;
    text-align: center;
    font-weight: 500;
}

.page_top .spot .container .item .area {
    display: inline-block;
    margin-top: 10px;
    font-size: 1.5rem;
    background-color: #000;
    color: #fff;
    padding: 5px 30px 8px;
    border-radius: 10px;
}


@media screen and (max-width: 520px) {
    .page_top .spot {
        padding: 75px 5% 50px;
    }

    .page_top .spot .container .item {
        width: 100%;
        margin-bottom: 50px;
    }
}


/* --------------------------wave */
.page_top .read_wave {
    width: 100%;
    line-height: 0;
    margin-top: -100px;
    /* 波の高さに合わせて調整 */
    position: relative;
    z-index: 1;
}

.page_top .read_wave svg {
    width: 100%;
    height: 150px;
}

/* --------------------------news */
.page_top .news {
    padding: 100px 0 100px;
    background-color: #EAF4FF;

}


.page_top .news .container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 50px;
}

.page_top .news .container .news_index {
    width: calc(50% - 25px);
}

.page_top .news .container .insta_feed {
    width: calc(50% - 25px);
}

.page_top .news .container .news_index article {
    border-bottom: 1px solid #000;
    padding: 10px 5px;
}

.page_top .news .container .news_index article .meta {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 10px;
    color: #B5B5B5;
}

.page_top .news .container .news_index article .ttl {
    font-size: 1.5rem;
    line-height: 1.4;
}

.page_top .news .container .news_index .wave_btn {
    margin-top: 50px;
    position: relative;
    left: 30px;
}


@media screen and (max-width: 520px) {
    .page_top .news {
        padding: 50px 5% 50px;
    }

    .page_top .news .container .news_index,
    .page_top .news .container .insta_feed {
        width: 100%;
    }

    .page_top .news .container .wave_btn {
        margin-top: 30px;
        left: 0;
    }
}


/* --------------------------blog slider */
.page_top .blog {
    padding: 0 0 250px;
    background-color: #EAF4FF;
}

.page_top .blog_slider {
    width: 100%;
    margin-top: 55px;
}

.page_top .blog_slider article {
    background: #E6E6E6;
}

.page_top .blog_slider article a {
    display: block;
    text-decoration: none;
    color: #000;
}

.page_top .blog_slider article .thumb {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-bottom: 10px;
}

.page_top .blog_slider article .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page_top .blog_slider article .text_area {
    padding: 15px;
}

.page_top .blog_slider article .meta_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.page_top .blog_slider article .category {
    background-color: #5880BB;
    color: #fff;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 1.2rem;
}

.page_top .blog_slider article .meta {
    font-size: 1.2rem;
    color: #707070;
}

.page_top .blog_slider article .ttl {
    font-size: 1.5rem;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.page_top .blog .wave_btn {
    margin-top: 50px;
    position: relative;
    right: 30px;
}


@media screen and (max-width: 520px) {
    .page_top .blog {
        padding: 50px 5% 200px;
    }

    .page_top .blog .wave_btn {
        right: 0;
    }
}


/* --------------------------guide */

.page_top .guide {
    margin-top: -150px;
    padding: 250px 0 75px;
    background-color: #fff;
}

.page_top .guide .guide_info {
    width: 90%;
    margin: 35px 0 75px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.page_top .guide .guide_info .thumb {
    width: 40%;
}

.page_top .guide .guide_info .txt {
    width: 55%;
}

.page_top .guide .guide_info .txt .catch {
    font-size: 2rem;
    margin-bottom: 35px;
    letter-spacing: 0em;
    font-weight: 700;
    position: relative;
    left: -10px
}

.page_top .guide .guide_info .txt .guide_meta .lisence {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.page_top .guide .guide_info .txt .guide_meta .name {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page_top .guide .guide_info .txt .guide_meta .name_en {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #105682;
    font-weight: 500;
    line-height: 1;
}

.page_top .guide .logo_message {
    margin-bottom: 50px;
}

.page_top .guide .logo_message img {
    display: block;
    width: 20%;
    margin: 0 auto 75px;
}

.page_top .guide .logo_message p {
    width: 80%;
    margin: 0 auto;
}

.page_top .guide .history {
    width: 80%;
    margin: 0 auto;
    padding: 35px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
    align-items: center;
    position: relative;
}

.page_top .guide .history::before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background-color: #105682;
    position: absolute;
    top: 0;
    left: 38%;
}

.page_top .guide .history .ttl {
    width: 40%;
    letter-spacing: .45em;
}

.page_top .guide .history .ttl h3 {
    font-size: 3rem;
    text-align: center;
}

.page_top .guide .history .ttl h3 span {
    display: block;
    font-size: 1.6rem;
    letter-spacing: 0em;
    margin-top: 10px;
    font-weight: 400;
}

.page_top .guide .history .details {
    width: 55%;
}

.page_top .guide .history .details p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.page_top .guide .history .details dl {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
}

.page_top .guide .history .details dt {
    width: 20%;
    line-height: 1.5;
}

.page_top .guide .history .details dd {
    width: 80%;
    line-height: 1.5;
}


@media screen and (max-width: 520px) {
    .page_top .guide {
        margin-top: -50px;
        padding: 150px 5% 50px;
    }

    .page_top .guide .guide_info {
        width: 100%;
        flex-direction: column;
        gap: 20px;
        margin: 30px 0;
    }

    .page_top .guide .guide_info .thumb,
    .page_top .guide .guide_info .txt {
        width: 70%;
        text-align: center;
    }

    .page_top .guide .guide_info .txt .catch {
        left: 0;
    }

    .page_top .guide .logo_message img {
        width: 50%;
        margin-bottom: 30px;
    }

    .page_top .guide .logo_message p {
        width: 100%;
    }

    .page_top .guide .history {
        width: 100%;
        flex-direction: column;
        gap: 30px;
    }

    .page_top .guide .history::before {
        display: none;
    }

    .page_top .guide .history .ttl,
    .page_top .guide .history .details {
        width: 100%;
    }

    .page_top .guide .history .details dt {
        width: 30%;
        line-height: 1.5;
    }

    .page_top .guide .history .details dd {
        width: 70%;
        line-height: 1.5;
    }

}


/* --------------------------faq */

.page_top .faq {
    padding: 75px 0;
    background-color: #F3F3F3;
}

.page_top .faq .faq_block {
    width: 100%;
    margin: 50px auto 0;
}

.page_top .faq .faq_cat_ttl {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin: 60px 0 25px;
    padding-left: 15px;
    border-left: 5px solid #00B2FF;
    line-height: 1;
}

.page_top .faq .faq_cat_ttl:first-child {
    margin-top: 0;
}

.page_top .faq .faq_item {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.page_top .faq .faq_item+.faq_item {
    margin-top: 20px;
}

.page_top .faq .faq_q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.page_top .faq .faq_q h3 {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.4;
    padding-right: 40px;
}

.page_top .faq .faq_q .arrow {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.page_top .faq .faq_q .arrow::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #555;
    border-right: 2px solid #555;
    transform: rotate(45deg);
    position: absolute;
    top: 2px;
    left: 4px;
}

.page_top .faq .faq_item.active .faq_q .arrow {
    transform: rotate(180deg);
}

.page_top .faq .faq_a {
    display: none;
    padding-top: 20px;
    border-top: 1px solid #eee;
    margin-top: 20px;
}

.page_top .faq .faq_a p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #666;
}

.page_top .faq .faq_a p a {
    color: #00B2FF;
}


@media screen and (max-width: 520px) {
    .page_top .faq {
        padding: 50px 5%;
    }

    .page_top .faq .faq_block {
        width: 100%;
    }

    .page_top .faq .faq_q h3 {
        font-size: 1.6rem;

    }

    .page_top .faq .faq_cat_ttl {
        font-size: 2rem;

    }

}


/* --------------------------wave_section */

.page_top .wave_section {
    position: relative;
    margin-top: -150px;
    width: 100%;
    aspect-ratio: 1440 / 412;
    overflow: hidden;
}


.page_top .wave_section .video_wrap {
    width: 100%;
    height: 100%;
    clip-path: url(#waveClip);
    -webkit-clip-path: url(#waveClip);
}

.page_top .wave_section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page_top .wave_section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0 30%;
}

.page_top .wave_section svg {
    display: block;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 520px) {
    .page_top .wave_section {
        aspect-ratio: 1440 / 770;
    }

}