@charset "UTF-8";
/*-----------------------------------
base
-----------------------------------*/
#contents {
    padding-top: 172px;
    position: relative;
}
#contents::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 78%;
    height: 1500px;
    z-index: -1;
    background: #006ac6;
    background: -moz-linear-gradient(45deg, #006ac6 0%, #2aacc9 100%);
    background: -webkit-linear-gradient(45deg, #006ac6 0%, #2aacc9 100%);
    background: linear-gradient(45deg, #006ac6 0%, #2aacc9 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#006ac6', endColorstr='#2aacc9', GradientType=1);
}

@media screen and (max-width: 1420px) {
    #contents::before {
        width: 80%;
    }
}
@media screen and (max-width: 1180px) {
    #contents::before {
        width: 100%;
        height: 125vw;
    }
}
@media screen and (max-width: 940px) {
    #contents {
        padding-top: 100px;
    }
    #contents::before {
        height: 153vw;
    }
}
@media screen and (max-width: 840px) {
    #contents::before {
        height: 165vw;
    }
}
@media screen and (max-width: 640px) {
    #contents {
        padding-top: 85px;
    }
    #contents::before {
        height: 110vh;
    }
}

/*-----------------------------------
スクロールダウン
-----------------------------------*/
/*スクロールダウン全体の場所*/
.bl_scrollDown {
    position: absolute;
    bottom: 30px;
    left: 20px;
    z-index: 99;
    margin-bottom: -90px;
}
/* 丸の描写 */
.bl_scrollDown:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 16px;
    z-index: 1;
    width: 2px;
    height: 16px;
    border-radius: 50%;
    background: #D42442;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
    animation:
        circlemove 1.6s ease-in-out infinite,
        cirlemovehide 1.6s ease-out infinite;
}
.bl_scrollDown:after {
    content: "";
    position: absolute;
    top: -80px;
    right: 15px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 2px;
    height: 130px;
    background: #E3E3E3;
}
/*Scrollテキストの描写*/
.bl_scrollDown_body {
    position: absolute;
    right: 6px;
    top: -170px;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.05em;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}
/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
    0% {
        bottom: 35px;
    }
    100% {
        bottom: -15px;
    }
}
/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
    0% {
        opacity: 0
    }
    50% {
        opacity: 1;
    }
    80% {
        opacity: 0.9;
    }
    100% {
        opacity: 0;
    }
}
@media screen and (max-width: 1600px) {
    .bl_scrollDown {
        left: 0;
        bottom: 30px;
    }
    .bl_scrollDown:after {
        height: 80px;
    }
}
@media screen and (max-width: 940px) {
    .bl_scrollDown:after {
        right: 10px;
    }
    .bl_scrollDown:before {
        right: 11px;
    }
}
@media screen and (max-width: 640px) {
    .bl_scrollDown {
        right: 12px;
        bottom: 40px;
    }
    .bl_scrollDown_body {
        top: -165px;
        right: 2px;
        font-size: 12px;
        font-weight: bold;
        color: #1594ba;
    }
    .bl_scrollDown:after {
        height: 90px;
    }
    .bl_scrollDown:before {
        height: 20px;
    }
    @keyframes circlemove {
        0% {
            bottom: 55px;
        }
        100% {
            bottom: 15px;
        }
    }
}
/*-----------------------------------
main_block
-----------------------------------*/
#main_block img {
    width: 100%;
}
#main_block .main_inner {
    width: 1440px;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    position: relative;
}
.text_design {
    font-size: 155px;
    font-weight: 900;
    letter-spacing: -0.1em;
    line-height: 1;
    color: #528CD3;
    mix-blend-mode: color-burn;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: absolute;
    top: 290px;
    right: 0;
    z-index: 10;
}

@media screen and (max-width: 1180px) {
    .text_design {
        opacity: 0.2;
    }
}
@media screen and (max-width: 940px) {
    .text_design {
        font-size: 130px;
        top: 100px;
    }
}
@media screen and (max-width: 640px) {
    .text_design {
        display: none;
    }
}

/*メディア
--------------------------*/
#main_block .bl_media {
    position: relative;
}
#main_block .bl_media_body {
    width: 30%;
    margin-top: 128px;
    margin-bottom: 235px;
}
#main_block .bl_media_info {
    font-size: 34px;
    font-weight: bold;
    border-radius: 4px;
    padding: 3px 20px 3px 35px;
    color: #1388c7;
    background-color: #fff;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}
#main_block .bl_media_info::before {
    content: '';
    width: 4px;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 12px;
    background-color: #e7181c;
}
#main_block .bl_media_copy {
    font-size: 50px;
    font-weight: bold;
    color: #fff;
    line-height: 1.9;
}
#main_block .bl_media_copy span {
    font-feature-settings: "palt";
}
#main_block .bl_media_copy span:first-of-type {
    margin-right: 0.15em;
}
#main_block .bl_media_copy span:last-of-type {
    margin-left: 0.15em;
    margin-right: 0.15em;
}
#main_block .bl_media_slide {
    /*インナー内の幅 + インナー外の幅*/
    width: calc(65% + (50vw - 50%));
    position: absolute;
    height: 100%;
    top: 0;
    bottom: 0;
    right: calc(50% - 50vw);
}
#main_block .swiper .sp_img {
    display: none;
}
@media screen and (max-width: 1420px) {
    #main_block .bl_media_body {
        width: 40%;
        margin-top: 100px;
        margin-bottom: 190px;
    }
    #main_block .bl_media_copy {
        font-size: 44px;
    }
    #main_block .bl_media_slide {
        width: calc(60% + (50vw - 50%));
    }
}
@media screen and (max-width: 1280px) {
    #main_block .bl_media_body {
        width: 50%;
        margin-top: 60px;
        margin-bottom: 150px;
    }
    #main_block .bl_media_copy {
        font-size: 38px;
    }
    #main_block .bl_media_info {
        font-size: 30px;
    }
}
@media screen and (max-width: 940px) {
    #main_block .bl_media_info {
        font-size: 25px;
    }
    #main_block .bl_media_slide {
        position: relative;
        right: 0;
        order: 2;
        width: 60vw;
        height: 30vw;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
    }
    #main_block .bl_media_body {
        order: 1;
        width: 90%;
        margin: 15px auto 30px;
    }
    #main_block .bl_media_copy br {
        display: none;
    }
    #main_block .main_inner {
        width: 100%;
        max-width: 100%;
    }
    #main_block .bl_media_slide {
        width: 100%;
        height: 100%;
    }
    #main_block .bl_media_copy {
        font-size: 28px;
    }
    .swiper {
        border-radius: 0 !important;
    }
}
@media screen and (max-width: 840px) {
    #main_block .bl_media_copy br:first-child {
        display: none;
    }
}
@media screen and (max-width: 640px) {
    #main_block .bl_media_body {
        margin: 15px auto 15px;
    }
    #main_block .bl_media_info {
        font-size: 20px;
        padding: 3px 10px 3px 20px;
        margin-bottom: 10px;
        border-radius: 3px;
    }
    #main_block .bl_media_copy {
        font-size: 28px;
        line-height: 160%;
    }
    #main_block .bl_media_info::before {
        width: 3px;
        left: 8px;
    }
    #main_block .bl_media_copy br:last-child {
        display: block;
    }
    #main_block .bl_media_slide {
        height: 66vh;
    }
    #main_block .swiper .pc_img {
        display: none;
    }
    #main_block .swiper .sp_img {
        display: block;
    }
}
@media screen and (max-width: 410px) {
    #main_block .bl_media_info {
        font-size: 16px;
    }
    #main_block .bl_media_copy {
        font-size: 24px;
    }
}


/*-----------------------------------
        swiper
-----------------------------------*/
.swiper {
    width: 100%;
    height: 100%;
    border-radius: 60px 0 0 60px;
}
.swiper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-pagination-bullet {
    width: 144px !important;
    height: 6px !important;
    border-radius: 0 !important;
}
.swiper-pagination-bullet-active {
    background: #3DB6FF !important;
}
@media screen and (max-width: 840px) {
    .swiper-pagination-bullet {
        width: 80px !important;
        height: 4px !important;
    }
}

/*-----------------------------------
message_block
-----------------------------------*/
#message_block {
    margin-top: 88px;
    color: #fff;
}
#message_block h3 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 40px;
}
#message_block .text {
    font-size: 18px;
    font-weight: 600;
    line-height: 220%;
    margin-bottom: 70px;
}
#message_block .text p:last-child {
    margin-top: 50px;
}
#message_block .bl_movie {
    width: 100%;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}
#message_block .bl_movie video {
    cursor: pointer;
    box-shadow: 20px 10px 50px rgb(201 223 241);
}

@media screen and (max-width: 1380px) {
    #message_block .bl_movie video {
        width: 100%;
        height: 50vw;
    }
    #message_block .text {
        font-size: 16px;
    }
}
@media screen and (max-width: 1280px) {
    #message_block h3 {
        font-size: 52px;
    }
}
@media screen and (max-width: 940px) {
    #message_block {
        margin-top: 0;
        padding: 70px 0 60px;
        background: #006ac6;
        background: -moz-linear-gradient(45deg, #006ac6 0%, #2aacc9 100%);
        background: -webkit-linear-gradient(45deg, #006ac6 0%, #2aacc9 100%);
        background: linear-gradient(45deg, #006ac6 0%, #2aacc9 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#006ac6', endColorstr='#2aacc9', GradientType=1);
    }
    #message_block .bl_movie {
        margin-bottom: 10px;
    }
    #message_block .bl_movie video {
        box-shadow: none;
    }
    #message_block h3 {
        font-size: 42px;
        margin-bottom: 20px;
    }
    #message_block .text {
        font-size: 16px;
        margin-bottom: 30px;
        position: relative;
        z-index: 99;
    }
    #message_block .text p:last-child {
        margin-top: 1.8em;
    }
    #message_block .el_noticeTxt {
        font-size: 13px;
        color: #fff !important;
    }
}
@media screen and (max-width: 840px) {


}
@media screen and (max-width: 640px) {
.bl_movie .Inn{
 width: 100%;
 height: 0;
 position: relative;
 padding-top: 56.25%;
 overflow: hidden;
 margin: 0 0 3em;
}
.bl_movie .Inn iframe{

 position: absolute;
 top: 0;
 left: 0;
 width: 100% !important;
 height: 100% !important;
}
}

/*米印
--------------------------*/
#message_block .el_noticeTxt {
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding-left: 1em;
    color: #333333;
}
#message_block .el_noticeTxt::before {
    content: '※';
    position: absolute;
    inset: 0;
}
/*-----------------------------------
job_block
-----------------------------------*/
#job_block {
    padding-top: 140px;
}
#job_block h3 {
    margin-bottom: 60px;
}
/*メディア
--------------------------*/
#job_block .bl_media_wrap {
    margin-top: 80px;
}
#job_block .bl_media {
    position: relative;
}
#job_block .bl_media_body {
    width: 45%;
    margin-top: 30px;
}
#job_block .bl_media_body .el_enTtl {
    text-align: left;
    margin-bottom: 14px;
}
#job_block .bl_media_name {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    margin-bottom: 20px;
}
#job_block .bl_media_name span {
    font-size: 24px;
    font-weight: 700;
    display: inline-block;
    margin-left: 1em;
}
#job_block .bl_media_body hr {
    border: none;
    height: 2px;
    background-color: #e5e5e5;
    position: relative;
    margin-bottom: 26px;
}
#job_block .bl_media_body hr::before {
    content: '';
    width: 30px;
    height: 2px;
    background-color: #528cd3;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
}
#job_block .bl_media_txt {
    font-size: 16px;
    font-weight: 500;
    line-height: 2.4;
    margin-bottom: 40px;
}
#job_block .el_btn_wrap {
    margin-bottom: 56px;
}
#job_block .el_btn_wrap button:first-child {
    margin-right: 15px;
}
#job_block .bl_media_img {
    /*インナー内の幅 + インナー外の幅*/
    width: calc(44% + (50vw - 50%));
    position: absolute;
    height: 100%;
    top: 0;
    bottom: 0;
    right: calc(50% - 50vw);
}
#job_block .bl_media_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 80px 0 0 10px;
    box-shadow: -5px 25px 50px #c1e4f8;
}
#bl_media_01 .bl_media_img img {
    object-position: 0 100%;
}
#bl_media_02 .bl_media_img img {
    object-position: 100% 100%;
}
#bl_media_03 .bl_media_img img {
    object-position: 0 100%;
}
#job_block .bl_media.bl_media__rev {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
#job_block .bl_media.bl_media__rev .bl_media_body {
    float: right;
}
#job_block .bl_media .bl_media_img {
    right: calc(50% - 50vw);
}
#job_block .bl_media.bl_media__rev .bl_media_img {
    left: calc(50% - 50vw);
}
#job_block .bl_media.bl_media__rev .bl_media_img img {
    border-radius: 0 80px 10px 0;
}
#job_block .bl_media .bl_media_img_sp {
    display: none;
}
.intro_movie_box {
    margin-top: 80px;
    margin-bottom: 180px;
}
.intro_movie_box:last-child {
    margin-bottom: 0;
}
.intro_movie_box .movie_btn {
    cursor: pointer;
}
.intro_movie_box .movie_btn img {
    border-radius: 20px;
}
.intro_movie_box video {
    width: 100%;
    cursor: pointer;
    transition: ease 0.2s;
}

@media screen and (max-width: 840px) {

    #job_block {
        padding-top: 80px;
    }
    #job_block h3 {
        margin-bottom: 30px;
    }
    #job_block .el_btn_wrap button:first-child {
        display: block;
        margin: 0 auto;
    }
    .intro_movie_box {
        margin-top: 0;
        margin-bottom: 60px;
    }
    .intro_movie_box .movie_btn img {
        border-radius: 10px;
    }
    #job_block .bl_media_img img {
        box-shadow: none;
    }

}
@media screen and (max-width: 640px) {
    #job_block {
        padding-top: 130px;
        margin-top: -60px;
    }
    #job_block h3 {
        margin-bottom: -10px;
    }
    #job_block .bl_media_name {
        font-size: 13px;
    }
    #job_block .bl_media_name span {
        font-size: 20px;
    }
    .intro_movie_box .movie_btn img {
        border-radius: 5px;
    }
    #job_block .el_label {
        font-size: 13px;
    }
    #job_block .el_btn_wrap {
        margin-bottom: 40px;
    }
}

/*ラベル
--------------------------*/
#job_block .el_label {
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    padding: 0.5em 0.6em;
    background-color: #fff;
    color: #4f86ce;
    border: 1px solid;
    border-radius: 15px;
    line-height: 1;
}
@media screen and (max-width: 1280px) {
    #job_block .bl_media_wrap {
        margin-top: 150px;
    }
    #job_block .bl_media_body {
        width: 50%;
    }
    #job_block .bl_media_name {
        font-size: 14px;
    }
    #job_block .bl_media_txt {
        font-size: 15px;
    }
    #job_block .bl_media_img {
        width: calc(40% + (50vw - 50%));
    }

}

@media screen and (max-width: 1180px) {
    #job_block .bl_media_body {
        width: 50%;
    }
    #job_block .bl_media_img {
        width: 45%;
    }
}
@media screen and (max-width: 940px) {
    #job_block .bl_media_wrap {
        margin-top: 40px;
    }
    #job_block .bl_media .bl_media_img {
        display: none;
    }
    #job_block .bl_media .bl_media_img_sp {
        display: block;
        margin-bottom: 15px;
    }
    #job_block .bl_media .bl_media_img_sp img {
        border-radius: 10px;
    }
    #job_block .bl_media_img {
        position: relative;
        right: 0;
        order: 1;
        width: 60vw;
        height: 30vw;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 15px;
    }
    #job_block .bl_media_body {
        order: 2;
        width: 100%;
    }
    #job_block .bl_media_img {
        width: 100%;
        height: 46vw;
    }
    #job_block .bl_media.bl_media__rev .bl_media_img {
        left: 0;
    }
    #job_block .bl_media .bl_media_img {
        right: 0;
    }
    #job_block .bl_media_img img,
    #job_block .bl_media.bl_media__rev .bl_media_img img {
        border-radius: 15px;
    }
    #job_block .bl_media_txt {
        margin-bottom: 20px;
        font-size: 14px;
    }
}
@media screen and (max-width: 840px) {
    #job_block .bl_media_body {
        margin-top: 20px;
    }
}
/*-----------------------------------
モーダルウィンドウ
-----------------------------------*/
/*動きを付けるid名
--------------------------*/
#modal-1 {
    display: none;
}
#modal-1.is-open {
    display: block;
}
#modal-2 {
    display: none;
}
#modal-2.is-open {
    display: block;
}
#modal-3 {
    display: none;
}
#modal-3.is-open {
    display: block;
}
#modal-4 {
    display: none;
}
#modal-4.is-open {
    display: block;
}
#modal-5 {
    display: none;
}
#modal-5.is-open {
    display: block;
}
#modal-6 {
    display: none;
}
#modal-6.is-open {
    display: block;
}
/*ボタン
--------------------------*/
.bl_modal_btn {
    font-size: 16px;
    display: inline-block;
    width: min(250px, 100%);
    padding: 1em;
    background-color: gray;
    border: 2px solid transparent;
    color: #fff;
    text-align: center;
    text-decoration: none;
    position: relative;
    border-radius: 30px;
    transition: ease 0.2s;
}
.bl_modal_btn:hover {
    background-color: #fff;
    border-color: currentColor;
    color: gray;
}
/*閉じるボタンを中央に*/
.bl_modal_btn[data-micromodal-close] {
    margin: 50px auto 0;
    display: block;
}
/*モーダルウィンドウ
--------------------------*/
/* モーダル全体(背景＋本体) */
.modal{
    display: none;
    position: fixed;
    top: 0;
    z-index: 9999 !important;
    height: 100vh;
    width: 100%;
}
/* モーダル背景 */
.modal-bg{
    position: absolute;
    height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
}
/* モーダル本体 */
.modal-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow-y: auto; /* はみ出た部分はスクロールさせる */
    height: 80vh;/* これが無いと「overflow:scroll」が利かない */
    width: 60%;/* これが無いと「overflow:scroll」が利かない */
    background: white;
    padding: 40px;
}
.intro_movie_box .modal-content {
    background: none;
    height: 800px;
    overflow: hidden;
}

/* モーダルウィンドウ表示中に記事本体を固定 */
body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
}

.modal-content img {
    margin-bottom: 35px;
    border-radius: 4px;
}
.modal-content p {
    margin-bottom: 1.5em;
    line-height: 210%;
}
.modal a.js-modal-close{
    display: block;
    padding: 15px 0;
    text-align: center;
    background: #2c404b;
    color: #fff;
    border: 2px solid #fff;
    cursor: pointer;
    transition: ease 0.2s;
    border-radius: 5px;
}
.modal a.js-modal-close:hover{
    background: #000;
}
@media screen and (max-width: 840px) {
    .intro_movie_box .modal-content {
        width: 100%;
        height: auto;
    }
    .intro_movie_box video {
        width: 100%;
        height: auto;
    }
    .modal-content {
        height: 90vh;
        width: 90%;
        padding: 35px 30px;
    }
}

@media screen and (max-width: 840px) {
    .modal-content img {
        width: 100%;
        height: 150px;
        margin-bottom: 15px;
        border-radius: 3px;
        object-fit: cover;
    }
}

/*-----------------------------------
bennies_block
-----------------------------------*/
#bennies_block {
    padding-top: 180px;
    margin-bottom: 120px;
}
#bennies_block h3 {
    margin-bottom: 58px;
}
#bennies_block>.contents_inner>*+* {
    margin-top: 48px;
}
#bennies_block .bennies_content {
    font-size: 14px;
    padding: 10px 22px;
    border: 1px solid #ebebeb;
    background-color: #fff;
    border-radius: 5px;
}
#bennies_block .bennies_content h4 {
    font-size: 26px;
    font-weight: bold;
    border-left: 4px solid #427cc8;
    padding: 8px 0 8px 22px;
    position: relative;
    margin-bottom: 8px;
}
#bennies_block .bennies_content h4::after {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #ebebeb;
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
}
#bennies_block .bennies_box {
    padding: 28px;
}
#bennies_block .bennies_box h5 {
    font-size: 18px;
    font-weight: bold;
    color: #528cd3;
    padding-bottom: 7px;
    margin-bottom: 10px;
    border-bottom: 1px solid;
}
#bennies_block .bennies_box h5:not(:first-of-type) {
    margin-top: 36px;
}
#bennies_block .bennies_box p {
    line-height: 180%;
}
#bennies_block .intro_txt {
    margin-bottom: 36px;
}
@media screen and (max-width: 840px) {
    #bennies_block {
        padding-top: 110px;
        margin-bottom: 80px;
    }
}
@media screen and (max-width: 640px) {
    #bennies_block {
        padding-top: 80px;
        margin-bottom: 70px;
    }
    #bennies_block h3 {
        margin-bottom: 40px;
    }
    #bennies_block .bennies_box {
        padding: 20px 0 10px;
    }
    #bennies_block .bennies_box p {
        line-height: 200%;
    }
    #bennies_block>.contents_inner>*+* {
        margin-top: 20px;
    }
    #bennies_block .bennies_content h4 {
        font-size: 17px;
        border-left: 3px solid #427cc8;
        padding: 5px 0 5px 10px;
    }
    #bennies_block .bennies_box h5 {
        font-size: 16px;
    }
    #bennies_block .bennies_box h5:not(:first-of-type) {
        margin-top: 25px;
    }
}

/*-----------------------------------
faq_block
-----------------------------------*/
#faq_block {
    padding-top: 140px;
    padding-bottom: 110px;
    background: url(../img/index/faq_bg.jpg) no-repeat center center/cover;
}
#faq_block h3 {
    color: #fff;
    margin-bottom: 70px;
}
#faq_block h3 span {
    color: #fff;
}
#faq_block .bl_qaBox_wrap {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
#faq_block .bl_qaBox {
    background-color: #fff;
    padding: 28px 12px;
    border-radius: 5px;
    border: 1px solid #ebebeb;
}
#faq_block .bl_qaBox_q,
#faq_block .bl_qaBox_a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
#faq_block .bl_qaBox_q {
    margin-bottom: 30px;
}
#faq_block .bl_qaBox_Icon {
    font-size: 24px;
    width: 28px;
    height: 28px;
    border-radius: 3px;
    color: #fff;
    padding: 2px 6px;
    line-height: 1;
    display: inline-block;
    margin-right: 15px;
}
#faq_block .bl_qaBox_q .bl_qaBox_Icon {
    background-color: #c94a4a;
}
#faq_block .bl_qaBox_a .bl_qaBox_Icon {
    background-color: #44c8a9;
}
#faq_block .bl_qaBox_q .bl_qaBox_Text {
    font-size: 20px;
    color: #528cd3;
    font-weight: bold;
    line-height: 1.5;
}
#faq_block .bl_qaBox_a .bl_qaBox_Text {
    font-size: 15px;
    line-height: 2;
}
#faq_block .bl_qaBox .detail_list {
    margin: 15px 25px 0;
    padding: 15px 15px 15px 40px;
    background: #f4f4f4;
    border-radius: 4px;
}
#faq_block .bl_qaBox .detail_list li {
    list-style: circle;
    margin-bottom: 10px;
}
#faq_block .bl_qaBox .detail_list li:last-child {
    margin-bottom: 0;
}
@media screen and (max-width: 840px) {
    #faq_block .bl_qaBox_wrap {
        display: block;
    }
    #faq_block .bl_qaBox {
        width: 100%;
        margin-bottom: 15px;
    }
}
@media screen and (max-width: 640px) {
    #faq_block {
        padding-top: 80px;
        padding-bottom: 70px;
    }
    #faq_block h3 {
        margin-bottom: 40px;
    }
    #faq_block .bl_qaBox_q .bl_qaBox_Text {
        font-size: 17px;
    }
    #faq_block .bl_qaBox {
        padding: 20px 15px;
    }
    #faq_block .bl_qaBox_q {
        margin-bottom: 15px;
    }
    #faq_block .bl_qaBox_Icon {
        font-size: 18px;
        width: 23px;
        height: 23px;
    }
    #faq_block .bl_qaBox_a .bl_qaBox_Text {
        font-size: 14px;
        line-height: 180%;
    }
}
/*-----------------------------------
requirements_block
-----------------------------------*/
#requirements_block {
    padding-top: 140px;
    padding-bottom: 110px;
}
#requirements_block h3 {
    margin-bottom: 60px;
}
#requirements_block .contact_btm {
    background: #fff;
    margin-top: 30px;
    padding: 30px 40px 30px;
    border-radius: 5px;
    text-align: center;
}
#requirements_block .contact_btm h5 {
    font-size: 25px;
    font-weight: 600;
    color: #1286c7;
    margin-bottom: 15px;
}
#requirements_block .contact_btm p {
    font-size: 16px;
    line-height: 180%;
}
/*縦テーブル
--------------------------*/
#requirements_block .bl_horizTable {
    font-size: 15px;
}
#requirements_block .bl_horizTable table {
    width: 100%;
}
#requirements_block .bl_horizTable tbody>*+* {
    border-top: 1px solid #e3e3e3;
}
#requirements_block .bl_horizTable th,
#requirements_block .bl_horizTable td {
    padding: 32px;
}
#requirements_block .bl_horizTable th {
    font-size: 16px;
    width: 16.5%;
    padding-left: 50px;
    font-weight: bold;
}
#requirements_block .bl_horizTable td {
    line-height: 1.8;
}
#requirements_block .bl_horizTable tr:last-child th,
#requirements_block .bl_horizTable tr:last-child td {
    border-bottom-width: 0;
}
/*勤務地リスト
--------------------------*/
#requirements_block .from_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
#requirements_block .from_list ul:first-child {
    margin-right: 7em;
}
/*数字リスト
--------------------------*/
#requirements_block .el_numList {
    margin-top: 26px;
    counter-reset: bl_orderList;
    line-height: 1.5;
}
#requirements_block .el_numList>li {
    position: relative;
    padding-left: 1.5em;
    margin-top: 18px;
}
#requirements_block .el_circleList>li:first-child {
    margin-top: 0;
}
#requirements_block .el_numList>li::before {
    content: counter(bl_orderList) '. ';
    position: absolute;
    top: 0;
    left: 0;
    counter-increment: bl_orderList;
}
/*米印番号リスト
--------------------------*/
#requirements_block .el_noticeList {
    font-size: 14px;
    margin-top: 40px;
    counter-reset: bl_orderList;
    line-height: 1.5;
}
#requirements_block .el_noticeList>li:first-child {
    margin-top: 0;
}
#requirements_block .el_noticeList>li {
    position: relative;
    padding-left: 1.5em;
    margin-top: 8px;
}
#requirements_block .el_circleList>li:first-child {
    margin-top: 0;
}
#requirements_block .el_noticeList>li::before {
    content: '※';
    position: absolute;
    top: 0;
    left: 0;
    counter-increment: bl_orderList;
}
@media screen and (max-width: 1080px) {
    #requirements_block .bl_horizTable th {
        width: 180px;
    }

}

@media screen and (max-width: 940px) {
    #requirements_block .bl_horizTable th,
    #requirements_block .bl_horizTable td {
        padding: 15px;
    }
    #requirements_block .bl_horizTable th {
        width: 25%;
    }
}
@media screen and (max-width: 640px) {
    #requirements_block {
        margin-top: -70px;
        padding-top: 140px;
        padding-bottom: 70px;
    }
    #requirements_block h3 {
        margin-bottom: 35px;
    }
    #requirements_block .bl_horizTable {
        font-size: 14px;
    }
    #requirements_block .bl_horizTable th,
    #requirements_block .bl_horizTable td {
        width: 100%;
        display: block;
        padding: 20px 25px;
    }
    #requirements_block .bl_horizTable th {
        width: 100%;
        display: block;
        padding: 20px 25px 15px;
    }
    #requirements_block .bl_horizTable td {
        width: 100%;
        display: block;
        padding: 0 25px 20px;
    }
    #requirements_block .el_numList>li {
        font-size: 13px;
    }
}
/*----------------------------------------
タブパネル
----------------------------------------*/
/*ボタンレイアウト
--------------------------*/
.bl_tab_list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
}
.bl_tab_list>*:last-child .el_btnArrow {
    font-size: 15px;
}
.bl_tab_item {
    width: calc(100%/ 3);
}

/*右矢印ボタン
--------------------------*/
.el_btnArrow {
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    width: 100%;
    padding: 2em;
    background-color: #fff;
    border: 2px solid transparent;
    text-align: center;
    text-decoration: none;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    position: relative;
    border-radius: 5px;
    border: 1px solid #ebebeb;
    height: 100%;
}
.el_btnArrow .el_btnArrow_append::after {
    content: "";
    position: absolute;
    top: calc(50% - 0.6em / 2);
    right: 1.5em;
    width: 0.6em;
    height: 0.6em;
    border-top: 2px solid;
    border-right: 2px solid;
    border-color: #1c72c8;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/*選択中のタブとホバー*/
.el_btnArrow:focus,
.el_btnArrow:hover,
.el_btnArrow[aria-selected="true"] {
    background-color: #1c72c8;
    color: #fff;
    border-color: #1c72c8;
}
.el_btnArrow:focus .el_btnArrow_append::after,
.el_btnArrow:hover .el_btnArrow_append::after,
.el_btnArrow[aria-selected="true"] .el_btnArrow_append::after {
    border-color: #fff;
}
/*タブパネル
--------------------------*/
.bl_tab_panel {
    margin-top: 54px;
    background-color: #fff;
    border-radius: 5px;
}
.js_tab_panel {
    display: none;
}
/*選択中のタブパネル*/
.js_tab_panel[aria-hidden="false"] {
    display: block;
}

@media screen and (max-width: 640px) {
    .el_btnArrow {
        font-size: 13px;
        font-weight: bold;
        display: inline-block;
        width: 100%;
        padding: 10px;

    }
    .bl_tab_panel {
        margin-top: 30px;
    }
    .bl_tab_list {
        gap: 5px;
    }
    .bl_tab_list .el_btnArrow_append {
        display: none;
    }
    .bl_tab_list>*:last-child .el_btnArrow {
        font-size: 11px;
    }
}