@charset "utf-8";

/*20250812追加css*/


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

.body_v2 {
    color: #222222;
}


/* 主要なタップ要素 */

a,
button,
summary,
input,
select,
textarea,
label,
[role="button"],
[onclick],
[tabindex],
.rank_category_tab li,
.ranking_tab_btn,
.interview_tab_item,
.v2_btn,
.item,
li[role="button"],
li[onclick],
p[role="button"],
p[onclick],
img[role="button"],
img[onclick] {
    -webkit-tap-highlight-color: transparent;
}

.grecaptcha-badge {
    z-index: 99999;
    display: none;
}

.GL {
    font-family: 'Geologica', sans-serif;
}

.body_v2 .container_outer_wrap {
    display: flex;
    position: relative;
}

.body_v2 .container_outer_wrap_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

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

.body_v2 header.header_v2 {
    display: none;
}

.body_v2 .container_outer_wrap::after {
    display: none;
}


/*-----------------------------------------
サイドバー
-----------------------------------------*/

.body_v2 .top_left_contents_bg img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}

.top_left_contents_bg_img {
    position: fixed;
    width: 484px;
    height: 100vh;
}

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

.top_left_contents {
    position: fixed;
    width: 484px;
    height: 100vh;
    padding: 40px 82px;
    box-sizing: border-box;
    overflow-y: scroll;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.top_left_contents::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.top_left_contents_inner {
    /* position: relative;
    overflow-y: scroll;
    height: calc(100vh - 80px); */
}

.tlc_btns {
    padding: 32px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.tlc_btns a:first-child {
    margin-bottom: 12px;
}

.tlc_menu {
    padding: 36px 32px;
    box-sizing: border-box;
    width: 100%;
    background-color: #ffffff;
    border-radius: 24px;
}

.tlc_menu_list_wrap {
    position: relative;
}

ul.tlc_menu_list li {
    margin-bottom: 24px;
    width: max-content;
    max-width: 100%;
}

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

ul.tlc_menu_list a {
    color: #4D8BFF;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    line-height: 1;
    font-size: 16px;
    transition: 0.3s;
    width: max-content;
    max-width: 100%;
}

ul.tlc_menu_list a:hover {
    opacity: 0.7;
}

ul.tlc_menu_list a span {
    font-size: 13px;
    margin-top: 8px;
}

.tlc_menu_list_sub_open_btn {
    position: absolute;
    right: 0;
    bottom: 8px;
    cursor: pointer;
    width: 22px;
    height: 22px;
    border: 2px solid #4D8BFF;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tlc_menu_list_sub_open_btn span {
    width: 10px;
    height: 2px;
    background-color: #4D8BFF;
    border-radius: 10px;
    transition: 0.3s;
}

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

a.v2_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    background-color: #222222;
    border-radius: 100px;
    padding: 12px 12px 12px 23px;
    box-sizing: border-box;
    width: 275px;
    height: 64px;
    transition: 0.3s;
}

ul.tlc_menu_list_sub {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
}

.tlc_menu_inner.active ul.tlc_menu_list_sub {
    max-height: 200px;
    margin-top: 16px;
}

ul.tlc_menu_list_sub li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: bold;
    color: #4D8BFF;
    min-width: 100px;
    letter-spacing: 0.01em;
}

a.v2_btn.v2_btn_orange {
    background-color: #FF7A59;
}

a.v2_btn.v2_btn_pink {
    background-color: #F7616E;
}

.v2_btn_text {
    font-size: 14px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
}

span.v2_btn_text_sub {
    font-size: 10px;
    font-weight: 400;
    margin-top: 8px;
}

.tlc_btn_icon {
    height: 40px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 50px 50px 0;
    position: relative;
    overflow: hidden;
}

.tlc_btn_icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    opacity: 0.2;
    transition: 0.3s;
}

a:hover .tlc_btn_icon:before {
    opacity: 0;
}

.tlc_btn_icon svg {
    position: relative;
    z-index: 1;
    transform: translateX(0);
    transition: 0.3s;
}

a:hover .tlc_btn_icon svg {
    transform: translateX(10px);
}

.tlc_menu_sns {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #C6CAD0;
    display: flex;
    align-items: center;
    justify-content: stretch;
    width: 100%;
}

.tlc_menu_sns_text {
    font-size: 14px;
    font-weight: bold;
    color: #222222;
    flex-shrink: 0;
    padding-right: 8px;
}

.tlc_menu_sns_line {
    height: 1px;
    /* height: 100%; */
    background-color: #222222;
    width: 100%;
}

.tlc_menu_sns_inner {
    flex-shrink: 0;
    margin-left: 20px;
}

.tlc_menu_sns_inner_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.tlc_menu_sns_inner_inner a img {
    width: 24px;
}

.tlc_bottom_menu {
    margin-top: 20px;
}

ul.tlc_bottom_menu_list {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
    gap: 20px;
    text-decoration: underline;
    margin-bottom: 5px;
}

ul.tlc_bottom_menu_list a.icon_target img {
    width: 11px;
    height: 11px;
}

ul.tlc_bottom_menu_list a.icon_target {
    gap: 5px;
}


/*-----------------------------------------
front page
-----------------------------------------*/

.main_wrapper {
    max-width: 100%;
    margin: auto;
    position: relative;
}

.main_wrapper_conteainer_side_text_box {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    padding-left: 484px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.5;
}

.main_wrapper_conteainer_side_text {
    display: flex;
    overflow: hidden;
    width: max-content;
    flex-direction: column;
    height: 100vh;
}

.main_wrapper_conteainer_side_text_img_box {
    width: max-content;
    height: auto;
    max-width: none;
    flex-shrink: 0;
}

.main_wrapper_conteainer_side_text.main_wrapper_conteainer_left_text img {
    height: 1395px;
    width: auto;
}

.main_wrapper_conteainer_side_text.main_wrapper_conteainer_right_text img {
    height: 1659px;
    width: auto;
}


/* 1つ目の画像のアニメーション */

.main_wrapper_conteainer_side_text.main_wrapper_conteainer_left_text .main_wrapper_conteainer_side_text_img_box:nth-child(odd) {
    animation: loop_odd_y 60s -30s linear infinite;
}


/* 2つ目の画像のアニメーション */

.main_wrapper_conteainer_side_text.main_wrapper_conteainer_left_text .main_wrapper_conteainer_side_text_img_box:nth-child(even) {
    animation: loop_even_y 60s linear infinite;
}

@keyframes loop_odd_y {
    0% {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(100%);
    }
}

@keyframes loop_even_y {
    0% {
        transform: translateY(-200%);
    }
    to {
        transform: translateY(0);
    }
}


/* 1つ目の画像のアニメーション */

.main_wrapper_conteainer_side_text.main_wrapper_conteainer_right_text .main_wrapper_conteainer_side_text_img_box:nth-child(odd) {
    animation: loop_odd_y2 60s -30s linear infinite;
}


/* 2つ目の画像のアニメーション */

.main_wrapper_conteainer_side_text.main_wrapper_conteainer_right_text .main_wrapper_conteainer_side_text_img_box:nth-child(even) {
    animation: loop_even_y2 60s linear infinite;
}

@keyframes loop_odd_y2 {
    0% {
        transform: translateY(100%);
    }
    to {
        transform: translateY(-100%);
    }
}

@keyframes loop_even_y2 {
    0% {
        transform: translateY(0);
    }
    to {
        transform: translateY(-200%);
    }
}

.container_width_set {
    width: 495px;
}

.top_left_contents_wrapper {
    width: 484px;
}

.main_wrapper .container {
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: none;
}


/*-----------------------------------------
header
-----------------------------------------*/

.modals.modals_v2 {
    visibility: visible;
    transition: 0.3s;
    opacity: 1;
    pointer-events: none;
}

.modals.modals_v2.open {
    pointer-events: all;
}

.modals.modals_v2 .design-canvas__modal {
    left: inherit;
    height: 100%;
    width: 100vw;
    bottom: -200%;
    transition: 0.5s;
    opacity: 0;
}

.modals.modals_v2.open .design-canvas__modal {
    bottom: 0;
    opacity: 1;
}

.modals.modals_v2 .modal_inner_contents {
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 480px;
    max-width: 92%;
    margin: auto;
    height: 100%;
    overscroll-behavior: contain;
}

.modals.modals_v2 .modal_inner_contents::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.modals .modal_inner {
    padding: 25px;
}

.modals.modals_v2 button.close_modal_btn {
    position: fixed;
    bottom: 16px;
    right: 16px;
    width: 56px;
    height: 56px;
    border-radius: 100px;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
}

.modals.modals_v2.open button.close_modal_btn {
    opacity: 1;
    pointer-events: all;
    cursor: none;
}

.modals.modals_v2.open button.close_modal_btn span {
    width: 22px;
    height: 2px;
    background-color: #4D8BFF;
    border-radius: 100px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(45deg);
}

.modals.modals_v2.open button.close_modal_btn span:first-child {
    transform: rotate(-45deg);
}

.modals.modals_v2 .modal_inner {
    padding: 0;
    border-radius: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    max-width: 100%;
    background-color: #4D8BFF;
}

.modal_inner_contents_inner {
    height: calc( 100% + 0.5px);
    box-sizing: border-box;
    padding: 16px 0;
}

.modal_inner_logo {
    margin-bottom: 40px;
}

.modal_inner_logo img {
    width: 177px;
}

.modal_inner_btns {
    background: radial-gradient(98.09% 98.09% at 0% 0%, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.5) 100%);
    border-radius: 8px;
    padding: 8px;
}

.modal_inner_btns .header_btns a {
    flex-direction: column;
}

.modal_inner_btns .header_btns a {
    flex-direction: column;
    padding: 16px 0;
    height: auto;
    font-size: 14px;
}

.modal_inner_btns .header_btns a img {
    width: 22px;
    margin-bottom: 4px;
    height: 22px;
    object-fit: contain;
}

.tlc_menu.modal_inner_menu {
    padding: 24px 0 48px;
    background-color: transparent;
}

.tlc_menu.modal_inner_menu ul.tlc_menu_list a {
    color: #FFFFFF;
}

.tlc_menu.modal_inner_menu .tlc_menu_list_sub_open_btn {
    border-color: #FFFFFF;
}

.tlc_menu.modal_inner_menu .tlc_menu_list_sub_open_btn span {
    background-color: #FFFFFF;
}

.tlc_menu.modal_inner_menu .tlc_menu_sns {
    border-color: #FFFFFF;
    margin-top: 40px;
    padding-top: 40px;
}

.tlc_menu.modal_inner_menu .tlc_menu_sns .tlc_menu_sns_text {
    color: #FFFFFF;
}

.tlc_menu.modal_inner_menu .tlc_menu_sns .tlc_menu_sns_line {
    background-color: #FFFFFF;
    width: 100px;
}

.tlc_menu.modal_inner_menu .tlc_menu_sns .tlc_menu_sns_inner {
    margin-left: auto;
}

.tlc_menu.modal_inner_menu .tlc_menu_sns_inner_inner a img {
    filter: brightness(0) invert(1);
}

.modal_inner_contents_inner ul.tlc_bottom_menu_list {
    justify-content: flex-start;
}

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

.modal_inner_contents_inner ul.tlc_bottom_menu_list li a {
    color: #FFFFFF;
    text-decoration: underline;
}

.modal_inner_contents_inner ul.tlc_bottom_menu_list li a img {
    filter: brightness(0) invert(1);
}

.modal_inner_contents .tlc_menu_inner ul.tlc_menu_list_sub li a {
    color: #FFFFFF;
}


/*-----------------------------------------
main
-----------------------------------------*/


/*------------
mainview secton
------------*/

.mainview_wrapper {
    position: relative;
}

.mainview_frame {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    border: 10px solid #4D8BFF;
    pointer-events: none;
    background: linear-gradient(180.06deg, rgba(51, 60, 255, 0) 48.36%, rgba(106, 200, 255, 0.5) 96.68%), url(image.png);
}

.mainview_wrapper .mainview {
    background-color: #4D8BFF;
    border: 10px solid #4D8BFF;
}

.mainview_wrapper .mainview .slick-list.draggable {
    border-radius: 20px;
    overflow: hidden;
}

.mainview_wrapper .mainview a>div:last-child {
    position: relative;
    z-index: 99;
    bottom: 0;
}

.mainview_wrapper .mainview a img {
    border-radius: 20px;
    height: 768px;
    object-fit: cover;
}

.mainview_frame_logo {
    padding: 20px 10px;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #4D8BFF;
    border-radius: 0 0 20px 0;
}

.mainview_frame_text {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: auto;
    height: max-content;
    top: 0;
    background-color: #4D8BFF;
    padding: 30px 10px;
    border-radius: 20px 0 0 20px;
}

.mainview_frame_text .mainview-dots {
    pointer-events: all;
}

.mainview-dots ul {
    display: flex;
    flex-direction: column;
}

.mainview-dots ul.slick-dots button {
    width: 6px;
    background-color: #ffffff;
    opacity: 0.5;
    height: 6px;
}

.mainview-dots ul.slick-dots .slick-active button {
    opacity: 1;
    outline: 2px solid rgba(255, 255, 255, 0.4);
}

.mainview_frame_scroll {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 14px 15px;
    background-color: #4D8BFF;
    border-radius: 20px 0 0 0;
}

.mainvies_frame_copy {
    position: absolute;
    left: 0;
    bottom: 70px;
    width: 95%;
}


/* ---------- jsで色を自然に変えるここから ---------- */

.mainview_frame {
    border: 10px solid #4D8BFF;
    background: linear-gradient(180.06deg, rgba(51, 60, 255, 0) 48.36%, rgba(106, 200, 255, 0.5) 96.68%);
    transition: border-color 0.5s ease, background 0.5s ease;
}

.mainview_frame_logo {
    background-color: #4D8BFF;
    transition: background-color 0.5s ease;
}

.mainview_frame_text {
    background-color: #4D8BFF;
    transition: background-color 0.5s ease;
}

.mainview_frame_scroll {
    background-color: #4D8BFF;
    transition: background-color 0.5s ease;
}

.mainview_wrapper .mainview {
    background-color: #4D8BFF;
    border: 10px solid #4D8BFF;
    transition: background-color 0.5s ease, border-color 0.5s ease;
}

section.v2_s.f_news.bg_blue {
    background-color: #4D8BFF;
    transition: background-color 0.5s ease;
}


/* ---------- jsで色を自然に変えるここまで ---------- */


/*------------ 
news section 
------------*/

.bg_blue {
    background-color: #4D8BFF;
}

section.v2_s {
    padding: 0;
}

.bg_blue .section_title {
    color: #ffffff;
}

.bg_blue .section_title p {
    color: #ffffff;
}

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

section.v2_s.f_news {
    border-radius: 0 0 40px 40px;
    margin-top: -10px;
    padding-bottom: 40px;
    padding-top: 40px;
}

.section_title {
    margin-bottom: 20px;
}

.section_title h2 {
    align-items: flex-start;
    font-size: 36px;
    line-height: 1;
    margin-bottom: 8px;
}

.section_title p {
    font-size: 16px;
    line-height: 1;
    font-weight: bold;
}

.news_contents {
    overflow: hidden;
}

.news_slider {
    /* position: relative;
    background: linear-gradient(135deg, #6B6EFC 0%, #757CE8 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0; */
}

.news_slider .slick-list {
    overflow: visible;
}

.news_item {
    /* background: rgba(255, 255, 255, 0.9); */
    /* backdrop-filter: blur(10px); */
    border-radius: 20px;
    /* padding: 30px; */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    margin: 0 10px;
    position: relative;
}

section.v2_s.f_news ul.news_category_tag {
    left: 14px;
    top: 14px;
}

.news_item_image {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.news_item_image {
    width: 100%;
    height: 233px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    border: 8px solid #ffffff;
}

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

.news_item_content {
    flex: 1;
    background-color: #ffffff;
    width: 92%;
    margin: auto;
    margin-top: -40px;
    border-radius: 10px;
    min-height: 64px;
}

.news_item_title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    line-height: 1.5;
    height: 3.8em;
    overflow: hidden;
    margin: 0;
    padding: 10px;
    box-sizing: border-box;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
}


/* Slickスライダーのカスタマイズ */

.news_slider .slick-prev,
.news_slider .slick-next {
    /* display: none !important; */
}

.news_slider .slick-prev,
.news_slider .slick-next {
    position: absolute;
    top: 95px;
    z-index: 10;
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    border: none;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news_slider .slick-prev {
    left: 0;
}

.news_slider .slick-next {
    right: 0;
}

.news_slider .slick-prev:hover,
.news_slider .slick-next:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}


/* ドットインジケーター */

.news-slider-dots {
    bottom: -50px !important;
    text-align: center;
    height: 28px;
}

.news-slider-dots li {
    display: inline-block;
    margin: 0 4px;
}

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

.news-slider-dots li.slick-active button {
    width: 12px;
    height: 12px;
    border: 1px solid #FFFFFF;
    background: transparent;
    /* box-shadow: 0 0 10px rgba(255, 255, 255, 0.8); */
}


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

@media (max-width: 768px) {
    /* .news_slider {
        padding: 20px;
        margin: 20px 0;
    }
    .news_item {
        padding: 20px;
        margin: 0;
    }
    .news_item_image {
        width: 80px;
        height: 80px;
    }
    .news_item_title {
        font-size: 16px;
    }
    .news_slider .slick-prev,
    .news_slider .slick-next {
        display: none !important;
    } */
}


/*------------ 
f_intro section (liver images) 
------------*/

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

section.v2_s.f_intro {
    padding-bottom: 56px;
}

.si_title {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 40px; */
    padding: 64px 0 0;
}

.si_title_imgs_title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
    margin: 20px 0;
}

.si_title_imgs_title img {
    width: 187px;
    height: auto;
    max-width: 100%;
}

.si_title h2 {
    font-size: 18px;
    font-weight: bold;
    white-space: nowrap;
    margin: 0;
}

.si_title_imgs {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.si_title_imgs .slick-track {
    display: flex !important;
}

.si_item {
    width: 120px !important;
    height: 120px;
    margin: 0 10px;
    flex-shrink: 0;
}

.si_img {
    width: 120px !important;
    height: 120px !important;
    border-radius: 8px;
    object-fit: cover;
    display: block;
}


/* 連続スクロール用のスタイル調整 */

.si_ti_sli01 .slick-track,
.si_ti_sli02 .slick-track {
    animation-fill-mode: forwards;
}

.si_count {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    margin-bottom: 20px;
    border-bottom: 1px dashed #C6CAD0;
}

.si_count_wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
}

.si_count_wrapper .count-up {
    font-weight: 900;
    font-size: 64px;
    letter-spacing: -0.03em;
    line-height: 1;
}

.si_count_wrapper .count_unit {
    line-height: 1;
    padding-bottom: 10px;
}

.si_count_wrapper .count_unit p.text.cu_time {
    font-size: 8px;
    margin-bottom: 5px;
}

.si_count_wrapper .count_unit p.text.cu_text {
    font-size: 20px;
    font-weight: 900;
}

.si_text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: 0.02em;
}


/*------------ 
f_media section 
------------*/


/*------------ 
loop_img section 
------------*/

.loop_img {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.loop_img_inner {
    width: auto;
    height: 100%;
    max-width: none;
    flex-shrink: 0;
}

.loop_img_inner img {
    width: 1172px;
    height: auto;
    display: block;
}


/* 1つ目の画像のアニメーション */

.loop_img_inner:nth-child(odd) {
    animation: loop_odd 30s -15s linear infinite;
}


/* 2つ目の画像のアニメーション */

.loop_img_inner:nth-child(even) {
    animation: loop_even 30s linear infinite;
}

@keyframes loop_odd {
    0% {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes loop_even {
    0% {
        transform: translateX(0);
    }
    to {
        transform: translateX(-200%);
    }
}

.f_media_contents {
    background-color: #EEF3FA;
    padding: 28px 9%;
    border-radius: 12px;
    border: 4px solid rgba(238, 243, 250, 0.4);
    box-sizing: border-box;
}

.f_media_text {
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 2;
    letter-spacing: 0.04em;
}

.section_title p {
    color: #4D8BFF;
}

.f_media_list ul li {
    margin-bottom: 8px;
}

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

.f_media_list ul li iframe {
    width: 100%;
    height: 233px;
}

section.v2_s.f_media {
    margin-bottom: 64px;
}


/*------------ 
f_why section 
------------*/

section.v2_s.f_why {
    border-radius: 40px;
    padding: 48px 0;
    position: relative;
    z-index: 1;
}

section.v2_s.f_why .v2_inner {
    position: relative;
    z-index: 1;
}

.f_why_bg_icon {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    height: max-content;
    pointer-events: none;
}

.f_why_text {
    color: #FFFFFF;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
}

.f_why_list {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    position: relative;
    z-index: 1;
    padding: 0 8%;
}


/* Webkit browsers (Chrome, Safari) - 親要素 */

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

.f_why_list ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: max-content;
    overflow-x: auto;
    gap: 8px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}


/* Webkit browsers (Chrome, Safari) */

.f_why_list ul::-webkit-scrollbar {
    display: none;
}

.f_why_list ul li {
    flex-shrink: 0;
    min-width: 280px;
    width: 280px;
}

.f_why_list ul li {
    flex-shrink: 0;
    min-width: 280px;
    width: 308px;
    height: 218px;
    background-color: #FFFFFF;
    border-radius: 15px;
    border: 4px solid #94B9FF;
}

.f_why_list ul li {
    flex-shrink: 0;
    min-width: 280px;
    width: 308px;
    height: 218px;
    background-color: #FFFFFF;
    border-radius: 15px;
    border: 4px solid #94B9FF;
    padding: 24px;
    box-sizing: border-box;
    position: relative;
}

.f_why_icon {
    position: absolute;
    right: 20px;
    top: 20px;
}

.f_why_num {
    margin-bottom: 24px;
}

.f_why_num p {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: max-content;
    color: #4D8BFF;
    letter-spacing: 0.04em;
    line-height: 1;
    font-size: 40px;
    font-weight: 900;
}

.f_why_num p span {
    font-size: 16px;
    font-weight: 400;
}

.f_why_content h3 {
    color: #4D8BFF;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
}

.f_why_content p {
    line-height: 1.8;
    font-size: 12px;
}


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

@media (max-width: 768px) {
    /* .si_title_imgs_title img {
        max-width: 150px;
    }
    .si_title h2 {
        font-size: 32px;
    }
    .si_item {
        width: 80px !important;
        height: 80px;
        margin: 0 8px;
    }
    .si_img {
        width: 80px !important;
        height: 80px !important;
    } */
}


/*------------ 
v2_s sec8 section 
------------*/

section.v2_s.sec8.bg_section.bg_gray {
    margin-top: -40px;
    padding-top: 100px;
    border-radius: 0 0 40px 40px;
}

.bg_gray {
    background-color: #EEF3FA;
}

section.v2_s.sec8.bg_section.bg_gray h2 {
    margin-bottom: 8px;
}

.body_v2 section.v2_s.sec8.bg_section.bg_gray .platformtitle {
    display: none;
}

.rank_category_tab ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 40px;
    border-bottom: 1px dashed #C6CAD0;
}

section.v2_s.sec8.bg_section.bg_gray .ranking_img img {
    border-radius: 8px;
}


/* ranking tab */


/* タブ切り替え機能 */

.rank_category_tab ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}

.rank_category_tab li {
    cursor: pointer;
    padding: 0 0 11px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    /* background: rgba(255, 255, 255, 0.1); */
    opacity: 0.3;
    border-radius: 0;
    border-bottom: 4px solid transparent;
}

.rank_category_tab li:hover {
    background: rgba(255, 255, 255, 0.2);
}

.rank_category_tab li.active {
    /* background: rgba(255, 255, 255, 0.3); */
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
    opacity: 1;
}

.rank_category_tab li img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.rank_category_tab li.active {
    /* background: rgba(255, 255, 255, 0.3); */
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
    opacity: 1;
    border-bottom: 4px solid #47D5D1;
}

.rank_category_tab li#rankCategoryTab_0.active {
    border-bottom: 4px solid #47D5D1;
}

.rank_category_tab li#rankCategoryTab_1.active {
    border-bottom: 4px solid red;
}

.rank_category_tab li#rankCategoryTab_2.active {
    border-bottom: 4px solid #FF9BAF;
}

.ranking_tab_btn span {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 3px;
}

section.v2_s.sec8.bg_section.bg_gray .ranking_img {
    border: 4px solid #47D5D1 !important;
    border-width: 4px;
    border: 0;
    border-radius: 12px;
    width: 93%;
}

section.v2_s.sec8.bg_section.bg_gray .secbody.secbody_cnt1 .ranking_img {
    border: 4px solid red !important;
}

section.v2_s.sec8.bg_section.bg_gray .secbody.secbody_cnt2 .ranking_img {
    border: 4px solid #FF9BAF !important;
}


/* .secbody.secbody_cnt0 .ranking_tab_btn {
    background-color: #47D5D1 !important;
} */


/* .secbody.secbody_cnt0 .ranking_tab_btn {
    background-color: #3BBBC650;
}

.secbody.secbody_cnt0 .ranking_tab_btn {
    background-color: #3BBBC650;
} */

.secbody.secbody_cnt0 .ranking_tab_btn.active,
.secbody.secbody_cnt1 .ranking_tab_btn.active,
.secbody.secbody_cnt2 .ranking_tab_btn.active {
    background-color: #FFFFFF !important;
}

.secbody.secbody_cnt0 .ranking_tab_btn svg path,
.secbody.secbody_cnt1 .ranking_tab_btn svg path,
.secbody.secbody_cnt2 .ranking_tab_btn svg path {
    fill: #FFFFFF;
}

.secbody.secbody_cnt0 .ranking_tab_btn.active svg path {
    fill: #47D5D1
}

.secbody.secbody_cnt1 .ranking_tab_btn.active svg path {
    fill: red;
}

.secbody.secbody_cnt2 .ranking_tab_btn.active svg path {
    fill: #FF9BAF;
}


/* ランキングコンテンツの表示制御 */

.rank_category_wrap {
    display: none;
}

.rank_category_wrap.active {
    display: block;
}

section.v2_s.sec8.bg_section.bg_gray .article.cnt1::after {
    left: 27px;
    width: 42px !important;
}

section.v2_s.sec8.bg_section.bg_gray .article::after {
    width: 29px !important;
    left: 19px;
    top: 4px;
}


/*------------ 
f_talent section 
------------*/

section.v2_s.f_talent {
    padding: 64px 0;
}

section.v2_s.f_talent .top_liver-list a {
    border: 0;
    padding: 0;
}

section.v2_s.f_talent .top_liver-list a img {
    height: 546px !important;
}

section.v2_s.f_talent .image.sd {
    position: relative;
}

section.v2_s.f_talent .image.sd .talent_data {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(36, 209, 195, 0) 62.22%, rgba(36, 209, 195, 0.2) 100%);
}

section.v2_s.f_talent .slick-track a:nth-child(2n) .image.sd .talent_data {
    background: linear-gradient(180deg, rgba(255, 133, 155, 0) 65.78%, rgba(255, 133, 155, 0.2) 100%), url(image.png);
}

section.v2_s.f_talent .top_liver-list a .talent_category_icon img {
    width: 48px !important;
    height: 48px !important;
    border: 0;
}

section.v2_s.f_talent .top_liver-list a img.eye_catch.square.wp-post-image {
    border-radius: 12px;
}

section.v2_s.f_talent .top_liver-list a .talent_category_icon {
    position: absolute;
    bottom: -8px;
    right: -8px;
    padding: 8px;
    background-color: #FFFFFF;
    border-radius: 12px 0 0 0;
}

.talent_data_text {
    position: absolute;
    bottom: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
}

.top_liver-list a .talent_data .talent_data_text p.text.talent_name {
    font-size: 14px;
    padding: 8px;
    border-radius: 4px;
    background-color: #FFFFFF;
}

section.v2_s.f_talent .top_liver-list a ul li {
    font-size: 12px;
    border-radius: 4px;
    padding: 7px 8px 8px;
    font-weight: bold;
    background-color: #24D1C3;
}

section.v2_s.f_talent .top_liver-list .slick-track a:nth-child(2n) ul li {
    background-color: #F39CAC;
}

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

.top_liver_dots ul.slick-dots {
    display: flex;
    align-items: center;
}

section.v2_s.f_talent .top_liver-list .slick-dots {
    margin: 10px 0 0;
    text-align: left;
    width: 82%;
    margin: 10px auto 20px;
}

section.v2_s.f_talent .slick-dots button {
    margin: 0;
    border-radius: 0;
    height: 2px;
    width: 20px;
}

section.v2_s.f_talent .slick-dots li.slick-active button {
    background-color: #EEF3FA;
}

section.v2_s.f_talent .slick-dots li.slick-active button {
    background-color: #222222;
}

.top_liver_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.top_liver_arrow .slick-prev,
.top_liver_arrow .slick-next {
    width: 40px;
    height: 40px;
    background: #EEF3FA;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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


/*------------ 
.f_card section 
------------*/

.f_card_content {
    position: relative;
    width: 100%;
    color: #FFFFFF;
    background-color: #FF7A59;
    padding: 28px 24px;
    border-radius: 24px;
    outline: 4px solid rgba(255, 122, 89, 0.4);
    margin-bottom: 20px;
    overflow: hidden;
}

.f_card_content.fcc_pk {
    background-color: #F7616E;
    outline: 4px solid rgba(247, 97, 110, 0.4);
    margin-bottom: 0;
}

.fcc_bg_icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.fcc_content {
    width: 100%;
    position: relative;
}

img.fcc_bg_icon_top {
    position: absolute;
    left: 0;
    top: 0;
}

img.fcc_bg_icon_bottom {
    position: absolute;
    bottom: 0;
    right: 0;
}

.fcc_content_inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

.fcc_content_inner h3 {
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.6;
    letter-spacing: 0.1em;
}

.fcc_content_img {
    position: relative;
    margin-bottom: 32px;
    width: 100%;
}

.fcc_content_img img {
    border-radius: 24px;
}

.fcc_content_img_text {
    position: absolute;
    bottom: -9px;
    left: -6px;
    transform: rotate(-8deg);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 3px;
}

.fcc_content_img_text p:last-child {
    margin-left: 1.5em;
}

.fcc_content_img_text p {
    background-color: #FFFFFF;
    color: #FF7A59;
    border-radius: 4px;
    padding: 0 4px;
    font-weight: bold;
    line-height: 2;
}

.f_card_content.fcc_pk .fcc_content_img_text p {
    color: #F7616E
}

.fcc_content_text {
    width: 100%;
    text-align: center;
    margin-bottom: 16px;
    font-weight: bold;
    line-height: 1.8;
    letter-spacing: 0.1em;
}

.fcc_content_inner .v2_btn_wrapper {
    width: 100%;
}


/*------------ 
loop_img
------------*/

.loop_img {
    display: flex;
    margin: 64px 0;
    align-items: flex-start;
    justify-content: flex-start;
}

.loop_img_inner {
    flex-shrink: 0;
}

.loop_img_inner img {
    width: 1172px;
    max-width: 1172px;
}


/*------------ 
f_event_interview section 
------------*/

section.v2_s.f_event_intarview {
    border-radius: 40px;
    padding: 48px 0;
}


/*------------ 
f_event section 
------------*/

.f_event_contents {
    margin-bottom: 32px;
}

.event_card {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: -24px;
}

.event_item {
    width: 48%;
    margin-bottom: 24px;
}

.event_item_image {
    margin-bottom: 12px;
    height: 142px;
    overflow: hidden;
    border-radius: 12px;
    border: 4px solid #FFFFFF;
}

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

.event_item_content h3,
.event_item_title {
    font-size: 13px;
    line-height: 1.5;
    font-weight: bold;
    margin: 0;
    /* CSS-onlyで2行省略 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
    height: 3em;
    /* 2行分の高さに制限 */
}

.event_item_content time {
    font-size: 12px;
    font-weight: bold;
    color: #BEBEBF;
}


/*------------ 
f_interview section 
------------*/

.f_interview_contents {
    margin-top: 56px;
}


/* インタビュータブ切り替え */

.interview_tab {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    justify-content: center;
    height: 55px;
    align-items: flex-end;
}

.interview_tab_item {
    cursor: pointer;
    padding: 0;
    border-radius: 0;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.1);
    color: #A6C5FF;
    width: 100%;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    border: 4px solid #A6C5FF;
    height: 47px;
}

.interview_tab_item:hover {
    background-color: #4D8BFF;
    color: #FFFFFF;
}

.interview_tab_item.interview_tab_item0 {
    border-radius: 8px 0 0 0;
}

.interview_tab_item.interview_tab_item2 {
    border-radius: 0 8px 0 0;
}

.interview_tab_item.active {
    background-color: #4D8BFF;
    color: #FFFFFF;
    font-size: 15px;
    height: 100%;
    border-bottom: 0;
    border-radius: 12px 12px 0 0;
}

.interview_tab_item.interview_tab_item0.active,
.interview_tab_item.interview_tab_item2.active {
    border-radius: 12px 12px 0 0;
}

.interview_tab_item.interview_tab_item1 {
    margin-left: -4px;
    margin-right: -4px;
}

.interview_tab_content_inner {
    padding: 10px 20px;
    background-color: #4D8BFF;
    border-left: 4px solid #A6C5FF;
    border-right: 4px solid #A6C5FF;
    border-bottom: 4px solid #A6C5FF;
    border-radius: 0 0 12px 12px;
}


/* インタビューコンテンツの表示制御 */

.interview_tab_content {
    display: none;
}

.interview_tab_content.active {
    display: block;
}

.interview_tab_content_inner {
    padding: 10px 20px;
    background-color: #4D8BFF;
    border-left: 4px solid #A6C5FF;
    border-right: 4px solid #A6C5FF;
    border-bottom: 4px solid #A6C5FF;
    border-radius: 0 0 12px 12px;
    height: 460px;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-bottom: 32px;
}

.interview_tab_content_inner::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

section.v2_s.f_event_intarview .top_interview a {
    display: flex;
    flex-direction: row;
    background-color: #FFFFFF;
    padding: 12px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 12px;
}

section.v2_s.f_event_intarview .top_interview a {
    display: flex;
    flex-direction: row;
    background-color: #FFFFFF;
    padding: 12px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 12px;
    margin-bottom: 12px;
    align-items: center;
    justify-content: flex-start;
}

section.v2_s.f_event_intarview .top_interview a .image.sd {
    flex-shrink: 0;
    width: 102px;
    height: 102px;
    border-radius: 200px;
    overflow: hidden;
}

section.v2_s.f_event_intarview .top_interview a .image.sd img {
    width: 100%;
    height: 100%;
    margin: 0;
    border: 0;
}

section.v2_s.f_event_intarview .top_interview .title {
    margin: 0;
    margin-left: 12px;
    width: 100%;
}

section.v2_s.f_event_intarview .top_interview .title {
    margin: 0;
    padding-left: 12px;
    width: 100%;
    box-sizing: border-box;
    font-size: 13px;
    line-height: 1.5;
}

section.v2_s.f_event_intarview .top_interview .title time {
    color: #BEBEBF;
    font-size: 10px;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

section.v2_s.f_event_intarview .top_interview .title h3 {
    margin-bottom: 2px;
    font-weight: bold;
    font-size: 11px;
    line-height: 1.5;
}

section.v2_s.f_event_intarview .manager_content .manager_box {
    border: 0;
    box-shadow: none;
}

.interview_tab_content_inner .manager_content .manager_loop {
    margin-top: 0;
}


/* section.v2_s.f_event_intarview .manager_box {
    background-color: #FFFFFF;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 12px;
} */


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

@media (max-width: 768px) {
    /* .interview_tab {
        flex-direction: column;
        gap: 10px;
    }
    .interview_tab_item {
        padding: 12px 20px;
        font-size: 14px;
        text-align: center;
    } */
}


/*-----------------------------------------
footer
-----------------------------------------*/

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

footer.footer.footer_v2 {
    background-color: #1E2188;
    padding: 100px 0 64px;
    margin-top: -40px;
    position: relative;
}

.f_logo_sns {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

footer.footer.footer_v2 .footer_sns_box>div {
    margin: 0;
}

.f_lobo_bottom_text {
    margin-bottom: 40px;
    font-size: 18px;
    font-weight: bold;
}

.f_card_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 40px;
}

.footer_card {
    padding: 34px 24px 28px;
    background-color: #FFFFFF;
    width: 100%;
    border-radius: 24px;
    outline: 4px solid rgba(255, 255, 255, 0.4);
}

.footer_card p {
    color: #1E2188;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.footer_card a.v2_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    background-color: #1E2188;
    border-radius: 100px;
    padding: 12px 12px 12px 23px;
    box-sizing: border-box;
    width: 275px;
    height: 64px;
    transition: 0.3s;
}

.f_menu {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

footer .f_menu ul {
    padding: 0;
    width: 170px;
}

footer .f_menu ul ul {
    padding-left: 0.56em;
    margin-bottom: 14px;
}

footer .f_menu ul ul li {
    margin-bottom: 8px;
}

footer .f_menu ul ul li:last-child {
    margin-bottom: 0;
}

footer.footer.footer_v2 a.icon_target img {
    width: 12px;
    height: 12px;
    filter: invert(1);
    margin-top: 4px;
}

footer .f_menu ul li {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.4;
}

footer .f_menu ul li a {
    /* margin-bottom: 16px; */
}

footer.footer.footer_v2 .footer_inner_box {
    align-items: flex-start;
    margin-bottom: 40px;
    margin-top: 20px;
}

footer.footer.footer_v2 .footer_inner_box>*:nth-child(1) {
    display: flex;
    justify-content: flex-start;
}

footer.footer.footer_v2 .footer_inner_box>*:nth-child(1) a {
    font-size: 12px;
}

p.copyright {
    font-size: 10px;
}

.footer_bg_icon {
    position: absolute;
    bottom: 0;
    right: 0;
}


/*------------ 
レスポンシブ
------------*/

@media screen and (max-width: 1300px) {
    .body_v2 .container_v2 main {
        padding-top: 0;
    }
}

@media (max-width: 980px) {
    .top_left_contents_wrapper {
        display: none;
    }
    .main_wrapper_conteainer_side_text_box {
        padding-left: 0;
    }
    .body_v2 header.header_v2 {
        opacity: 0;
        pointer-events: none;
        transition: 0.3s;
        display: block;
        transition: 0.3s;
        z-index: 999999999;
        top: initial;
        bottom: 10px;
    }
    .body_v2 header.header_v2.active {
        opacity: 1;
        pointer-events: all;
        transition: 0.3s;
    }
    .body_v2 header.header_v2>div {
        width: 460px;
        margin: auto;
        max-width: 92%;
        padding: 10px 8px;
        box-sizing: border-box;
        border-radius: 8px;
        position: relative;
    }
    .body_v2 header.header_v2>div:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #FFFFFF;
        border-radius: 8px;
        opacity: 0.5;
        box-shadow: 0px 1px 14px rgba(0, 0, 0, 0.1);
    }
    .body_v2 header.header_v2 .header_btn {
        display: flex;
        align-items: center;
        position: relative;
        flex-shrink: 0;
    }
    .body_v2 header.header_v2 .header_btn button {
        background-color: #FFFFFF;
        width: 46px;
        height: 46px;
        border-radius: 4px;
        gap: 4px;
    }
    .body_v2 header.header_v2 .header_btn button span {
        width: 18px;
        height: 2px;
        background-color: #4D8BFF;
    }
    .sd.appear.header_v2_inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
    }
    .header_btns {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        gap: 4px;
    }
    .header_btns a {
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #FF7A59;
        height: 46px;
        width: 100%;
        color: #FFFFFF;
        font-size: 13px;
        font-weight: bold;
        gap: 2px;
    }
    .header_btns a img {
        width: 15px;
        height: auto;
    }
    .header_btns a:last-child {
        background-color: #F7616E;
    }
    footer.footer.footer_v2 {
        padding: 100px 0 85px;
    }
}

@media (max-width: 620px) {
    .body_v2 .container_outer_wrap_bg {
        display: none;
    }
    .main_wrapper_conteainer_side_text_box {
        display: none;
    }
    .body_v2 header.header_v2 {
        background-color: transparent;
    }
}

@media (max-width: 480px) {
    .mainview_wrapper .mainview a img {
        height: 610px;
    }
    .mainview_frame_logo {
        width: 177px;
    }
    .mainview_frame_logo {
        padding: 16px 12px;
        border-radius: 0 0 12px 0;
    }
    .mainview_wrapper .mainview .slick-list.draggable {
        border-radius: 12px;
    }
    .mainview_wrapper .mainview a img {
        border-radius: 12px;
    }
    .mainview_frame_text {
        padding: 25px 7px;
        border-radius: 12px 0 0 12px;
    }
    .mainview_frame_scroll {
        padding: 12px 12px;
        border-radius: 12px 0 0 0;
    }
    .mainview_frame_scroll img {
        width: 52px;
    }
    /* .mainvies_frame_copy {
        bottom: 50px;
        left: 0;
        width: 100%;
        text-align: center;
    }
    .mainvies_frame_copy img {
        max-width: 90%;
        height: auto;
    } */
    .v2_inner {
        width: 92%;
    }
    .f_card_content,
    .f_media_contents {
        padding-left: 4vw;
        padding-right: 4vw;
    }
    .event_item_image {
        height: 32vw;
    }
}

@media (max-width: 355px) {
    .header_btns a {
        font-size: 3.1vw;
    }
    .header_btns a img {
        width: 3.6vw;
    }
}


/*-----------------------------------------------------------------------------
pages
下層ページ
-----------------------------------------------------------------------------*/


/*-----------------------------------------
liver-page
-----------------------------------------*/

.pages_liver_partner_mv {
    position: relative;
    width: 100%;
}

.pages_mv_logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.pages_mv_logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 26px;
}

.pages_mv_logo a {
    display: block;
    width: max-content;
    max-width: 100%;
}

.pages_liver_partner_mv:before {
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 173px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 55.79%, #FFFFFF 100%);
    position: absolute;
    pointer-events: none;
}

.pages_mv_text {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
}

.pages_mv_text {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    color: #ffffff;
    font-weight: bold;
}

.pages_mv_text p {
    font-size: 32px;
    line-height: 1.2;
    margin-top: 8px;
    width: max-content;
    max-width: 100%;
}

.pages_mv_text p.mv_p_small {
    font-size: 20px;
    margin-bottom: 12px;
}

p.mv_p_bg {
    text-decoration: underline;
    text-decoration-thickness: 1.1em;
    text-decoration-color: #FF7A59;
    text-underline-offset: -0.9em;
    text-decoration-skip-ink: none;
}

.pages_mv_text p.mv_p_bg_orange {
    text-decoration-color: #FF7A59;
}

.pages_mv_text p.mv_p_bg_pink {
    text-decoration-color: #F7616E;
}

main.pages_main section {
    padding-left: 0;
    padding-right: 0;
}

section.pages_liver_partner_catch {
    padding: 64px 0;
}

.pages_liver_partner_catch_inner {
    width: max-content;
    max-width: 100%;
    margin: auto;
}

section.pages_liver_partner_catch p {
    font-size: 24px;
    font-weight: bold;
    color: #222222;
    line-height: 1.8;
    letter-spacing: 0.04em;
}

section.pages_liver_partner_catch p.p_small {
    font-size: 20px;
    margin-bottom: 20px;
}

span.marker {
    text-decoration: underline;
    text-decoration-thickness: 0.5em;
    text-decoration-color: #FF7A59;
    text-underline-offset: -0.3em;
    text-decoration-skip-ink: none;
}

span.marker_orange {
    text-decoration-color: #FF7A59;
}

span.marker_pink {
    text-decoration-color: #F7616E;
}

.bg_radius {
    border-radius: 40px;
}

.bg_orange {
    background-color: #FF7A59;
}

.bg_orange .section_title {
    color: #ffffff;
}

.bg_orange .section_title p {
    color: #ffffff;
}

section.pages_liver_about {
    position: relative;
    padding: 48px 0 56px;
    overflow: hidden;
}

.pla_bg_text {
    position: absolute;
    bottom: -14px;
    width: 100%;
    text-align: center;
    word-break: keep-all;
    white-space: nowrap;
    font-size: 100px;
    line-height: 1;
    font-weight: bold;
    color: #FFFFFF;
    opacity: 0.12;
}

section.pages_liver_about .v2_inner {
    position: relative;
}

.pla_c_img {
    margin-bottom: 28px;
}

.pla_c_img img {
    border-radius: 12px;
}

.pla_c_text {
    margin-bottom: 28px;
    color: #ffffff;
    font-size: 13px;
    line-height: 2;
    letter-spacing: 0.03em;
    font-weight: 500;
}

.pla_c_flex_wrap {
    padding: 32px 20px 40px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 24px;
    background-color: #FFFFFF;
    outline: 4px solid rgba(255, 255, 255, 0.4);
}

.pla_c_flex_wrap h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #FF7A59;
    line-height: 1.6;
    letter-spacing: 0.06em;
    font-weight: 900;
}

.pla_c_flex {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: -20px;
}

.pla_c_flex_item {
    width: 49%;
    margin-bottom: 20px;
    padding: 10px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pla_c_flex_item_logo {
    margin-bottom: 4px;
}

.pla_c_flex_item_logo img {
    width: 64px;
    height: auto;
}

.partner_merit_text .pla_c_flex_item p,
.pla_c_flex_item p {
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.04em;
    font-weight: 500;
}

.partner_merit_text .pla_c_flex_item p span,
.pla_c_flex_item p span {
    margin-bottom: 8px;
    display: inline-block;
    font-size: 1.3em;
    font-weight: bold;
}

.pla_c_flex_item_img {
    margin-top: 8px;
}

.pla_c_flex_item_img img {
    width: 100px;
    height: auto;
}

.pla_c_flex_text {
    padding-top: 10px;
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.04em;
    font-weight: 500;
}

section.pages_liver_profit {
    padding: 64px 0;
}

.plp_c_item {
    margin-bottom: 20px;
    outline: 4px solid #EEF3FA;
    border-radius: 24px;
    padding: 28px 24px 32px;
    box-sizing: border-box;
}

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

.plp_c_item_top {
    padding-bottom: 24px;
    margin-bottom: 20px;
    border-bottom: 1px dashed #C6CAD0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.plp_c_item_top_img {
    margin-right: 16px;
}

.plp_c_item_top_img img {
    width: 50px;
    height: auto;
}

p.plp_c_item_top_price {
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}

p.plp_c_item_top_price span {
    font-size: 28px;
    color: #4D8BFF;
    letter-spacing: 0.02em;
}

p.plp_c_item_top_name {
    font-size: 12px;
    font-weight: bold;
    line-height: 2;
    letter-spacing: 0.1em;
}

.plp_c_item_bottom {
    font-size: 13px;
    letter-spacing: 0.04em;
    font-weight: 500;
}

section.pages_liver_feature {
    position: relative;
    z-index: 1;
    padding: 48px 0 56px;
}

.plf_c_item {
    border-radius: 12px;
    overflow: hidden;
    background-color: #FFFFFF;
    margin-bottom: 20px;
}

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

.plf_c_item_info {
    padding: 24px 24px 32px;
}

.plf_c_item_title {
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px dashed #C6CAD0;
}

.plf_c_item_title p {
    margin-bottom: 12px;
    color: #FFFFFF;
    background-color: #4D8BFF;
    width: max-content;
    border-radius: 50px;
    padding: 2px 6px 3px;
    line-height: 1;
    font-weight: bold;
    font-size: 10px;
    letter-spacing: 0.02em;
}

.plf_c_item_title h3 {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.06em;
    color: #4D8BFF;
}

.plf_c_item_text {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.6;
}

section.pages_liver_benefit {
    padding: 100px 0 56px;
    margin-top: -40px;
}

section.pages_liver_benefit {
    padding: 100px 0 56px;
    margin-top: -40px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.bg_blue .plb_c_text {
    color: #FFFFFF;
}

.plb_c_text {
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.plb_c_text p.p_small {
    font-size: 16px;
    line-height: 2;
    margin-top: 8px;
}

.plb_c_flex_p {
    text-align: end;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 2;
}

.bg_blue .plb_c_flex_p {
    color: #FFFFFF;
}

.plb_c_flex {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    gap: 4px;
    margin: 10px 0;
}

.plb_c_flex_item {
    width: calc( 100% / 3 - 3px);
    min-height: 119px;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-radius: 8px;
    background-color: #EEF3FA;
    color: #4D8BFF;
}

.bg_blue .plb_c_flex_item {
    background-color: #FFFFFF;
}

.plb_c_flex_item p {
    margin-top: 4px;
    font-size: 11px;
    text-align: center;
    line-height: 1.5;
    font-weight: 500;
}

section.pages_liver_message {
    padding: 64px 0 0;
}

.plm_c_item_img_wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.plm_c_item_img_icon {
    position: absolute;
    left: 0;
    bottom: 0;
}

img.message_icon {
    opacity: 0.2;
    pointer-events: none;
}

.plm_c_item_img {
    width: 240px;
    max-width: 60%;
}

.plm_c_item_img img {
    border-radius: 12px;
}

.plm_c_item_text {
    position: relative;
}

.plm_c_item_text_icon {
    position: absolute;
    right: 0;
    bottom: -10px;
}

.plm_c_item_text h3 {
    color: #4D8BFF;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.plm_c_item_text p {
    font-size: 13px;
    line-height: 1.6;
    font-weight: bold;
    letter-spacing: 0.04em;
}

section.pages_liver_flow {
    padding: 48px 0 56px;
    position: relative;
    z-index: 1;
}

section.pages_liver_flow .section_title p {
    line-height: 1.3;
}

section.pages_liver_flow .plf_contents> :last-child {
    margin-bottom: 0;
}

section.pages_liver_flow .plf_c_item {
    border-radius: 20px;
    padding: 28px 24px 32px;
    margin-bottom: 16px;
    outline: 4px solid rgba(255, 255, 255, 0.4);
}

section.pages_liver_flow .plf_c_item_title {
    padding-bottom: 16px;
    width: 100%;
    max-width: 287px;
}

section.pages_liver_flow .plf_c_item_title h3 {
    font-size: 18px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.1em;
}

section.pages_liver_flow .plf_c_item_title h3 span {
    font-size: 16px;
    letter-spacing: 0.02em;
    margin-right: 1em;
}

section.pages_liver_flow .plf_c_item p {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.04em;
}

.plf_c_item_fix {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 76px;
    background-color: #4D8BFF;
    color: #FFFFFF;
    border-radius: 20px;
    outline: 4px solid rgba(77, 139, 255, 0.4);
    font-weight: 900;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0.2em;
}

.plf_c_item_fix img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: auto;
    pointer-events: none;
}

section.pages_liver_faq {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 100px 0 56px;
    margin-top: -40px;
    position: relative;
}

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

.qa-list dl.qa {
    margin-bottom: 12px;
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 20px 12px;
}

.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;
    border-radius: 8px;
    background-color: #EEF3FA;
}

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

section.pages_contact_section {
    padding: 48px 0 56px;
}

main.liver-page section.pages_contact_section {
    padding-top: 100px;
    margin-top: -40px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.pcs_c_text {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.8;
    letter-spacing: 0.06em;
    margin-bottom: 24px;
}

.pcs_c_sns {
    padding: 24px 0;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 24px;
    margin-bottom: 24px;
}

.pcs_c_sns h3 {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.06em;
}

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

.pcs_c_sns_wrap a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 130px;
    transition: 0.3s;
}

.plc_c_sns_icon {
    width: 52px;
    height: 52px;
    border: 2px solid rgba(77, 139, 255, 0.4);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.pcs_c_sns_wrap a p {
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: 0.04em;
    font-weight: bold;
    color: #222222;
}

.pcs_c_sns_wrap a:hover .plc_c_sns_icon {
    border: 2px solid rgba(77, 139, 255, 1);
}

.pcs_c_sns_wrap a:hover p {
    color: #4D8BFF;
}

.pcs_c_form form {
    display: flex;
    flex-direction: column;
}

.pcs_c_form form label {
    font-size: 14px;
    line-height: 1.5;
    font-weight: bold;
    color: #222222;
    margin-top: 16px;
    display: block;
}

.pcs_c_form form label span.r {
    color: #FF4133;
}

.pcs_c_form form select,
.pcs_c_form form input,
.pcs_c_form form textarea {
    width: 100%;
    box-sizing: border-box;
    border-radius: 4px;
    padding: 19px 16px;
    font-size: 14px;
    letter-spacing: 0.01em;
    margin-top: 5px;
}

.pcs_c_form form textarea {
    height: 240px;
    resize: none;
}

.pcs_c_form form p {
    display: contents;
}

.pcs_c_form form .policy {
    margin: 16px 0 20px;
    text-align: center;
    font-size: 11px;
    font-weight: bold;
    line-height: 1.8;
    letter-spacing: 0.1em;
}

.pcs_c_form form .policy p {
    display: inline-block;
}

.pcs_c_form form .policy a {
    text-decoration: underline;
}

.pcs_c_form form input.wpcf7-submit {
    margin-top: 0;
    width: 275px;
    margin: auto;
    background-color: #222222;
    color: #FFFFFF;
    transition: 0.3s;
    border-radius: 100px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.08em;
    border: 2px solid #222222;
    box-sizing: border-box;
    padding: 0;
    height: 62px;
}

.pcs_c_form form input.wpcf7-submit:hover {
    border-color: rgba(255, 255, 255, 0.7);
    /* border-color: #FFFFFF; */
}

.pcs_c_form_note p {
    font-size: 10px;
    font-weight: 500;
    text-align: center;
}

.pcs_c_form_note p a {
    text-decoration: underline;
}

.pcs_c_form form span.wpcf7-spinner {
    width: 0;
    height: 0;
}

.pcs_c_form form .wpcf7-not-valid-tip {
    font-size: 0.8em;
    font-weight: bold;
    line-height: 2;
}

@media (max-width: 480px) {
    .pages_mv_logo a img {
        width: 177px;
        height: auto;
    }
    .pages_mv_text {
        bottom: 17vw;
    }
    .pages_mv_text .v2_inner {
        width: max-content;
        max-width: 100%;
    }
    .pages_mv_text p.mv_p_small {
        font-size: 16px;
        margin-bottom: 12px;
    }
    .pages_mv_text p {
        font-size: 26px;
    }
    section.pages_liver_partner_catch p.p_small {
        font-size: 16px;
    }
    section.pages_liver_partner_catch p {
        font-size: 20px;
    }
    .plb_c_text p.p_small {
        font-size: 13px;
    }
}


/*-----------------------------------------
partner
-----------------------------------------*/

.bg_pink {
    background-color: #F7616E;
}

.bg_pink .section_title {
    color: #ffffff;
}

.bg_pink .section_title p {
    color: #ffffff;
}

.bb_dashed {
    border-bottom: 1px dashed #C6CAD0;
}

.pla_c_flex_wrap.pla_c_flex_wrap2 {
    padding: 24px 20px;
}

.partner_cash_flow> :first-child {
    padding-top: 0;
}

.partner_cash_flow> :last-child {
    padding-bottom: 0;
}

.partner_cash_flow_item {
    padding: 20px 0;
}

.partner_cash_flow_item_text h3 {
    color: #222222;
    margin-bottom: 8px;
    line-height: 1.5;
    letter-spacing: 0.1em;
}

.partner_cash_flow_item_text p {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.5;
    letter-spacing: 0.1em;
}

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

section.pages_partner_merit {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 100px 0 56px;
    margin-top: -40px;
}

section.pages_partner_merit ul> :last-child {
    margin-bottom: 0 !important;
}

section.pages_partner_merit ul li.partner_merit_item {
    background-color: #FFFFFF;
    margin-bottom: 20px;
    padding: 24px;
    border-radius: 12px;
    outline: 4px solid rgba(255, 255, 255, 0.4);
}

.partner_merit_num {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.partner_merit_num p {
    flex-shrink: 0;
    padding-right: 8px;
    font-weight: 700;
    font-size: 40px;
    letter-spacing: 0.06em;
    color: #4D8BFF;
}

.partner_merit_num .line {
    background-color: #C6CAD0;
    width: 100%;
    height: 1px;
}

.partner_merit_text h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: bold;
    color: #4D8BFF;
    line-height: 1.5;
    letter-spacing: 0.06em;
}

.partner_merit_text p {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.partner_merit_text .pla_c_flex_item p {
    color: #555555;
}

.partner_merit_text .pla_c_flex_item p,
.pla_c_flex_item p {
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.04em;
    font-weight: 500;
}

.pla_c_flex_item_3 p span,
.pla_c_flex_item_4 p span {
    margin-bottom: 0 !important;
}

.pla_c_flex_item_3 p,
.pla_c_flex_item_4 p {
    min-height: 4.6em;
    display: flex;
    align-items: center;
}

.pla_c_flex {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: -20px;
}

section.pages_partner_profit {
    padding: 8px 0 56px;
}

.p_partner_profit_contents ul> :last-child {
    margin-bottom: 0;
}

.p_partner_profit_contents ul li {
    margin-bottom: 16px;
    padding: 14px 20px;
    outline: 4px solid #EEF3FA;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.p_partner_profit_contents_item_img {
    flex-shrink: 0;
    width: 46px;
}

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

.p_partner_profit_contents_item_text {
    width: 100%;
    padding-left: 16px;
    box-sizing: border-box;
}

.p_partner_profit_contents_item_text p.ppci_name {
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.p_partner_profit_contents_item_text p.ppci_name span {
    margin-right: 8px;
}

.p_partner_profit_contents_item_text p.ppci_price {
    font-size: 18px;
    font-weight: 900;
    line-height: 1.8;
    letter-spacing: 0.06em;
}

.p_partner_profit_contents_item_text p.ppci_price span {
    font-size: 36px;
    line-height: 1;
    color: #4D8BFF;
    margin: 0 3px;
}

section.pages_partner_agreement {
    padding: 48px 0 56px;
}

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

.p_partner_agreement_contents_top {
    margin-bottom: 32px;
}

.p_partner_agreement_contents_top .p_white_box {
    margin: 16px 0;
}

.p_partner_agreement_contents p.p_bold {
    font-weight: bold;
}

.p_partner_agreement_contents_top .p_white_box {
    margin: 16px 0;
    padding: 12px;
    background-color: #FFFFFF;
    border-radius: 12px;
    color: #4D8BFF;
    font-weight: bold;
    letter-spacing: 0.02em;
}

.p_partner_agreement_contents p.p_small {
    font-size: 13px;
}

.p_partner_agreement_contents_slide_wrapper {
    margin-bottom: 32px;
}

.p_partner_agreement_contents_slide_wrapper p.p_bold {
    margin-bottom: 16px;
}

.p_partner_agreement_contents_slide_contents {
    overflow-x: scroll;
    width: 480px;
    margin-left: -9%;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
}

.p_partner_agreement_contents_slide_contents::-webkit-scrollbar {
    display: none;
    /* WebKit */
}

.p_partner_agreement_contents_slide_contents ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: max-content;
    padding: 0px 7.5%;
    gap: 10px;
}

.p_partner_agreement_contents_slide_contents ul li {
    width: 290px;
}

.p_partner_agreement_contents_slide_item_img {
    width: 100%;
    height: 190px;
    border-radius: 12px;
    overflow: hidden;
}

.p_partner_agreement_contents_slide_item_text {
    font-size: 12px;
    letter-spacing: 0.04em;
}

.p_partner_agreement_contents_bottom {
    background: #FFFFFF;
    outline: 4px solid rgba(255, 255, 255, 0.4);
    border-radius: 40px;
    color: #222222;
    padding: 24px 24px 32px;
    margin-top: 32px;
}

.p_partner_agreement_contents_bottom h3 {
    margin-bottom: 16px;
    font-weight: bold;
    padding-left: 16px;
    position: relative;
}

.p_partner_agreement_contents_bottom h3:before {
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    width: 8px;
    height: 8px;
    background-color: #222222;
    position: absolute;
    margin: auto;
}

.p_partner_agreement_contents_bottom ul {
    padding-left: 1.5em;
}

.p_partner_agreement_contents_bottom ul> :last-child {
    margin-bottom: 0;
}

.p_partner_agreement_contents_bottom ul li {
    list-style: disc;
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 1.5;
    margin-bottom: 12px;
    font-weight: bold;
}

.p_partner_agreement_contents_bottom ul li span {
    color: #4D8BFF;
}

section.pages_partner_flow {
    padding: 64px 0;
}

.p_partner_flow_contents {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
}

.p_partner_flow_contents_item {
    background-color: #EEF3FA;
    padding: 20px 16px;
    box-sizing: border-box;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.p_partner_flow_contents_item p.num {
    color: #4D8BFF;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1;
}

.p_partner_flow_contents_item_img {
    width: 100%;
}

.p_partner_flow_contents_item_img img {
    border-radius: 12px;
}

.p_partner_flow_contents_item_text {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.8;
    letter-spacing: 0.02em;
}

@media screen and (max-width: 620px) {
    .p_partner_agreement_contents_slide_contents {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        padding: 0 7.5%;
        box-sizing: border-box;
    }
    .p_partner_agreement_contents_slide_contents ul {
        padding: 0;
    }
}

@media screen and (max-width: 480px) {
    .p_partner_profit_contents_item_text p.ppci_price {
        font-size: 16px;
    }
    .p_partner_flow_contents_item_text {
        font-size: 14px;
    }
}

@media (max-width: 375px) {
    .partner_merit_text .pla_c_flex_item p,
    .pla_c_flex_item p {
        font-size: 2.6vw;
    }
    .p_partner_profit_contents_item_text p.ppci_price {
        font-size: 4.2vw;
    }
    .p_partner_profit_contents_item_text p.ppci_price span {
        font-size: 2.3em;
    }
    .p_partner_agreement_contents {
        font-size: 4.25vw;
    }
    .p_partner_flow_contents_item_text {
        font-size: 3.7vw;
    }
}

@media (max-width: 355px) {
    .partner_merit_text h3 {
        font-size: 5.6vw;
    }
}


/*-----------------------------------------
liver-list
-----------------------------------------*/

section.pages_blue_title {
    padding: 26px 0 55px;
    background-color: #4D8BFF;
    border-radius: 0 0 40px 40px;
    position: relative;
    margin-bottom: 56px;
    overflow: hidden;
}

.pages_blue_title_bg {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: auto;
}

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

.pages_blue_title_logo {
    margin-bottom: 64px;
    position: relative;
    padding-left: 10px;
}

.pages_blue_title_logo img {
    width: 232px;
}

section.pages_blue_title .v2_inner {
    position: relative;
}

h1.pages_blue_title_text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #FFF;
}

span.pages_blue_title_text_main {
    font-weight: 700;
    font-size: 56px;
    line-height: 1.5;
}

span.pages_blue_title_text_sub {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.5;
}

section.pages_liver_list_nums {
    padding: 0 0 40px;
}

.pages_liver_list_nums_text {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5;
    margin-top: 20px;
}

section.pages_liver_list_filter {
    padding: 0 0 24px;
}

main.news.news_v2 .content2>.refine.active,
main.liver-list.liver-list_v2 .content2>.refine.active {
    border: 1px solid #222222;
    background-color: #222222;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 13px;
    line-height: 1;
    padding: 7px 8px 8px;
    margin-bottom: 8px;
    cursor: pointer;
    min-width: 72px;
    width: max-content;
    font-weight: bold;
}

main.news.news_v2 .content2 .refine.active,
main.liver-list.liver-list_v2 .content2 .refine.active {
    border: 1px solid #222222;
    background-color: #222222;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 13px;
    line-height: 1;
    padding: 7px 8px 8px;
    cursor: pointer;
    min-width: 72px;
    width: max-content;
    font-weight: bold;
}

main.news.news_v2 .content2>.refine,
main.liver-list.liver-list_v2 .content2>.refine {
    border: 1px solid #222222;
    background-color: #FFFFFF;
    color: #222222;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 13px;
    line-height: 1;
    padding: 7px 8px 8px;
    margin-bottom: 8px;
    cursor: pointer;
    min-width: 72px;
    width: max-content;
    font-weight: bold;
}

main.news.news_v2 .content2 .refine,
main.liver-list.liver-list_v2 .content2 .refine {
    border: 1px solid #222222;
    background-color: #FFFFFF;
    color: #222222;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 13px;
    padding: 7px 8px 8px;
    line-height: 1;
    cursor: pointer;
    min-width: 72px;
    width: max-content;
    font-weight: bold;
}

section.content5.s_pll_main {
    padding: 0 0 56px;
}

section.content5.s_pll_main .content1.content_roop {
    padding: 0;
    gap: 16px 2%;
}

.liver-list section.content5.s_pll_main .content1 a {
    position: relative;
}

.liver-list section.content5.s_pll_main .content1 a .image.sd img {
    /* border-radius: 12px; */
    height: 313px !important;
}

.s_pll_main_text {
    position: absolute;
    left: 8px;
    bottom: 8px;
    max-width: 72%;
}

.liver-list section.content5.s_pll_main .content1 a {
    position: relative;
    display: block;
    border-radius: 12px 12px 0 12px;
    overflow: hidden;
    flex-basis: 49%;
}

.liver-list .content1 a .talent_category_icon img {
    width: 30px !important;
    height: 30px !important;
}

.talent_category_icon {
    position: absolute;
    bottom: -8px;
    right: -8px;
    padding: 8px;
    background-color: #FFFFFF;
    border-radius: 12px 0 0 0;
}

.liver-list section.content5.s_pll_main .content1 a:before {
    content: "";
    background: linear-gradient(180deg, rgba(36, 209, 195, 0) 62.22%, rgba(36, 209, 195, 0.2) 100%);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    pointer-events: none;
}

.liver-list section.content5.s_pll_main .content1 a:nth-child(2n):before {
    background: linear-gradient(180deg, rgba(255, 133, 155, 0) 65.78%, rgba(255, 133, 155, 0.2) 100%);
}

.liver-list .s_pll_main_text p.text.livername {
    font-size: 12px;
    line-height: 1;
    margin-top: 4px;
    font-weight: bold;
    background-color: #FFF;
    padding: 8px;
    border-radius: 4px;
}

.liver-list .content1 a .s_pll_main_text ul li {
    padding: 4px 4px 5px;
    font-weight: bold;
    border-radius: 4px;
}

.liver-list .content1 a:nth-child(2n) .s_pll_main_text ul li {
    background-color: #F7616E;
}

main.liver-list.liver-list_v2 .btn {
    margin-top: 40px;
}

.pages_main .btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    background-color: #222222;
    border-radius: 100px;
    padding: 12px 12px 12px 23px;
    box-sizing: border-box;
    width: 275px;
    height: 64px;
    transition: 0.3s;
}

.pages_main .btn:hover .tlc_btn_icon:before {
    opacity: 0;
}

.pages_main .btn .tlc_btn_icon svg {
    transform: rotate(90deg);
}

.pages_main .btn:hover .tlc_btn_icon svg {
    transform: translateY(7px) rotate(90deg);
}

@media screen and (max-width: 480px) {
    /* 
	.liver-list section.content5.s_pll_main .content1 a .image.sd img {
		height: 313px !important;
	}
	
	.s_pll_main_text {
		left: 8px;
		bottom: 8px;
	}
	
	.liver-list section.content5.s_pll_main .content1 a {
		border-radius: 12px 12px 0 12px;
	}
	
	.liver-list .content1 a .talent_category_icon img {
		width: 30px !important;
		height: 30px !important;
	}
	
	.talent_category_icon {
		bottom: -8px;
		right: -8px;
		padding: 8px;
		border-radius: 12px 0 0 0;
	}

	.liver-list .s_pll_main_text p.text.livername {
		font-size: 12px;
		margin-top: 4px;
		padding: 8px;
		border-radius: 4px;
	}
	
	.liver-list .content1 a .s_pll_main_text ul li {
		padding: 4px 4px 5px;
		border-radius: 4px;
	} */
    .liver-list section.content5.s_pll_main .content1 a .image.sd img {
        height: 65.208vw !important;
    }
    .s_pll_main_text {
        left: 1.667vw;
        bottom: 1.667vw;
    }
    .liver-list section.content5.s_pll_main .content1 a {
        border-radius: 2.5vw 2.5vw 0 2.5vw;
    }
    .liver-list .content1 a .talent_category_icon img {
        width: 6.25vw !important;
        height: 6.25vw !important;
    }
    .talent_category_icon {
        bottom: -1.667vw;
        right: -1.667vw;
        padding: 1.667vw;
        border-radius: 2.5vw 0 0 0;
    }
    .liver-list .s_pll_main_text p.text.livername {
        font-size: 2.5vw;
        margin-top: 0.833vw;
        padding: 1.667vw;
        border-radius: 0.833vw;
    }
    .liver-list .content1 a .s_pll_main_text ul li {
        padding: 0.833vw 0.833vw 1.042vw;
        border-radius: 0.833vw;
    }
    .pages_blue_title_logo img {
        width: 177px;
    }
    span.pages_blue_title_text_main {
        font-size: 44px;
    }
    span.pages_blue_title_text_sub {
        font-size: 18px;
    }
}


/*-----------------------------------------
news
-----------------------------------------*/

section.content5.s_news_list_main {
    padding: 0 0 80px;
    background-color: #FFFFFF;
}

section.content5.s_news_list_main .content1.content_roop {
    padding-top: 0;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    gap: 24px 4%;
}

.news.news_v2 .content_roop a {
    flex-direction: column;
    align-items: flex-start;
    justify-content: stretch;
    gap: 12px;
    width: 48%;
    margin: 0;
}

.news.news_v2 .content_roop a>div:first-child {
    width: 100%;
    height: 137px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.news.news_v2 .content_roop a>div:first-child img {
    width: 100%;
    height: 100% !important;
    transition: 0.3s;
    object-fit: cover;
}

.news.news_v2 .content_roop a:hover>div:first-child img {
    transform: scale(1.05);
}

.news.news_v2 .content_roop a .title {
    font-size: 13px;
    line-height: 1.5;
    font-weight: bold;
    /* CSS-onlyで2行省略 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
}

.news.news_v2 .content_roop a time {
    font-size: 12px;
    line-height: 1;
    font-weight: bold;
    letter-spacing: 0.02em;
    color: #BEBEBF;
}

ul.news_category_tag {
    position: absolute;
    left: 6px;
    top: 6px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 3px;
}

ul.news_category_tag li {
    padding: 3px 6px 5px;
    font-size: 10px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 1;
    background-color: #F55959;
    border-radius: 50px;
    /* margin-right: 5px; */
}

@media screen and (max-width: 460px) {
    .news.news_v2 .content_roop a>div:first-child {
        height: 30vw;
    }
}


/*-----------------------------------------
single-news
-----------------------------------------*/

.pages_top_logo {
    padding-top: 26px;
    margin-left: 10px;
    margin-bottom: 50px;
}

main.single-news.single-news_v2.pages_main {
    background-color: #FFFFFF;
    padding-bottom: 80px;
}

.pages_main .breadcrumb {
    padding: 0;
    margin-bottom: 48px;
    background-color: transparent;
    font-size: 10px;
    font-weight: bold;
    word-break: break-all;
    line-height: 2.4;
}

.single .pages_main .content_outerwrap {
    background-color: transparent;
    padding: 0;
}

.single .pages_main .content_wrap {
    padding: 0;
    width: 100%;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
}

.single_date_category {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
}

.single_date time {
    font-weight: bold;
    line-height: 1.8;
    font-size: 16px;
}

.single_category {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 5px;
}

.single .content_wrap .single_category a {
    font-size: 12px;
    font-weight: bold;
    display: flex;
    text-decoration: none;
    color: #FFFFFF;
    background-color: #F55959;
    padding: 7px 10px 9px;
    border-radius: 50px;
    line-height: 1;
}

.single main.pages_main article h1 {
    font-size: 22px;
    line-height: 1.6;
    font-weight: bold;
}

.single_content {
    margin-top: 24px;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: 0.06em;
}

.single_content> :first-child {
    margin-top: 0;
}

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

.single_content h2 {
    margin-top: 40px;
    margin-bottom: 13px;
    font-size: 1.4em;
    line-height: 1.6;
    font-weight: bold;
    color: #4D8BFF;
}

.single_content h3 {
    margin-top: 32px;
    margin-bottom: 13px;
    font-size: 1.2em;
    line-height: 1.6;
    font-weight: bold;
    color: #222222;
}

.single_content .wp-block-image {
    margin-block-start: 1em;
    margin-block-end: 1em;
}

.single_content figure {
    margin-block-start: 2em;
    margin-block-end: 2em;
}

.single_content img {
    height: auto;
}

.single_content p,
.single_content li {
    font-size: 1em;
}

.single_content p {
    margin-block-start: 1em;
    margin-block-end: 1em;
}

.single_content li {
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
}

.single_content h4 {
    display: block;
    margin-block-start: 1.33em;
    margin-block-end: 1.33em;
    font-weight: bold;
}

.single_content h5 {
    display: block;
    font-size: 0.83em;
    margin-block-start: 1.67em;
    margin-block-end: 1.67em;
    font-weight: bold;
}

.single_content h6 {
    display: block;
    font-size: 0.67em;
    margin-block-start: 2.33em;
    margin-block-end: 2.33em;
    font-weight: bold;
}

.single_content ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 1.5em;
}

.single_content ol {
    display: block;
    list-style-type: decimal;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 1.5em;
}

.single_content table {
    display: table;
    border-collapse: collapse;
    box-sizing: border-box;
    text-indent: initial;
    border-spacing: 2px;
    border-color: grey;
}

.single_content tbody {
    display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
}

.single_content thead {
    border-bottom: 3px solid;
}

.single_content tfoot {
    border-top: 3px solid;
}

.single_content .wp-block-table td,
.single_content .wp-block-table th {
    border: 1px solid;
    padding: .5em;
    word-break: normal;
}

.single_content th {
    display: table-cell;
    vertical-align: inherit;
    font-weight: bold;
    text-align: -internal-center;
}

.single_content td {
    border-collapse: separate;
    text-indent: initial;
    border-spacing: 2px;
}

.single_content figcaption {
    color: #555;
    font-size: 0.8em;
    text-align: center;
}


/*-----------------------------------------
liver-interview
-----------------------------------------*/

section.partner-interview_list,
section.liver-interview_list {
    padding: 0 0 80px;
    background-color: #FFFFFF;
}


/*-----------------------------------------
single
-----------------------------------------*/

main.single.single_v2.pages_main {
    padding-bottom: 80px;
    background-color: #FFFFFF;
}

.single_image img {
    border-radius: 12px;
}


/*-----------------------------------------
message
-----------------------------------------*/

section.page_message_content {
    padding: 0 0 80px;
    background-color: #FFFFFF;
}

.page_message_top {
    margin-bottom: 16px;
}

.page_message_top h2 {
    display: block;
    line-height: 1.6;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.page_message_top p {
    font-size: 12px;
    line-height: 1.6;
}

.pagge_massage_name {
    margin-bottom: 32px;
}

.pagge_massage_name p {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.1em;
    font-weight: bold;
    margin-bottom: 24px;
}

.pagge_massage_name p span {
    font-size: 0.8em;
    margin-right: 8px;
}

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

.page_message_text h3 {
    margin: 40px 0 20px;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.8;
    letter-spacing: 0.04em;
}

.page_message_text p {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.04em;
}

main.contact_page.contact_page_v2 section.pages_contact_section {
    padding: 0 0 80px;
    background-color: #FFFFFF;
}


/*-----------------------------------------
contact
-----------------------------------------*/

.pages_contact_section_text {
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.pages_contact_section .pcs_c_form form .wpcf7-radio label,
.contact_page .pcs_c_form form .wpcf7-radio label {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 500;
}

.pages_contact_section .pcs_c_form form input[type="radio"],
.contact_page .pcs_c_form form input[type="radio"] {
    width: 15px;
    flex-shrink: 0;
    margin: 0;
    margin-right: 5px;
}

.pages_contact_section .wpcf7-list-item label {
    display: flex;
    gap: 10px;
    padding: 5px 0;
}

.pages_contact_section .wpcf7-radio {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.contact_page .pcs_c_form .wpcf7-list-item label .wpcf7-list-item-label {
    font-weight: 500;
}

section.pages_contact_section.pages_contact_section_v2 .pcs_c_form form select,
section.pages_contact_section.pages_contact_section_v2 .pcs_c_form form input,
section.pages_contact_section.pages_contact_section_v2 .pcs_c_form form textarea {
    background-color: #EEF3FA;
    border: 0;
}

section.pages_contact_section.pages_contact_section_v2 .pcs_c_form form input.wpcf7-submit {
    background-color: #222222;
}


/*-----------------------------------------
privacy
-----------------------------------------*/

span.pages_blue_title_text_main.p_small {
    font-size: 40px;
}

.privacy.privacy_v2 .main_text>div>p:first-child {
    color: #222222;
    font-size: 1.2em;
    margin-bottom: 6px;
}

section.privacy_section {
    padding: 0 0 80px;
}

main.privacy.privacy_v2 {
    background-color: #FFFFFF;
}

section.privacy_section p {
    font-size: 13px;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: 0.06em;
}

@media screen and (max-width: 480px) {
    span.pages_blue_title_text_main.p_small {
        font-size: 30px;
    }
}


/*-----------------------------------------
aaaaaaaa
-----------------------------------------*/