@charset "utf-8";



:root {
    --font-base: YakuHanJP, "Noto Sans JP", sans-serif;
    --font-serif: YakuHanMP, "Noto Serif JP", serif;
    --font-en: "garamond-premier-pro", sans-serif;
}

body {
    width: 100%;
    height: auto;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
    color: #282828;
    margin: 0;
    padding: 0;
    font-family: var(--font-base);
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
    background-color: #E3E3E3;
}

@media screen and (min-width: 920px) {
    body {
        font-size: 15px;
    }
}

h1,
h2,
h3,
h4,
h5,
span,
p {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.text-center_pc {
    text-align: left !important;
}

@media screen and (min-width: 920px) {
    .text-center_pc {
        text-align: center !important;
    }
}

.text-center_sp {
    text-align: center !important;
}

@media screen and (min-width: 920px) {
    .text-center_pc {
        text-align: left !important;
    }
}

.br_sp {
    display: block;
}

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

.br_pc {
    display: none;
}

@media screen and (min-width: 920px) {
    .br_pc {
        display: block;
    }
}

.br_catch {
    display: block;
}

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

.inner_link {
    position: relative;
}

.inner_link::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #282828;
    position: absolute;
    bottom: -2px;
    left: 0;
    scale: 0 1;
    transition: scale 0.3s ease-out;
    transform-origin: 100% 0;
}

@media screen and (min-width: 920px) {
    .inner_link:hover {
        opacity: 1;
        visibility: visible;
    }
}

@media screen and (min-width: 920px) {
    .inner_link:hover::before {
        scale: 1 1;
        transform-origin: 0 0;
    }
}

.stream_line {
    background-image: linear-gradient(to right, #282828, #282828);
    background-size: 100% 1px;
    background-position: bottom left;
    background-repeat: no-repeat;
    line-height: 1.1;
    width: fit-content;
}

.stream_line:hover {
    animation: none;
}

@media screen and (min-width: 920px) {
    .stream_line:hover {
        animation: linkLineReverse 0.5s ease forwards;
    }
}

@keyframes linkLineReverse {
    0% {
        background-size: 100% 1px;
        background-position: bottom right;
    }

    50% {
        background-size: 0 1px;
        /* 幅(100%=文字の長さ) | 高さ(線の太さ) */
        background-position: bottom right;
    }

    51% {
        background-position: bottom left;
    }

    100% {
        background-size: 100% 1px;
    }
}

.container-base {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

@media screen and (min-width: 920px) {
    .container-base {
        padding: 0 40px;
        max-width: 1204px;
    }
}

.container-middle {
    width: 100%;
    /* max-width: calc(1400px + min(19.7142857143vw,276px)); */
    max-width: 1400px;
    padding: 0 20px;
    margin: 0 auto;
}

@media screen and (min-width: 920px) {
    .container-middle {
        padding: 0 min(9.85714285714vw, 138px);
    }
}


.section_title_wrap {
    display: flex;
    flex-direction: column;
    margin-bottom: 26px;
}

@media screen and (min-width: 920px) {
    .section_title_wrap {
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 60px;
    }
}

.section_title_wrap .section_title {
    margin-bottom: 20px;
    text-align: center;
}

@media screen and (min-width: 920px) {
    .section_title_wrap .section_title {
        margin-bottom: 0;
        text-align: left;
    }
}

@media screen and (min-width: 920px) {
    .section_txt {
        width: 34.87544483985765%;
    }
}

.section_txt p {
    margin-bottom: 8px;
    line-height: 1.5;
}

@media screen and (min-width: 920px) {
    .section_txt p {
        line-height: 1.75;
    }
}

.section_txt p:last-child {
    margin-bottom: 0;
}

.section_title {
    text-align: center;
    font-family: var(--font-serif);
    margin-bottom: 44px;
}

@media screen and (min-width: 920px) {
    .section_title {
        margin-bottom: 84px;
    }
}

.section_title_white {
    color: #fff;
}

.section_title_top {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 14px;
}

@media screen and (min-width: 920px) {
    .section_title_top {
        font-size: min(40px, 3.6363636363636362vw);
        margin-bottom: 10px;
        line-height: 1.5;
    }
}

.section_title_top_large {
    font-size: 36px;
    line-height: 1.25;
}

@media screen and (min-width: 920px) {
    .section_title_top_large {
        font-size: min(54px, 4.909090909090909vw);
    }
}


.section_title_bottom {
    line-height: 1.25;
}

@media screen and (min-width: 920px) {
    .section_title_bottom {
        font-size: 15px;
    }
}

.section_title_bottom_large {
    font-size: 16px;
}

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










/*-------------------- site_header --------------------*/

.site_header {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
    z-index: 999;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (min-width: 920px) {
    .site_header {}
}

.site_header_logo {
    display: flex;
    width: 139px;
    height: 34px;
}

@media screen and (min-width: 920px) {
    .site_header_logo {
        width: min(14.2857142857vw, 200px);
        height: min(3.485vw, 48.79px);
    }
}

.site_header_logo img {
    width: 100%;
    height: 100%;
}

.comparison_table {
    display: block;
    width: 100%;
    max-width: 799px;
    margin: 0 auto;
}

.comparison_table img {
    width: 100%;
}












.cta {
    position: relative;
    background-image: url("../img/cta_img.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media screen and (min-width: 920px) {

    .cta {
        min-height: 900px;
    }
}


.cta_img {
    width: 100%;
    height: auto;
}

@media screen and (min-width: 920px) {
    .cta_img {
        height: 100%;
    }
}

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

.cta_content {
            padding: 34px 30px 42px;
    background-color: #fff;
}

@media screen and (min-width: 920px) {
    .cta_content {
        width: min(33.7857142857vw, 473px);
        height: 100%;
        padding: min(6.07142857143vw, 85px) min(2.57142857143vw, 36px) min(2.85714285714vw, 40px) min(2.64285714286vw, 37px);
        position: absolute;
        top: 0;
        left: 9.85714285714vw;
        bottom: 0;
    }
}

.cta_logo {
    display: block;
    width: 249px;
    margin: 0 auto 22px;
}

@media screen and (min-width: 920px) {
    .cta_logo {
        width: min(21.7857142857vw, 305px);
        margin: 0 auto 38px;
    }
}

.cta_txtArea {
    margin: 0 0 22px;
}

@media screen and (min-width: 920px) {
    .cta_txtArea {
        margin: 0 0 min(2.14285714286vw, 30px);
    }
}

.cta_txtArea_txt {
    margin-bottom: 8px;
}

.cta_txtArea_txt:last-of-type {
    margin-bottom: 0;
}

.cta_ttl {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
    text-align: center;
    margin: 0 0 1rem;
}

@media screen and (min-width: 920px) {
    .cta_ttl {
        font-size: min(1.42857142857vw, 20px);
        margin: 0 0 min(1.14285714286vw, 16px);
    }
}

.reserve_cta_arrow {
    width: 24px;
}
@media screen and (min-width: 920px) {
    .reserve_cta_arrow {
        width: auto;
    }
}

.cta_txtArea p {
    letter-spacing: 0.04em;
    text-align: center;
    line-height: 1.5;
}

@media screen and (min-width: 920px) {
    .cta_txtArea p {
        line-height: 1.75;
        font-size: min(1.07142857143vw, 15px);
    }
}

.cta_img {
    width: 100%;
}
.cta_img img {
    width: 100%;
}
@media screen and (min-width: 920px) {
    .cta_img {
        display: none;
}
}

.cta_present {
    width: fit-content;
    padding: 7px 10px;
    border: 1px solid #DCDCDC;
    border-radius: 500px;
    margin: 0 auto 20px;
    letter-spacing: -0.025em;
}

@media screen and (min-width: 920px) {
    .cta_present {
        padding: min(0.85714285714vw, 7px) min(1vw, 14px);
        margin: 0 auto min(1.42857142857vw, 20px);
    }
}

.cta_present p {
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}

@media screen and (min-width: 920px) {
    .cta_present p {
        font-size: min(1.07142857143vw, 15px);
    }
}

.cta_bnr {
    width: 100%;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* グラデーションをちょっと長めにしておく */
    background: linear-gradient(90deg,
            #D3232E 0%,
            #A11B23 50%,
            #D3232E 100%);
    background-size: 200% 100%;
    background-position: 0 0;
    border-radius: 4px;
    padding: 0 0.75rem;
    transition: background-position 0.4s ease;
}

@media screen and (min-width: 920px) {
    .cta_bnr {
        width: 100%;
        height: min(8.57142857143vw, 120px);
        padding: 0 min(1.14285714286vw, 16px);
    }

    .cta_bnr:hover {
        background-position: 100% 0;
        /* ホバー時にグラデーションを右にスライド */
    }
}


.cta_bnr_txt {
    font-weight: 700;
    font-size: 1rem;
    line-height: 2;
    color: #fff;
    flex: 1 1 0;
}

@media screen and (min-width: 920px) {
    .cta_bnr_txt {
        font-size: min(1.42857142857vw, 20px);
    }
}

.cta_bnr .bnr_arrow {
    width: 24px;
    height: 24px;
    flex: 0 1 24px;
    position: relative;
    bottom: auto;
    right: auto;
}

@media screen and (min-width: 920px) {
    .cta_bnr .bnr_arrow {
        width: min(2.28571428571vw, 32px);
        height: min(2.28571428571vw, 32px);
        flex: 0 1 min(2.28571428571vw, 32px);
    }
}

.cta_info {
    text-align: center;
    margin: 28px 0 0;
}

@media screen and (min-width: 920px) {
    .cta_info {
        margin: min(1.71428571429vw, 24px) 0 0;
    }
}

.cta_info_head {
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.04em;
    
}

@media screen and (min-width: 920px) {
    .cta_info_head {
        font-size: min(1.07142857143vw, 15px);
        margin: 0 0 0.25rem;
    }
}

.cta_info_tel {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.5;
}

@media screen and (min-width: 920px) {
    .cta_info_tel {
        font-size: min(2vw, 28px);
    }
}

.cta_info_tel span {
    font-size: 2rem;
    line-height: 1.25;
}

@media screen and (min-width: 920px) {
    .cta_info_tel span {
        font-size: min(2.57142857143vw, 36px);
    }
}

.cta_info_date {
    font-size: 0.6875rem;
    letter-spacing: 0.04em;
}

@media screen and (min-width: 920px) {
    .cta_info_date {
        font-size: min(0.92857142857vw, 13px);
    }
}

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


.mv {
    position: relative;
    background-color: #282828;
    padding: 98px 13px 80px;
}

@media screen and (min-width: 920px) {
    .mv {
        width: 100%;
        position: relative;
        padding: 18.142857142857142vw 20px 0;
    }
}

.mv_img {
    text-align: center;
}

@media screen and (min-width: 920px) {
    .mv_img {
        width: 100%;
    }

    .mv_img img {
        width: 100%;
    }
}

.page_catch {
    width: 304px;
    height: auto;
    margin: 0 auto 22px;
}

@media screen and (min-width: 920px) {
    .page_catch {
        width: 34.285714285714285vw;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 8.357142857142858vw;
        margin: 0;
    }


}

.page_catch img {
    width: 100%;
}




.mv_catch {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-serif);
    text-align: center;
}

@media screen and (min-width: 920px) {
    .mv_catch {
        font-size: 2vw;
        position: absolute;
        top: 18.642857142857142vw;
        left: 50%;
        transform: translateX(-50%);
    }
}

.mv_txtArea {
    display: flex;
    flex-direction: column;
    color: #fff;
    font-weight: 700;
    text-align: center;
    gap: 8px;
    margin-bottom: 8px;
}

@media screen and (min-width: 920px) {
    .mv_txtArea {
        position: absolute;
        gap: 0.7142857142857143vw;
        font-size: max(14px, 1.0714285714285714vw);
        left: 3.1428571428571432vw;
        bottom: 3.571428571428571vw;
        text-align: left;
        margin-bottom: 0;
    }
}

@media screen and (max-width: 920px) {
    .mv_img {
        display: block;
        margin-bottom: 24px;
    }
}



.introduction {
    position: relative;
    background-color: #282828;
}

.introduction::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 142px;
    background-color: #E3E3E3;
}

@media screen and (min-width: 920px) {
    .introduction {
        padding-top: 70px;
    }

    .introduction::before {
        height: 188px;
    }
}

@media screen and (max-width: 920px) {
    .introduction .container-base {
        padding: 0 30px;
    }

}


.introduction_body {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
}

@media screen and (min-width: 920px) {
    .introduction_body {
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 118px;
    }
}

.introduction_body_catch {
    color: #fff;
    font-weight: 600;
    font-family: var(--font-serif);
    font-size: 32px;
    line-height: 1.5;
    margin-bottom: 42px;
}

@media screen and (min-width: 920px) {
    .introduction_body_catch {
        font-size: min(48px, 4.363636363636364vw);
        margin-bottom: 0;
    }
}

.introduction_body_txtArea {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media screen and (min-width: 920px) {
    .introduction_body_txtArea {
        gap: 12px;
    }
}

.introduction_body_txt {
    font-size: 16px;
    color: #fff;
    line-height: 2;
}

@media screen and (min-width: 920px) {
    .introduction_body_txt {
        font-size: min(18px, 1.6363636363636365vw);
    }
}

.introduction_body_txt_bold {
    font-weight: 700;
}

.reserve_cta {
    overflow: hidden;
    z-index: 1;
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 920px) {
    .reserve_cta {
        flex-direction: row;
    }

    .reserve_cta:hover .reserve_cta_img img {
        transform: scale(1.05);
    }

    .reserve_cta:hover .reserve_cta_txtArea {
        background-position: 100% 0;
    }
}

.reserve_cta_img {
    height: 246px;
}

@media screen and (min-width: 920px) {
    .reserve_cta_img {
        height: auto;
    }
}

.reserve_cta_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

@media screen and (min-width: 920px) {
    .reserve_cta_img {
        width: 39.44444444444444%;
    }
}

@media screen and (max-width: 920px) {
    .reserve_cta_txtArea_wrap {
        display: flex;
        justify-content: space-between;
    }
}

.reserve_cta_txtArea {
    background: linear-gradient(95.8deg,
            #D3232E 0%,
            #A11B23 50%,
            #D3232E 100%);
    background-size: 200% 100%;
    background-position: 0 0;
    transition: background-position 0.4s ease;

    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    min-height: 302px;
    padding: 28px;
}

@media screen and (min-width: 920px) {
    .reserve_cta_txtArea {
        width: 60.55555555555555%;
        padding: 40px 61px 40px 69px;
        min-height: 320px;
    }
}

.reserve_cta_txtArea_logo {
    text-align: center;
    max-width: 246px;
    margin: 0 auto 12px;
}

@media screen and (min-width: 920px) {
    .reserve_cta_txtArea_logo {
        margin: 0 0 32px;
        max-width: none;
    }
}

.reserve_cta_txtArea_line {
    text-align: center;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    font-family: var(--font-serif);
    line-height: 1.5;
    padding: 6px 0;
    margin-bottom: 18px;
}



@media screen and (min-width: 920px) {
    .reserve_cta_txtArea_line {
        line-height: 1.75;
        padding: 8px 0;
        margin-bottom: 20px;
    }
}

.reserve_cta_txtArea_bottom {
    line-height: 1.5;
    color: #fff;
    font-weight: 700;
}

@media screen and (min-width: 920px) {
    .reserve_cta_txtArea_bottom {
        line-height: 1.75;
        text-align: center;
    }
}

@media screen and (min-width: 920px) {
    .reserve_cta_txtArea .reserve_cta_arrow {
        position: absolute;
        bottom: 16px;
        right: 16px;
    }
}


.strengths {
    background-color: #E3E3E3;
    padding: 60px 0 86px;
}

@media screen and (min-width: 920px) {
    .strengths {
        padding: 214px 0 210px;
    }
}

.strengths_body {}

@media screen and (min-width: 920px) {
    .strengths_body {
        display: flex;
        justify-content: space-between;
    }
}

.strengths_body_side {
    display: none;
}

@media screen and (min-width: 920px) {
    .strengths_body_side {
        display: block;
        width: 27.580071174377224%;
    }
}

@media screen and (min-width: 920px) {
    .strengths_body_side_container {
        position: sticky;
        top: 60px;
    }
}

.strengths_body_main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media screen and (min-width: 920px) {
    .strengths_body_main {
        width: 63.879003558718864%;
        gap: 60px;
    }
}

.strengths_body_main_container {
    background-color: #fff;
    padding: 36px 20px;
    border-radius: 16px;
}

@media screen and (min-width: 920px) {
    .strengths_body_main_container {
        border-radius: 20px;
        padding: 54px 40px 60px;
    }
}

.strengths_body_main_container_box img {
    width: 100%;
}

.strengths_nav_list {
    counter-reset: strengths-nav;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.strengths_nav_list li {
    position: relative;
}

.strengths_nav_list li a {
    font-size: 18px;
    padding-left: 40px;
    position: relative;
    display: block;
    line-height: 1.5;
}

/* 番号は a に */
.strengths_nav_list li a::before {
    counter-increment: strengths-nav;
    content: counter(strengths-nav) ".";
    position: absolute;
    left: 22px;
    top: 0;
    font-size: 18px;
}

/* 文字太字は li.is-active 経由でもOK */
.strengths_nav_list li.is-active a {
    font-weight: 700;
}

/* 赤丸は li に */
.strengths_nav_list li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 14px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #D3232E;
    opacity: 0;
    transform: translateY(-50%);
}

/* active の li だけ丸を表示 */
.strengths_nav_list li.is-active::before {
    opacity: 1;
}


.strengths_body_main_container_en {
    font-weight: 700;
    color: #D3232E;
    font-family: var(--font-serif);
    margin-bottom: 6px;
}

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

.strengths_body_main_container_catch {
    font-weight: 500;
    font-family: var(--font-serif);
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 18px;
}

@media screen and (min-width: 920px) {
    .strengths_body_main_container_catch {
        font-size: min(40px, 3.3333333333333335vw);
        margin-bottom: 20px;
        line-height: 1.5;
    }
}

.strengths_body_main_container_txt {}

@media screen and (min-width: 920px) {
    .strengths_body_main_container_txt {
        font-size: 15px;

    }

}

.strengths_body_main_container_txt .red {
    color: #D3232E;
    font-weight: 700;
}


.strengths_power_row {
    display: flex;
    flex-direction: column;
    margin: 40px 0;
    gap: 12px;
}

@media screen and (min-width: 920px) {
    .strengths_power_row {
        flex-direction: row;
        margin: 44px 0 40px;
        gap: 0;
    }
}

.strengths_power_row_item {
    flex: 1;
}

@media screen and (min-width: 920px) {
    .strengths_power_row_item:first-child {
        padding-right: 12px;
        margin-right: 12px;
        border-right: 1px solid #E2E2E2;
    }
}

.strengths_power_row_item_top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

@media screen and (min-width: 920px) {
    .strengths_power_row_item_top {
        gap: 12px;
        margin-bottom: 18px;
    }
}

.strengths_power_row_item_title {
    font-size: 14px;
    font-weight: 700;
}

@media screen and (min-width: 920px) {
    .strengths_power_row_item_title {
        font-size: 15px;
    }
}

.strengths_power_row_item_title_red {
    color: #D3232E;
}


.strengths_power_row_item_list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media screen and (min-width: 920px) {
    .strengths_power_row_item_list {
        font-size: 15px;
    }
}

.strengths_power_row_item_list li {
    font-size: 16px;
    background-color: #F5F5F5;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
    padding: 12px;
}

@media screen and (min-width: 920px) {
    .strengths_power_row_item_list li {
        font-size: 18px;
        padding: 12px;
    }
}

.strengths_power_row_item_list_bg li {
    background-color: #F5F5ED;
}


.strengths_power_catch {
    font-weight: 700;
    text-align: center;
    font-size: 18px;
    margin-bottom: 16px;
}

@media screen and (min-width: 920px) {
    .strengths_power_catch {
        font-size: 24px;
        margin-bottom: 24px;
    }
}

.strengths_body_main_container_txtArea {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 38px;
}

@media screen and (min-width: 920px) {
    .strengths_body_main_container_txtArea {
        margin-bottom: 36px;
    }
}


@media screen and (min-width: 920px) {
    .strengths_body_main_container_txtArea .strengths_body_main_container_txt {
        text-align: center;
    }
}

.strengths_ac_row {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin: 40px 0;
}

@media screen and (min-width: 920px) {
    .strengths_ac_row {
        flex-direction: row;
        margin: 40px 0;
    }
}






.strengths_ac_row_item {
    display: flex;
    flex-direction: column;
    background-color: #F5F5ED;
    border-radius: 8px;
    padding: 20px;
}

@media screen and (min-width: 920px) {
    .strengths_ac_row_item {
        padding: 18px;
    }
}

.strengths_ac_row_item_top {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
    margin-bottom: 4px;
}

@media screen and (min-width: 920px) {
    .strengths_ac_row_item_top {
        gap: 4px;
        margin-bottom: 12px;
    }
}

.strengths_ac_row_item_top_txt {
    font-size: 16px;
    font-weight: 700;
    color: #D3232E;
}

@media screen and (min-width: 920px) {
    .strengths_ac_row_item_top_txt {
        gap: 4px;
        font-size: 18px;
    }
}

.strengths_ac_row_item_top_num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #fff;
    border-radius: 50%;
    background: linear-gradient(95.8deg, #D3232E 0%, #A11B23 100.77%);
    font-size: 18px;
}

@media screen and (min-width: 920px) {
    .strengths_ac_row_item_top_num {
        font-size: 20px;
        width: 32px;
        height: 32px;
    }
}

.strengths_ac_row_item_catch {
    font-weight: 700;
    text-align: center;
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 10px;
}

@media screen and (min-width: 920px) {
    .strengths_ac_row_item_catch {
        font-size: 24px;
        margin-bottom: 12px;
    }
}

.strengths_ac_row_item_txt {
    font-size: 14px;
}

@media screen and (min-width: 920px) {
    .strengths_ac_row_item_txt {
        font-size: 15px;
    }
}

.strengths_ac_row_item_txt .bold {
    font-weight: 700;
}


.strengths_miraie_box {
    border-radius: 8px;
    background-color: #F5F5ED;
    padding: 20px;
    display: flex;
    gap: 10px;
    flex-direction: column-reverse;
    margin: 40px 0;
}

@media screen and (min-width: 920px) {
    .strengths_miraie_box {
        flex-direction: row;
        border-radius: 8px;
        padding: 20px;
        margin: 40px 0;
        align-items: center;
        gap: 20px;
    }
}

@media screen and (min-width: 920px) {
    .strengths_miraie_box_txt {
        width: 56.52173913043478%;
    }
}

.strengths_miraie_box_logo {
    text-align: center;
    margin-bottom: 6px;
}

@media screen and (max-width: 920px) {
    .strengths_miraie_box_logo {
        max-width: 212px;
        margin: 0 auto;
    }
}

.strengths_miraie_box_list li {
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #E2E2E2;
}

@media screen and (min-width: 920px) {
    .strengths_miraie_box_list li {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
}

.strengths_miraie_box_list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.strengths_miraie_box_img {
    flex-shrink: 0;
}

@media screen and (min-width: 920px) {
    .strengths_miraie_box_img {
        width: 240px;
    }
}



.strengths_maintenance_box {
    border-radius: 8px;
    background-color: #F5F5ED;
    padding: 20px;
    display: flex;
    gap: 12px;
    flex-direction: column;
    align-items: center;
    margin: 40px 0;
}

@media screen and (min-width: 920px) {
    .strengths_maintenance_box {
        border-radius: 8px;
        padding: 37px 20px 32px 45px;
        flex-direction: row;
        justify-content: space-between;
        margin: 40px 0;
    }
}
@media screen and (max-width: 920px) {
    .strengths_maintenance_box_list {
        width: 100%;
    }
}

.strengths_maintenance_box_list li {
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #E2E2E2;
}

.strengths_maintenance_box_list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

@media screen and (min-width: 920px) {
    .strengths_maintenance_box_list {
        width: 56.52173913043478%;
    }
}



.strengths_accessible_box {
    border-radius: 8px;
    background-color: #F5F5ED;
    padding: 20px;
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    margin: 40px 0;
}

@media screen and (min-width: 920px) {
    .strengths_accessible_box {
        border-radius: 8px;
        padding: 20px 40px 20px 20px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin: 40px 0;
        gap: 20px;
    }
}

.strengths_accessible_box_img {
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

@media screen and (min-width: 920px) {
    .strengths_accessible_box_img {
        width: 156px;
    }
}


@media screen and (min-width: 920px) {
    .strengths_accessible_box_txt {
        width: 63.54515050167224%;
    }
}

.strengths_accessible_box_txt img {
    width: 100%;
}

.strengths_accessible_box_block {
    margin-bottom: 16px;
}

@media screen and (min-width: 920px) {
    .strengths_accessible_box_block {
        margin-bottom: 10px;
    }
}

.strengths_accessible_box_block_top {
    font-weight: 700;
    margin-bottom: 8px;
}



.strengths_accessible_box_block_label {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

@media screen and (min-width: 920px) {
    .strengths_accessible_box_block_label {
        gap: 6px;
        margin-bottom: 8px;
        flex-wrap: nowrap;
    }
}

.strengths_accessible_box_block_label_item {
    line-height: 1;
    padding: 6px 4px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
}

@media screen and (min-width: 920px) {
    .strengths_accessible_box_block_label_item {
        font-size: 18px;
    }
}

.strengths_accessible_box_block_label_item:nth-child(1) {
    background-color: #D3232E;
}

.strengths_accessible_box_block_label_item:nth-child(2) {
    background-color: #9ED323;
}

.strengths_accessible_box_block_label_item:nth-child(3) {
    background-color: #81A4E4;
}

.strengths_accessible_box_block_label_item .small {
    font-size: 12px;
}





.strengths_assets_row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

@media screen and (min-width: 920px) {
    .strengths_assets_row {
        flex-direction: row;
        margin-bottom: 42px;
        gap: 0;
    }
}

.strengths_assets_row_item {
    flex: 1;
}

@media screen and (min-width: 920px) {
    .strengths_assets_row_item:first-child {
        padding-right: 12px;
        margin-right: 12px;
        border-right: 1px solid #E2E2E2;
    }
}

.strengths_assets_row_item_top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}



.strengths_assets_row_item_title {
    font-size: 14px;
    font-weight: 700;
}

@media screen and (min-width: 920px) {
    .strengths_assets_row_item_title {
        font-size: 15px;
    }
}

.strengths_assets_row_item_title_red {
    color: #D3232E;
}


.strengths_assets_row_item_box {
    background-color: #F5F5F5;
    border-radius: 8px;
    padding: 12px;
}

.strengths_assets_row_item_box p {
    font-weight: 700;
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
}

@media screen and (min-width: 920px) {
    .strengths_assets_row_item_box p {
        font-size: 18px;
    }
}

.strengths_assets_row_item_box p .large {

    font-size: 20px;
}

@media screen and (min-width: 920px) {
    .strengths_assets_row_item_box p .large {

        font-size: 24px;
    }
}

.strengths_assets_row_item_box_bg {
    background-color: #F5F5ED;
}

.strengths_assets_row_item_box_bg p .large {
    color: #D3232E;
}


.strengths_assets_box {
    background-color: #F5F5F5;
    border-radius: 8px;
    padding: 20px;
    margin: 38px 0 42px;
}

.strengths_assets_box_top {
    font-size: 16px;
    font-weight: 700;
    color: #D3232E;
    margin-bottom: 8px;
}

@media screen and (min-width: 920px) {
    .strengths_assets_box_top {
        font-size: 20px;
        margin-bottom: 0;
    }
}



.strengths_assets_listBox {
    padding: 20px;
    border: 1px solid #E3E3E3;
    border-radius: 8px;
    margin-bottom: 46px;
}

.strengths_assets_listBox_top {
    font-size: 20px;
    font-weight: 700;
    color: #D3232E;
    margin-bottom: 12px;
}

.strengths_assets_listBox ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.strengths_assets_listBox ul li {
    position: relative;
    padding-left: 22px;
    line-height: 1.5;
}

@media screen and (min-width: 920px) {
    .strengths_assets_listBox ul li {
        line-height: 1.75;
    }
}

.strengths_assets_listBox ul li::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #D3232E;
}

@media screen and (min-width: 920px) {
    .strengths_assets_listBox ul li::before {
        top: 10px;
    }
}

.strengths_assets_listBox ul li .bold {
    font-weight: 700;
}


.strengths_ac_row_item {
    display: flex;
    flex-direction: column;
    background-color: #F5F5ED;
}

@media screen and (min-width: 920px) {
    .strengths_ac_row_item {
        border-radius: 8px;
        padding: 26px 18px;
    }
}

.strengths_ac_row_item_top {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
}

@media screen and (min-width: 920px) {
    .strengths_ac_row_item_top {
        gap: 4px;
        margin-bottom: 16px;
    }
}

.strengths_ac_row_item_top_txt {
    font-size: 18px;
    font-weight: 700;
    color: #D3232E;
}

@media screen and (min-width: 920px) {
    .strengths_ac_row_item_top_txt {
        gap: 4px;
    }
}



.strengths_ac_row_item_txt {
    font-size: 14px;
}

@media screen and (min-width: 920px) {
    .strengths_ac_row_item_txt {
        font-size: 15px;
    }
}

.strengths_ac_row_item_txt .bold {
    font-weight: 700;
}
















.improvement {
    padding: 0 0 58px;
    background-color: #F5F5ED;
}

@media screen and (min-width: 920px) {
    .improvement {
        padding: 0 0 200px;
    }
}

@media screen and (max-width: 920px) {
    .improvement .section_title_top_large {
        font-size: 32px;
    }
}

.improvement_slider {
    position: relative;
    padding: 11px 0;
    border-top: 1px solid #282828;
    border-bottom: 1px solid #282828;
    margin-bottom: 60px;
}


@media screen and (min-width: 920px) {
    .improvement_slider {
        margin-bottom: 70px;
        padding: 33px 0;
    }
}

.improvement_slider_house {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: 1;
    width: 100%;
    max-width: 323px;
}

@media screen and (min-width: 920px) {
    .improvement_slider_house {
        width: 811px;
        max-width: none;
    }
}

.improvement_slider .swiper-slide {
    width: 777px;
    height: 45px;
}

@media screen and (min-width: 920px) {
    .improvement_slider .swiper-slide {
        width: 1600px;
        height: 91px;
    }
}

.improvement_slider .swiper-slide img {
        width: 100%;
    }

.improvement_slider img {
    display: block;
    height: auto;
}

/* 等速にするためのリニア補間 */
.improvement_slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

.improvement_body {
    margin-bottom: 34px;
}



@media screen and (min-width: 920px) {
    .improvement_body {
        margin-bottom: 80px;
    }
}

.improvement_body:last-child {
    margin-bottom: 0;
}

.improvement_item {
    display: flex;
    flex-direction: column;
}



@media screen and (min-width: 920px) {
    .improvement_item {
        flex-direction: row;
        justify-content: space-between;
    }
}





.improvement_item_reverse {
    display: flex;
}

@media screen and (min-width: 920px) {
    .improvement_item_reverse {
        flex-direction: row-reverse;
    }
}

@media screen and (min-width: 920px) {
    .improvement_item_txtArea {
        width: 49.28825622775801%;
    }
}

@media screen and (max-width: 920px) {
    .improvement_item_txtArea {
        display: contents;
    }
}

.improvement_item_img {
    overflow: hidden;
}

.improvement_item_img img {
    width: 100%;
}

@media screen and (min-width: 920px) {
    .improvement_item_img {
        width: 45.462633451957295%;
        border-radius: 8px;
    }
}

.improvement_item_en {
    color: #D3232E;
    font-weight: 700;
    font-family: var(--font-serif);
    margin-bottom: 6px;
}

@media screen and (min-width: 920px) {
    .improvement_item_en {
        font-size: 15px;
        margin-bottom: 8px;
    }
}

@media screen and (max-width: 920px) {
    .improvement_item_en {
        order: 1;
    }

    .improvement_item_catch {
        order: 2;
    }

    .improvement_item_txtTop {
        order: 3;
    }

    .improvement_item_img {
        order: 4;
    }

    .improvement_item_txt_bold {
        order: 5;
    }

    .improvement_item_box {
        order: 5;
    }

    .improvement_item_txtBottom {
        order: 6;
    }
}

.improvement_item_txtTop {
    margin-bottom: 12px;
}

@media screen and (min-width: 920px) {
    .improvement_item_txtTop {
        margin-bottom: 0;
    }
}

.improvement_item_catch {
    font-weight: 500;
    font-family: var(--font-serif);
    line-height: 1.5;
    font-size: 24px;
    margin-bottom: 18px;
}

@media screen and (min-width: 920px) {
    .improvement_item_catch {
        font-size: min(28px, 2.5454545454545454vw);
        margin-bottom: 22px;
    }
}

.improvement_item_txt {}

@media screen and (min-width: 920px) {
    .improvement_item_txt {
        margin-bottom: 6px;
    }
}
.improvement_item_txt_bold {
font-weight: 700;
font-size: 18px;
margin-top: 20px;
}

@media screen and (min-width: 920px) {
    .improvement_item_txt_bold {
        font-size: 20px;
        margin-top: 22px;
    }
}

.improvement_item_txt:last-of-type {
    margin-bottom: 0;
}

.improvement_item_txt_bold {
    font-weight: 700;
}

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

.improvement_item_txt .red {
    color: #D3232E;
}

.improvement_item_box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 18px 0;
}

@media screen and (min-width: 920px) {
    .improvement_item_box {
        margin: 26px 0;
    }
}

.improvement_item_box_content {
    background-color: #fff;
    border-radius: 8px;
    padding: 16px 20px;
}

@media screen and (min-width: 920px) {
    .improvement_item_box_content {
        padding: 22px 20px;
    }
}


@media screen and (max-width: 920px) {
    .improvement_item_box_content img {
        width: 130.32258064516128%;
        max-width: none;
    }
}


.improvement_item_box_block {
    margin-bottom: 10px;
}

@media screen and (min-width: 920px) {
    .improvement_item_box_block {
        margin-bottom: 10px;
    }
}

.improvement_item_box_block:last-child {
    margin-bottom: 0;
}

.improvement_item_box_block_top {
    font-weight: 700;
    font-size: 15px;
}

@media screen and (min-width: 920px) {
    .improvement_item_box_block_top {
        margin-bottom: 6px;
    }
}



.improvement_item_box_content_top {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    gap: 8px;
}


.improvement_item_box_content_label {
    display: block;
    color: #fff;
    border-radius: 4px;
    background: linear-gradient(95.8deg, #D3232E 0%, #A11B23 100.77%);
    line-height: 1;
    padding: 6px 8px;
    font-weight: 700;
}

@media screen and (min-width: 920px) {
    .improvement_item_box_content_label {}
}

.improvement_item_box_content_txt {
    color: #D3232E;
    font-weight: 700;
    font-size: 18px;
}

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


.plan {
    background-color: #282828;
    background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 16px), repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 16px);
    padding-bottom: 24px;
}

@media screen and (min-width: 920px) {
    .plan {
        padding-bottom: 0;
    }
}

.plan_top {
    position: relative;
    padding: 193px 12px 0;
    margin: 0 0 28px 0;
}

@media screen and (min-width: 920px) {
    .plan_top {
        padding: 270px 20px 0;
        margin: 0 auto;
        max-width: 1400px;
    }
}

.plan_top_txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 60px;
    width: max-content;
    gap: 12px;
}

@media screen and (min-width: 920px) {
    .plan_top_txt {
        gap: 24px;
        top: 120px;

    }
}

@media screen and (max-width: 920px) {
    .plan_top_txtTop {
        width: 198px;
    }
}

.plan_top_txtBottom {
    font-size: 28px;
    color: #fff;
    text-align: center;
    font-family: var(--font-serif);
    line-height: 1.5;
}

@media screen and (min-width: 920px) {
    .plan_top_txtBottom {
        font-size: 48px;
    }
}

.plan_item {
    color: #fff;
    padding: 30px 0;

}

@media screen and (min-width: 920px) {
    .plan_item {
        padding: 110px 0;
        border-bottom: 1px solid #646464;
    }
}


.plan_item_head {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 18px;
    margin-bottom: 36px;
}

@media screen and (min-width: 920px) {
    .plan_item_head {
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 30px;
    }
}

.plan_item_head_txt_top {
    font-size: 14px;
    margin-bottom: 14px;
}

@media screen and (min-width: 920px) {
    .plan_item_head_txt_top {
        font-size: 18px;
        margin-bottom: 12px;
    }
}

.plan_item_head_txt {
    text-align: center;
}

@media screen and (min-width: 920px) {
    .plan_item_head_txt {
        text-align: left;
    }
}

@media screen and (max-width: 920px) {
    .plan_item_head_icon {
        width: 100px;
    }
}




.plan_item_body_inr {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media screen and (min-width: 920px) {
    .plan_item_body_inr {
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
    }
}

.plan_item:first-of-type {
    padding-top: 0;
}


.plan_item_txtArea {}

@media screen and (min-width: 920px) {
    .plan_item_txtArea {
        width: 43.70106761565836%;
    }
}

.plan_item_txt {
    margin-bottom: 2px;
    text-align: center;
    line-height: 1.5;
}

@media screen and (min-width: 920px) {
    .plan_item_txt {
        margin-bottom: 8px;
        text-align: left;
        line-height: 1.75;
    }
}

.plan_item_txt:last-of-type {
    margin-bottom: 22px;
}

@media screen and (min-width: 920px) {
    .plan_item_txt:last-of-type {
        margin-bottom: 38px;
        text-align: left;
    }
}

.plan_item_features {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #fff;
}

@media screen and (min-width: 920px) {
    .plan_item_features {
        padding: 20px;
        border-radius: 8px;
        max-width: 435px;
    }
}



.plan_item_features_top {
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 16px;
}

@media screen and (min-width: 920px) {
    .plan_item_features_top {
        font-size: 20px;
        margin-bottom: 8px;
    }
}

.plan_item_features_list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

@media screen and (min-width: 920px) {
    .plan_item_features_list {
        gap: 8px;
    }
}

.plan_item_features_list li {
    font-weight: 700;
    padding-left: 20px;
    position: relative;
}

@media screen and (min-width: 920px) {
    .plan_item_features_list li {
        padding-left: 20px;
        font-size: 15px;
    }
}

.plan_item_features_list li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
}

@media screen and (min-width: 920px) {

    .plan_item_features_list li::before {
        top: 10px;
    }
}

.plan_top_img {
    width: 100%;
}

.plan_top_img img {
    width: 100%;
}


@media screen and (min-width: 920px) {
    .plan_item_floor {
        width: 49.37722419928826%;
    }
}

.comparison {
    background-color: #404040;
    background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 16px), repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 16px);
    padding: 60px 0;
}

@media screen and (min-width: 920px) {
    .comparison {
        padding: 126px 0 120px;
    }
}

@media screen and (min-width: 920px) {
    .comparison .section_title {
        margin-bottom: 60px;
    }
}











.life {
    padding: 60px 0;
}

@media screen and (min-width: 920px) {
    .life {
        padding: 120px 0;
    }
}


.life_body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media screen and (min-width: 920px) {
    .life_body {
        flex-direction: row;
        gap: 22px;
    }
}



.life_item {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    background-color: #fff;
    padding: 20px;
}

@media screen and (min-width: 920px) {
    .life_item {
        flex: 1;
        padding: 20px;
    }
}

.life_item_txt {
    padding: 0 18px;
}

@media screen and (min-width: 920px) {
    .life_item_txt {
        padding: 0 20px;
    }
}

.life_item_img {
    border-radius: 8px;
    position: relative;
    margin-bottom: 18px;
}

@media screen and (min-width: 920px) {
    .life_item_img {
        margin-bottom: 16px;
    }
}

.life_item_label {
    color: #fff;
    font-weight: 700;
    line-height: 1;
    border-radius: 4px;
    padding: 8px;
    background: linear-gradient(95.8deg, #D3232E 0%, #A11B23 100.77%);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (min-width: 920px) {
    .life_item_label {}
}

.life_item_catch {
    font-weight: 700;
    color: #D3232E;
    text-align: center;
    font-size: 20px;
    margin-bottom: 12px;
}

@media screen and (min-width: 920px) {
    .life_item_catch {
        font-size: 24px;
        margin-bottom: 28px;
    }
}

.life_item_list {
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #E2E2E2;
    gap: 2px;
}

@media screen and (min-width: 920px) {
    .life_item_list {
        padding-bottom: 20px;
        margin-bottom: 20px;
        gap: 12px;
    }
}

.life_item_list li {
    font-weight: 700;
    padding-left: 24px;
    position: relative;
    font-size: 15px;
    line-height: 1.5;
}

@media screen and (min-width: 920px) {
    .life_item_list li {
        padding-left: 24px;
    }
}

.life_item_list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-image: url("../img/check.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 16px;
    height: 24px;
}

@media screen and (min-width: 920px) {
    .life_item_list li::before {}
}











.voice {
    background-color: #F5F5ED;
    padding: 60px 0;
}

@media screen and (min-width: 920px) {
    .voice {
        padding: 120px 0;
    }
}

.voice .section_title {
    margin-bottom: 40px;
}

@media screen and (min-width: 920px) {
    .voice .section_title {
        margin-bottom: 62px;
    }
}

.voice_body {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

@media screen and (min-width: 920px) {
    .voice_body {
        flex-direction: row;
        gap: 20px;
    }
}

.voice_item {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding: 24px 20px;
    border-radius: 8px;
}

@media screen and (min-width: 920px) {
    .voice_item {
        flex-direction: row;
        padding: 24px 28px;
        flex: 1;
        gap: 24px;
    }
}

.voice_item_user_icon {
    flex-shrink: 0;
    margin-bottom: 10px;
}

@media screen and (min-width: 920px) {
    .voice_item_user_icon {
        width: 100px;
    }
}

.voice_item_user {
    text-align: center;
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
}

@media screen and (min-width: 920px) {
    .voice_item_user {
        margin-bottom: 0;
    }
}

.voice_item_user p {
    font-size: 15px;
    line-height: 1.5;
}

@media screen and (min-width: 920px) {
    .voice_item_user p {
        line-height: 1.75;
    }
}

.voice_item_txt p {
    margin-bottom: 8px;
    line-height: 1.5;
}

@media screen and (min-width: 920px) {
    .voice_item_txt p {
        margin-bottom: 10px;
    }
}


.voice_item_txt p:last-child {
    margin-bottom: 0;
}


.voice_item_txt .voice_item_txt_top {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
}

@media screen and (min-width: 920px) {
    .voice_item_txt .voice_item_txt_top {
        font-size: 20px;
        margin-bottom: 12px;
    }
}

@media screen and (min-width: 920px) {
    .voice_item_txt {
        padding-top: 14px;
    }
}





















.faq {
    padding: 60px 0;
    background-color: #E3E3E3;
    background-image: repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 1px, transparent 1px, transparent 16px), repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 1px, transparent 1px, transparent 16px);
}

@media screen and (min-width: 920px) {
    .faq {
        padding: 120px 0;
    }
}

.faq .section_title {
    margin-bottom: 40px;
}

@media screen and (min-width: 920px) {
    .faq .section_title {
        margin-bottom: 64px;
    }
}

.accordion {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 962px;
    margin: 0 auto;
}

@media screen and (min-width: 920px) {
    .accordion {
        gap: 20px;
    }
}

.accordion li {
    background-color: #fff;
    border-radius: 8px;
}

.accordion li.is-open .accordion-q-icon::after {
    transform: rotate(0deg);
}

.accordion-a-inner {
    border-top: 1px solid #E2E2E2;
    padding: 20px 20px 20px 48px;
}

@media screen and (min-width: 920px) {
    .accordion-a-inner {
        padding: 27px 30px 25px 88px;
    }
}

.accordion-q-icon::before,
.accordion-q-icon::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #282828;
}



@media screen and (min-width: 920px) {

    .accordion-q-icon::before,
    .accordion-q-icon::after {
        top: 7px;
    }
}

.accordion-q-icon::after {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}
















.accordion-q-content {
    display: block;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
}


@media screen and (min-width: 920px) {
    .accordion-q-content {
        font-size: 20px;
        line-height: 1.75;
    }
}

.accordion-q-icon {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    right: 25px;
}



@media screen and (min-width: 920px) {
    .accordion-q-icon {
        right: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 22px;
    }
}



.accordion-q button {
    display: block;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    border: none;
    background: none;
    color: inherit;
    font: inherit;
    text-align: left;
    appearance: none;
    cursor: pointer;
    transition: opacity 400ms;
    padding: 20px 72px 20px 20px;
}

@media print,
(min-width: 920px) {
    .accordion-q button {
        padding: 21px 60px 21px 40px;
    }
}

@media print,
(min-width: 920px) {

    .accordion-q button:hover,
    .accordion-q button:active {
        opacity: 0.8;
    }
}

.accordion-a {
    display: none;
    overflow: hidden;
}

.accordion-a-inner {
    position: relative;
}



.accordion-a-prefix {
    position: absolute;
    font-weight: 700;
    color: #D3232E;
    font-size: 24px;
    top: 7px;
    left: 20px;
}

@media screen and (min-width: 920px) {
    .accordion-a-prefix {
        left: 40px;
        top: 8px;
        font-size: 32px;
    }
}

.accordion-a-content_block {
    margin-bottom: 10px;
}

@media screen and (min-width: 920px) {
    .accordion-a-content_block {
        margin-bottom: 8px;
    }
}

.accordion-a-content_block p {
    line-height: 1.5;
}

.accordion-a-content_block:last-child {
    margin-bottom: 0;
}

.accordion-a-content_block .bold {
    font-weight: 700;
}


.accordion-a-content_block ul li {
    position: relative;
    line-height: 1.5;
    padding-left: 22px;
}

/* 
@media screen and (min-width: 920px) {
    .accordion-a-content_block ul li {
        padding-left: 22px;
    }
} */


.accordion-a-content_block ul li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 10px;
    background-color: #282828;
    border-radius: 50%;
    width: 4px;
    height: 4px;
}






/*---------- footer ----------*/
.site_footer {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 40px 20px 24px;
    background: #282828;
}

@media screen and (min-width: 920px) {
    .site_footer {
        padding: min(3.5vw, 49px) min(4vw, 56px) min(2.14285714286vw, 30px);
    }
}

.site_footer_head {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 28px;
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid #424242;
}

@media screen and (min-width: 920px) {
    .site_footer_head {
        flex-direction: row;
        justify-content: space-between;
    }
}

.site_footer_logo {
    width: 326px;
    height: 80px;
    display: flex;
}

.site_footer_logo img {
    width: 100%;
    height: 100%;
}

.site_footer_name {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.site_footer_info {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0 7.5px;
    color: #fff;
}

.site_footer_info_inner {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.site_footer_address {
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
    color: #fff;
    white-space: nowrap;
    pointer-events: none;
    text-decoration: none;
}

.site_footer_number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    line-height: 1;
    color: #fff;
}

.site_footer_number a {
    text-decoration: none;
    font-size: 18px;
    line-height: 1;
}

.site_footer_data {
    font-size: 12px;
    line-height: 1;
    text-align: center;
    color: #fff;
}

.site_footer_other {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    position: relative;
}

@media screen and (min-width: 920px) {
    .site_footer_other {
        flex-direction: row;
        justify-content: space-between;
    }
}

.site_footer_other .stream_line {
    background-image: linear-gradient(to right, #fff, #fff);
    padding-bottom: 2px;
    margin: 14px 0 0;
}

@media screen and (min-width: 920px) {
    .site_footer_other .stream_line {
        margin: 0;
    }
}

.sns_row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site_footer_register {
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
    color: #fff;
}

.page_top {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    width: fit-content;
    color: #fff;
}




.page_top_icon {
    position: relative;
    width: 24px;
    height: 24px;
    overflow: hidden;
    flex-shrink: 0;
}

.page_top_icon img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.page_top_icon::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 100%;
    background: url("../img/icon_pagetop.svg") no-repeat center;
    background-size: contain;
    transition: transform 0.23s ease;
}

@media screen and (min-width: 920px) {
.page_top:hover .page_top_icon img,
.page_top:hover .page_top_icon::after {
    transform: translateY(-100%);
}
}



.copyright {
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
    order: 3;
    margin: 40px 0 0;
}

@media screen and (min-width: 920px) {
    .copyright {
        margin: 0;
        order: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

.cta_floating {
    width: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 4px;
    background: linear-gradient(90deg,
            #D3232E 0%,
            #A11B23 50%,
            #D3232E 100%);
    background-size: 200% 100%;
    background-position: 0 0;

    position: fixed;
    z-index: 9999;
    bottom: 30px;
    right: 50%;
    transform: translateX(50%);
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease, background-position 0.3s ease;

}

@media screen and (min-width: 920px) {
    .cta_floating {
        width: fit-content;
        padding: min(2.14285714286vw, 30px) min(1.42857142857vw, 20px);
        bottom: min(2vw, 28px);
        right: min(1.42857142857vw, 20px);
        transform: none;
    }

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

.cta_floating.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


.cta_floating img {
    width: 40px;
    height: 40px;
}

@media screen and (min-width: 920px) {
    .cta_floating img {
        width: min(2.85714285714vw, 40px);
        height: min(2.85714285714vw, 40px);
    }
}

.cta_floating p {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.04em;
}

@media screen and (min-width: 920px) {
    .cta_floating p {
        font-size: min(1.42857142857vw, 20px);
    }
}


.cta_floating.is-visible {
    opacity: 0;
    pointer-events: none;
}








.scrollDown {
    width: fit-content;
    height: auto;
    color: #fff;
    margin: 0 auto;
    font-weight: 600;
        font-family: var(--font-serif);
}

@media screen and (min-width: 920px) {
    .scrollDown {
        position: absolute;
        bottom: 24px;
        left: 50%;
        translate: -50% 0;
        line-height: 1;
        z-index: 1;
        font-size: 18px;
    }
}

@keyframes scroll {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
        opacity: 0;
    }

    60% {
        transform: scale(1, 1);
        transform-origin: 0 0;
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        transform-origin: 0 0;
        opacity: 1;
        /* 表示されたままキープ */
    }
}

#animatedText span {
    display: inline-block;
    animation-name: scroll;
    animation-timing-function: ease;
    animation-fill-mode: both;
    /* 最後の状態を保持 */
}