/* ----------------------------------------
パーツ
---------------------------------------- */

.fade_in {
    animation: fadeIn 1s ease-in-out;
    animation-delay: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lp2_fix_btn {
    position: fixed;
    bottom: 10px;
    left: 0;
    width: 100%;
    z-index: 999999999;
    display: none;
    animation: fadeIn 0.5s ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: 5s;
    opacity: 0;
}

.lp2_fix_btn .lp_line_btn {
    max-width: 420px;
    margin: 0 auto;
}

@media screen and (max-width: 995px) {
    .sd.appear.header_v2_inner.lp2_header_v2_inner {
        display: none !important;
    }
    .lp2_fix_btn {
        display: block;
    }
}

.fade_up {
    opacity: 0;
}

.loading-delay .fade_up,
.wf-active .fade_up {
    animation: fade-up-item 0.5s ease-out forwards;
}

.is_fade_up {
    opacity: 0;
}

.is_fade_up.is_fade_up_start {
    animation: fade-up-item 0.5s ease-out forwards;
    animation-delay: 0.1s;
}

@keyframes fade-up-item {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.is_fade_left {
    opacity: 0;
}

.is_fade_left.is_fade_left_start {
    animation: fade-left-item 0.5s ease-out forwards;
    animation-delay: 0.1s;
}

@keyframes fade-left-item {
    0% {
        opacity: 0;
        transform: translateX(-50vw);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.is_fade_right {
    opacity: 0;
}

.is_fade_right.is_fade_right_start {
    animation: fade-right-item 0.5s ease-out forwards;
    animation-delay: 0.1s;
}

@keyframes fade-right-item {
    0% {
        opacity: 0;
        transform: translateX(50vw);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade_in {
    opacity: 0;
}

.loading-delay .fade_in,
.wf-active .fade_in {
    animation: fade-in-item 0.8s ease-out forwards;
}

.is_fade_in {
    opacity: 0;
}

.is_fade_in.is_fade_in_start {
    animation: fade-in-item 0.5s ease-out forwards;
    animation-delay: 0.1s;
}

@keyframes fade-in-item {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fade_in_zoom {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
}

.loading-delay .fade_in_zoom,
.wf-active .fade_in_zoom {
    animation: fade-in-zoom-item 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

.is_fade_zoom {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
}

.is_fade_zoom.is_fade_zoom_start {
    animation: fade-in-zoom-item 0.8s ease-out forwards;
    animation-delay: 0.1s;
}

@keyframes fade-in-zoom-item {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3);
    }
    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        transform: scale3d(.9, .9, .9);
    }
    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        transform: scale3d(.97, .97, .97);
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

.is_slide_up {
    position: relative;
    overflow: hidden;
}

.is_slide_up span {
    opacity: 0;
    transform: translate(-50px, 50px);
    display: block;
}

.is_slide_up.is_slide_up_start span {
    animation: slide-up-item 0.5s ease-out forwards;
    animation-delay: 0.1s;
}

.slide_up {
    position: relative;
    overflow: hidden;
}

.slide_up span {
    opacity: 0;
    transform: translate(-50px, 50px);
    display: block;
}

.slide_up img {
    opacity: 0;
    transform: translate(-50px, 50px);
}

.loading-delay .slide_up img,
.wf-active .slide_up img,
.loading-delay .slide_up span,
.wf-active .slide_up span {
    animation: slide-up-item 0.5s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes slide-up-item {
    0% {
        opacity: 0;
        transform: translate(-50px, 50px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

.lp_2_mv_logo.fade_in_zoom {
    animation-delay: 0.8s;
}

.lp_2_mv_text h2.fade_in_zoom {
    animation-delay: 1.2s;
}

.lp_2_mv_label.fade_in_zoom {
    animation-delay: 1.5s;
}

.lp_2_mv_bg_img_01.fade_in {
    animation-delay: 1.8s;
}

.lp_2_mv_bg_img_02.fade_in {
    animation-delay: 1.8s;
}


/* ----------------------------------------
lp2 mv
---------------------------------------- */

.pages_lp_2_mv {
    position: relative;
    display: block;
    overflow: hidden;
}

.parallax_bg {
    position: absolute;
    top: -5%;
    /* 上にはみ出させる */
    left: 0;
    width: 100%;
    height: 110%;
    /* 全体の高さを110%に */
    z-index: 0;
    will-change: transform;
    pointer-events: none;
}

.parallax_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.pages_lp_2_mv .lp_2_mv_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pages_lp_2_mv .lp_2_mv_bg .lp_2_mv_bg_img_01 {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}

.pages_lp_2_mv .lp_2_mv_bg .lp_2_mv_bg_img_02 {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 0;
}

.pages_lp_2_mv .lp_2_mv_inner {
    position: relative;
    z-index: 1;
    /* padding-top: 197px; */
    /* padding-bottom: 276px; */
    padding-top: 49.25vw;
    padding-bottom: 69vw;
    width: 85%;
    max-width: 340px;
    margin: 0 auto;
}

@media screen and (min-width: 480px) {
    .pages_lp_2_mv .lp_2_mv_inner {
        padding-top: 50vw;
        padding-bottom: 68vw;
    }
}

@media screen and (min-width: 636px) {
    .pages_lp_2_mv .lp_2_mv_inner {
        padding-top: 250px;
        padding-bottom: 340px;
    }
}

.pages_lp_2_mv .lp_2_mv_inner .lp_2_mv_inner_contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 23px;
    text-align: center;
}

.pages_lp_2_mv .lp_2_mv_inner .lp_2_mv_logo {
    width: 100%;
    height: auto;
}

.pages_lp_2_mv .lp_2_mv_inner .lp_2_mv_logo img {
    width: 100%;
    height: auto;
}

.pages_lp_2_mv .lp_2_mv_inner .lp_2_mv_text {
    width: 100%;
    height: auto;
}

.pages_lp_2_mv .lp_2_mv_inner .lp_2_mv_text h2 {
    font-size: 34px;
    line-height: 1.4;
    letter-spacing: 0.06em;
    font-weight: 900;
    color: #FFFFFF;
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.2);
    margin-bottom: 0;
}

@media screen and (max-width: 400px) {
    .pages_lp_2_mv .lp_2_mv_inner .lp_2_mv_text h2 {
        /* font-size: 48px; */
        font-size: 8vw;
    }
}

.pages_lp_2_mv .lp_2_mv_inner .lp_2_mv_label {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 14px 20px;
    background-color: #000000;
    border-radius: 100px;
    box-shadow: 0px 10px 10px rgba(255, 255, 255, 0.4);
}

.pages_lp_2_mv .lp_2_mv_inner .lp_2_mv_label img {
    width: 100%;
    height: auto;
}


/* ----------------------------------------
lp2 s1
---------------------------------------- */

section.v2_s.lp2_s1 {
    padding: 40px 0;
}

.lp2_s1 .lp2_s1_contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
}

.lp2_s1 .lp2_s1_contents h2 {
    font-size: 24px;
    font-weight: 900;
    color: #1E2188;
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.2);
    margin-bottom: 0;
    letter-spacing: 0.06em;
    line-height: 1.4;
}

.lp2_s1 .lp2_s1_contents img {
    width: auto;
    height: auto;
}


/* ----------------------------------------
lp2 s2
---------------------------------------- */

section.v2_s.lp2_tmp1 {
    padding: 0 0 40px;
}

.lp2_tmp1_top {
    position: relative;
    height: 375px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    overflow: hidden;
}

.lp2_tmp1_top .lp2_tmp1_top_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.lp2_tmp1_top .lp2_tmp1_top_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp2_tmp1_top .v2_inner {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.lp2_tmp1_top_text {
    position: relative;
    height: auto;
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    padding-top: 40px;
    border-radius: 20px 20px 0px 0px;
    box-sizing: border-box;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}

.lp2_tmp1_top_text .lp2_tmp1_top_label {
    position: absolute;
    top: -20px;
    left: -50px;
    right: -50px;
    margin: auto;
    width: max-content;
    height: auto;
    padding: 14px 20px;
    background: linear-gradient(90deg, #FF7A59 0%, #4D8BFF 100%);
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.05;
    text-align: center;
    letter-spacing: 0.04em;
    color: #FFFFFF;
}

.lp2_tmp1_top_text h2 {
    margin-bottom: 0;
    text-align: center;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    font-weight: 700;
    color: #000000;
    padding-bottom: 20px;
}

.s2_tmp1_top_flex {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
}

.lp2_tmp1_top_text .s2_tmp1_top_flex h2 {
    width: 132px;
    text-align: center;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    font-weight: 900;
    color: #000000;
    margin: 0;
    padding-bottom: 0;
}

.s2_tmp1_top_flex_icon {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    padding: 4px;
    width: 32px;
    height: 32px;
}

.s2_tmp1_top_flex_icon img {
    width: 100%;
    height: auto;
}

.lp2_tmp1_top_text p {
    width: 100%;
    padding: 10px 0;
    background-color: #000000;
    font-size: 26px;
    line-height: 1;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    text-align: center;
}

.lp2_tmp1_bottom_contents {
    padding: 12px;
    background: linear-gradient(180deg, rgba(255, 122, 89, 0.2) 0%, rgba(77, 139, 255, 0.2) 100%);
    border-radius: 0px 0px 8px 8px;
    overflow: hidden;
    box-sizing: border-box;
}

.s2_tmp1_bc_01_01 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
}

.s2_tmp1_bc_01_01_img {
    width: 134px;
    height: auto;
    flex-shrink: 0;
}

.s2_tmp1_bc_01_01_img img {
    width: 100%;
    height: auto;
}

.s2_tmp1_bc_01_01_text {
    width: 100%;
}

.s2_tmp1_bc_01_01_text_label {
    position: relative;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: #333333;
    padding: 0 6px;
    border-radius: 4px;
    background-color: #FFFFFF;
    margin-bottom: 6px;
    width: max-content;
}

.s2_tmp1_bc_01_01_text_label svg {
    width: 14px;
    height: auto;
    position: absolute;
    bottom: -7px;
    right: 8px;
}

.s2_tmp1_bc_01_01_text h3 {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    font-weight: 900;
    color: #000000;
    margin-bottom: 12px;
}

.s2_tmp1_bc_01_01_text p {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.05em;
    font-weight: 900;
    color: #000000;
    margin-bottom: 0;
    -webkit-text-stroke: 2px #FFFFFF;
    paint-order: stroke fill;
}

.s2_tmp1_bc_01_02 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 10px;
    margin-bottom: 24px;
}

.s2_tmp1_bc_01_02_content {
    width: calc(50% - 5px);
    background-color: #FFFFFF;
}

.s2_tmp1_bc_01_02_content .label_text {
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.04em;
    font-weight: 700;
    color: #FFFFFF;
    background-color: #333333;
    padding: 4px 0;
    width: 100%;
    text-align: center;
}

.s2_tmp1_bc_01_02_content p {
    font-size: 13px;
    line-height: 1.8;
    font-weight: 700;
    color: #222222;
    padding: 8px 0;
    margin: 0;
    text-align: center;
}

.s2_tmp1_bc.lp2_tmp1_bottom_content_02 {
    margin-bottom: 24px;
}

.s2_tmp1_bc_02_01 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.s2_tmp1_bc_02_01_text {
    width: 100%;
    position: relative;
    background-color: #FFFFFF;
    padding: 12px;
    box-sizing: border-box;
    border-radius: 12px;
    height: 118px;
}

.s2_tmp1_bc_02_01_text svg.s2_dot.dot_top {
    width: 19px;
    height: auto;
    position: absolute;
    top: -7px;
    left: 0;
    z-index: 1;
}

.s2_tmp1_bc_02_01_text svg.s2_dot.dot_bottom {
    width: 19px;
    height: auto;
    position: absolute;
    bottom: -7px;
    right: 0;
    z-index: 1;
}

.s2_tmp1_bc_02_01_text img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.s2_tmp1_bc_02_01_img {
    flex-shrink: 0;
    width: 112px;
    height: 118px;
}

.s2_tmp1_bc_02_01_img img {
    height: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.s2_tmp1_bc_02_02 p {
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: #222222;
    margin-bottom: 0;
}

.lp2_card_content.f_card_content {
    margin-bottom: 0;
}

.lp2_card_content.f_card_content.fcc_bl {
    background-color: #1E2188;
    outline: 4px solid rgba(30, 33, 136, 0.4);
}

.lp2_card_content.f_card_content.fcc_bl .fcc_content_img_text p {
    color: #1E2188;
}

.lp_line_btn {
    width: 100%;
}

.lp_line_btn_link {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    gap: 10px;
    height: 64px;
    background: #39CD00;
    box-shadow: 0px 0px 20px rgba(61, 243, 11, 0.8);
    border-radius: 50px;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    text-decoration: none;
    color: #FFFFFF !important;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    text-align: center;
}

.lp_line_btn_link svg {
    width: 24px;
    height: auto;
}


/* ----------------------------------------
lp2 s3
---------------------------------------- */

.lp2_s3 .lp2_tmp1_top_text p,
.lp2_s4 .lp2_tmp1_top_text p {
    font-size: 36px;
    line-height: 1;
    letter-spacing: 0.02em;
    font-weight: 900;
}

.s3_tmp1_bc_02_01 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.s3_tmp1_bc_02_01_content {
    width: calc(50% - 5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.s3_tmp1_bc_02_01_content .s3_tmp1_bc_02_01_img {
    width: 143px;
    height: 143px;
    margin-bottom: 10px;
}

.s3_tmp1_bc_02_01_content .s3_tmp1_bc_02_01_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 200px;
}

.s3_tmp1_bc_02_01_content .s3_tmp1_bc_02_01_label {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    border-radius: 100px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.8);
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.04em;
    color: #FFFFFF;
}

.s3_tmp1_bc_02_01_content p {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: #222222;
    margin-bottom: 0;
    text-align: center;
}

.s3_tmp1_bc_02_02_label {
    position: relative;
    background: #1E2188;
    border: 4px solid rgba(77, 139, 255, 0.4);
    border-radius: 4px;
    transform: rotate(5deg);
    transform-origin: left bottom;
    padding: 12px 20px;
    width: 98%;
    z-index: 1;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 3px;
}

.s3_tmp1_bc_02_02_content {
    padding: 20px;
    box-sizing: border-box;
    border-radius: 20px;
    background-size: cover;
}

.s3_tmp1_bc_02_02_content h3 {
    font-size: 22px;
    line-height: 180%;
    letter-spacing: 0.02em;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.s3_tmp1_bc_02_02_content p {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 24px;
}


/* ----------------------------------------
lp2 s4
---------------------------------------- */

.s4_tmp1_bc.lp2_tmp1_bottom_content_01 {
    margin-bottom: 24px;
}

.s4_tmp1_bc.lp2_tmp1_bottom_content_01 img {
    width: 100%;
    height: auto;
    margin-bottom: 24px;
    border-radius: 12px;
}

.s4_tmp1_bc.lp2_tmp1_bottom_content_01 p {
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: #222222;
    margin-bottom: 0;
}


/* ----------------------------------------
lp2 s5
---------------------------------------- */

.bg_blue.bg_blue_2 {
    background-color: #1E2188;
    color: #FFFFFF;
}

section.v2_s.lp2_s5 {
    padding: 40px 0 80px;
}

section.v2_s.lp2_s5 {
    padding: 40px 0 80px;
}

section.v2_s.lp2_s5 .section_title.lp_section_title {
    margin-bottom: 40px;
}

.lp2_BA_before_img_title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 22px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px 12px 0px 0px;
    width: 100%;
    box-sizing: border-box;
}

.lp2_BA_before_img_title .name {
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.02em;
}

.lp2_BA_before_img_title .before {
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    color: #FFFFFF;
}

.lp2_BA_before_img {
    width: 100%;
    margin-bottom: 40px;
}

.lp2_BA_before_img img {
    width: 100%;
    height: auto;
    border-radius: 0 0 12px 12px;
}

.BA_flex_item {
    padding: 12px;
    background-color: #FFFFFF;
    color: #4D8BFF;
    border-radius: 12px;
    box-sizing: border-box;
    margin-bottom: 12px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.BA_flex_item_title {
    font-weight: 400;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.BA_flex_item_text {
    font-weight: 900;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.02em;
}

.BA_flex_item_text.BA_flex_item_text_column {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
    gap: 11px;
    line-height: 1.3;
    text-align: right;
}

.BA_message {
    margin-top: 16px;
}

.BA_message_label {
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}

.BA_message_text {
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.1em;
    font-weight: 500;
    color: #FFFFFF;
}

.lp2_BA_after {
    margin-top: 80px;
}

.lp2_BA_after_img_title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    margin-bottom: 12px;
}

.lp2_BA_after_img_title .name {
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.02em;
}

.lp2_BA_before_img_title .after,
.lp2_BA_after_img_title .after {
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
}

.BA_flex_item.BA_flex_item_column {
    flex-direction: column;
    align-items: flex-end;
}

.BA_flex_item.BA_flex_item_column .BA_flex_item_title {
    margin-right: auto;
}


/* ----------------------------------------
lp2 s6
---------------------------------------- */

section.v2_s.lp2_s6 {
    position: relative;
    z-index: 1;
    margin-top: -40px;
    padding: 40px 0 56px;
    border-radius: 40px;
    color: #FFFFFF;
}


/* ----------------------------------------
lp2 s7
---------------------------------------- */

section.v2_s.lp2_s7 {
    padding: 40px 0 56px;
}

p.lp_title_bl {
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: #4D8BFF;
    margin: 12px 0 4px;
}

p.lp_title_gr {
    font-size: 26px;
    line-height: 1.4;
    letter-spacing: 0.03em;
    font-weight: 700;
    color: #39CB92;
    margin-bottom: 40px;
}

p.lp_title_gr span {
    color: #000000;
}


/* slider ここから */


/* LP2 Manager Slider */

.lp2_manager_slider {
    position: relative;
    padding-bottom: 40px;
    margin: 0 auto;
    max-width: 100%;
}

.lp2_manager_slider .slick-list {
    overflow: hidden;
}

.lp2_manager_slider .slick-track {
    display: flex;
    align-items: stretch;
}

.lp2_manager_slider .lp2_manager_slider_item {
    height: auto;
    outline: none;
    /* padding: 0 10px; */
    box-sizing: border-box;
}


/* LP2 Manager Slider Items */

.lp2_manager_slider_item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 24px;
    width: 100%;
    /* max-width: 100%; */
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255, 122, 89, 0.2) 0%, rgba(77, 139, 255, 0.2) 100%);
    border: 4px solid rgba(77, 139, 255, 0.4);
    border-radius: 12px;
    box-sizing: border-box;
}


/* @media (max-width: 480px) {
    .lp2_manager_slider_item {
        width: 92%;
    }
} */


/* 上部コンテンツ */

.lp2_manager_content {
    width: 100%;
}

.lp2_manager_content_top {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.lp2_manager_content_top_img {
    flex: 0 0 114px;
    width: 114px;
    height: 128px;
    border-radius: 12px;
    overflow: hidden;
}

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

.lp2_manager_content_top_text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}


/* 名前 */

.lp2_manager_content_name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.lp2_manager_content_label {
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: #333333;
    margin: 0;
    white-space: nowrap;
}

.lp2_manager_content_top_text .name {
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: #333333;
    font-weight: 700;
    margin: 0;
    margin-left: auto;
}


/* MBTI */

.lp2_manager_content_mbti {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.lp2_manager_content_mbti .lp2_manager_content_text {
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    text-align: right;
    letter-spacing: 0.02em;
    color: #333333;
    margin: 0;
}


/* ギフティング額 */

.lp2_manager_content_gift {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.lp2_manager_content_gift .lp2_manager_content_text {
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    text-align: right;
    letter-spacing: 0.02em;
    color: #333333;
    margin: 0;
}

.lp2_manager_content_gift .lp2_manager_content_text .unit {
    font-size: 18px;
    font-weight: 700;
    margin-left: 4px;
}


/* 下部コンテンツ */

.lp2_manager_content_bottom {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 24px;
}

.lp2_manager_content_bottom_content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp2_manager_content_bottom_content_title {
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.02em;
    color: #333333;
    margin: 0;
}

.lp2_manager_content_bottom_content_ul {
    margin: 0;
    padding-left: 1.2em;
}

.lp2_manager_content_bottom_content_ul li {
    font-weight: 500;
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.1em;
    color: #333333;
    list-style-type: disc;
    margin-bottom: 0.5em;
}

.lp2_manager_content_bottom_content_ul li:last-child {
    margin-bottom: 0;
}

.lp2_manager_content_bottom_content_text {
    font-weight: 500;
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.1em;
    color: #333333;
    margin: 0;
}


/* レスポンシブ対応 */


/* @media (max-width: 768px) {
    .lp2_manager_slider .slick-prev {
        left: 0;
    }
    .lp2_manager_slider .slick-next {
        right: 0;
    }
    .lp2_manager_slider .lp2_manager_slider_item {
        padding: 0;
    }
} */

section.v2_s.lp2_s7 .news-slider-dots li button {
    background-color: #707070;
}

section.v2_s.lp2_s7 .news-slider-dots li.slick-active button {
    border-color: #707070;
    background-color: transparent;
}


/* slider ここまで */

.lp2_manager_bottom_item {
    margin-bottom: 80px;
}


/* ----------------------------------------
lp2 s8
---------------------------------------- */

section.v2_s.lp2_s8 {
    position: relative;
    z-index: 1;
    margin-top: -40px;
    padding: 40px 0 56px;
    border-radius: 40px;
    /* color: #FFFFFF; */
}

.lp2_flow_text {
    margin-bottom: 56px;
}

.lp2_flow_text p {
    font-weight: 700;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.02em;
}

.lp2_flow_img {
    margin-bottom: 56px;
    width: 100%;
}

.lp2_flow_img img {
    width: 100%;
    height: auto;
}


/* ----------------------------------------
lp2 s9
---------------------------------------- */

section.v2_s.lp2_s9 {
    padding: 40px 0;
    background-color: #FFFFFF;
    position: relative;
    z-index: 1;
    border-radius: 40px;
}


/* 横スクロール要素 ここから */


/* LP2 Comparison Table (Overflow Scroll) */

.lp2_comparison_wrapper {
    width: 100%;
    /* margin-bottom: 80px; */
    position: relative;
    z-index: 1;
}

.lp2_comparison_wrapper .v2_inner {
    width: 100%;
}

.comparison_container {
    width: 100%;
}

.comparison_scroll_area {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* スマホでの慣性スクロール */
    position: relative;
    /* スクロールバー非表示 */
    -ms-overflow-style: none;
    /* IE, Edge */
    scrollbar-width: none;
    /* Firefox */
}


/* Chrome, Safari, Opera */

.comparison_scroll_area::-webkit-scrollbar {
    display: none;
}

.comparison_table {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    /* 中身に合わせて幅を確保 */
    min-width: 100%;
    padding: 0 30px;
}

@media screen and (max-width: 480px) {
    .comparison_table {
        padding: 0 20px;
    }
}


/* カラム共通 */

.c_column {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.c_row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-sizing: border-box;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.02em;
    width: 100%;
}


/* 行の高さ定義 (共通) */

.c_row.head {
    height: 70px;
}

.c_column:not(.c_labels) .c_row.head {
    height: 100px;
}


/* ロゴが入る自社と他社A/Bのヘッダーは高さを取る */

.c_row:nth-child(2) {
    height: 80px;
}


/* 所属人数 */

.c_row:nth-child(3) {
    height: 80px;
}


/* ライバーマネージャー数 */

.c_row:nth-child(4) {
    height: 80px;
}


/* サポートパートナー企業 */

.c_row:nth-child(5) {
    height: 80px;
}


/* プロモーション予算 */

.c_row:nth-child(6) {
    height: 108px;
}


/* 講習会・育成 */

.c_row:nth-child(7) {
    height: 80px;
}


/* 相談体制 */

.c_row:nth-child(8) {
    height: 90px;
}


/* サポート制度 */


/* 左側：項目名カラム (固定) */

.c_column.c_labels {
    /* position: sticky; */
    left: 0;
    z-index: 2;
    width: 100px;
    background-color: #fff;
    filter: drop-shadow(2px 0 5px rgba(0, 0, 0, 0.05));
    /* 固定列の境界に影 */
}

.c_column.c_labels .c_row {
    background: #FFFFFF;
    border-bottom: 4px solid #F6F6F6;
    border-right: 4px solid #F6F6F6;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3;
    color: #000000;
    padding: 5px;
}

.c_column.c_labels .c_row.head {
    background-color: transparent;
    /* ヘッダー部分は背景なし（上の余白と合わせるなら調整） */
    border: none;
    height: 100px;
    /* 他カラムのヘッダー高さに合わせる */
}


/* 自社カラム (CARVEOUT) */

.c_column.c_self {
    width: 210px;
    position: relative;
    z-index: 1;
    margin-right: 8px;
    /* 他社との隙間 */
}

.c_column.c_self .c_row {
    background: #FFFFFF;
    border-left: 12px solid #1E2188;
    border-right: 12px solid #1E2188;
    border-bottom: 4px solid #1E2188;
    color: #222222;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.6;
}

.c_column.c_self .c_row.head {
    background: #1E2188;
    border: none;
    border-radius: 8px 8px 0 0;
    align-items: flex-start;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c_column.c_self .c_row.head img {
    width: 188px;
    height: auto;
    max-width: 90%;
}

.c_column.c_self .c_row:nth-child(6) {
    /* 講習会 */
    font-size: 13px;
    padding: 0 10px;
}

.c_column.c_self .c_row:nth-child(7) span {
    /* マネージャー2名の下の文字 */
    display: block;
    font-size: 10px;
    font-weight: 500;
}

.c_column.c_self .c_row:nth-child(8) {
    /* サポート制度 */
    font-size: 13px;
    padding: 0 10px;
    border-radius: 0 0 0 0;
    /* 下部の青いバーは別途擬似要素でつけるか、親要素で背景をつける */
}


/* 自社カラムの下部の青い帯 */

.c_column.c_self::after {
    content: "";
    display: block;
    height: 12px;
    width: 100%;
    background: #1E2188;
    border-radius: 0 0 8px 8px;
    margin-top: -4px;
    /* ボーダーと重ねる */
    position: relative;
    z-index: 2;
}


/* 他社カラム (A社, B社) */

.c_column.c_other {
    width: 140px;
}

.c_column.c_other .c_row {
    background: #FFFFFF;
    border-bottom: 4px solid #F6F6F6;
    border-right: 4px solid #F6F6F6;
    /* 各セルの右ボーダー */
    color: #222222;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.6;
}

.c_column.c_other .c_row.head {
    background: #5E5E5E;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 28px;
    border: none;
    border-right: 1px solid #777;
    height: 70px;
    margin-top: 30px;
    /* ヘッダー間の区切り線 */
}

.c_column.c_other:last-child .c_row.head {
    border-right: none;
}


/* レスポンシブ調整 (SP) */

@media (max-width: 480px) {
    .lp2_comparison_wrapper {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        padding-right: 0;
    }
    .comparison_scroll_area {
        padding-left: 0;
    }
    .c_column.c_labels {
        filter: drop-shadow(4px 0 4px rgba(0, 0, 0, 0.1));
    }
}


/* 横スクロール要素 ここまで */


/* ----------------------------------------
Manager
---------------------------------------- */


/* ----------------------------------------
Animation
---------------------------------------- */

.js-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.js-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}