@charset "UTF-8";

:root {
    /* 色管理用の変数 */
    --black-color: #444;
    --white-color: #fff;
    --gray-color: #aaa;
    --gray-color02: #fafafa;
    --primary-color: #1863af;
    --accent-color: #fbf;
    --btn-color: #FFDD63;
    --font_accent-color: #FF9738;
}

:root {
    /* コンテンツ幅管理用の変数 */
    --content-width-sm: 800px;
    --content-width: 960px;
    --content-width-lg: 1088px;
}

:root {
    /* z-index管理用の変数 */
    --z-index-back: -1;
    --z-index-default: 1;
    --z-index-header: 100;
    --z-index-menu: 150;
    --z-index-modal: 200;
}

body {
    background: linear-gradient(180deg, #EDF4FC 0%, #F8EBF2 11%, #F2EEF2 18.73%, #E9F5F4 26.5%, #E9F8F5 32.5%, #EAFAF6 39%, #F6F5FB 48.5%, #FBEEF5 60.5%, #F2F5FA 69.5%, #EEEFFA 79%, #EEEFFA 88.5%, #EEEEFA 100%);;
    
}

@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}

.m_opening {
    width: 100%;
    height: 100vh;
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    margin: auto;
    background-color:#fff;
    z-index: var(--z-index-modal);
    -webkit-animation: byeShutter 2.4s forwards;
    animation: byeShutter 3.5s forwards;
}

@keyframes byeShutter {
    70% {
        opacity: 1;
    }
    100% {
        display: none;
        opacity: 0;
        z-index: var(--z-index-back);
    }
}

svg {
    width: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (min-width: 595px) {
    svg {
        width: 400px;
    }
}

@media screen and (min-width: 1080px) {
    svg {
        width: 500px;
    }
}

path {
    fill: none;
    stroke: var(--black-color);
    stroke-dasharray: 2000;
    stroke-dashoffset: 0;
    stroke-width: 1;
    -webkit-animation: logo 4s ease-in forwards;
    animation: logo 4s ease-in forwards;
}
@-webkit-keyframes logo {
0% {
    stroke-dashoffset: 2000;
    fill:transparent;
}
75% {
    stroke-dashoffset: 0;
    fill:var(--black-color);
}
}
@keyframes logo {
0% {
    stroke-dashoffset: 2000;
    fill:transparent;
}
75% {
    stroke-dashoffset: 0;
    fill:var(--black-color);
}
}

.l_body {
    max-width: 800px;
    margin: 0 auto;
    color: var(--black-color);
    font-size: 16px;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.8;
    letter-spacing: 0.1em;
    animation: fadein 2s forwards;
    background: linear-gradient(180deg, #EDF4FC 0%, #F8EBF2 11%, #F2EEF2 18.73%, #E9F5F4 26.5%, #E9F8F5 32.5%, #EAFAF6 39%, #F6F5FB 48.5%, #FBEEF5 60.5%, #F2F5FA 69.5%, #EEEFFA 79%, #EEEFFA 88.5%, #EEEEFA 100%);
}

.l_container-sm,
.l_container,
.l_container-lg {
    width: 100%;
    padding: 0 16px;
    margin: 0 auto;
}

.l_container-sm {
    max-width: calc(var(--content-width-sm) + 32px);
}

.l_container {
    max-width: calc(var(--content-width) + 32px);
}

.l_container-lg {
    max-width: calc(var(--content-width-lg) + 32px);
}

.l_contents {
    padding: 100px 0;
}


.text {
    stroke: #000;
    stroke-width: 1px;
}

.m_decolation {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    height: 100vh;
    display: block;
    z-index: var(--z-index-back);
}

@media screen and (max-width: 995px) {
    .m_decolation {
        display: none;
    }
}



.m_decolation_wrap {
    display: flex;
    justify-content: space-between;
}

.m_decolation_loop-left {
    overflow: hidden;
}

.m_decolation_loop-right {
    overflow: hidden;
    transform: rotate(180deg);
}


.m_decolation_loop-left .m_decolation_loop-items {
    animation: loop-left 3000s -100s infinite linear both;
}

.m_decolation_loop-right .m_decolation_loop-items {
    animation: loop-right 3000s -100s infinite linear both;
}


.m_decolation_loop-item {
    padding: 16px 0;
    font-size: 64px;
    line-height: 1.5;
    letter-spacing: 0.15em;
    writing-mode: vertical-rl;
    white-space: nowrap;
    color: var(--white-color);
    font-weight: bold;
    font-family: "Zen Maru Gothic";
}

@media screen and (min-width: 1080px) {
    .m_decolation_loop-item {
        font-size: 80px;
    }
}

@keyframes loop-left {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(100%);
    }
}

@keyframes loop-right {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(150%);
    }
}



.l_header {
    height: 72px;
    width: 100%;
    padding: 0 32px 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: var(--z-index-header);
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.3);
}

@media screen and (min-width: 800px) {
    .l_header {
        background: none;
    }
}

@media screen and (min-width: 1080px) {
    .l_header {
        padding: 0 16px;
        height: 100px;
    }
}


.l_header-logo {
    height: 100%;
}

.l_header-logo_link {
    width: 150px;
    height: 100%;
    display: flex;
    align-items: center;
}

@media screen and (min-width: 500px) {
    .l_header-logo_link {
        width: 180px;
    }
}

@media screen and (min-width: 1080px) {
    .l_header-logo_link {
        width: 200px;
    }
}

@media screen and (min-width: 1200px) {
    .l_header-logo_link{
        width: 250px;
    }
}

.l_header-logo_img {
    height: 100%;
    object-fit: cover;
}

.l_header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white-color);
    z-index: var(--z-index-header);
}

@media screen and (min-width: 1080px) {
    .l_header-nav {
        position: static;
        background: transparent;
        width: auto;
        height: auto;
        opacity: 1;
        pointer-events: inherit;
    }
}

.l_header-nav_list {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.6);
    padding: 0 8px;
}

@media screen and (min-width: 1080px) {
    .l_header-nav_list {
        display: flex;
        gap: 0 24px;
        position: static;
        transform: none;
    }
}

.l_header-nav_item {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: transparent;
    background: linear-gradient(to right, #f067a6 50%, var(--black-color) 50%) 100%;
    background-clip: text;
    background-size: 200% 100%;
    transition: background-position 0.3s;
}

@media screen and (min-width: 1080px) {
    .l_header-nav_item {
        font-weight: normal;
        height: 100%;
        display: flex;
        align-items: center;
        font-size: 14px;
    }
}

.l_header-nav_item:hover {
    background-position: 0 100%;
}


.l_header-nav_item:not(:first-child) {
    margin-top: 40px;
}

@media screen and (min-width: 1080px) {
    .l_header-nav_item:not(:first-child) {
        margin-top: 0;
    }
}


.l_footer {
    padding: 64px 0 24px;
    text-align: center;
    position: relative;
}



.l_footer-logo_link {
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    width: 250px;
}

.l_footer-logo_img {
    width: 100%;
    object-fit: cover;
}


.l_footer-nav_list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media screen and (min-width:800px) {
    .l_footer-nav_list {
        flex-direction: row;
        gap: 0 24px;
        position: static;
        transform: none;
        margin-top: 8px;
    }
}

.l_footer-nav_item {
    font-size: 24px;
    color: transparent;
    background: linear-gradient(to right, #f067a6 50%, var(--black-color) 50%) 100%;
    background-clip: text;
    background-size: 200% 100%;
    transition: background-position 0.3s;
}

@media screen and (min-width: 800px) {
    .l_footer-nav_item {
        font-weight: normal;
        height: 100%;
        display: flex;
        align-items: center;
        font-size: 14px;
    }
}

.l_footer-nav_item:hover {
    background-position: 0 100%;
}

.l_footer-nav_item:not(:first-child) {
    margin-top: 32px;
}

@media screen and (min-width: 800px) {
    .l_footer-nav_item:not(:first-child) {
        margin-top: 0;
    }
}

.l_footer-nav_link {
    height: 100%;
    display: flex;
    align-items: center;
}

.l_footer_privacy-policy {
    font-size: 14px;
    margin-top: 32px;
}


.l_footer-copyright_txt {
    font-size: 14px;
}



.m_hamburger {
    width: 32px;
    height: 24px;
    position: relative;
    z-index: var(--z-index-menu);
}

@media screen and (min-width: 1080px) {
    .m_hamburger {
        display: none;
    }
}

.m_hamburger-bar:first-child {
    top: 0;
    transform: translate(-50%, 0);
}

.m_hamburger-bar:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
}

.m_hamburger-bar:last-child {
    top: 100%;
    transform: translate(-50%, -100%);
}



.m_hamburger-bar {
    width: 100%;
    height: 2px;
    position: absolute;
    background: var(--black-color);
    left: 50%;
    transition: 0.3s;
}

.top_kv {
    height: 100vh;
    position: relative;
}

.top_kv-inner {
    position: relative;
    height: 100%;
    max-width: 800px;
}

.top_kv_box {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    text-align: center;
    padding: 0 32px;
}

.top_kv_copy {
    font-size: 36px;
    font-weight: bold;
    text-align: left;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
    
}

@media screen and (min-width: 660px) {
    .top_kv_copy {
        font-size: 48px;
        text-align: center;
    }
}

@media screen and (min-width: 1080px) {
    .top_kv_copy {
        font-size: 56px;
    }
}

@media screen and (min-width: 500px) {
    .m_dn {
        display: none;
    }
}

.top_kv_copy-fz {
    font-size: 40px;
    color: #f067a6;
}

@media screen and (min-width: 660px) {
    .top_kv_copy-fz {
        font-size: 56px;
    }
}

@media screen and (min-width: 1080px) {
    .top_kv_copy-fz {
        font-size: 64px;
    }
}


.top_kv_sub-copy {
    font-size: 22px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
    text-align: left;
    font-weight: bold;
}

@media screen and (min-width: 660px) {
    .top_kv_sub-copy {
        font-size: 30px;
        margin-top: 24px;
        text-align: center;
    }
}


.top_btn {
    width: 100px;
    height: 100px;
    border-radius: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    color: var(--white-color);
    font-weight: bold;
    overflow: hidden;
    background: #61CF8E;
    line-height: 1.0;
    text-align: center;
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 16px 32px 32px 16px;
    position: fixed;
    z-index: var(--z-index-default);
}

@media screen and (min-width: 801px) {
    .top_btn {
        margin-right: calc((100% - 752px) / 2);
        width: 150px;
        height: 150px;
        font-size: 20px;
    }
}

.top_btn:hover {
    transform: scale(1.2);
}

.scroll {
    display: inline-block;
    padding-top: 70px;
    position: relative;
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translate(-50%, 0);
    font-family: "Zen Maru Gothic";
}
.scroll::before {
    animation: scroll 3.5s infinite;
    border: solid var(--black-color);
    border-width: 0 0 1px 1px;
    content: "";
    display: inline-block;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    transform: rotate(-45deg);
    width: 20px;
    height: 20px;
}
@keyframes scroll {
0% {
    transform: rotate(-45deg) translate(0, 0);
}
80% {
    transform: rotate(-45deg) translate(-30px, 30px);
}
0%, 80%, 100% {
    opacity: 0;
}
40% {
    opacity: 1;
}
}



.top_img-wrapper {
    max-width: 300px;
    margin: 0 auto;
}

@media screen and (min-width: 595px) {
    .top_img-wrapper {
        max-width: 450px;
    } 
}

.top_needs_contents {
    width: 100%;
    border-radius: 20px;
    background: var(--gray-color02);
    padding: 0 16px 40px;
}

.m_contents_title {
    padding-top: 32px;
    max-width: 525px;
    margin: 0 auto;
}

.m_contents_main-title {
    font-size: 20px;
    font-weight: bold;
    text-align: left;
}

@media screen and (min-width: 595px) {
    .m_contents_main-title {
        font-size: 32px;
    }
}

.needs_title_fz {
    font-size: 24px;
}

@media screen and (min-width: 595px) {
    .needs_title_fz {
        font-size: 40px;
    }
}

.m_section_sub-title {
    padding: 24px 16px 0;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
}

@media screen and (min-width: 595px) {
    .m_section_sub-title {
        font-size: 24px;
    }
}



.top_needs_item {
    max-width: 525px;
    height: 70px;
    border-radius: 10px;
    border: 3px solid var(--accent-color);
    margin-top: 64px;
    margin-left: auto;
    margin-right: auto;
    position: relative;

}

.top_needs_item::after {
    content: "";
    font-family: "Zen Maru Gothic";
    font-size: 40px;
    font-weight: 500;
    text-align: center;
    color: var(--accent-color);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--black-color);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -60%);
    
}

.top_needs_item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 72px;
    height: 50px;
    background: var(--gray-color02);
}

.n_item_01::after {
    content: "01";
}

.n_item_02::after {
    content: "02";
}

.n_item_03::after {
    content: "03";
}

.n_item_04::after {
    content: "04";
}

.top_needs_item-copy {
    padding: 18px 0;
    text-align: center;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
}

@media screen and (min-width: 595px) {
    .top_needs_item-copy {
        font-size: 18px;
    }
}

.top_needs_etc {
    font-family: "Zen Maru Gothic";
    font-size: 24px;
    text-align: right;
    padding-top: 24px;
    max-width: 525px;
    margin: 0 auto;
}

.m_btn-wrapper {
    width: 300px;
    height: 56px;
    margin: 56px auto 0;

}

.m_btn {
    width: 100%;
    height: 100%;
    border-radius: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    color: var(--white-color);
    font-weight: bold;
    overflow: hidden;
    background: var(--btn-color);
    position: relative;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.m_btn::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--white-color);
}  

.m_btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 100vh;
    box-sizing: border-box;
    z-index: -1;
    transform:  scale(1.2);
    opacity: 0;
    transition: transform ease .3s, opacity .3s;
}

.m_btn:hover {
    color: var(--btn-color);
    background: var(--white-color);
    border: 2px solid var(--btn-color);
    transform: scale(1.1);
}

.m_btn:hover::before {
    transform: scale(1);
    opacity: 1;
}

.m_btn:hover::after {
    border-color: transparent transparent transparent var(--btn-color);
}




.possibility_contents_main-title {
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    padding: 0 16px;
}

@media screen and (min-width: 595px) {
    .possibility_contents_main-title {
        font-size: 24px;
    }
}

.top_possibility_title-fz {
    font-size: 24px;
}

@media screen and (min-width: 595px) {
    .top_possibility_title-fz {
        font-size: 32px;
    }
}

.top_possibility_title-color {
    font-size: 32px;
    color: #f067a6;
}

@media screen and (min-width: 595px) {
    .top_possibility_title-color {
        font-size: 40px;
    }
}

.m_contents_sub-title {
    margin-top: 24px;
    text-align: left;
    padding: 16px;
}

@media screen and (min-width: 595px) {
    .m_contents_sub-title {
        font-size: 24px;
    }
}

.top_possibility_img-wrapper {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    margin: 24px auto 0;
}

.top_possibility_img {
    border-radius: 10px;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.top_possibility_copy {
    text-align: left;
    font-size: 18px;
    max-width: 525px;
    margin: 24px auto 0
}

@media screen and (min-width: 595px) {
    .top_possibility_copy {
        font-size: 24px;
    }
}

.top_possibility_bold-text {
    font-weight: bold;
}

.top_liver_contents {
    width: 100%;
    border-radius: 20px;
    background: var(--gray-color02);
    padding: 0 16px 40px;
}

.liver_contents_main-title {
    font-size: 24px;
    text-align: left;
}

.top_liver_title-fz {
    font-size: 32px;
    font-weight: bold;
}

.top_liver_img-wrapper {
    max-width: 525px;
    height: auto;
    margin: 24px auto 0;
}

.top_liver_img {
    border-radius: 10px;
    object-fit: cover;
}

.top_liver_copy {
    text-align: left;
    max-width: 525px;
    margin: 0 auto;
}

.top_liver_sub-text {
    margin-top: 40px;
}

@media screen and (min-width: 595px) {
    .top_liver_sub-text {
        font-size: 18px;
    }
}

.top_liver_text {
    font-size: 18px;
    font-weight: 500;
    margin-top: 64px;
}

@media screen and (min-width: 595px) {
    .top_liver_text {
        font-size: 20px;
    }
}

.top_liver_text-fwb {
    font-weight: bold;
}


.top_liver_item {
    max-width: 525px;
    height: 70px;
    border-radius: 10px;
    border: 3px solid var(--accent-color);
    margin-top: 64px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 0 16px;
}

.top_liver_item::after {
    content: "";
    font-family: "Zen Maru Gothic";
    font-size: 40px;
    font-weight: 500;
    text-align: center;
    color: var(--accent-color);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--black-color);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -60%);
    
}

.top_liver_item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 72px;
    height: 50px;
    background: var(--gray-color02);
}

.l_item_01::after {
    content: "01";
}

.l_item_02::after {
    content: "02";
}

.l_item_03::after {
    content: "03";
}


.top_liver_item-copy {
    padding: 18px 0;
    text-align: center;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
}

@media screen and (min-width: 595px) {
    .top_liver_item-copy {
        font-size: 18px;
    }
}

.top_anxious_main-contents {
    width: 100%;
    border-radius: 20px;
    background: #ECEEFA;
    padding-bottom: 40px;
    position: relative;
}

.top_anxious_sub-contents {
    width: 100%;
    border-radius: 20px;
    background:  #FFB;
    padding-bottom: 40px;
    margin-top: 10px;
}

.top_anxious_main-contents::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 30px 0 30px;
    border-color:  #ECEEFA transparent transparent transparent;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
}

.top_anxious_main-title {
    font-size: 24px;
    text-align: left;
    padding: 32px 16px 0;
    max-width: 525px;
    margin: 0 auto;
}

@media screen and (min-width: 595px) {
    .top_anxious_main-title {
        font-size: 32px;
    }
}

.top_anxious_img-wrapper {
    margin: 32px auto 0;
    max-width: 525px;
    height: auto;
    padding: 0 16px;
}

.top_anxious_img {
    border-radius: 10px;
    object-fit: cover;
}

.top_anxious_main-copy {
    margin: 32px auto 0;
    font-size: 20px;
    text-align: left;
    padding: 0 16px;
    max-width: 525px;
}

@media screen and (min-width: 595px) {
    .top_anxious_main-copy {
        font-size: 24px;
    }
}

.top_anxious_sub-title {
    padding: 64px 26px 0;
    font-size: 24px;
    font-weight: bold;
    text-align: left;
    max-width: 525px;
    margin: 0 auto;
}

@media screen and (min-width: 595px) {
    .top_anxious_sub-title {
        font-size: 30px;
    }
}

.top_anxious_sub-copy {
    margin: 32px auto 0;
    font-size: 20px;
    font-weight: bold;
    padding: 0 16px;
    text-align: left;
    max-width: 525px;
}

@media screen and (min-width: 595px) {
    .top_anxious_sub-copy {
        font-size: 24px;
    }
}

.accent_btn {
    background: var(--gray-color02);
    color: var(--black-color);
    position: relative;
    z-index: 1;
    transition: .3s;
}

.accent_btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 100vh;
    box-sizing: border-box;
    z-index: -1;
    transform:  scale(1.2);
    opacity: 0;
    transition: transform ease .3s, opacity .3s;
}

.accent_btn:hover {
    color: var(--white-color);
    background: #9370db;
    border: none;
}

.accent_btn:hover::before {
    transform: scale(1);
    opacity: 1;
}

.accent_btn:hover::after {
    border-color: transparent transparent transparent var(--white-color);
}

.accent_btn::after {
    border-color: transparent transparent transparent var(--black-color);
}  



.top_support_contents {
    width: 100%;
    border-radius: 20px;
    background: var(--gray-color02);
    padding-bottom: 40px;
}

.m_section_main-title {
    font-family: "Zen Maru Gothic";
    font-size: 40px;
    font-weight: bold;
    background: linear-gradient(90deg, #CCF 0.5%, #E8DEF8 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--black-color);
    padding-top: 24px;
}

@media screen and (min-width: 595px) {
    .m_section_main-title {
        font-size: 48px;
    }
}

.top_support_copy {
    text-align: left;
    padding: 0 16px;
}

.top_support_main-text {
    margin: 32px auto 0;
    font-size: 24px;
    max-width: 525px;
}

@media screen and (min-width: 595px) {
    .top_support_main-text {
        font-size: 32px;
    }
}

.top_support_sub-text {
    font-size: 14px;
    margin: 0 auto;
    max-width: 525px;
}

@media screen and (min-width: 595px) {
    .top_support_sub-text {
        font-size: 18px;
    }
}

.top_support_content {
    margin: 40px auto 0;
    padding: 0 32px;
    max-width: 525px;
}

.top_support_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0 32px;
}

.top_support_item:not(:first-child) {
    margin-top: 24px;
}

.top_support_item:nth-child(2) {
    margin-top: 0;
}

.top_support_img-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    border: 2px solid var(--black-color);
}

@media screen and (min-width: 430px) {
    .top_support_img-wrapper {
        width: 140px;
        height: 140px;
    }
}

@media screen and (min-width: 500px) {
    .top_support_img-wrapper {
        width: 180px;
        height: 180px;
        border-radius: 20px;
    }
}

.top_support_img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.top_support_text {
    font-size: 12px;
    text-align: center;
    margin-top: 8px;
    height: 43px;
    font-weight: bold;
}

@media screen and (min-width: 430px) {
    .top_support_text {
        font-size: 14px;
    }
}

@media screen and (min-width: 500px) {
    .top_support_text {
        font-size: 16px;
    }
}

.top_support_copy {
    margin: 40px auto 0;
    font-size: 20px;
    padding: 0 16px;
    text-align: left;
    max-width: 525px;
}

@media screen and (min-width: 595px) {
    .top_support_copy {
        font-size: 24px;
    }
}

.top_message {
    position: relative;
}



.top_message_contents {
    height: 698px;
    background: url(../img/support_bg.png) center;
    background-repeat: no-repeat;
    padding: 0 32px;
}


.top_message_title {
    font-family: "Zen Maru Gothic";
    padding-top: 32px;
    font-size: 30px;
    font-weight: bold;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--black-color);
    background: linear-gradient(90deg, #CCF 0.5%, #E8DEF8 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

@media screen and (min-width: 595px) { 
    .top_message_title {
        font-size: 36px;
    }
}

.top_message_copy {
    text-align: left;
}

.top_message_main-text {
    margin: 32px auto 0;
    font-size: 20px;
    max-width: 525px;
}

@media screen and (min-width: 595px) {
    .top_message_main-text {
        font-size: 22px;
    }
}

.top_message_sub-text {
    margin: 32px auto 0;
    max-width: 525px;
}

@media screen and (min-width: 595px) {
    .top_message_sub-text {
        font-size: 16px;
    }
}

.top_partner_contents {
    padding-bottom: 40px;
}

.top_partner_content {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
}

.top_partner_img-wrapper {
    width: 90px;
    height: 90px;
    margin-right: 12px;
    margin-left: 12px;
}

.top_partner_img {
    object-fit: cover;
    border-radius: 15px;
    height: 90px;
    width: 90px;
}

.top_partner_name {
    text-align: center;
    font-size: 14px;
}

@media screen and (max-width: 800px) {
    @keyframes infinity-scroll-left {
    from {
        transform:translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
    }
    .scroll-infinity__wrap {
        overflow: hidden;
        display: flex;
    }
    .scroll-infinity__list--left {
        animation:infinity-scroll-left 40s infinite linear 0.5s both;
    }
    .scroll-infinity__item {
        width: calc(100vw / 4);
    }
}

@media screen and (min-width: 700px) {
    .top_partner_dn {
        display: none;
    }
}

.top_reward_contents {
    width: 100%;
    border-radius: 20px;
    background: var(--gray-color02);
    padding-bottom: 40px;
}

.top_reward_content {
    padding: 0 16px;
}

.top_reward_item {
    max-width: 525px;
    height: 70px;
    border-radius: 10px;
    border: 3px solid #ead9ff;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.top_reward_item:nth-child(1) {
    margin-top: 42px;
}

.top_reward_item:not(:first-child) {
    margin-top: 24px;
}

.top_reward_item::after {
    content: "";
    font-family: "Zen Maru Gothic";
    font-size: 40px;
    font-weight: 500;
    text-align: center;
    color: #ead9ff;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--black-color);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -60%);
    
}

.top_reward_item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 72px;
    height: 50px;
    background: var(--gray-color02);
}

.r_item_01::after {
    content: "01";
}

.r_item_02::after {
    content: "02";
}

.top_reward_item-copy {
    padding: 20px 0;
    text-align: center;
}

@media screen and (min-width: 595px) {
    .top_reward_item-copy {
        font-size: 18px;
    }
}

.top_reward_plus {
    text-align: center;
    font-size: 32px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--black-color);
    font-family: "Zen Maru Gothic";
    color: #ead9ff;
    font-weight: bold;
}

.top_reward_copy {
    padding: 0 16px;
    margin-top: 32px;
}

.top_reward_main-text {
    font-size: 16px;
    max-width: 525px;
    margin: 0 auto;
}

@media screen and (min-width: 595px) {
    .top_reward_main-text {
        font-size: 20px;
    }
}

.top_reward_fwb {
    font-weight: bold;
}

.top_reward_sub-text {
    max-width: 525px;
    margin: 32px auto 0;
}

@media screen and (min-width: 595px) {
    .top_reward_sub-text {
        font-size: 18px;
    }
}



.case_main-title {
    font-size: 40px;
    font-family: "Zen Maru Gothic";
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--black-color);
    color: #ead9ff;
    text-align: center;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
    font-weight: bold;
}

@media screen and (min-width: 595px) {
    .case_main-title {
        font-size: 48px;
    }
}

.top_case-post {
    max-width: 525px;
    border-radius: 20px;
    border: 1px solid var(--black-color);
    background: var(--gray-color02);
    margin: 32px auto 0;
    padding: 0 16px 8px;
}


.top_case-post_title {
    font-family: "Zen Maru Gothic";
    font-size: 24px;
    font-weight: bold;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--black-color);
    color: var(--accent-color);
    text-align: center;
    margin-top: 12px;
    
}

@media screen and (min-width: 500px) {
    .top_case-post_title {
        font-size: 28px;
    }
}

@media screen and (min-width: 595px) {
    .top_case-post_title { 
        font-size: 32px;
    }
}

.top_case-post_img-wrapper {
    max-width: 525px;
    height: auto;
    margin: 0 auto;
    margin-bottom: 18px;
}

.top_case-post_img {
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.top_case-post_copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
}

@media screen and (min-width: 500px) {
    .top_case-post_copy {
        font-size: 22px;
    }
}

@media screen and (min-width: 595px) {
    .top_case-post_copy {
        font-size: 24px;
    }
}

.flow_main-title {
    font-size: 40px;
    font-family: "Zen Maru Gothic";
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--black-color);
    color: #ead9ff;
    text-align: center;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
    font-weight: bold;
}

@media screen and (min-width: 595px) {
    .flow_main-title {
        font-size: 48px;
    }
}

.top_flow-post {
    max-width: 525px;
    border-radius: 20px;
    border: 1px solid var(--black-color);
    background: var(--gray-color02);
    margin: 32px auto 0;
    padding: 0 16px 16px;
}

.top_flow-post_title {
    font-family: "Zen Maru Gothic";
    font-size: 24px;
    font-weight: bold;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--black-color);
    color: var(--accent-color);
    text-align: center;
    margin-top: 12px;
}

@media screen and (min-width: 500px) {
    .top_flow-post_title {
        font-size: 28px;
    }
}

@media screen and (min-width: 595px) {
    .top_flow-post_title { 
        font-size: 32px;
    }
}

.top_flow-post_img-wrapper {
    max-width: 525px;
    height: auto;
    margin: 0 auto;
}

.top_flow-post_img {
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}


.top_flow-post_main-text {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-top: 12px;
}

@media screen and (min-width: 500px) {
    .top_flow-post_main-text {
        font-size: 22px;
    }
}

@media screen and (min-width: 595px) {
    .top_flow-post_main-text {
        font-size: 24px;
    }
}

.top_flow-post_sub-text {
    font-size: 14px;
    margin-top: 12px;
}

@media screen and (min-width: 500px) {
    .top_flow-post_sub-text {
        font-size: 16px;
    }
}

@media screen and (min-width: 595px) {
    .top_flow-post_sub-text {
        font-size: 18px;
    }
}

.flow-step_btn-wrapper {
    width: 220px;
    height: 59px;
    margin-top: 24px;
}

.flow-step_btn {
    background: #61CF8E;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}

.flow-step_btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 100vh;
    box-sizing: border-box;
    z-index: -1;
    transform:  scale(1.2);
    opacity: 0;
    transition: transform ease .3s, opacity .3s;
}

.flow-step_btn:hover {
    color: #61CF8E;
    background: var(--white-color);
    border: 2px solid #61CF8E;
}

.flow-step_btn:hover::before {
    transform: scale(1);
    opacity: 1;
}

.flow-step_btn:hover::after {
    border-color: transparent transparent transparent #61CF8E;
}




.top_qa_contents {
    width: 100%;
    background: var(--gray-color02);
    border-radius: 20px;
    padding: 0 16px;
}

.top_qa_wrapper {
    padding-top: 32px;
    padding-bottom: 40px;
}

.top_qa_button {
    width: 100%;
    border-radius: 10px;
    background: #ECEEFA;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    padding: 0 16px;
    margin: 0 auto;
}

.top_qa_button:not(:first-child) {
    margin-top: 24px;
}


.top_qa_content {
    display: flex;
}

.top_qa_icon {
    font-size: 12px;
    font-weight: bold;
    margin: auto 0;
}

@media screen and (min-width: 595px) {
    .top_qa_icon {
        font-size: 16px;
    }
}

.top_qa_icon__q {
    color: var(--accent-color);
}

.top_qa_txt {
    font-size: 14px;
    text-align: left;
    padding: 24px 8px;
}

@media screen and (min-width: 595px) {
    .top_qa_txt {
        font-size: 16px;
    }
}

.top_qa_mark {
    width: 10px;
    height: 10px;
    position: relative;
    flex-shrink: 0;
}

.top_qa_mark::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 100%;
    background: var(--black-color);
}

.top_qa_mark::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 2px;
    background: var(--black-color);
}


.js_body.is-active {
    overflow: hidden;
}

.js_navigation {
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s;
}

@media screen and (min-width: 1080px) {
    .js_navigation {
        pointer-events: auto;
        opacity: 1;
    }
}

.js_navigation.is-active {
    opacity: 1;
    pointer-events: inherit;
}

.js_hamburger.is-active .m_hamburger-bar:first-child {
    top: 50%;
    transform: translate(-50%, 0) rotate(45deg);
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(2) {
    opacity: 0;
}

.js_hamburger.is-active .m_hamburger-bar:last-child {
    top: 50%;
    transform: translate(-50%, 0) rotate(-45deg);
}

.js_btn.is-active {
    opacity: 0;
    transition: opacity 1s;
}


.js_faq-a {
    height: 0;
    opacity: 0;
}


.js_faq_mark.is-open::before {
    opacity: 0;
}


.company_main {
    position: relative;
}

.company_kv_copy {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    font-family: "Zen Maru Gothic";
    padding-top: 134px;
}

@media screen and (min-width: 595px) {
    .company_kv_copy {
        font-size: 40px;
    }
}

.company_contents {
    max-width: 525px;
    border-radius: 20px;
    background: var(--gray-color02);
    padding: 0 16px;
    margin: 0 auto;
}

.company_title {
    font-family: "Zen Maru Gothic";
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    padding-top: 24px;
}

.company_title:not(:first-child) {
    margin-top: 24px;
}

@media screen and (min-width: 595px) {
    .company_title {
        font-size: 24px;
    }
}

.company_profile {
    margin-top: 24px;
    border: 1px solid var(--black-color);
    width: 100%;
}

.company_tr {
    border: 1px solid var(--black-color);
}

.company_th {
    font-size: 12px;
    text-align: center;
    font-weight: bold;
}

@media screen and (min-width: 595px) {
    .company_th {
        font-size: 14px;
    }
}

.company_td {
    border: 1px solid var(--black-color);
    padding: 12px 4px;
}

.company_text {
    font-size: 12px;
}

@media screen and (min-width: 595px) {
    .company_text{
        font-size: 14px;
    }
}

.company_map-wrapper {
    width: 100%;
    height: 250px;
    margin-top: 24px;
}

@media screen and (min-width: 595px) {
    .company_map-wrapper {
        height: 280px;
    }
}

.company_map {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company_box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 56px;
    padding-bottom: 40px;
}


.company_img-wrapper {
    width: 60px;
    height: 60px;
}

.company_line {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company_copy {
    font-size: 12px;
    padding-left: 24px;
}

@media screen and (min-width: 595px) {
    .company_copy {
        font-size: 14px;
    }
}