/*---------------------------------------------------------
                共通css
---------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-repeat: no-repeat;
}

:root {
    --font01: "Noto Sans JP", sans-serif;
    --font02: "Outfit", sans-serif;
    --font03: "ah-hakushu-yan-zhenqing", sans-serif;
    --font04: "Noto Serif JP", serif;
    --base-color: #FFF;
    --main-color: #EEEAE2;
    --text-color01: #3B3833;
    --text-color02: #FFF;
    --text-color03: #B28C3E;
    --text-color04: #878787;
    --bg-color: #E7E3DA;
    --bd-color01: #CCCCCC;
    --bd-color02: #CCAA66;
    --bd-color03: #ECE4D6;
    --bd-color04: #9C9586;
    --bd-color05: #B5B5B5;
    --bd-color06: #919191;
    --accent-color01: #F4AC1D;
    --accent-color02: #2585BC;
    --accent-color03: #93815D;
    --btn-bg-color: #332C21;
}

html,
body {
    overflow-x: scroll;
    height: 100dvh;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

html {
    font-family: var(--font01);
    font-style: normal;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.08em;
}

body {
    background-color: var(--base-color);
    color: var(--text-color01);
}

section#about,
section#declaration,
section#belief,
section#belief h4,
section#organization,
section#joining,
section#beliefs,
section#numbers-overview,
section#flow {
    scroll-margin-top: calc(96px + 10vh);
}


ul {
    list-style: none;
}

p,
dd,
li {
    font-family: var(--font01);
    font-style: normal;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.04em;
}

a {
    display: inline-block;
    text-decoration: none;
    transition: 0.3s;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.inner {
    margin: 0 auto;
    width: 90vw;
}

/*---------------------------------------------------------
                TOP ボタン
---------------------------------------------------------*/
.btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    width: 300px;
    background: var(--btn-bg-color);
    color: var(--text-color02);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0;
    border-radius: 4px;
    transition: .3s;
    cursor: pointer;
}

.btn.sp {
    display: none;
}

.btn svg {
    width: 8px;
}

@media (hover: hover) and (pointer: fine) {
    .btn:hover {
        opacity: .7;
    }
}

@media screen and (max-width:990px) {
    .btn.sp {
        display: flex;
    }
}


/*---------------------------------------------------------
                TOP タイトル
---------------------------------------------------------*/
.f_ttl {
    position: relative;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.f_ttl img {
    position: absolute;
    top: -40px;
    left: -40px;
    transform: rotate(11deg);
    display: block;
    content: "";
    width: 57px;
    height: auto;
    aspect-ratio: 116/129;
}

@media screen and (max-width:990px) {
    .f_ttl {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-align: center;
    }

    .f_ttl img {
        position: unset;
        width: 50px;
    }
}

@media screen and (max-width:600px) {
    .f_ttl {
        font-size: 28px;
    }
}


/*---------------------------------------------------------
                TOP メインビュー
---------------------------------------------------------*/
.mv_wrapper {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100svh;
}

.mv_wrapper .content {
    flex: 1;
    position: relative;
    margin-top: 96px;
    width: 100%;
    height: calc(100svh - 96px - 95px);
    background: url(../img/img_mvbg.webp);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
}

.mv_wrapper .content .text_area {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 479px;
}

.mv_wrapper .content .text_area svg {
    width: 100%;
}

.mv_wrapper .content .text_area p {
    font-size: 18px;
    font-weight: 500;
    line-height: 2.1;
    letter-spacing: 0.04em;
}

.mv_wrapper .logo_slider {
    width: 100%;
    background: var(--base-color);
    overflow: hidden;
}

.mv_wrapper .logo_slider .slider_group {
    display: flex;
    align-items: center;
    width: max-content;
    height: 95px;
}

.mv_wrapper .logo_slider .slider_area {
    display: flex;
    align-items: center;
    gap: 40px;
}

.mv_wrapper .logo_slider .slider_area:first-child {
    animation: loop 50s -25s linear infinite;
}

.mv_wrapper .logo_slider .slider_area:last-child {
    animation: loop2 50s linear infinite;
}

.mv_wrapper .logo_slider .slider_area .slider_item {
    padding: 0 20px;
    width: fit-content;
    color: var(--text-color01);
}

.mv_wrapper .logo_slider .slider_area .slider_item:last-child {
    margin-right: 40px;
}

.mv_wrapper .logo_slider .slider_area .slider_item img {
    min-width: 200px;
    max-width: 320px;
}

.mv_wrapper .logo_slider .slider_area .slider_item p {
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

/* @keyframes slider {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
} */

@keyframes loop {
    0% {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes loop2 {
    0% {
        transform: translateX(0);
    }

    to {
        transform: translateX(-200%);
    }
}

@media screen and (max-width:600px) {
    .mv_wrapper .content {
        margin-top: calc(70px + 63px);
        height: calc(100svh - 70px - 63px - 80px);
    }

    .mv_wrapper .content .text_area {
        width: 85vw;
    }

    .mv_wrapper .content .text_area p {
        font-size: 14px;
    }
}

/*---------------------------------------------------------
                TOP 稲沢JCについて
---------------------------------------------------------*/
.f_about_wrapper {
    margin-top: 152px;
}

.f_about_wrapper .content .top_box {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.f_about_wrapper .content .top_box .text_area {
    display: flex;
    flex-direction: column;
    gap: 23px;
    width: 45vw;
}

.f_about_wrapper .content .link_box {
    position: relative;
    display: flex;
    gap: 10px;
    margin-top: 72px;
}

.f_about_wrapper .content .link_box::before {
    position: absolute;
    top: 50%;
    left: -7.5vw;
    display: block;
    content: "";
    width: 100vw;
    height: 50%;
    background: var(--main-color);
}

.f_about_wrapper .content .link_box a {
    position: relative;
    width: calc((100% - 20px)/3);
    aspect-ratio: 396/476;
    color: var(--text-color02);
    border-radius: 4px;
    overflow: hidden;
}

.f_about_wrapper .content .link_box a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.f_about_wrapper .content .link_box a .ab_area {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 90%;
}

.f_about_wrapper .content .link_box a .ab_area .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.f_about_wrapper .content .link_box a .ab_area .flex p {
    font-size: clamp(18px, 1.5vw, 24px);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.06em;
}

.f_about_wrapper .content .link_box a .ab_area .flex svg {
    width: 6px;
}

.f_about_wrapper .content .link_box a .ab_area .border {
    position: relative;
    width: 100%;
    height: 3px;
    background: var(--base-color);
}

.f_about_wrapper .content .link_box a .ab_area .border::before {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    content: "";
    width: 25%;
    height: 100%;
    background: var(--accent-color03);
    transition: .3s;
}

@media (hover: hover) and (pointer: fine) {
    .f_about_wrapper .content .link_box a:hover img {
        transform: scale(1.1);
    }

    .f_about_wrapper .content .link_box a:hover .ab_area .border::before {
        width: 100%;
    }
}

@media screen and (max-width:990px) {
    .f_about_wrapper {
        position: relative;
    }

    .f_about_wrapper::before {
        position: absolute;
        top: 50%;
        left: 0;
        z-index: -1;
        display: block;
        content: "";
        width: 100vw;
        height: 50%;
        background: var(--main-color);
    }

    .f_about_wrapper .content .top_box {
        flex-direction: column;
        align-items: baseline;
        gap: 30px;
    }

    .f_about_wrapper .content .top_box .text_area {
        width: 100%;
    }

    .f_about_wrapper .content .top_box .btn {
        display: none;
    }

    .f_about_wrapper .content .link_box {
        flex-wrap: wrap;
    }

    .f_about_wrapper .content .link_box a {
        aspect-ratio: 16 / 9;
    }

    .f_about_wrapper .content .link_box a:first-of-type {
        width: 100%;
    }

    .f_about_wrapper .content .link_box a:nth-of-type(2),
    .f_about_wrapper .content .link_box a:last-of-type {
        width: calc((100% - 10px)/2);
    }

    .f_about_wrapper .content .link_box::before {
        display: none;
    }

    .f_about_wrapper .content .btn.sp {
        margin: 48px auto 0;
    }
}

@media screen and (max-width:600px) {
    .f_about_wrapper {
        margin-top: 72px;
    }

    .f_about_wrapper .content .link_box {
        margin-top: 48px;
    }

    .f_about_wrapper .content .link_box a {
        aspect-ratio: 332/476;
    }

    .f_about_wrapper .content .link_box a:nth-of-type(2),
    .f_about_wrapper .content .link_box a:last-of-type {
        width: 100%;
    }

    .f_about_wrapper .content .link_box a .ab_area .flex p {
        font-size: 22px;
    }

    .f_about_wrapper .content .btn.sp {
        max-width: 100%;
    }
}

/*---------------------------------------------------------
                TOP 入会について
---------------------------------------------------------*/
.f_admission_wrapper {
    padding: 192px 0 266px;
    background: var(--main-color);
}

.f_admission_wrapper .content .top_box {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.f_admission_wrapper .content .top_box .text_area {
    display: flex;
    flex-direction: column;
    gap: 23px;
    width: 45vw;
}

.f_admission_wrapper .content .point_box {
    display: flex;
    gap: 10px;
    margin-top: 72px;
}

.f_admission_wrapper .content .point_box .point_item {
    padding: 2.5% 2.5% 4% 2.5%;
    width: calc((100% - 20px)/3);
    background: var(--base-color);
    border-radius: 4px;
}

.f_admission_wrapper .content .point_box .point_item .border {
    margin: 0 auto;
    width: 88px;
    height: 3px;
    background: var(--bd-color02);
}

.f_admission_wrapper .content .point_box .point_item img {
    margin-top: 10px;
    width: 100%;
    aspect-ratio: 330/214;
    object-fit: cover;
}

.f_admission_wrapper .content .point_box .point_item h3 {
    margin-top: 24px;
    font-size: clamp(18px, 1.5vw, 24px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-align: center;
}

.f_admission_wrapper .content .point_box .point_item p {
    margin-top: 12px;
}

@media screen and (max-width:990px) {
    .f_admission_wrapper .content .top_box .text_area {
        width: 100%;
    }


    .f_admission_wrapper .content .top_box .btn {
        display: none;
    }

    .f_admission_wrapper .content .point_box {
        flex-wrap: wrap;
    }

    .f_admission_wrapper .content .point_box .point_item:first-of-type {
        width: 100%;
    }

    .f_admission_wrapper .content .point_box .point_item:nth-of-type(2),
    .f_admission_wrapper .content .point_box .point_item:last-of-type {
        width: calc((100% - 10px)/2);
    }

    .f_admission_wrapper .content .point_box .point_item img {
        aspect-ratio: 16 / 7;
    }

    .f_admission_wrapper .content .btn.sp {
        margin: 48px auto 0;
    }
}

@media screen and (max-width:600px) {
    .f_admission_wrapper {
        padding: 126px 0 100px;
    }

    .f_admission_wrapper .content .point_box {
        margin-top: 48px;
    }

    .f_admission_wrapper .content .point_box .point_item {
        padding: 32px 24px;
    }

    .f_admission_wrapper .content .point_box .point_item:nth-of-type(2),
    .f_admission_wrapper .content .point_box .point_item:last-of-type {
        width: 100%;
    }

    .f_admission_wrapper .content .point_box .point_item img {
        aspect-ratio: 284/180;
    }

    .f_admission_wrapper .content .point_box .point_item h3 {
        font-size: 20px;
    }
}

/*---------------------------------------------------------
                下層ページ 2カラム
---------------------------------------------------------*/
.under_main {
    margin: 250px auto;
}

.column_wrapper {
    display: flex;
    margin: 0 auto;
    width: 90vw;
}

@media screen and (max-width:990px) {
    .column_wrapper {
        flex-direction: column;
        gap: 130px;
    }
}


/*---------------------------------------------------------
                右カラム
---------------------------------------------------------*/
.content_container {
    margin-left: 5.5vw;
    width: calc(100% - 24vw - 5.5vw);
    max-width: calc(100% - 280px - 5.5vw);
}

@media screen and (max-width:990px) {
    .content_container {
        margin-left: 0;
        width: 100%;
        max-width: unset;
    }
}

/*---------------------------------------------------------
                下層ページ タイトル
---------------------------------------------------------*/
.under_ttl {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.under_ttl span {
    display: block;
    color: var(--text-color03);
    font-family: var(--font02);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.ttl_18 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.04em;
}

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


.ttl_22+p {
    margin-top: 10px;
}

.ttl_28 {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.06em;
}

@media screen and (max-width:990px) {
    .under_ttl {
        position: relative;
        padding-bottom: 48px;
        border-bottom: 2px solid var(--bd-color03);
    }

    .under_ttl::before {
        display: block;
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 24px;
        height: 2px;
        background: var(--bd-color02);
    }
}

@media screen and (max-width:600px) {
    .ttl_28 {
        text-align: center;
    }
}

/*---------------------------------------------------------
                ナビゲーション
---------------------------------------------------------*/
.nav_container {
    position: relative;
    width: 24vw;
    min-width: 280px;
    border-right: 2px solid var(--bd-color03);
}

.nav_container::before {
    position: absolute;
    top: 0;
    right: -2px;
    display: block;
    content: "";
    width: 2px;
    height: 40px;
    background: var(--text-color03);
}

.navigation_box {
    position: sticky;
    top: 30%;
    margin-top: 180px;
    width: 250px;
}

.navigation_box p {
    font-family: var(--font02);
    color: var(--text-color03);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.04em;
}

.navigation_box ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.navigation_box ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--text-color01);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.08em;
    transition: .3s;
}

.navigation_box ul li svg,
.navigation_box ul li a svg {
    width: 18px;
    transition: .3s;
}

.navigation_box ul li a.open svg {
    transform: rotate(180deg);
}

.navigation_box ul li ul li a {
    position: relative;
    color: #8C8881;
    margin-left: 26px;
}

.navigation_box ul li ul li a::before {
    display: block;
    content: "";
    position: absolute;
    top: 12px;
    left: -26px;
    width: 16px;
    height: 1px;
    background: #8C8881;
}

@media (hover: hover) and (pointer: fine) {
    .navigation_box ul li a:hover {
        opacity: .3;
    }
}


@media screen and (max-width:990px) {
    .nav_container {
        width: 100%;
        min-width: unset;
        border-right: unset;
    }

    .nav_container::before {
        display: none;
    }

    .navigation_box {
        margin-top: 73px;
    }

    .navigation_box p {
        display: none;
    }
}

/*---------------------------------------------------------
                下層ページ MV
---------------------------------------------------------*/
.mv_area {
    width: 100%;
    aspect-ratio: 792/354;
}

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

@media screen and (max-width:990px) {
    .mv_area {
        position: relative;
        left: -5vw;
        width: 100vw;
    }
}

/*---------------------------------------------------------
                稲沢JCについて
---------------------------------------------------------*/
.about_jc {
    margin-top: 40px;
}

.declaration {
    margin-top: 64px;
}

.declaration .right {
    margin-top: 10px;
    text-align: right;
}

.belief {
    margin-top: 96px;
}

.belief .top_area {
    display: flex;
    align-items: flex-end;
    gap: 30px;
    margin-top: 40px;
}

.belief .top_area .img_box {
    width: 45%;
    aspect-ratio: 332/438;
    border-radius: 4px;
}

.belief .top_area .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.belief .top_area .slogan_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 72px;
    margin-bottom: 40px;
    width: calc(100% - 45% - 30px);
}

.belief .top_area .slogan_box img {
    max-width: 100%;
}

.belief .top_area .slogan_box p {
    font-family: var(--font04);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.06em;
}

.belief .top_area .slogan_box p span {
    margin-right: 1em;
    font-size: 16px;
    line-height: 1.2;
}

/* .belief .img_box {
    margin-top: 40px;
    width: 100%;
}

.belief .img_box img {
    width: 100%;
    height: auto;
} */

.belief .text_area {
    margin-top: 32px;
}

.belief .text_area h4 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: 0.04em;
}

.belief .text_area h4+p {
    margin-top: 10px;
}

.belief .text_area h4:not(:first-of-type) {
    margin-top: 64px;
}

.organization {
    margin-top: 96px;
}

.organization .img_box {
    margin-top: 40px;
    width: 100%;
}

.organization .img_box.sp {
    display: none;
}

.organization .img_box img {
    width: 100%;
    height: auto;
}

@media screen and (max-width:768px) {
    .belief .top_area {
        flex-direction: column;
        gap: 40px;
    }

    .belief .top_area .img_box {
        width: 100%;
    }

    .belief .top_area .slogan_box {
        width: 100%;
        gap: 16px;
    }
}

@media screen and (max-width:600px) {
    .belief {
        margin-top: 120px;
    }

    .belief .text_area h4:not(:first-of-type) {
        margin-top: 48px;
    }

    .organization .img_box.pc {
        display: none;
    }

    .organization .img_box.sp {
        display: block;
    }
}


/*---------------------------------------------------------
                入会について
---------------------------------------------------------*/
.joining_jc {
    margin-top: 40px;
}

.joining_jc p {
    margin-top: 40px;
}

.jc-beliefs {
    margin-top: 96px;
}

.jc-beliefs .beliefs_table {
    margin-top: 40px;
}

.jc-beliefs .beliefs_table dl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 32px 3.8vw;
}

.jc-beliefs .beliefs_table dl:first-of-type {
    padding-top: 0;
}

.jc-beliefs .beliefs_table dl:not(:last-of-type) {
    border-bottom: 1px solid var(--text-color03);
}

.jc-beliefs .beliefs_table dl dt {
    width: 87px;
    font-family: var(--font03);
    font-size: 40px;
    font-weight: 100;
    line-height: 1;
    letter-spacing: 0.08em;
}

.jc-beliefs .beliefs_table dl dd {
    max-width: calc(100% - 30px - 87px);
}

.jc-beliefs .text_area {
    margin-top: 48px;
}

.numbers-overview {
    margin-top: 96px;
}

.numbers-overview .content {
    margin-top: 40px;
}

.numbers-overview .content .flex_area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.numbers-overview .content .flex_area .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 30px 0;
    width: calc((100% - 18px)/2);
    background: var(--main-color);
}

.numbers-overview .content .flex_area .box p:first-of-type {
    font-size: 20px;
    font-weight: 600;
}

.numbers-overview .content .flex_area .box p:last-of-type {
    font-family: var(--font02);
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0;
}

.numbers-overview .content .flex_area .box p:last-of-type span {
    font-size: 64px;
}

.numbers-overview .content .right {
    margin-top: 8px;
    color: var(--text-color04);
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: right;
}

.numbers-overview .content .text_area {
    margin-top: 18px;
    padding-top: 8px;
    border-top: 1px solid var(--bd-color05);
}

.numbers-overview .member_info {
    margin-top: 64px;
}

.join_flow {
    margin-top: 96px;
}

.join_flow .qualification_area {
    margin-top: 40px;
}

.join_flow .qualification_area p.ttl {
    position: relative;
    color: var(--accent-color03);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.16em;
    text-align: center;
}

.join_flow .qualification_area p.ttl::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: calc((100% - 83.5px - 30px) / 2);
    height: 1px;
    background: var(--accent-color03);
}

.join_flow .qualification_area p.ttl::after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: calc((100% - 83.5px - 30px) / 2);
    height: 1px;
    background: var(--accent-color03);
}

.join_flow .qualification_area ul {
    margin-top: 25px;
}

.join_flow .qualification_area ul li {
    text-align: center;
}

.join_flow .qualification_area p.note {
    margin-top: 25px;
    padding-bottom: 25px;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-align: center;
    border-bottom: 1px solid var(--accent-color03);
}

.join_flow .flow_area {
    margin-top: 56px;
}

.join_flow .flow_area .flow_item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 40px 0;
}

.join_flow .flow_area .flow_item:first-of-type {
    padding-top: 0;
}

.join_flow .flow_area .flow_item:not(:last-of-type) {
    border-bottom: 1px solid var(--text-color03);
}

.join_flow .flow_area .flow_item .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    background: var(--text-color03);
    color: var(--base-color);
    font-family: var(--font02);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

.join_flow .flow_area .flow_item .step span {
    font-size: 32px;
}

.join_flow .flow_area .flow_item .text_box {
    width: calc(100% - 40px - 76px);
}

.join_flow .flow_area .flow_item .text_box .cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
    padding: 24px 3.3vw;
    border: 1px solid var(--bd-color04);
    border-radius: 4px;
}

.join_flow .flow_area .flow_item .text_box .cta .btn {
    padding: 20px 25px;
    width: 240px;
    font-size: 16px;
}

.join_flow .flow_area .flow_item .text_box .cta .btn svg {
    width: 20px;
}

.join_flow .flow_area .flow_item .text_box .cta .tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.join_flow .flow_area .flow_item .text_box .cta .tel svg {
    width: 28px;
    height: auto;
}

.join_flow .flow_area .flow_item .text_box .cta .tel p {
    color: var(--text-color01);
    font-family: var(--font02);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0;
    text-decoration: underline;
}

@media screen and (max-width:600px) {
    .jc-beliefs .beliefs_table dl {
        flex-direction: column;
        gap: 24px;
        padding: 40px 24px;
    }


    .jc-beliefs .beliefs_table dl dt,
    .jc-beliefs .beliefs_table dl dd {
        width: 100%;
        max-width: unset;
    }

    .jc-beliefs .beliefs_table dl dt {
        text-align: center;
    }

    .numbers-overview .content .flex_area .box {
        width: 100%;
    }
}

@media screen and (max-width:768px) {
    .join_flow .flow_area .flow_item {
        flex-direction: column;
    }

    .join_flow .flow_area .flow_item .step {
        flex-direction: row;
        align-items: center;
        gap: .5em;
        padding: 7px 0;
        width: 100%;
        height: unset;
    }

    .join_flow .flow_area .flow_item .text_box {
        width: 100%;
    }

    .join_flow .flow_area .flow_item .text_box .cta {
        flex-direction: column;
    }

    .join_flow .flow_area .flow_item .text_box .cta .tel {
        width: 100%;
    }
}

/*---------------------------------------------------------
                お問い合わせ
---------------------------------------------------------*/
.contact_wrapper {
    overflow-x: hidden;
}

.contact_wrapper .nav_container {
    width: unset;
    border-right: none;
}

.contact_wrapper .nav_container::before {
    display: none;
}

.contact_wrapper h2 {
    position: relative;
    margin: 0 auto;
    padding-bottom: 108px;
    width: 85vw;
    font-size: 32px;
    text-align: center;
    border-bottom: 2px solid var(--bd-color03);
}

.contact_wrapper h2::before {
    position: absolute;
    bottom: -2px;
    left: 0;
    display: block;
    content: "";
    width: 54px;
    height: 2px;
    background: var(--text-color03);
}

.contact_wrapper h2 span {
    font-size: 24px;
}

.contact_wrapper .navigation_box {
    margin-top: 120px;
    width: 120px;
}

.contact_wrapper .navigation_box ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--text-color01);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.08em;
    opacity: .5;
}

.contact_wrapper .navigation_box ul li.active {
    opacity: 1;
}

.contact_wrapper .content_container {
    margin-left: 17.5vw;
    width: calc(100% - 17.5vw - 120px);
}

form {
    width: 100%;
    max-width: 600px;
}

.form_box {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 120px;
    width: 100%;
    max-width: 600px;
}

.form_box dl {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form_box dl dt {
    position: relative;
    margin-left: 70px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.08em;
}

.form_box dl dt::before {
    display: block;
    position: absolute;
    top: 0;
    left: -70px;
    padding: 4px 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.38em;
    border-radius: 2px;
}

.form_box dl dt.required::before {
    content: "必須";
    background: var(--text-color03);
    color: var(--base-color);
}

.form_box dl dt.optional::before {
    content: "任意";
    background: var(--bg-color);
    color: var(--text-color01);
}

.form_box dl dt.none {
    margin-left: 0;
}

.form_box dl dd {
    display: flex;
    gap: 16px;
}

.form_box dl dd span {
    width: 100%;
}

span[data-name="contact-familyname"],
span[data-name="contact-firstname"],
span[data-name="contact-familykana"],
span[data-name="contact-firstkana"] {
    width: calc((100% - 16px)/2);
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
    position: relative;
    padding: 20px 15px;
    width: 100%;
    background-color: var(--base-color);
    font-size: 16px;
    font-weight: 400;
    border: none;
    border: 1px solid var(--bd-color06);
    outline: 0;
    -webkit-appearance: none;
    border-radius: 4px;
}

span[data-name="contact-item"] {
    margin-top: 8px;
}

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

.wpcf7-list-item-label {
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.08em;
}

input[type=radio] {
    display: none;
}

input[type=radio]+span {
    margin-left: 25px;
    display: inline-block;
    position: relative;
    cursor: pointer;
}

input[type=radio]+span::before,
input[type=radio]+span::after {
    content: '';
    display: block;
    position: absolute;
}

input[type=radio]+span::before {
    height: 17px;
    width: 17px;
    border: 2px solid var(--text-color03);
    border-radius: 50%;
    left: -25px;
    top: 0;
}

input[type=radio]+span::after {
    width: 9px;
    height: 9px;
    background: var(--text-color03);
    border-radius: 50%;
    left: -19px;
    top: 6px;
    opacity: 0;
}

input[type=radio]:checked+span::after {
    opacity: 1;
}

.contact_txt {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
}

.contact_txt a {
    color: var(--text-color01);
    text-decoration: underline;
}

/* 同意チェックボックス */
.consent_box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px auto 0;
    width: fit-content;
    font-size: 18px;
    line-height: 1.5;
    word-break: keep-all;
    text-align: center;
    cursor: pointer;
}

.consent_box .wpcf7-list-item {
    margin: 0 !important;
}

.consent_box input[type="checkbox"] {
    position: relative !important;
    appearance: none;
    width: 26px;
    height: 26px;
    background-color: #F8F8F8;
    border: 1px solid var(--text-color01);
    cursor: pointer;
    opacity: 1 !important;
    visibility: visible !important;
}

.consent_box span::after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    opacity: 0;
    width: 6px;
    height: 15px;
    border-right: 2px solid var(--text-color01);
    border-bottom: 2px solid var(--text-color01);
    transition: .3s;
}

.consent_box span:has(:checked)::after {
    opacity: 1;
}

/* 送信ボタン */
input[type="submit"] {
    display: block;
    margin: 40px auto 0;
    padding: 25px 90px;
    background: var(--text-color01);
    color: var(--base-color);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: .3s;
}

input[type="submit"]:disabled {
    background: var(--bd-color01);
}

.wpcf7-spinner {
    display: none !important;
}

@media screen and (max-width:990px) {
    .contact_wrapper .navigation_box {
        margin-top: 80px;
        width: 100%;
    }

    .navigation_box ul {
        gap: 44px;
    }

    .contact_wrapper .navigation_box ul li {
        gap: 30px;
    }

    .contact_wrapper .navigation_box ul li svg {
        transform: rotate(-90deg);
    }

    .contact_wrapper .navigation_box ul li:last-of-type svg {
        display: none;
    }

    .contact_wrapper .navigation_box p {
        display: block;
        text-align: center;
    }

    .contact_wrapper .navigation_box ul {
        flex-direction: row;
        justify-content: center;
    }

    .contact_wrapper .content_container {
        margin: 0 auto;
        width: 100%;
        max-width: 600px;
    }

    .form_box {
        margin-top: 0;
    }
}

@media screen and (max-width:600px) {
    .contact_wrapper h2 {
        font-size: 28px;
    }

    .form_box dl dd {
        flex-direction: column;
    }
}

/*---------------------------------------------------------
                お問い合わせ 確認
---------------------------------------------------------*/
.confirm .btn_box {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.confirm input[type="submit"] {
    width: 100%;
}

.confirm .btn_back input {
    padding: 28px 0;
    width: 100%;
    background: transparent;
    color: var(--text-color01);
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.07em;
    border: 1px solid var(--text-color01);
}


/*---------------------------------------------------------
                お問い合わせ 完了
---------------------------------------------------------*/
.contact_wrapper.thanks {
    margin: 0 auto;
    width: 85vw;
    max-width: 600px;
}

.contact_wrapper.thanks h2 {
    width: 100%;
    padding-bottom: 0;
    border-bottom: none;
}

.contact_wrapper.thanks h2::before {
    display: none;
}

.contact_wrapper.thanks p {
    margin-top: 28px;
    text-align: center;
}

.contact_wrapper.thanks a.btn {
    margin-top: 73px;
    width: 100%;
    background: var(--text-color01);
    justify-content: center;
}

/*---------------------------------------------------------
                プライバシーポリシー
---------------------------------------------------------*/
.privacy_wrapper .under_ttl {
    position: relative;
    margin: 0 auto;
    width: 90vw;
    padding-bottom: 48px;
    border-bottom: 2px solid var(--bd-color03);
}

.privacy_wrapper .under_ttl::before {
    display: block;
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--bd-color02);
}

.privacy_wrapper .column_wrapper {
    margin-top: 70px;
}

.privacy_wrapper .content_container {
    margin-left: 0;
    width: 100%;
    max-width: unset;
}

.privacy_wrapper .column_wrapper h3 {
    margin-top: 48px;
}

@media screen and (max-width:600px) {
    .privacy_wrapper .under_ttl {
        font-size: 28px;
    }
}