/* --------------------------------------
LP1 共通
-------------------------------------- */

.SMB_400 {
    font-family: "Shippori Mincho B1", serif;
    font-weight: 400;
    font-style: normal;
}

.SMB_500 {
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
}

.SMB {
    font-family: "Shippori Mincho B1", serif;
    font-weight: 800;
    font-style: normal;
}

.OW {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

header.lp1_header {
    position: absolute;
    background-color: transparent;
    border-bottom-width: 0;
    padding-top: 12px;
}

.lp1_logo {
    width: 140px;
}

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

.main_lp1 {
    padding: 0;
}

.lp1_inner {
    width: 85%;
    margin: auto;
}

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

.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;
}

.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);
    }
}

.fade_left {
    opacity: 0;
}

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

.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(-10vw);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade_right {
    opacity: 0;
}

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

.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(10vw);
    }
    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.8);
    transform: scale(0.8);
}

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

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

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

@keyframes fade-in-zoom-item {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}


/* @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);
    }
}

.lp1_mv_p.lp1_mv_p_01.fade_in_zoom,
.lp1_mv_p.lp1_mv_p_01.slide_up span,
.lp1_mv_p.lp1_mv_p_01.fade_left {
    animation-delay: 0.5s;
}

.lp1_mv_p.lp1_mv_p_02.fade_in_zoom,
.lp1_mv_p.lp1_mv_p_02.slide_up span,
.lp1_mv_p.lp1_mv_p_02.fade_left {
    animation-delay: 0.8s;
}

.lp1_mv_p.lp1_mv_p_03.fade_in_zoom,
.lp1_mv_p.lp1_mv_p_03.slide_up span,
.lp1_mv_p.lp1_mv_p_03.fade_left {
    animation-delay: 1.1s;
}

.lp1_mv_content_top_img.fade_in_zoom,
.lp1_mv_content_top_img.slide_up span,
.lp1_mv_content_top_img.slide_up img,
.lp1_mv_content_top_img.fade_left {
    animation-delay: 1.6s;
}

.lp1_mv_content_bottom h2.fade_in_zoom,
.lp1_mv_content_bottom h2.slide_up span,
.lp1_mv_content_bottom h2.fade_left {
    animation-delay: 1.9s;
}

.lp1_mv_content_bottom p.fade_in_zoom,
.lp1_mv_content_bottom p.slide_up span,
.lp1_mv_content_bottom p.fade_left {
    animation-delay: 2.2s;
}


/* --------------------------------------
MV
-------------------------------------- */

.lp1_mv {
    padding-bottom: 105px;
    position: relative;
    overflow: hidden;
}

.lp1_mv_content_top {
    padding: 282px 0 115px;
}

.lp1_mv_content_top_text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
    margin-bottom: 9px;
}

.lp1_mv {
    background-size: cover;
}

.lp1_mv_content_top_text p {
    font-weight: 900;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.04em;
}

.lp1_mv_content_top_text p.text_bg_bk.text_bb_gr {
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.04em;
}

.text_bg_bk {
    background: rgba(0, 0, 0, 0.6);
    padding: 6px 5px;
    color: #FFFFFF;
}

.text_bg_wh {
    background: rgba(255, 255, 255, 0.6);
    padding: 6px 5px;
}

.text_bb_or {
    border-bottom: 3px solid #FFB739;
}

.text_bb_gr {
    border-bottom: 3px solid #3EE4A3;
}

.lp1_mv_content_top_img img {
    width: 100%;
    height: auto;
    margin-bottom: 9px;
}

.lp1_mv_content_top_img p {
    font-weight: 800;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0.16em;
    color: #FFFFFF;
}

.lp1_mv_content_bottom {
    color: #FFFFFF;
}

.lp1_mv_content_bottom h2 {
    font-weight: 800;
    font-size: 26px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.lp1_mv_content_bottom p {
    font-weight: 700;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
}

.lp1_mv_content_bottom_btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

a.lp1_line_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 64px;
    padding: 0 16px;
    color: #FFFFFF;
    box-sizing: border-box;
    background-color: #39CD00;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    border-radius: 100px;
}

a.lp1_line_btn img {
    width: 24px;
    height: auto;
}


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

.lp1_section_wrapper {
    position: relative;
}

.lp1_bg_img {
    position: absolute;
    left: 0;
    top: -17px;
}

section.lp1_section {
    padding: 40px 0;
    overflow: hidden;
}

.lp1_section.lp1_s1 {
    padding-bottom: 0;
}

.bg_gra {
    background: linear-gradient(168.64deg, #E4C5DE 0.05%, #9AC5E9 100.05%);
}

.lp1_s1_content h2 {
    font-weight: 800;
    font-size: 26px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    margin-bottom: 32px;
}

.lp1_s1_content_text {
    position: relative;
    margin-bottom: 10px;
}

.lp1_s1_content_text p {
    font-weight: 700;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
}

.lp1_s1_content_bg {
    position: absolute;
    right: -2px;
    top: 13px;
    width: 220px;
    height: auto;
}

.lp1_s1_content_img {
    position: relative;
    padding-top: 20px;
}

.lp1_s1_c_flame {
    width: 100%;
    max-width: 260px;
    height: 300px;
    border-radius: 20px 20px 0 0;
    background-color: #D9D9D9;
    margin: auto;
    border: 10px solid #FFFFFF;
    border-bottom: 0;
}

.lp1_s1_content_img_inner {
    position: absolute;
    left: -100%;
    right: -100%;
    top: 0;
    width: 200%;
    height: 100%;
    bottom: 0;
    margin: auto;
}

.lp1_s1_slider {
    width: 100%;
    height: 323px;
}

.lp1_s1_content_img_inner_img,
.lp1_s1_content_img_inner_img_left,
.lp1_s1_content_img_inner_img_center,
.lp1_s1_content_img_inner_img_right {
    width: 239px;
    height: 323px;
    margin: auto;
}

.lp1_s1_content_img_inner img {
    width: 239px;
    height: 323px;
    object-fit: contain;
    object-position: center bottom;
}

.lp1_s1_content_img_inner .slick-slide {
    opacity: 0.4;
    animation: fadeOut 0.5s ease forwards;
}

.lp1_s1_content_img_inner .slick-slide.slick-active {
    opacity: 1;
    animation: fadeIn2 0.5s ease forwards;
}

@keyframes fadeIn2 {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0.4;
    }
}


/* .lp1_s1_content_img_inner_img_left {
    position: absolute;
    left: -156px;
    bottom: 0;
    width: max-content;
    height: 323px;
    opacity: 0.4;
} */


/* .lp1_s1_content_img_inner_img_center {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 239px;
    height: 323px;
    margin: auto;
} */


/* .lp1_s1_content_img_inner_img_right {
    position: absolute;
    right: -150px;
    bottom: 0;
    width: max-content;
    height: 323px;
    opacity: 0.4;
} */


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

.lp1_section.lp1_s2 {
    position: relative;
    overflow: hidden;
    padding: 68px 0;
}

.lp1_section.lp1_s2 .lp1_inner {
    position: relative;
    z-index: 1;
}

.lp1_content1 {
    position: relative;
    overflow: hidden;
    padding: 32px 20px;
    color: #FFFFFF;
    border-radius: 8px;
}

.lp1_content1_inner {
    position: relative;
    z-index: 1;
}

.lp1_content1_title {
    font-weight: 800;
    font-size: 22px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    margin-bottom: 12px;
}

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


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

.lp1_s_title {
    position: relative;
    margin-bottom: 40px;
    padding-top: 40px;
}

.s_title_bg_text {
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
    color: rgba(154, 197, 233, 0.1);
    -webkit-text-stroke: 1px rgba(154, 197, 233, 0.2);
    font-weight: 700;
    font-size: 80px;
    line-height: 1;
}

.lp1_s_title h2 {
    font-weight: 800;
    font-size: 28px;
    line-height: 1.4;
    letter-spacing: 0.03em;
}

.text_gr {
    color: #39CB92;
}

.text_or {
    color: #FFB739;
}


/* --------------------------------------
s3 contents
-------------------------------------- */

.lp1_s3_contents {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    margin: 0 auto;
}

.lp1_s3_content {
    /* bg_gra は共通クラスで定義済み */
    box-shadow: 0px 0px 30px rgba(255, 183, 57, 0.3);
    position: relative;
    padding-top: 20px;
    padding-bottom: 30px;
    border-radius: 8px;
    padding: 20px 20px 30px;
    box-sizing: border-box;
    overflow: hidden;
}


/* Title Area */

.lp1_s3_content_title {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    min-height: 80px;
    /* 番号の高さ分を確保 */
}

.lp1_s3_c_num {
    font-family: 'Oswald', sans-serif;
    font-size: 80px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    font-weight: 700;
}

.lp1_s3_c_title_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
    margin-left: auto;
    /* margin-right: auto; */
    width: max-content;
    max-width: 100%;
}

.lp1_s3_content_title h3.text_bg_bk {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    padding: 2px 15px;
    white-space: nowrap;
    border-radius: 0;
    margin: 0;
}

.lp1_s3_content_title h3.SMB {
    font-size: 26px;
    line-height: 1.4;
    color: #333333;
    margin: 0;
    white-space: nowrap;
}


/* Content Images & Texts */

.lp1_s3_content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.lp1_s3_content p {
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
}


/* C1 */

.lp1_s3_c1_item {
    margin-bottom: 20px;
}

.lp1_s3_c1_item p {
    margin-top: 10px;
    font-size: 14px;
}

.lp1_s3_c1_item2 {
    background-size: contain;
    background-position: center;
    background-repeat: repeat;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    min-height: 60px;
    background-color: #F7F9D7;
}

.lp1_s3_c1_item2 p {
    font-size: 12px;
    margin: 0;
}


/* C2 */

.lp1_s3_c2_item {
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.lp1_s3_c2_item2 ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.lp1_s3_c2_item2 li {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #E3E3E3;
    padding: 10px 12px;
    border-radius: 8px;
}

.lp1_s3_c2_li_1 {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.lp1_s3_c2_li_2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.lp1_s3_c2_li_2 .text_bg_bk {
    font-size: 14px;
    padding: 2px 10px;
    line-height: 1.4;
    white-space: nowrap;
}

.lp1_s3_c2_li_2 p:last-child {
    font-size: 13px;
    margin: 0;
    text-align: left;
}


/* C3 */

.lp1_s3_c3_item {
    margin-bottom: 10px;
}

.lp1_s3_c3_text p {
    font-size: 14px;
    line-height: 2;
    text-align: left;
}


/* C4 */

.lp1_s3_c4_item {
    margin-bottom: 20px;
}

.lp1_s3_c4_item2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp1_s3_c4_item2 li {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #E3E3E3;
    padding: 10px 12px;
    border-radius: 8px;
}

.lp1_s3_c4_li_1 {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.lp1_s3_c4_li_2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.lp1_s3_c4_li_2 .text_bg_bk {
    font-size: 14px;
    padding: 2px 10px;
    white-space: nowrap;
}

.lp1_s3_c4_li_2 p:last-child {
    font-size: 13px;
    margin: 0;
    text-align: left;
}


/* C5 */

.lp1_s3_c5_item img {
    width: calc(100% + 40px);
    max-width: none;
    margin-left: -20px;
    margin-right: -20px;
}

.lp1_s3_c5_item p {
    font-size: 14px;
    margin-top: 10px;
}


/* C6 */

.lp1_s3_c6_item p {
    font-size: 14px;
    margin-top: 10px;
}


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


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

.lp1_section.lp1_s5 {
    background: linear-gradient(168.64deg, #E4C5DE 0.05%, #9AC5E9 33.22%, #D1C5E1 75.05%, #9AC5E9 96.69%);
    /* padding-bottom: 80px; */
}

.lp1_s5_slider {
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
    /* スライダーの左右に少し隙間を持たせる場合 */
}


/* Slide Item */

.lp1_s5_slide {
    padding: 0 10px;
    box-sizing: border-box;
}

.lp1_s5_slide_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-top: 10px;
    /* 上部調整 */
}


/* Character Image */

.lp1_s5_char_img {
    width: 335px;
    max-width: 100%;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    /* overflow: hidden; */
    /* background: linear-gradient(168.64deg, #CD2D3D 0.05%, #100F10 100.05%); */
    /* 画像がない場合の背景としても機能 */
}


/* まどろみきなこ */

.lp1_s5_char_img::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    /* 画像の下部をはみ出させるための高さ調整 */
    background: linear-gradient(168.64deg, #58497C 0.05%, #271F36 100.05%);
    background-size: 200% 200% !important;
    animation: gradientFlow 10.23s ease infinite;
    border-radius: 20px 20px 0 0;
    z-index: -1;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 0%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}


/* Slide 1 (Default) - Purple */


/* まどろみきなこ */


/* Slide 2 - Purple */


/* 爆睡ゆめみ */

.lp1_s5_slide02 .lp1_s5_char_img::before {
    background: linear-gradient(168.64deg, #3A3D78 0.05%, #373737 100.05%);
}


/* Slide 3 - Pink/Blue */


/* 日向ささ */

.lp1_s5_slide03 .lp1_s5_char_img::before {
    background: linear-gradient(168.64deg, #FEDC87 0.05%, #039D00 100.05%);
}


/* 愛結羽とわ */

.lp1_s5_slide04 .lp1_s5_char_img::before {
    background: linear-gradient(168.64deg, #CCE1EF 0.05%, #D68CB0 100.05%);
}

.lp1_s5_char_img img {
    width: auto;
    height: 437px;
    display: block;
    position: relative;
    z-index: 1;
    margin: auto;
}


/* Text Area */

.lp1_s5_text_area {
    width: 100%;
    max-width: 375px;
    /* margin-top: -80px; */
    /* 画像に被せる */
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lp1_s5_text_deco_top,
.lp1_s5_text_deco_bottom {
    width: 45px;
    height: auto;
    position: absolute;
    z-index: 2;
}

.lp1_s5_text_deco_top {
    top: 0;
    left: 0;
}

.lp1_s5_text_deco_bottom {
    bottom: 0;
    right: 0;
}

.lp1_s5_text {
    /* background: rgba(255, 255, 255, 0.6); */
    /* background: rgba(154, 197, 233, 0.8); */
    /* #9AC5E9 ベース */
    /* backdrop-filter: blur(17px); */
    /* -webkit-backdrop-filter: blur(17px); */
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: -1px 0;
    /* SVGとの隙間埋め */
    position: relative;
    z-index: 1;
}

.lp1_s5_text::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 透明度をさらに下げる (0.6 -> 0.2) */
    background: rgba(154, 197, 233, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: -1;
}

.lp1_s5_text p.SMB_500 {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.03em;
    color: #333333;
    text-align: left;
    position: relative;
}

.lp1_s5_name_area {
    width: 100%;
    max-width: 375px;
    padding: 0 20px;
    box-sizing: border-box;
    margin-top: 10px;
    text-align: left;
}

.lp1_s5_name {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.03em;
    color: #2969E0;
    margin: 0;
}


/* Dots Customization (slick) */

.lp1_s5_slider .slick-dots {
    bottom: -50px;
    text-align: center;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp1_s5_slider .slick-dots li {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 4px;
    width: 12px;
    height: 12px;
}

.lp1_s5_slider .slick-dots li button {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 0px;
    cursor: pointer;
    font-size: 0;
    outline: none;
    transition: all 0.3s ease;
    padding: 0;
    opacity: 1;
    margin: 0;
}

.lp1_s5_slider .slick-dots li button:before {
    content: none;
    display: none;
}

.lp1_s5_slider .slick-dots li.slick-active button {
    width: 12px;
    height: 12px;
    border: 2px solid #FFFFFF;
    background: transparent;
}


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

.lp1_section.lp1_s6 {
    background: linear-gradient(168.64deg, #E4C5DE 0.05%, #EFB5B5 49.09%);
}

.lp1_section.lp1_s6 .s_title_bg_text {
    color: rgba(255, 255, 255, 0.2);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
}

.lp1_s6_steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.lp1_s6_step {
    width: 100%;
    /* max-width: 335px; */
    background: #FFFFFF;
    border: 4px solid #9AC5E9;
    border-radius: 8px;
    padding: 28px 16px;
    /* 上下のpaddingを調整 */
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.lp1_s6_step_inner {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.lp1_s6_step_num {
    font-size: 13px;
    font-weight: 700;
    color: #4D8BFF;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.lp1_s6_step_num span {
    font-size: 24px;
    line-height: 1;
}

.lp1_s6_step_text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    color: #222222;
}

.lp1_s6_step_text span {
    font-size: 13px;
    font-weight: 500;
}

.lp1_s6_step_arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.lp1_s6_step_arrow img {
    height: 12px;
    /* 画像の高さに合わせる */
    width: auto;
}

.lp1_s6_cta {
    margin-top: 30px;
}


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

.lp1_section.lp1_s7 {
    background-color: #F0F0F0;
}

.qa-list> :last-child {
    margin-bottom: 0;
}

.qa-list dl.qa {
    margin-bottom: 12px;
    background-color: #E4E4E4;
    /* border-radius: 20px; */
    /* padding: 20px 12px; */
    box-shadow: 0px 0px 30px rgba(255, 183, 57, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

.qa-list dl.qa dt {
    padding: 20px 12px;
    background: linear-gradient(168.64deg, #E4C5DE 0.05%, #9AC5E9 100.05%);
    /* border-radius: 8px 8px 0 0; */
}

.qa_flex {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
}

dt .qa_flex {
    padding-right: 1.5em;
    align-items: center;
}

dt .qa_flex p {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.06em;
    font-weight: bold;
}

.qa-list .qa_top {
    width: 30px;
    height: 30px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    font-weight: 900;
    flex-shrink: 0;
    background-color: #4D8BFF;
    color: #FFFFFF;
    margin-right: 4px;
}

.qa-list dd .qa_top {
    background-color: #FFF;
    color: #4D8BFF;
}

.qa_icon {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    pointer-events: none;
    height: max-content;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qa_icon span {
    width: 13px;
    height: 1px;
    background-color: #4D8BFF;
    display: block;
}

.qa_icon span:last-child {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: rotate(90deg);
}

dl.qa.open .qa_icon span:last-child {
    transform: rotate(0deg);
    opacity: 0;
}

dd .qa_flex {
    padding: 12px 8px;
    /* margin-top: 8px; */
    background-color: #EEF3FA;
    border-radius: 0;
}

dd .qa_flex p {
    font-size: 13px;
    font-weight: bold;
    line-height: 1.8;
    letter-spacing: 0.06em;
}


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

.lp1_section.lp1_s8 {
    position: relative;
    overflow: hidden;
}

.lp1_section.lp1_s8 .lp1_inner {
    position: relative;
    z-index: 1;
}

.lp1_s8_contents {
    color: #FFFFFF;
}

.lp1_s8_contents h2 {
    margin-bottom: 20px;
    font-weight: 800;
    font-size: 28px;
    line-height: 1.4;
    letter-spacing: 0.03em;
}

.lp1_s8_contents ul {
    margin-bottom: 24px;
}

.lp1_s8_contents ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.02em;
}

.lp1_s8_contents ul li img {
    width: 15px;
    height: auto;
    margin-top: 6px;
}

.lp1_s8_contents_text {
    margin-bottom: 20px;
}

.lp1_s8_contents_text p {
    font-size: 13px;
    line-height: 2;
    letter-spacing: 0.04em;
    font-weight: 400;
}


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

.lp1_section.lp1_s9 {
    background-color: #E4C5DE;
}


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


/* LP2 Comparison Table (Overflow Scroll) */

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

.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%;
}


/* カラム共通 */

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

.c_row {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
    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 #000000;
    border-right: 12px solid #000000;
    border-bottom: 4px solid #000000;
    color: #222222;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.6;
}

.c_column.c_self .c_row.head {
    background: #000000;
    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: #000000;
    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: 16px;
    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));
    }
}


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


/* --------------------------------------
s10
-------------------------------------- */

.lp1_section.lp1_s10 {
    background-color: #FFFFFF;
}


/* 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;
}


/* Dots Customization (slick) */

section.v2_s.lp2_s7 .news-slider-dots {
    bottom: -50px;
    text-align: center;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.v2_s.lp2_s7 .news-slider-dots li {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 4px;
    width: 12px;
    height: 12px;
}

section.v2_s.lp2_s7 .news-slider-dots li button {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #707070;
    border: 0px;
    cursor: pointer;
    font-size: 0;
    outline: none;
    transition: all 0.3s ease;
    padding: 0;
    opacity: 1;
    margin: 0;
}

section.v2_s.lp2_s7 .news-slider-dots li button:before {
    content: none;
    display: none;
}

section.v2_s.lp2_s7 .news-slider-dots li.slick-active button {
    width: 12px;
    height: 12px;
    border: 2px solid #707070;
    background: transparent;
}


/* 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;
} */


/* --------------------------------------
s11
-------------------------------------- */

.lp2_section.lp2_s11 {
    background-color: #F0F0F0;
}


/* .lp2_s11_contents {
    color: #FFFFFF;
} */

.lp1_s11_contents ul {
    /* 左にドット */
    list-style-type: disc;
    padding-left: 1.5em;
}

.lp1_s11_contents ul li {
    /* ドット */
    list-style-type: disc;
    margin-bottom: 12px;
    padding: 0px;
    gap: 8px;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.04em;
    color: #222222;
}