@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p&family=Noto+Sans+JP:wght@100..900&display=swap');
body {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    line-height: 1.8;
    font-weight: 300;
    color: #010004;
}
.sp {
    display: none;
}
.inner {
    width: 100%;
    padding: 0 4%;
}
img {
    max-width: 100%;
}
.en {
    font-family: geom-graphic, sans-serif;
    font-weight: 600;
    font-style: italic;
}
.fadeUp {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s, transform .8s;
}
.fadeUp.is-inview {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .2s;
}
@media screen and (max-width:640px) {
    .in {
        width: 100%;
        padding: 0 3%;
        margin: 0 auto;
    }
    .sp {
        display: block;
    }
    .pc {
        display: none;
    }
}
.pc_back {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    background-image: url(../images/back_bg.jpg);
    background-size: cover;
}
.upper_text{
    overflow: hidden;
    position: relative;
    width: 100vw;
    margin-inline: auto;
    z-index: -1;
}
.loop {
    animation: loop 40s linear infinite;
    font-size: 9rem;
    width: 100%;
    mix-blend-mode: overlay;
}
.loop2{
    position: absolute;
    font-size: 9rem;
    top: 0;
    left: 0;
    animation: loop 40s -20s linear infinite;
    mix-blend-mode: overlay;
}
@keyframes loop {
    0%{
        transform: translateX(100%);
    }
    100%{
        transform: translateX(-100%);
    }
}
.back_left {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: calc( 50% - 250px );
    height: 100%;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.back_left .logo {
    min-width: 250px;
    width: 65%;
}
.back_left .back_cta {
    min-width: 250px;
    width: 60%;
}
.back_left .back_cta .cta_txt {
    text-align: center;
    color: #101942;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
}
.back_left .back_cta .cta_txt::before {
    content: " \ ";
    font-size: 1.6rem;
    color: #000;
}
.back_left .back_cta .cta_btn {
    padding: 17px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50px;
    color: #fff;
    width: 100%;
    background: linear-gradient(90deg, rgba(4,32,88,1) 0%, rgba(226,4,6,1) 50%, rgba(4,32,88,1) 100%);
    background-size: 200% 100%;
    box-shadow: 0px 0px 18px 3px rgba(0, 0, 0, 0.1);
    transition: all .5s;
}
.back_left .back_cta .cta_btn:hover {
    background-position: 100% 0;
}
.back_right {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: calc( 50% - 250px );
    height: 100%;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
}
#globalMenu .menu_list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#globalMenu .menu_list .menu_item .menu_link {
    font-size: 2.4rem;
    color: #101942;
    background: linear-gradient(90deg, #042058 0%, #e20406 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}
#globalMenu .menu_list .menu_item .menu_link::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #042058;
    border-right: 0;
    position: absolute;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all .2s;
}
#globalMenu .menu_list .menu_item .menu_link.active::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #042058;
    border-right: 0;
    position: absolute;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}
#mainContent {
    position: relative;
    width: 500px;
    min-height: 100vh;
    margin: 0 auto;
    box-shadow: 0px 0px 18px 3px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    overflow: hidden;
}

@media screen and (max-width:640px) {
    .pc_back {
        display: none;
    }
    #mainContent {
        width: 100%;
    }
}

.main_header {
    background-color: #fff;
    width: 100%;
}
.main_header .head_inner {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main_header .head_inner .site-logo {
    width: 220px;
    margin-left: 10px;
}
.main_header .head_inner .header_btn {
    background: linear-gradient(90deg, rgba(4,32,88,1) 0%, rgba(226,4,6,1) 50%, rgba(4,32,88,1) 100%);
    background-size: 200% 100%;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    width: 200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
}
.main_header .head_inner .header_btn:hover {
    background-position: 100% 0;
}
@media screen and (max-width:640px) {
    .main_header {
        position: fixed;
        top: 0;
        z-index: 99;
    }
    .main_header .head_inner .site-logo {
        width: 180px;
    }
    .main_header .head_inner .header_btn {
        font-size: 1.5rem;
        font-weight: 600;
        width: 180px;
    }
}

.mv {
    width: 100%;
    height: 720px;
    background: url(../images/mv_bg.jpg) no-repeat;
    background-size: cover;
    background-position: top;
}
.mv .mv_content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 40px;
    position: relative;
}
.mv .mv_content .mv-txt-logo {
    width: 85%;
    margin: 0 auto;
}
.mv .mv_content .title-text {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-align: center;
    color: #fff;
    margin-top: 10px;
}
.mv .mv_content .mv-features {
    width: 92%;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.mv .badge {
    width: 120px;
    position: absolute;
    top: 20px;
    right: 10px;
}
.mv .mv_content .mv_catch1 {
    width: 95%;
    position: absolute;
    left: 0px;
    bottom: 140px;
}
.mv .mv_content .mv_catch2 {
    width: 95%;
    position: absolute;
    left: -27px;
    bottom: 310px;
}
.mv .mv_content .mv_main_logo {
    width: 90%;
    margin: 0 auto;
}

.mv_lower {
    background: linear-gradient(135deg, rgba(26,37,91,1) 0%, rgba(3,8,28,1) 100%);
    padding: 40px 0;
}
.mv_usp_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mv_usp_list .mv_usp_item {
    font-size: 2.3rem;
    color: #fff;
    font-weight: 700;
    position: relative;
    border: solid 1px #fff;
    padding: 20px 20px 20px 40px;
    line-height: 1.7;
}
.mv_usp_list .mv_usp_item::before {
    content: url(../images/check_box.svg);
    width: 25px;
    height: 25px;
    display: block;
    position: absolute;
    top: 28px;
    left: 10px;
}
.mv_usp_list .mv_usp_item .under_red {
    background: linear-gradient(transparent 75%, #d7000e 25%);
}
@media screen and (max-width:640px) {
    .mv {
        margin-top: 60px;
    }
    .mv .mv_content .mv_catch1 {
        bottom: 140px;
    }
    .mv .mv_content .mv_catch2 {
        bottom: 275px;
    }
    .mv_usp_list .mv_usp_item {
        font-size: 1.8rem;
    }
    .mv_usp_list .mv_usp_item::before {
        top: 25px;
    }
}

#about {
    padding: 80px 0;
    position: relative;
}
#about::before {
    content: url(../images/about_logo_icon.svg);
    width: 200px;
    position: absolute;
    opacity: .1;
    top: 5px;
    right: 0;
}
#about .about_ttl {
    width: 160px;
}
#about .about_catch {
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.3;
    margin: 35px 0;
}
#about .about_catch .red {
    color: #d7000e;
    display: block;
}
#about .about_desc {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.7;
}
#about .about_desc:last-child {
    margin-bottom: 0;
}

@media screen and (max-width:640px) {
    #about {
        padding: 50px 0;
    }
    #about::before {
        width: 160px;
    }
    #about .about_catch {
        font-size: 3rem;
        margin: 25px 0;
    }
    #about .about_desc {
        font-size: 1.7rem;
        margin-bottom: 20px;
    }
}

.section_ttl {
    font-size: 3.6rem;
    font-weight: 900;
    text-align: center;
    color: #fff;
    line-height: 1.2;
    font-style: italic;
}
.section_ttl .en {
    font-size: 1.6rem;
    display: block;
    margin-bottom: 15px;
    color: #d7000e;
}
.section_ttl.gold .en {
    color: #d1982c;
}
.section_ttl .red {
    color: #d7000e;
}
.section_ttl .golden {
    color: #d1982c;
}
.content {
    margin-top: 30px;
}
@media screen and (max-width:640px) {
    .section_ttl {
        font-size: 2.8rem;
        line-height: 1.3;
    }
    .section_ttl .en {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
}

#problem {
    padding: 60px 0;
    background-image: url(../images/problem_bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    background-color: #000;
}
#problem .problem_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: fit-content;
    margin: 0 auto;
}
#problem .problem_list .problem_item {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    position: relative;
    padding-left: 35px;
}
#problem .problem_list .problem_item::before {
    content: url(../images/check_box.svg);
    width: 25px;
    height: 25px;
    display: block;
    position: absolute;
    top: 8px;
    left: 0px;
}
@media screen and (max-width:640px) {
    #problem {
        padding: 50px 0;
    }
    #problem .problem_list .problem_item {
        color: #fff;
        font-size: 1.6rem;
        font-weight: 600;
        position: relative;
        padding-left: 35px;
    }
    #problem .problem_list .problem_item::before {
        content: url(../images/check_box.svg);
        width: 20px;
        height: 20px;
        display: block;
        position: absolute;
        top: 5px;
        left: 5px;
    }
}

.cta__01 {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(215,0,14,1) 0%, rgba(136,4,13,1) 100%);
}
.cta__01::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 80px solid transparent;
    border-left: 80px solid transparent;
    border-top: 60px solid #ffffff;
    border-bottom: 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}
.cta__01.no-arrow::before {
    display: none;
}
.cta__01 .cta_txt {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}
.cta__01 .cta_btn_white {
    width: 100%;
    padding: 18px 0;
    color: #010004;
    font-size: 1.8rem;
    font-weight: bold;
    border-radius: 50px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(222,222,222,1) 50%, rgba(255,255,255,1) 100%);
    background-size: 200% 100%;
    display: block;
    transition: all .5s;
}
.cta__01 .cta_btn_white:hover {
    background-position: 100% 0;
}
@media screen and (max-width:640px) {
    .cta__01 {
        padding: 40px 0;
    }
    .cta__01::before {
        border-right: 50px solid transparent;
        border-left: 50px solid transparent;
        border-top: 30px solid #ffffff;
    }
    .cta__01 .cta_txt {
        font-size: 1.7rem;
    }
    .cta__01 .cta_btn_white {
        padding: 14px 0;
    }
}

#reasons {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(26,37,91,1) 0%, rgba(3,8,28,1) 100%);
}
#reasons .reason_item {
    margin-bottom: 25px;
}
#reasons .reason_item:last-child {
    margin-bottom: 0;
}
#reasons .reason_item .imagearea {
    position: relative;
}
#reasons .reason_item .imagearea .en_txt {
    color: #fff;
    font-size: 3rem;
    position: absolute;
    line-height: 1.2;
}
#reasons .reason_item .textarea {
    background-color: #fff;
    width: 95%;
    padding: 60px 5% 30px;
    margin-top: -40px;
}
#reasons .reason_item .textarea .reason_ttl {
    font-size: 2.8rem;
    font-weight: 800;
    font-style: italic;
    color: #d7000e;
    line-height: 1.2;
}
#reasons .reason_item .textarea .reason_txt {
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 15px;
}
#reasons .reason_item:nth-child(2n-1) .imagearea {
    text-align: right;
}
#reasons .reason_item:nth-child(2n-1) .imagearea .en_txt {
    right: 10px;
    bottom: 10px;
}
#reasons .reason_item:nth-child(2n) .imagearea {
    text-align: left;
}
#reasons .reason_item:nth-child(2n) .textarea {
    margin-left: auto;
}
#reasons .reason_item:nth-child(2n) .imagearea .en_txt {
    left: 10px;
    bottom: 10px;
}
@media screen and (max-width:640px) {
    #reasons {
        padding: 50px 0;
    }
    #reasons .reason_item .textarea .reason_ttl {
        font-size: 2.4rem;
        line-height: 1.3;
    }
}

#flow {
    background-color: #f9f9f9;
    padding: 60px 0;
}
#flow .section_ttl {
    color: #010004;
}
#flow .flow_list {
    width: 90%;
    position: relative;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
}
#flow .flow_list::before {
    content: "";
    width: 1px;
    height: 95%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    background-size: 2px 4px;
    background-image: linear-gradient(to bottom,#fff 2px, #d7000e 2px);
    background-position: left top;
    background-repeat: repeat-y;
    transform: translate(-50%,-50%);
    z-index: -1;
}
#flow .flow_list .flow_item {
    background-color: #fff;
    padding: 20px 0 20px 40px;
    font-size: 2.2rem;
    font-weight: 800;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.02);
}
#flow .flow_list .flow_item .step_en {
    color: #d7000e;
    font-size: 1.8rem;
    font-weight: 700;
    margin-right: 20px;
    border-bottom: solid 2px #d7000e;
}
#flow .flow_text {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-top: 30px;
}
#flow .flow_text .red {
    color: #d7000e;
}
@media screen and (max-width:640px) {
    #flow {
        padding: 50px 0;
    }
    #flow .flow_list {
        width: 100%;
    }
    #flow .flow_list .flow_item {
        background-color: #fff;
        padding: 15px 0 15px 30px;
        font-size: 1.9rem;
        font-weight: 800;
        box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.02);
    }
    #flow .flow_list .flow_item .step_en {
        color: #d7000e;
        font-size: 1.5rem;
        position: relative;
        top: -2px;
    }
}

#voices {
    padding: 60px 0;
    background: #001656;
}
#voices .voice_inner {
    padding: 0 5%;
}
#voices .voice_slider .voice_item {
    background-color: #fff;
    padding: 20px;
    width: 450px;
    height: auto;
    margin: 0 8px;
}
#voices .voice_slider .slick-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    width: 95%;
    margin-top: 15px;
}
#voices .voice_slider .slick-dots li {
    width: 8px;
    height: 8px;
    background-color: #fff;
    opacity: .5;
    display: block;
}
#voices .voice_slider .slick-dots li.slick-active {
    opacity: 1;
}
#voices .voice_slider .slick-dots li button {
    display: none;
}
#voices .voice_slider .voice_item .upper {
    display: flex;
    justify-content: space-between;
}
#voices .voice_slider .voice_item .upper .upper_left {
    width: calc(50% - 20px);
}
#voices .voice_slider .voice_item .upper .upper_left .positon {
    font-size: 1rem;
    font-weight: 400;
    color: #878787;
    margin: 10px 0 5px;
}
#voices .voice_slider .voice_item .upper .upper_left .player_name {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
    margin-top: 15px;
}
#voices .voice_slider .voice_item .upper .upper_left .player_name .min {
    font-size: 1.6rem;
    font-weight: 600;
}
#voices .voice_slider .voice_item .upper .upper_right {
    width: 50%;
}
#voices .voice_slider .voice_item .upper .upper_right .career_box:first-child {
    margin-bottom: 15px;
}
#voices .voice_slider .voice_item .upper .upper_right .career_box .voice_head {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    background-color: #0d2e85;
    width: 6em;
    text-align: center;
    transform: skewX(-8deg);
    margin-bottom: 6px;
}
#voices .voice_slider .voice_item .upper .upper_right .career_box p {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
}
#voices .voice_slider .voice_item .lower {
    background-color: #0d2e85;
    padding: 20px;
    margin-top: 20px;
}
#voices .voice_slider .voice_item .lower .voice_head {
    font-size: 1.6rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.8;
    margin: 20px 0 5px;
    padding-bottom: 5px;
    border-bottom: solid 1px #fff;
}
#voices .voice_slider .voice_item .lower .voice_head:first-child {
    margin-top: 0;
}
#voices .voice_slider .voice_item .lower .voice_txt {
    font-size: 1.3rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.8;
}
@media screen and (max-width:640px) {
    #voices {
        padding: 50px 0;
    }
    #voices .voice_slider .voice_item {
        width: 90vw;
        margin: 0 5px;
    }
    #voices .voice_slider .slick-dots {
        width: 90vw;
    }
    #voices .voice_slider .voice_item .upper .upper_left .player_name {
        font-size: 2.2rem;
    }
    #voices .voice_slider .voice_item .upper .upper_left .player_name .min {
        font-size: 1.4rem;
    }
    #voices .voice_slider .voice_item .upper .upper_right .career_box:first-child {
        margin-bottom: 15px;
    }
    #voices .voice_slider .voice_item .upper .upper_right .career_box .voice_head {
        color: #fff;
        font-size: 1.6rem;
    }
    #voices .voice_slider .voice_item .upper .upper_right .career_box p {
        font-size: 1.4rem;
    }
    #voices .voice_slider .voice_item .lower .voice_desc {
        font-size: 1.6rem;
        line-height: 2;
    }
}

#interview {
    padding: 60px 0;
    background: #001656;
}
#interview .case_content {
    margin: 30px 0 60px;
}
#interview .case_content:last-child {
    margin-bottom: 0;
}
#interview .case_content .imagearea {
    position: relative;
}
#interview .case_content .imagearea .en_txt {
    color: #fff;
    font-size: 3rem;
    position: absolute;
    bottom: 10px;
    left: 5%;
}
#interview .case_content .textarea {
    width: 90%;
    margin: 20px auto 0;
}
#interview .case_content .textarea .interviewee_name {
    font-size: 1.6rem;
    font-weight: 600;
    font-style: italic;
    color: #fff;
}
#interview .case_content .textarea .interviewee_name .name {
    font-size: 2.4rem;
    margin: 0 10px;
}
#interview .case_content .textarea .topic {
    margin-top: 20px;
}
#interview .case_content .textarea .topic .topic_ttl {
    font-size: 1.8rem;
    font-weight: 800;
    font-style: italic;
    color: #d1982c;
    text-align: center;
    position: relative;
    margin-bottom: 10px;
    line-height: 1.3;
}
#interview .case_content .textarea .topic .topic_ttl .blue_bg {
    padding: 0 .5em;
    background-color: #001656;
    position: relative;
    z-index: 2;
    display: block;
    width: fit-content;
    margin: 0 auto;
}
#interview .case_content .textarea .topic .topic_ttl::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #d1982c;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
}
#interview .case_content .textarea .topic .question_text {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 1em 0;
    padding-left: 40px;
    color: #d1982c;
    position: relative;
}
#interview .case_content .textarea .topic .question_text::before {
    content: "";
    width: 32px;
    height: 1px;
    background-color: #d1982c;
    display: block;
    position: absolute;
    top: .8em;
    left: 0;
}
#interview .case_content .textarea .topic .topic_desc {
    color: #fff;
    font-size: 1.4rem;
    text-align: justify;
    font-weight: 500;
}
@media screen and (max-width:640px) {
    #interview {
        padding: 50px 0 0;
    }
    #interview .case_content .imagearea .en_txt {
        font-size: 2.4rem;
    }
    #interview .case_content .textarea .interviewee_name {
        font-size: 1.5rem;
    }
    #interview .case_content .textarea .interviewee_name .name {
        font-size: 2.6rem;
    }
    #interview .case_content .textarea .topic .topic_ttl {
        font-size: 1.8rem;
    }
    #interview .case_content .textarea .topic .topic_desc {
        line-height: 2;
    }
}

#faq {
    padding: 60px 0;
    background-color: #f9f9f9;
}
#faq .section_ttl {
    color: #010004;
}
#faq .qa_cont {
    margin-top: 30px;
}
#faq .qa_inner {
    margin-bottom: 20px;
    box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.02);
}
#faq .qa_inner dt {
    background-color: #fff;
    padding: 15px;
    padding-right: 50px;
    width: 100%;
    display: flex;
    cursor: pointer;
    position: relative;
}
#faq .qa_inner dt::before {
    content: "";
    width: 2px;
    height: 18px;
    background-color: #001656;
    display: block;
    position: absolute;
    right: 23px;
    top: 50%;
    transform: translateY(-50%);
}
#faq .qa_inner dt.open::before {
    display: none;
}
#faq .qa_inner dt::after {
    content: "";
    width: 18px;
    height: 2px;
    background-color: #001656;
    display: block;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}
#faq .qa_inner dt .q {
    font-size: 2.4rem;
    color: #19306e;
    line-height: 3rem;
    margin-right: 10px;
}
#faq .qa_inner dt .q_txt {
    font-size: 2rem;
    font-weight: 600;
    line-height: 3rem;
}
#faq .qa_inner dd {
    background-color: #fff;
    padding: 15px;
    width: 100%;
    display: flex;
    position: relative;
}
#faq .qa_inner dd::before {
    content: "";
    width: calc(100% - 30px);
    height: 1px;
    background-color: #878787;
    position: absolute;
    top: 0;
    left: 15px;
}
#faq .qa_inner dd .a {
    font-size: 2.4rem;
    color: #d7000e;
    line-height: 3rem;
    margin-right: 10px;
}
#faq .qa_inner dd .a_txt {
    font-size: 1.6rem;
    font-weight: 500;
}
@media screen and (max-width:640px) {
    #faq {
        padding: 50px 0;
    }
    #faq .qa_inner dt {
        padding-right: 45px;
    }
    #faq .qa_inner dt .q {
        font-size: 2rem;
        line-height: 2.8rem;
    }
    #faq .qa_inner dt .q_txt {
        font-size: 1.7rem;
        line-height: 2.8rem;
    }
    #faq .qa_inner dd .a {
        font-size: 2rem;
        line-height: 3.2rem;
    }
    #faq .qa_inner dd .a_txt {
        font-size: 1.6rem;
        line-height: 3.2rem;
    }
}

footer {
    background-color: #000;
    padding-top: 60px;
}
footer .ft_logo {
    width: 60%;
    margin: 0 auto;
}
footer .ft_nav {
    display: flex;
    justify-content: center;
    margin: 30px 0 60px;
    gap: 20px;
}
footer .ft_nav .ft_nav_item .ft_nav_link {
    font-size: 1.3rem;
    font-weight: 400;
    color: #fff;
}
footer .copyright {
    font-size: 1.1rem;
    text-align: center;
    color: #fff;
    padding-bottom: 15px;
}
@media screen and (max-width:640px) {
    footer {
        padding-top: 50px;
    }
    footer .ft_logo {
        width: 270px;
        margin: 0 auto;
    }
    footer .ft_nav {
        display: flex;
        justify-content: center;
        margin: 30px 0 50px;
        gap: 20px;
    }
    footer .ft_nav .ft_nav_item .ft_nav_link {
        font-size: 1.3rem;
        font-weight: 400;
        color: #fff;
    }
    footer .copyright {
        font-size: 1.1rem;
        text-align: center;
        color: #fff;
        padding-bottom: 15px;
    }
}