@charset "utf-8";

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0em;
    color: #333333;
}

/* -----------icomoon-----------*/
img {
    width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    display: block;
}

.sp {
    display: block;
}

.pc {
    display: none;
}

/* -----------共通-----------*/
.hover_btn {
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
}
@media (any-hover: hover) {
    .hover_btn:hover {
        transform: translateY(0.3rem);
    }
}

.sec_container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 部分文字装飾 */
.text_50_bold {
    font-size: 2.2rem;
    font-weight: bold;
}
.text_70_bold {
    font-size: 2.6rem;
    font-weight: bold;
    line-height: 1;
}
.yellow_text {
    color: #FFE100;
}

/* セクションタイトル */
.sec_title_wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    position: relative;
    color: #fff;
}
.sec_title_sub {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    line-height: 1;
    font-weight: bold;
    position: relative;
    background: linear-gradient(to top, #3AA1D9 40%, transparent 40%, transparent 100%);
}
.sec_title_main {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
}
.sec_title_sub::after {
    content: '／';
    font-size: 3rem;
    position: absolute;
    top: 50%;
    right: -0.2rem;
    transform: translate(100%, -50%);
}
.sec_title_sub::before {
    content: '＼';
    font-size: 3rem;
    position: absolute;
    top: 50%;
    left: -0.2rem;
    transform: translate(-100%, -50%);
}


/* -----------SP header-----------*/
.header_container {
    width: 100%;
    height: 6.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem min(3.1rem, 1.5vw) 1.2rem;
    position: -webkit-sticky;
    position: sticky;
    z-index: 1000;
    box-sizing: border-box;
    background: #fff;
}

.header_logo {
    display: block;
}

.header_logo_img {
    width: 6rem;
    display: block;
    -o-object-fit: contain;
       object-fit: contain;
}

.header_menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100vw;
    height: 100vh;
    position: fixed;
    inset: 0;
    z-index: -10;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.header_menu.active {
    transform: translateX(0);
}

.header_menu_nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header_menu_btn {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    cursor: pointer;
    margin: 0 1rem 0 2rem;
}

.header_menu_btn span {
    width: 2rem;
    height: 2px;
    background: #313C55;
}

.header_menu_nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header_menu_nav ul {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 3rem;
    margin: 0 min(2rem, 1vw);
}

.header_menu nav ul li a {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 2.2rem;
    color: #313C55;
}

.header_btn {
    width: 19rem;
    height: 5.6rem;
    border-radius: 0.6rem;
    font-weight: bold;
    text-align: center;
    position: relative;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_btn.tel_btn {
    border: 2px solid #0071B9;
    color: #0071B9;
    line-height: 2rem;
}
.header_btn_num {
    font-size: 2rem;
    display: inline-block;
}

.header_btn.line_btn {
    background: #00B900;
    border: 2px solid #00B900;
    color: #fff;
    line-height: 1.8rem;
}
.header_btn_line {
    font-size: 2.2rem;
    display: inline-block;
}

.header_btn.form_btn {
    background: #FFE100;
    border: 2px solid #FFE100;
    color: #344031;
}
.header_btn_form {
    font-size: 2.2rem;
}
.header_btn_form_sub {
    font-size: 1.4rem;
}

.header_btn_arrow {
    width: 2rem;
    aspect-ratio: 1/1;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
}
.header_btn_arrow::after {
    content: '';
    width: 3px;
    height: 3px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg) skew(20deg, 20deg);
}
.header_btn.line_btn .header_btn_arrow::after {
    border-top: 1.5px solid #00B900;
    border-right: 1.5px solid #00B900;
}
.header_btn.form_btn .header_btn_arrow::after {
    border-top: 1.5px solid #FFE100;
    border-right: 1.5px solid #FFE100;
}


/* -----------footer-----------*/
.footer {
    background: #0071B9;
    padding: 5.2rem 2rem 3rem;
    color: #fff;
    position: relative;
}

.footer_container {
    max-width: 100rem;
    margin: 0 auto;
}

.footer_container_nav {
    padding: 0 0 5.2rem;
    border-bottom: 1px solid #fff;
}

.footer_container_nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    row-gap: 2rem;
    flex-wrap: wrap;
}
.footer_container_nav ul li {
    width: calc((100% - 2rem) / 3);
}
.footer_container_nav ul li a {
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    text-align: center;
}

.footer_container_title {
    font-size: 2.6rem;
    font-weight: bold;
    text-align: center;
    margin: 2rem auto;
}

.footer_container_info {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    gap: 2rem;
    margin: 0 0 3.2rem;
}

.footer_container_info_text {
    font-size: 1.6rem;
    font-weight: 500;
    text-align: center;
}

.footer_container_note {
    font-weight: 500;
    text-align: center;
    padding: 0 2rem;
}

.footer_container_note_label {
    color: #fff;
    font-weight: 900;
}

.footer small {
    display: block;
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 2.6rem auto 0;
}

.footer .to_top {
    width: 6rem;
    aspect-ratio: 1;
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

/* -----------top mv-----------*/
.top_mv {
    background: #0071B9;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.top_mv_flowing_wrapper {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-animation: mv_flowing 30s linear infinite;
            animation: mv_flowing 30s linear infinite;
}

.top_mv_flowing_text {
    font-size: 1.6rem;
    font-weight: bold;
    text-wrap: nowrap;
    color: #fff;
    padding: 0.8rem 5rem 1.2rem 0;
}

@-webkit-keyframes mv_flowing {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes mv_flowing {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.top_mv_content {
    height: 63svh;
    padding: 0 2rem;
    flex-grow: 1;
}

.top_mv_content_wrapper {
    overflow: hidden;
    position: relative;
    height: 100%;
    border-radius: 2rem;
}

.top_mv_content_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -o-object-fit: cover;
       object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.top_mv_content_bg.bg1 {
    -webkit-animation: bgSlideShow1 12s infinite;
            animation: bgSlideShow1 12s infinite;
    opacity: 1;
    -o-object-position: 20% 50%;
       object-position: 20% 50%;
}

.top_mv_content_bg.bg2 {
    -webkit-animation: bgSlideShow 12s infinite ;
            animation: bgSlideShow 12s infinite ;
}

.top_mv_content_bg.bg3 {
    -webkit-animation: bgSlideShow 12s infinite 3s;
            animation: bgSlideShow 12s infinite 3s;
    -o-object-position: 30% 50%;
    object-position: 30% 50%;
}

.top_mv_content_bg.bg4 {
    -webkit-animation: bgSlideShow 12s infinite 6s;
            animation: bgSlideShow 12s infinite 6s;
}

@-webkit-keyframes bgSlideShow1 {
    0%, 20%, 50%, 100% {
        opacity: 1;
    }
    25%, 45% {
        opacity: 0;
    }
}

@keyframes bgSlideShow1 {
    0%, 20%, 50%, 100% {
        opacity: 1;
    }
    25%, 45% {
        opacity: 0;
    }
}
@-webkit-keyframes bgSlideShow {
    0%, 20%, 50%, 100% {
        opacity: 0;
    }
    25%, 45% {
        opacity: 1;
    }
}
@keyframes bgSlideShow {
    0%, 20%, 50%, 100% {
        opacity: 0;
    }
    25%, 45% {
        opacity: 1;
    }
}

.top_mv_content_main {
    height: 100%;
    position: relative;
    z-index: 10;
    padding: 0.7rem 2rem 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.top_mv_content_award {
    position: absolute;
    top: 0.7rem;
    right: 1rem;
    width: unset;
    height: 8rem;
    -o-object-fit: contain;
       object-fit: contain;
}

.top_mv_content_character {
    position: absolute;
    bottom: 0.7rem;
    left: -10rem;
    width: 10rem;
    -o-object-fit: contain;
       object-fit: contain;
    -webkit-animation: moveRightLoop 5s linear infinite;
            animation: moveRightLoop 5s linear infinite;
}

@-webkit-keyframes moveRightLoop {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(120vw); /* 画面外までしっかり出す */
    }
  }

@keyframes moveRightLoop {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(120vw); /* 画面外までしっかり出す */
    }
  }

.top_mv_content_text {
    width: min(76rem, 100%);
    font-weight: bold;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin: 6rem 0 1rem;
}

.top_mv_content_text_blue {
    display: inline-block;
    background: rgba(0, 113, 185, 0.8);
    font-size: 2rem;
    text-shadow: 6px 6px 0 rgba(0, 0, 0, 0.25);
    position: relative;
    padding: 0 1rem;
}

.top_mv_content_text_blue_large {
    font-size: 3rem;
}

.top_mv_content_title {
    width: 20rem;
    height: unset;
    -o-object-fit: contain;
       object-fit: contain;
}

.top_mv_cta {
    height: calc(100svh - 6.2rem - 4.4rem - 63svh);
    min-height: 12rem;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem 1.6rem;
}

.top_mv_cta_wrapper {
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    background: #fff;
    border-radius: 1rem;
    padding: 1.4rem 1rem;
    display: flex;
    flex-direction: row;
    gap: 1.6rem;
    align-items: center;
    justify-content: space-between;
    letter-spacing: 0.96px;
    box-sizing: border-box;
}

.top_mv_cta_tel {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.top_cta_btn {
    width: 19rem;
    height: 5.6rem;
    border-radius: 0.6rem;
    font-weight: bold;
    text-align: center;
    position: relative;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top_cta_btn.tel_btn {
    border: 2px solid #0071B9;
    color: #0071B9;
    line-height: 2rem;
    box-shadow: 4px 4px 0 #0071b9;
}

.top_cta_btn_num {
    font-size: clamp(1rem, 5vw, 3rem);
    display: inline-block;
}

.top_mv_cta_tel_text {
    font-size: clamp(1.2rem, 1.4vw, 1.6rem);
    font-weight: bold;
    line-height: 2.4rem;
    color: #344031;
    text-align: center;
    flex-shrink: 0;
}

.top_mv_cta_tel_text_main {
    font-size: clamp(2rem, 2.4vw, 3rem);
}
.top_mv_cta_tel_text_sub {
    font-size: clamp(1.8rem, 1.8vw, 2.2rem);
}
.top_mv_cta_tel_text_blue {
    color: #3A7FA7;
    line-height: 1;
    position: relative;
}

.top_mv_cta_tel_num {
    font-size: clamp(1.8rem, 3.4vw, 2.4rem);
    font-weight: bold;
    line-height: 2.8rem;
    color: #344031;
    white-space: nowrap;
}

.top_mv_cta_btn_wrapper {
    width: 48%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
    margin: 0 1rem 0 0;
}

.top_mv_cta_btn_wrapper__container .top_mv_cta_tel {
    width: 100%;
}

.top_cta_btn {
    width: 100%;
    height: 5.6rem;
    border-radius: 0.6rem;
    font-weight: bold;
    text-align: center;
    position: relative;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top_cta_btn.line_btn {
    background: #00B900;
    border: 2px solid #00B900;
    color: #fff;
    line-height: 1.5;
    box-shadow: 4px 4px 0 #017E01;
}

.top_cta_btn.line_btn .top_cta_btn_line {
    font-size: clamp(2.8rem, 2.8vw, 3.4rem);
    line-height: 3.3rem;
    display: inline-block;
}
.top_cta_btn.line_btn .top_cta_btn_line_sub {
    font-size: 2.2rem;
    line-height: 3.3rem;
}

.top_cta_btn.form_btn {
    background: #FFE100;
    border: 2px solid #FFE100;
    color: #344031;
    box-shadow: 5px 4px 0 #D4BB00;
}
@media (any-hover: hover) {
    .top_cta_btn:hover {
        box-shadow: unset;
    }
}

.top_cta_btn.form_btn .top_cta_btn_form {
    font-size: clamp(2.4rem, 2.4vw, 3rem);
}
.top_cta_btn.form_btn .top_cta_btn_form_sub {
    font-size: 2.2rem;
}

.top_cta_btn_arrow {
    display: none;
    width: 3rem;
    aspect-ratio: 1/1;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
}
.top_cta_btn_arrow::after {
    content: '';
    width: 5px;
    height: 5px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg) skew(20deg, 20deg);
}
.top_cta_btn.line_btn .top_cta_btn_arrow::after {
    border-top: 2px solid #00B900;
    border-right: 2px solid #00B900;
}
.top_cta_btn.form_btn .top_cta_btn_arrow::after {
    border-top: 2px solid #FFE100;
    border-right: 2px solid #FFE100;
}

/* -----------top worries-----------*/
.top_worries {
    background: #4278B0;
    padding: 0 0 7.4rem;
    position: relative;
    overflow-x: hidden;
}

.top_worries_label {
    background: #588FC9;
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    padding: 1rem 0;
    letter-spacing: 0.04em;
    position: relative;
}
.top_worries_label:before {
    content: '';
    display: block;
    width: 12rem;
    height: 3rem;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
            clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: #588FC9;
    position: absolute;
    bottom: 0.1rem;
    left: 50%;
    transform: translate(-50%, 100%);
}

.top_worries_character {
    width: 10rem;
    -o-object-fit: contain;
       object-fit: contain;
    position: absolute;
    bottom: 0;
    left: calc(50% + 10rem);
}

.top_worries_wrapper {
    position: relative;
    z-index: 10;
}

.top_worries_points_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 2rem;
    margin: 5rem auto 16rem;
}

.top_worries_points {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.top_worries_points_item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top_worries_points_image {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 2rem;
    -o-object-fit: contain;
       object-fit: contain;
}

.top_worries_points_text {
    font-size: 1.8rem;
    font-weight: bold;
    flex-grow: 1;
    color: #fff;
}

.top_worries_image {
    max-width: 26rem;
    margin: 0 auto 2rem;
}

.top_worries_solution {
    background: #fff;
    border-right: 5px solid #4278B0;
    border-bottom: 5px solid #4278B0;
    border-left: 5px solid #4278B0;
    padding: 2rem;
    position: relative;
    display: flex;
    justify-content: center;
    gap: 6rem;
}

.top_worries_solution_image {
    width: 16rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: -1;
}

.top_worries_solution_image_img {
    width: 100%;
    position: absolute;
    bottom: -5rem;
}

.top_worries_solution_text {
    width: 100%;
    position: relative;
    font-weight: bold;
}

.top_worries_solution_text_main {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    padding: 0.4rem 1.6rem;
    background: #4278B0;
    color: #fff;
    font-size: 2.6rem;
    margin: 1.2rem 0 1.8rem;
}

.top_worries_bg {
    height: 20rem;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* -----------top service-----------*/
.top_service {
    background: #EEEEEE;
}

.top_service_label {
    background: #E2E2E2;
    padding: 5.8rem 0 14rem;
    position: relative;
}

.top_service_label_wrap {
    max-width: 140rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    gap: 2rem;
    margin: 0 auto;
}

.top_service_label_text_wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    position: relative;
}

.top_service_label_text_sub {
    line-height: 1;
    font-weight: bold;
    position: relative;
    background: linear-gradient(to top, #FFEE6B 40%, transparent 40%, transparent 100%);
}
.top_service_label_text_sub::after {
    content: '／';
    font-size: 2rem;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(100%, -50%);
}
.top_service_label_text_sub::before {
    content: '＼';
    font-size: 2rem;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-100%, -50%);
}

.top_service_label_text_main {
    font-size: 3rem;
    font-weight: 900;
}

.top_service_label_image {
    width: 50%;
    max-width: 20rem;
    position: absolute;
    bottom: -14rem;
    left: 5%;
}

.top_service_label_character {
    width: 50%;
    max-width: 20rem;
    position: absolute;
    bottom: -14rem;
    right: 5%;
}

.top_service_list {
    max-width: 132rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin: 0 auto;
    padding: 6.7rem 2rem;
}

.top_service_list_item {
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
}

.top_service_list_image {
    display: block;
    aspect-ratio: 1.5;
    -o-object-fit: cover;
       object-fit: cover;
}

.top_service_list_title {
    background: #0071B9;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    padding: 0.6rem 0;
}

.top_service_list_text {
    font-size: 1.6rem;
    padding: 2rem;
}

/* -----------top reason-----------*/
.top_reason_label {
    height: 16rem;
    background: url(../img/reason_label_bg.webp) no-repeat center top / cover; 
}

.top_reason_label_wrap {
    height: 100%;
    position: relative;
    font-weight: 900;
    color: #fff;
    display: flex;
    align-items: flex-end;
    /* min-height: 24rem; */
}

.top_reason_label_title {
    width: min(100%, 26rem);
    display: block;
    margin: 0 auto 2rem;
}

.top_reason_label_color {
    position: absolute;
    bottom: 0;
    height: 8%;
}

.top_reason_item_wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-inline: auto;
}

.top_reason_item_num {
    font-family: Impact, 'Noto Sans JP', sans-serif; 
    color: #1DAAF6;
    font-size: 7rem;
    line-height: 1;
}
.top_reason_item:nth-of-type(2) .top_reason_item_num {
    color: #FF9D00;
}
.top_reason_item:nth-of-type(3) .top_reason_item_num {
    color: #1ECA18;
}

.top_reason_container {
    padding: 3.2rem 2rem 7.2rem;
    overflow: hidden;
}

.top_reason_item {
    margin: 0 0 4rem;
}

.top_reason_item_num::after {
    content: "";
    display: block;
    width: calc(100% + 5rem);
    height: 1rem;
    background-color: #1DAAF6;
    margin-top: -1rem;
    margin-left: -5rem;
}
.top_reason_item:nth-of-type(2) .top_reason_item_num::after {
    margin-left: unset;
    margin-right: -5rem;
    background-color: #FF9D00;
}
.top_reason_item:nth-of-type(3) .top_reason_item_num::after {
    margin-left: -5rem;
    margin-right: unset;
    background-color: #1ECA18;
}

.top_reason_item_text {
    width: 100%;
}

.top_reason_item_text_sub {
    color: #1DAAF6;
    margin-top: 2.2rem;
    font-size: 1.8rem;
    font-weight: 900;
}
.top_reason_item:nth-of-type(2) .top_reason_item_text_sub {
    color: #FF9D00;
}
.top_reason_item:nth-of-type(3) .top_reason_item_text_sub {
    color: #1ECA18;
}

.top_reason_item_text_main {
    margin-top: 2rem;
    font-size: 3.4rem;
    font-weight: bold;
    line-height: 1.2;
}

.top_reason_item_text_desc {
    margin-top: 1rem;
    font-size: 1.7rem;
    font-weight: 500px;
}

.top_reason_item_image {
    width: 100%;
}

.top_reason_item_image img{
    display: block;
    width: 100%;
    aspect-ratio: 2;
    -o-object-fit: cover;
       object-fit: cover;
    margin: 2rem -2rem 0 auto;
}
.top_reason_item:nth-of-type(even) .top_reason_item_image img {
    margin: 2rem auto 0 -2rem;
}

.top_reason_item_points {
    width: 100vw;
    background: #3CBBFF;
    padding: 4.3rem 2rem;
    margin: 3rem calc(50% - 50vw) 0;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    z-index: 12;
}
.top_reason_item_points::before {
    content: "";
    width: 70%;
    height: 100%;
    background: #1DAAF6;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-clip-path: polygon(50% 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(50% 0, 100% 0, 100% 100%, 0 100%);
}
.top_reason_item:nth-of-type(2) .top_reason_item_points {
    background: #FF9D00;
}
.top_reason_item:nth-of-type(2) .top_reason_item_points::before {
    background: #FF8903;
}
.top_reason_item:nth-of-type(3) .top_reason_item_points {
    background: #1ECA18;
}
.top_reason_item:nth-of-type(3) .top_reason_item_points::before {
    background: #20BA49;
}

.top_reason_item_points_wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 2.3rem;
    position: relative;
    z-index: 10;
}

.top_reason .points_item {
    width: 100%;
    min-height: 6rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    text-align: center;
    background: #fff;
    border-radius: 1rem;
    padding: 1rem;
    box-sizing: border-box;
}

.top_reason .points_item_num {
    font-size: 1.6rem;
    font-weight: 900;
    color: #3CBBFF;
}
.top_reason .top_reason_item:nth-of-type(2) .points_item_num {
    color: #FF9D00;
}
.top_reason .top_reason_item:nth-of-type(3) .points_item_num {
    color: #1ECA18;
}

.top_reason .points_item_num_count {
    font-size: 3.2rem;
    font-weight: 400;
    font-family: Impact, 'Noto Sans JP', sans-serif;
}

.top_reason .points_item_text {
    width: 20rem;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.2;
    display: flex;
    align-items: center;
    text-align: left;
}

.top_reason .points_item_image {
    display: block;
    width: 12rem;
    position: relative;
    margin: 2rem 0 -4.5rem auto;
}

/* -----------top plan-----------*/
.top_plan {
    background: #4278B0;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.top_plan_bg {
    display: block;
    width: 100%;
    height: 7rem;
    background: #679ED9;
    position: relative;
    z-index: 10;
}
.top_plan_bg::before {
    content: "";
    display: block;
    width: 16rem;
    height: 16rem;
    background: #fff;
    border-radius: 10px;
    position: absolute;
    top: -20px;
    left: 50%;
    z-index: 10;
    transform: translate(-50%, -50%) rotate(-45deg) skew(14deg, 14deg);
}
.top_plan_bg::after {
    content: "";
    display: block;
    width: 16rem;
    height: 16rem;
    background: #679ED9;
    border-radius: 10px;
    position: absolute;
    bottom: -60px;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, 0%) rotate(-45deg) skew(14deg, 14deg);
}

.top_plan_container {
    padding: 14rem 2rem 10rem;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.top_plan_pack {
    max-width: 120rem;
    margin: 3.8rem auto 4.2rem;
    text-align: center;
    color: #fff;
}

.top_plan_pack_title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.2;
    position: relative;
    padding: 0 0 1.4rem;
    border-bottom: 2px solid #fff;
}

.top_plan_pack_character {
    width: 8rem;
    position: absolute;
    bottom: 0;
    right: 0;
}

.top_plan_pack_title_large {
    font-size: 2.8rem;
}

.top_plan_pack_text {
    padding: 1.4rem 0 0;
    font-size: 1.6rem;
}

.top_plan_list {
    max-width: 126rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 2rem;
}

.top_plan_list_item {
    width: 100%;
    max-width: 28rem;
    border-radius: 5rem;
    color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin: 0 auto;
}
.top_plan_list_item:nth-of-type(1) {
    background: #0CAAFF;
}
.top_plan_list_item:nth-of-type(2) {
    background: #20D350;
}
.top_plan_list_item:nth-of-type(3) {
    background: #FF8903;

}

.top_plan_list_item_head {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.8rem 0 1rem;
    flex-grow: 1;
}

.top_plan_list_item_image {
    display: block;
    width: 60%;
    margin: 0 auto;
}

.top_plan_list_item_title {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
}

.top_plan_list_item_title_large {
    font-size: 4.2rem;
}

.top_plan_list_item_price {
    display: flex;
    flex-direction: column;
    padding: 2rem 0 1.6rem;
    background: #fff;
    font-size: 4.4rem;
    font-weight: 900;
    text-align: center;
}
.top_plan_list_item:nth-of-type(1) .top_plan_list_item_price {
    color: #0CAAFF;
}
.top_plan_list_item:nth-of-type(2) .top_plan_list_item_price {
    color: #20D350;
}
.top_plan_list_item:nth-of-type(3) .top_plan_list_item_price {
    color: #FF8903;
}

.top_plan_list_item_text {
    font-size: 2.4rem;
    font-weight: 900;
}

.top_plan_item_num {
    font-size: 4rem;
    line-height: 1;
    font-weight: bold;
    font-family: 'Fira Sans', sans-serif;
}

.top_plan_list_item_guide {
    font-size: 1.6rem;
    font-weight: 500;
}

.top_plan_item_unit {
    font-size: 2rem;
}

.top_plan_bg_image {
    display: block;
    width: unset;
    height: 90%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transform: translate(-54%, 0%);
    opacity: 0.5;
}

.top_plan_single {
    width: 100%;
    height: 100%;
    background: #F6F6F6;
    padding: 6rem 0;
    border-radius: 5rem;
    color: #2D71C2;
    transform: translateY(5rem);
    box-shadow: 0px 4px 4px rgba(45, 113, 210, 0.5);
}

.top_plan_single_title {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
    margin: 0 auto;
    position: relative;
}
.top_plan_single_title::after {
    content: "／";
    color: #2D71C2;
    position: absolute;
    right: -5rem;
}
.top_plan_single_title::before {
    content: "＼";
    color: #2D71C2;
    position: absolute;
    left: -5rem;
}

.top_plan_single_list {
    max-width: 130rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* flex-direction: column; */
    gap: 1rem;
    padding: 0 1rem;
    margin: 3rem auto 0;
    position: relative;
}

.top_plan_single_list::before {
    content: "";
    position: absolute;
    display: inline-block;
    bottom: 100%;
    right: 0;
    width: 100px;
    height: 80px;
    background-image: url(../img/price_character.webp);
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-size: contain;
}

.top_plan_single_list_item {
    width: calc((100% - 2rem) / 2);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    text-align: center;
    background: #fff;
    border-radius: 1rem;
    padding: 2rem 1rem;
    box-shadow: 2px 2px 11px rgba(0, 0, 0, 0.25);
}

.top_plan_single_list_item_title {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
}

.top_plan_single_list_item_text {
    font-size: 1.6rem;
    font-weight: bold;
    color: #0071B9;
}

.top_plan_single_list_item_num {
    font-size: 2.4rem;
    line-height: 1;
    font-family: 'Fira Sans', sans-serif;
}

/* -----------top flow-----------*/
.top_collection {
    padding: 12rem 2rem;
    background: #E6EFF4;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.top_collection::before {
    content: "";
    background: url(../img/dotted_square_bg.webp) repeat center center;
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.2;
}

.top_collection::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 30rem;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50% 0;
}

.top_collection_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    color: #0071B9;
}

.top_collection_title_image {
    width: 8rem;
}

.top_collection_title_text {
    font-size: 3.6rem;
    font-weight: bold;
}

.top_collection_available {
    max-width: 110rem;
    margin: 7rem auto 4rem;
    position: relative;
}

.top_collection_available::before {
    content: "";
    position: absolute;
    width: 10rem;
    height: 8rem;
    background-image: url(../img/collection_available_character.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    bottom: 100%;
    right: 0;
}

.top_collection_available_tabs {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.top_collection_available_tabs_item {
    width: 25%;
    font-size: 1.6rem;
    font-weight: bold;
    padding: 1.2rem 0;
    background: #fff;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    text-align: center;
    border: 3px solid #0071B9;
    border-bottom: none;
    color: #0071B9;
    cursor: pointer;
}
.top_collection_available_tabs_item.active {
    background: #0071B9;
    color: #fff;
}

.top_collection_example_slider {
    position: relative;
    overflow: visible ;
}

.top_collection_available_list {
    background: #fff;
    border: 3px solid #0071B9;
    border-bottom-left-radius: 3rem;
    border-bottom-right-radius: 3rem;
    padding: 1.6rem;
    display: flex;
    flex-wrap: wrap;
    
    gap: 0.8rem;
}

.top_collection_available_list_item {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 500;
    background: #EAF3F8;
    padding: 0.7rem 1rem;
}

.top_collection_example_list {
    margin-top: 7rem;
    align-items: stretch ;
}

.top_collection_example_item {
    padding:0 0 5rem;
    background-color: #fff;
    border-radius: 3rem;
    max-width: 91rem;
}

.top_collection_example_item__blue {
    padding-bottom: 2rem;
}

.top_collection_example_item__blue::before {
    content: "";
    width: 103px;
    height: 76px;
    background-image: url(../img/collectopm_example_character.webp);
    background-size: contain;
    position: absolute;
    bottom: 100%;
    translate: 0 1.2rem;
    left: 0;
    z-index: -1;
}


.top_collection_example_head {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding-right: 2.1rem;
}

.top_collection_example_name {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 900;
    margin-right: auto;
    padding: 1.2rem 2rem;
    border-top-left-radius: 3rem;
    border-bottom-right-radius: 3rem;
}

.top_collection_example_item__green .top_collection_example_name{
    background-color: #35C51C;
}
.top_collection_example_item__blue .top_collection_example_name{
    background-color: #0097F7;
}
.top_collection_example_item__orange .top_collection_example_name{
    background-color: #FF8903;
}

.top_collection_example_price {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}

.top_collection_example_price_main {
    font-size: 3rem;
    font-family: 'Fira Sans', sans-serif;
    color: #0071B9;
}

.top_collection_example_price_sub {
    font-size: 2rem;
    color: #0071B9;
}

.top_collection_example_content {
    margin-top: 2.7rem;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 0 3.2rem;
    gap: 4rem;
}

.top_collection_example_image_wrapper {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.top_collection_example_image {
    position: relative;
}

.top_collection_example_image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.top_collection_example_image_text {
    padding: 0.8rem 1.2rem;
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50% 50%;
    font-weight: 500;
    border-radius: 0.8rem;
}

.top_collection_example_image_text__before {
    background-color: #fff;
    color: #0071B9;
}

.top_collection_example_image_text__after {
    background-color: #0071B9;
    color: #fff;
}


.top_collection_example_texts_item:not(:first-child) {
    margin-top: 1.2rem;
}

.top_collection_example_texts_head {
    font-size: 1.8rem;
    font-weight: 900;
    color: #0071B9;
    line-height: 1.2;
}

.top_collection_example_texts_head::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #0071B9;
    margin-top: 0.4rem;
}

.top_collection_example_texts_desc {
    font-weight: 500;
    margin-top: 1rem;
    line-height: 1.2;
}

.swiper-button {
    max-width: 100rem;
    position: absolute;
    width: 100vw;
    top: 45%;
    left: 50%;
    translate: -50% 0;
    z-index: 2;
}

.swiper-button-prev,
.swiper-button-next {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 45%;
    z-index: 10;
    cursor: pointer;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
    content: none;
}

.swiper-button-prev img,
.swiper-button-next img {
    width: 100%;
    height: auto;
}

.swiper-button-prev img {
    transform: rotate(180deg);
}

/* -----------top flow-----------*/
.top_flow {
    background-color: #0071B9;
    padding: 9.4rem 1.6rem 20rem;
    z-index: 1;
    position: relative;
}

.top_flow::before,.top_flow::after {
    content: "";
    position: absolute;
    width: 80%;
    aspect-ratio: 1 / 1;
    background-size: contain;
    background-repeat: no-repeat;
}

.top_flow::before {
    top: 0;
    right: 0;
    background-image: url(../img/flow_bg_top.webp);
}

.top_flow::after {
    bottom: 0;
    left: 0;
    background-image: url(../img/flow_bg_bottom.webp);
}

.top_flow_list {
    margin-top: 8rem;
    max-width: 54rem;
    margin-inline: auto;
}

.top_flow_item {
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: #fff;
    border-radius: 1rem;
    z-index: 1;
}

.top_flow_item:not(:first-child) {
    margin-top: 5rem;
}

.top_flow_num {
    position: absolute;
    top: 0;
    translate: 0 -50%;
    left: 1.6rem;
    width: 12rem;
}

.top_flow_item_texts {
    padding: 4rem 1.6rem;
}

.top_flow_head {
    font-size: 3rem;
    color: #0071B9;
    font-weight: 900;
}

.tep_flow_desc {
    margin-top: 1rem;
}

.top_flow_item_image {
    aspect-ratio: 50 / 27;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    overflow: hidden;
}

.top_flow_item_image {
    width: 100%;
    height: 100%;
}

/* ---------- top faq ---------- */
.top_faq {
    padding: 8rem 1.6rem 12rem;
    background: #E6EFF4;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.top_faq::before {
    content: "";
    background: url(../img/dotted_square_bg.webp) repeat center center;
    background-position: 0 0;
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.2;
}

.top_faq::after {
    content: "";
    display: inline-block;
    width: 150px;
    height: 130px;
    position: absolute;
    bottom: 0;
    right: 0.8rem;
    background-image: url(../img/faq_character.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 0 100%;
}

.top_faq_title {
    text-align: center;
}

.top_faq_title_image {
    width: 12rem;
}

.top_faq_title_text {
    margin-top: 3rem;
    font-size: 3.6rem;
    color: #0071B9;
    font-weight: bold;
}

.top_faq_list {
    max-width: 1000px;
    margin-top: 4rem;
    margin-inline: auto;
}

.top_faq_item:not(:first-child) {
    margin-top: 2rem;
}

.top_faq_question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 100vmax;
    cursor: pointer;
    transition: background-color 0.3s;
    padding-right: 1.6rem;
}

.top_faq_text {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.top_faq_question.active {
    background-color: #0071b9;
    color: #fff;
}

.top_faq_question .q-mark {
    background-color: #BFE6FB;
    display: inline-block;
    color: #0071b9;
    width: 7rem;
    aspect-ratio: 1 / 1;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 2.4rem;
    border-top-right-radius: 100vmax;
    border-bottom-right-radius: 100vmax;
}

.top_faq_question .question-text {
    text-align: left;
    padding: 1rem 0;
    font-weight: 500;
}

.top_faq_question .icon {
    font-size: 2em;
    color: #BFE6FB;
    transition: transform 0.3s;
}

.top_faq_question.active .icon {
    color: #fff;
    /* transform: rotate(45deg); */
}

.top_faq_answer {
    display: none;
    padding: 2rem 1.6rem 1em;
    font-weight: 500;
}

/* ---------- top company ---------- */
.top_company {
    background: #E6EFF4;
    position: relative;
    z-index: 5;
}

.top_company::before {
    content: "";
    background: url(../img/dotted_square_bg.webp) repeat center center;
    background-position: 0 0;
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.2;
}

.top_container_movie {
    background: #0071B9;
    padding: 3rem 3rem;
    position: relative;
}

.top_container_movie_title {
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    background: #0071B9;
    padding: 1.2rem 2rem;
    border-radius: 0 2.6rem 0 0;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-100%);
}

.top_container_movie_wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.top_container_movie_content {
    display: block;
    width: 100%;
}

.top_container_movie_content video {
    width: 100%;
}

.top_container_cta {
    background: #fff;
    margin: 13.7rem 0 0;
    padding: 3rem 4vw 6rem 2rem;
    position: relative;
    border-top: 5px solid #BAD6E2;
    border-bottom: 1px solid #BAD6E2;
}

.top_container_cta_title {
    font-size: 1.8rem;
    font-weight: bold;
    background: #fff;
    padding: 1.2rem 2rem;
    border-radius: 0 2.8rem 0 0;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    border-top: 5px solid #BAD6E2;
    border-right: 5px solid #BAD6E2;
}

.top_container_cta_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.top_container_cta_character {
    width: min(max(16vw, 10rem), 21.6rem);
    position: absolute;
    bottom: 0;
    right: 0;
    pointer-events: none;
}

.top_container_outline {
    margin: 2.8rem 0 0;
    padding: 9.6rem 2rem 8rem;
    background: #fff;
}

/* ---------- top outline ---------- */
.top_outline_title {
    text-align: center;
}

.top_outline_title_image {
    width: 6rem;
}

.top_outline_title_text {
    margin-top: 3rem;
    font-size: 3.6rem;
    color: #0071B9;
    font-weight: bold;
}

.top_outline_list {
    margin-top: 4rem;
    max-width: 121rem;
    margin-inline: auto;
}

.top_outline_list_item {
    display: flex;
    align-items: center;
    padding: 1rem 1.6rem;
    font-size: 1.6rem;
    font-weight: 500;
}

.top_outline_list_item:nth-of-type(even) {
    background: #E6EFF4;
}


.top_outline_list_item_label {
    width: 8rem;
    color: #0071B9;
    font-weight: bold;
    flex-shrink: 0;
}

.top_outline_list_item_text {
    flex-grow: 1;
    font-size: 1.4rem;
}

.top_outline_list_item_text_row {
    display: block;
    margin-top: 4px;
}

.top_outline_note {
    max-width: 121rem;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0.8rem auto 0;
    text-align: right;
}

.top_outline_map {
    max-width: 121rem;
    margin: 5.6rem auto 0;
}

.top_outline_map iframe {
    width: 100%;
    height: max(35rem, min(45vw, 60rem));
}



/* -----------iphon5/se-----------*/

@media screen and (min-width:270px) {}

/* -----------iphon6~-----------*/

@media screen and (min-width:330px) {}

/* -----------ipad-----------*/

@media screen and (min-width:640px) {

    .sp {
        display: block;
    }

    .pc {
        display: none;
    }

    /* -----------共通-----------*/
    .text_50_bold {
        font-size: 3rem;
    }
    .text_70_bold {
        font-size: 3.8rem;
    }

    /* セクションタイトル */
    .sec_title_sub {
        font-size: 2rem;
    }
    .sec_title_main {
        font-size: 3.6rem;
    }

    /* -----------SP header-----------*/
    .header_logo_img {
        width: min(12.4rem, 8.6vw);
    }

    /* -----------footer-----------*/
    .footer_container_nav {
        flex-wrap: nowrap;
    }

    .footer_container_nav ul {
        /* flex-wrap: nowrap; */
        gap: 2rem;
    }

    .footer_container_nav ul li {
        width: unset;
    }

    .footer_container_nav ul li a {
        width: unset;
        font-size: 1.6rem;
    }

    .footer_container_title {
        font-size: 3.2rem;
        margin: 4rem auto;
    }

    .footer_container_info {
        flex-direction: row;
        justify-content: center;
        margin: 0 0 7.2rem;
        gap: 4rem;
    }

    .footer_container_note {
        padding: 0 12rem;
    }

    .footer .to_top {
        width: 8rem;
    }

    /* -----------top-----------*/
    .top_mv_content_main {
        padding: 0.7rem 2.2rem 0 2.2rem;
    }

    .top_mv_content_award {
        height: 12rem;
        right: 3.8rem;
    }

    .top_mv_content_text {
        margin-top: 0;
        width: min(60rem, 100%);
    }

    .top_mv_content_text_blue_large {
        font-size: 4.8rem;
        align-items: start;
    }

    .top_mv_content_text_blue {
        font-size: 3.6rem;
        padding: 0 3rem;
    }
    
    .top_mv_content_title {
        width: 42rem;
    }

    .top_mv_content_character {
        width: 16rem;
        left: -16rem;
        -webkit-animation: moveRightLoop 6s linear infinite;
                animation: moveRightLoop 6s linear infinite;
    }

    .top_mv_cta_wrapper {
        padding: 1.4rem 1.8rem;
        gap: 2rem;
    }

    .top_mv_cta_tel {
        flex-grow: 0;
        flex-direction: row;
        gap: 1rem;
    }

    .top_mv_cta_tel_text {
        text-align: left;
    }

    .top_cta_btn {
        height: 8.6rem;
    }

    .top_cta_btn_arrow {
        display: block;
    }

    /* -----------top worries-----------*/
    .top_worries_label_text {
        font-size: 2.4rem;
    }

    .top_worries_character {
        width: 16rem;
        -o-object-fit: contain;
           object-fit: contain;
        position: absolute;
        bottom: 0;
        left: calc(50% + 16rem);
    }
    
    .top_worries_points_wrapper {
        margin: 5rem auto;
    }

    .top_worries_points_text {
        font-size: 2.8rem;
    }

    .top_worries_solution {
        padding: 2rem 2rem 3rem 5rem;
        gap: 2rem;
    }

    .top_worries_solution_image {
        width: 30%;
        position: relative;
        top: 0;
        left: 0;
        transform: unset;
        z-index: 1;
    }

    .top_worries_solution_image_img {
        bottom: -3rem;
    }

    .top_worries_solution_text {
        width: 70%;
    }

    .top_worries_solution_text_sub {
        font-size: 2rem;
    }

    .top_worries_solution_text_main {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        text-align: center;
        padding: 0.8rem 0.5rem;
        padding-inline: 1rem;
        font-size: 3rem;
    }

    .top_worries_solution_text_content {
        font-size: 2rem;
    }

    /* -----------top service-----------*/
    .top_service_label {
        padding: 5.8rem 0;
    }

    .top_service_label_image,
    .top_service_label_character {
        width: 28%;
        max-width: unset;
        position: relative;
        bottom: -5.8rem;
        left: unset;
        right: unset;
    }

    .top_service_label_text_sub {
        font-size: 1.6rem;
    }

    .top_service_label_text_main {
        font-size: 3.6rem;
    }

    .top_service_list {
        row-gap: 5rem;
    }

    .top_service_list_item {
        width: calc((100% - 3rem) / 2);
    }

    .top_service_list_title {
        font-size: 2.5rem;
    }

    .top_service_list_text {
        font-size: 1.7rem;
        padding: 2rem 3rem 3rem;
    }

    /* -----------top reason-----------*/
    .top_reason_label {
        height: 30rem;
    }

    .top_reason_label_title {
        width: min(100%, 44rem);
        margin: 0 auto 5rem;
    }

    .top_reason_item_num {
        font-size: 8rem;
    }

    .top_reason_item_text_sub {
        font-size: 2.2rem;
    }

    .top_reason_item_text_main {
        font-size: 5rem;
    }

    .top_reason_item_image {
        width: 90%;
        margin: 0 0 0 auto;
    }

    .top_reason_item_points {
        padding: 4.3rem 5rem;
    }

    .top_reason_item_points_wrapper {
        width: 75%;
    }
    .top_reason_item:nth-of-type(2) .top_reason_item_points_wrapper {
        margin: 0 0 0 auto;
    }

    .top_reason .points_item {
        border-radius: 3rem;
    }

    .top_reason .points_item_text {
        font-size: 2rem;
    }

    .top_reason .points_item_image {
        width: 18rem;
        position: absolute;
        bottom: 0;
        left: 75%;
        margin: 0;
    }
    .top_reason_item:nth-of-type(even) .points_item_image {
        width: 18rem;
        left: unset;
        right: 75%;
    }
    .top_reason_item:nth-of-type(2) .points_item_image {
        width: min(24%, 27rem);
        right: 77%;
    }
    .top_reason_item:nth-of-type(3) .points_item_image {
        width: min(24%, 27rem);
        left: 75%;
    }

    /* -----------top plan-----------*/
    .top_plan_pack {
        margin: 6.8rem auto 7.2rem;
    }

    .top_plan_pack_title {
        font-size: 3rem;
        padding: 0 0 2rem;
    }

    .top_plan_pack_title_large {
        font-size: 4rem;
    }

    .top_plan_pack_text {
        padding: 1.85rem 0 0;
        font-size: 2.2rem;
    }

    .top_plan_pack_character {
        width: 16rem;
    }

    .top_plan_list {
        flex-direction: row;
        gap: 1rem;
    }

    .top_plan_list_item {
        width: calc((100% - 6rem) / 3);
        max-width: none;
    }

    .top_plan_list_item_guide {
        font-size: 2rem;
    }

    .top_plan_item_unit {
        font-size: 2.9rem;
    }

    .top_plan_bg_image {
        height: 100%;
        transform: translate(-28%, 0);
    }

    /* -----------top plan-----------*/
    .top_plan_single_title {
        font-size: 4.4rem;
    }

    .top_plan_single_list {
        gap: 1.8rem;
        margin: 6rem auto 0;
    }
    .top_plan_single_list::before {
        width: 180px;
        height: 120px;
    }

    .top_plan_single_list_item {
        width: calc((100% - 3.6rem) / 3);
    }

    .top_plan_single_list_item_title {
        font-size: 2.6rem;
    }

    .top_plan_single_list_item_text {
        font-size: 2.2rem;
    }

    .top_plan_single_list_item_num {
        font-size: 4rem;
    }


    /* -----------top collection-----------*/
    .top_collection {
        padding: 20rem 2rem;
    }

    .top_collection::after {
        height: 40rem;
    }

    .top_collection_title_text {
        font-size: 6.6rem;
    }

    .top_collection_available {
        margin: 7rem auto 8rem;
    }

    .top_collection_available::before {
        width: 14rem;
        height: 11rem;
    }

    .top_collection_available_tabs {
        gap: 2rem;
    }

    .top_collection_available_tabs_item {
        font-size: 2rem;
        padding: 2.2rem 0;
    }


    .top_collection_available_list {
        padding: 3.2rem;
    }

    .top_collection_available_list_item {
        font-size: 1.8rem;
        padding: 0.7rem 4.7rem;
    }

    .top_collection_example_head {
        flex-direction: row;
    }

    .top_collection_example_name {
        font-size: 2.2rem;
        font-weight: 900;
        margin-right: unset;
        width: 17.5rem;
        padding-inline: 0;
        text-align: center;
    }
            
    .top_collection_example_price {
        font-size: 2.6rem;
    }

    .top_collection_example_price_main {
        font-size: 4.2rem;
    }

    .top_collection_example_price_sub {
        font-size: 2.6rem;
    }

    .top_collection_example_content {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }

    .top_collection_example_texts {
        max-width: 28rem;
    }

    .top_collection_example_image_text { 
        font-size: 2rem;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 64px;
        height: 64px;
    }
    /* ---------- top flow ---------- */
    .top_flow::before,.top_flow::after {
        width: 50%;
    }

    /* ---------- top faq ---------- */
    .top_faq_title_text {
        font-size: 6.6rem;
    }

    /* ---------- top company ---------- */
    .top_container_movie {
        padding: 6rem 10rem;
    }

    .top_container_movie_title {
        font-size: 2.6rem;
        padding: 1.2rem 3.5rem;
        border-radius: 0 3.2rem 0 0;
    }

    .top_container_cta {
        padding: 3rem 12vw 4rem 6rem;
    }
    
    .top_container_cta_title {
        font-size: 2.6rem;
        padding: 1.2rem 3.5rem;
        border-radius: 0 3.4rem 0 0;
    }

    .top_outline_title_text {
        font-size: 4.6rem;
    }

    .top_outline_list_item {
        padding: 2rem 5.6rem;
        font-size: 2rem;
    }

    .top_outline_list_item_label {
        width: 14rem;
    }

    .top_outline_list_item_text {
        flex-grow: 1;
        font-size: 1.6rem;
    }

    .top_outline_note {
        font-size: 2rem;
    }

}

@media screen and (min-width:720px) {

}
/* -----------PC-----------*/

@media screen and (min-width:960px) {

    body {
        font-size: 15px;
    }

    .sp {
        display: none;
    }

    .pc {
        display: block;
    }

    /* -----------共通-----------*/

    /* セクションタイトル */
    .sec_title_sub {
        font-size: 3rem;
    }
    .sec_title_main {
        font-size: 8rem;
    }

    /* -----------PC header-----------*/


    /* -----------footer-----------*/


    /* -----------top-----------*/
    .top_mv_content_bg.bg1 {
        -o-object-position: 50% 50%;
           object-position: 50% 50%;
    }
    
    .top_mv_content_bg.bg2 {
        -o-object-position: 50% 50%;
           object-position: 50% 50%;
    }
    
    .top_mv_content_bg.bg3 {
        -o-object-position: 50% 50%;
           object-position: 50% 50%;
    }
    
    .top_mv_content_bg.bg4 {
        -o-object-position: 50% 50%;
           object-position: 50% 50%;
    }

    .top_mv_content_character {
        -webkit-animation: moveRightLoop 8s linear infinite;
                animation: moveRightLoop 8s linear infinite;
        bottom: 1.4rem;
    }

    .top_cta_btn {
        font-size: clamp(1.6rem, 1.6vw, 1.8rem);
    }

    .top_mv_cta_wrapper {
        padding: 1.4rem 1.8rem 1.6rem 4.5rem;
        justify-content: center;
    }

    .top_mv_cta_btn_wrapper {
        max-width: 60rem;
    }

    .top_mv_cta_tel {
        flex-direction: row;
        gap: 1.6rem;
        max-width: unset;
    }

    .top_mv_cta_tel_num {
        font-size: clamp(3.2rem, 3.2vw, 4.5rem);
    }

    .top_mv_cta_tel_text_sub {
        line-height: 3;
    }

    .top_mv_cta_tel_text_blue {
        line-height: 1.5;
        display: inline-block;
        bottom: 0rem;
    }

    .top_mv_cta_btn_wrapper {
        flex-direction: row;
        gap: 3rem;
        margin: 0 3rem 0 3rem;
    }

    /* -----------top service-----------*/
    .top_service_label_image,
    .top_service_label_character {
        width: 25%;
    }

    .top_service_label_wrap {
        gap: 3rem;
    }

    .top_service_label_text_sub {
        font-size: clamp(2.6rem, 2.6vw, 3rem);
    }

    .top_service_label_text_main {
        font-size: clamp(7rem, 7vw, 8rem);
    }

    .top_service_list_item {
        width: calc((100% - 6rem) / 3);
    }

    /* -----------top plan-----------*/
    .top_plan_pack_title {
        font-size: 4.5rem;
    }

    .top_plan_pack_character {
        width: 26rem;
    }

    .top_plan_pack_title_large {
        font-size: 6rem;
    }

    .top_plan_list {
        gap: 3rem;
    }

    .top_plan_list_item_head {
        gap: 1.6rem;
        padding: 3.8rem 0 3rem;
    }

    .top_plan_list_item_title {
        font-size: 4.8rem;
    }

    .top_plan_list_item_title_large {
        font-size: 6.2rem;
    }

    .top_plan_list_item_text {
        font-size: 4.4rem;
    }

    .top_plan_item_num {
        font-size: clamp(5.6rem, 5.6vw, 7rem);
    }

    /* ---------- top collection ---------- */
    .top_collection_available::before {
        width: 27rem;
        height: 25rem;
    }

    /* ---------- top company ---------- */
    .top_container_movie {
        padding: 15rem 20rem;
    }

    .top_container_movie_title {
        font-size: 4.6rem;
        border-radius: 0 4.7rem 0 0;
    }

    .top_container_cta {
        padding: 7rem 12vw 4rem 4rem;
    }

    .top_container_cta_title {
        font-size: 4.6rem;
        border-radius: 0 4.9rem 0 0;
    }

    .top_container_cta_wrapper {
        gap: 2rem;
        justify-content: center;
    }
    
    .top_outline_list_item {
        font-size: 2.8rem;
    }

    .top_outline_list_item_label {
        width: 18rem;
    }

    .top_outline_list_item_text {
        font-size: 2.4rem;
    }

}


@media screen and (min-width:1025px) {
    .sp {
        display: none;
    }

    .pc {
        display: block;
    }

    /* -----------共通-----------*/
    /* 部分文字装飾 */
    .text_50_bold {
        font-size: 5rem;
    }
    .text_70_bold {
        font-size: 7rem;
    }

    /* -----------PC header-----------*/
    .header_container {
        height: unset;
        padding: 1.2rem min(3.1rem, 1.5vw);
    }

    .header_menu {
        width: unset;
        height: unset;
        background: unset;
        position: relative;
        transform: unset;
        flex-direction: row;
        gap: 0.3rem;
        align-items: center;
    }

    .header_menu_nav ul {
        flex-direction: row;
        gap: min(2rem, 1vw);
    }

    .header_menu nav ul li a {
        font-size: 1.4rem;
    }

    .header_btn {
        width: min(17.5vw, 19.1rem);
    }
    
    .header_menu_btn {
        display: none;
    }

    /* -----------footer-----------*/


    /* -----------top mv-----------*/


    .top_mv_content_main {
        padding: 0.7rem 8.2rem 0.7rem 2.2rem;
    }

    .top_mv_content_award {
        height: 14.2rem;
    }

    .top_mv_content_text {
        width: min(80rem, 100%);
    }

    .top_mv_content_text_blue {
        font-size: 4rem;
    }
    .top_mv_content_text_blue:nth-child(2) {
        margin-left: auto;
    }

    .top_mv_content_text_blue_large {
        font-size: 6rem;
    }
    
    .top_mv_content_title {
        width: 50rem;
    }

    .top_mv_cta {
        height: calc(100svh - 8.rem - 4.4rem - 63svh);
    }

    /* -----------top worries-----------*/
    .top_worries_label {
        font-size: 4rem;
    }

    .top_worries_character {
        width: 26rem;
        left: calc(50% + 30rem);
    }

    .top_worries_points_wrapper {
        flex-direction: row;
        margin: 5rem auto 7rem;
    }

    .top_worries_points {
        gap: 3.2rem;
    }

    .top_worries_points_item {
        gap: 2rem;
    }

    .top_worries_points_image {
        height: 4rem;
    }

    .top_worries_points_text {
        font-size: 3.2rem;
        line-height: 4rem;
    }

    .top_worries_image {
        max-width: 40rem;
    }

    .top_worries_solution {
        padding: 3rem 3rem 3rem 8rem;
        gap: 6rem;
    }

    .top_worries_solution_text_sub {
        font-size: 3.1rem;
        line-height: 5.2rem;
    }

    .top_worries_solution_text_main {
        font-size: 4.4rem;
        line-height: 5.2rem;
    }

    .top_worries_solution_text_content {
        font-size: clamp(2.4rem, 2.4vw, 2.8rem);
        line-height: 4.4rem;
    }

    .top_worries_bg {
        height: auto;
    }

    /* -----------top reason-----------*/
    .top_reason_label {
        height: 45rem;
    }

    .top_reason_label_title {
        width: min(100%, 58rem);
        display: block;
        margin: 0 auto 5rem;
    }

    .top_reason_container {
        padding: 3.2rem 4rem;
    }

    .top_reason_item_wrapper {
        flex-direction: row;
        gap: 0;
    }
    .top_reason_item:nth-of-type(even) .top_reason_item_wrapper {
        flex-direction: row-reverse;
    }

    .top_reason_item_text {
        width: 40%;
    }

    .top_reason_item_num {
        font-size: 9rem;
    }

    .top_reason_item_text_sub {
        font-size: 2.8rem;
    }

    .top_reason_item_text_main {
        font-size: 6.4rem;
    }

    .top_reason_item_image {
        width: 60%;
    }

    .top_reason_item_image img {
        margin: 8rem -4rem 0 auto;
    }
    .top_reason_item:nth-of-type(even) .top_reason_item_image img {
        margin: 8rem auto 0 -4rem;
    }

    .top_reason_item_points_wrapper {
        flex-direction: row;
    }
    
    .top_reason .points_item {
        width: calc((100% - 3rem) / 3);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
    }

    .top_reason .points_item_text {
        width: auto;
        font-size: 2.4rem;
        flex: 1;
        text-align: center;
    }

    .top_reason .points_item_image {
        left: 80%;
    }

    /* -----------top plan-----------*/
    .top_plan_single_list_item {
        width: calc((100% - 7.2rem) / 5);
    }
    .top_plan_single_list::before {
        width: 320px;
        height: 238px;
        right: -85px;
    }

    /* ---------- top collection ---------- */
    .top_collection_example_item__blue::before {
        width: 207px;
        height: 152px;
        position: absolute;
        bottom: 100%;
        translate: 0 2rem;
        left: -2rem;
    }

    /* ---------- top flow ---------- */
    
    .top_flow_list {
        margin-top: 10rem;
        max-width: 120rem;
    }

    .top_flow_item {
        flex-direction: row;
    }

    .top_flow_item:not(:first-child) {
        margin-top: 11.5rem;
    }

    .top_flow_item:not(:last-child)::after {
        position: absolute;
        background-color: #fff;
        content: "";
        width: 6.4rem;
        height: 6.4rem;
        bottom: 0;
        translate: 0 3.2rem;
        left: 7.5rem;
        rotate: 45deg;
        border-bottom-right-radius: 6px;
        z-index: -1;
    }

    .top_flow_num {
        left: 2rem;
        width: 15.7rem;
    }

    .top_flow_item_texts {
        display: grid;
        place-content: center;
        padding: 3rem;
    }

    .top_flow_head {
        font-size: 4.6rem;
    }

    .tep_flow_desc {
        margin-top: 2.4rem;
        font-size: 2rem;
    }

    .top_flow_item_image {
        max-width: 50rem;
        border-bottom-left-radius: 0;
        border-top-right-radius: 1rem;
        border-bottom-right-radius: 1rem;
    }

    .top_flow_item_image {
        width: 100%;
        height: 100%;
    }

    /* ---------- top faq ---------- */
    .top_faq {
        padding-bottom: 22rem;
    }
    .top_faq::after {
        width: 355px;
        height: 252px;
        bottom: 0;
        right: 0.8rem;
    }

    .top_faq_question .q-mark {
        width: 9rem;
        font-size: 4rem;
    }
    .top_faq_question .question-text {
        font-size: 1.8rem;
    }

    .top_faq_answer {
        font-size: 2rem;
    }

}