@charset "UTF-8";

/* ================================================ */
/* Base*/
/* ================================================ */

html {
    overflow: auto;
    scroll-behavior: smooth;
    scroll-padding-top: 150px;
}

body {
    -webkit-text-size-adjust: 100%;
    color: #484848;
    padding: 0;
    text-align: left;
    height: auto;
    font-size: 16px;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    overflow: hidden;
    background-color: #fff;
}

main {
    padding: 0 0 150px 0;
}

/*++++++++++++++++++++++++++
	font
++++++++++++++++++++++++++*/

em {
    font-style: normal;
}

.mincho {
    font-family: 'Noto Serif JP', serif;
}

.gothic {
    font-family: "Noto Sans JP";
}

.marugo {
    font-family: "M PLUS Rounded 1c";
}


/*++++++++++++++++++++++++++
	切り替え
++++++++++++++++++++++++++*/
@media screen and (min-width: 600px) {
    .pc {
        display: block;
    }

    .sp {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}




/*++++++++++++++++++++++++++
viewmore
++++++++++++++++++++++++++*/

a.viewmore {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* 左右に配置 */
    color: #2d6caf;
    font-size: 18px;
    padding: 16px 30px;
    /* 左右の余白を少し広めに */
    border-radius: 100vh;
    background-color: #fff;
    border: 1px solid #d3d3d3;
    max-width: 240px;
    width: 100%;
    text-decoration: none;
    transition: 0.3s;
    box-sizing: border-box;
    margin: 0;
}


/* 矢印を擬似要素で追加 */
a.viewmore::after {
    content: "\2192";
    /* 矢印記号 */
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.3s;
}

/* hover時 */
a.viewmore:hover::after {
    transform: translateX(5px);
}

@media screen and (max-width: 600px) {
    a.viewmore {
        margin: auto;
    }

}



/*++++++++++++++++++++++++++
button
++++++++++++++++++++++++++*/

.button {
    display: inline-block;
    position: relative;
    color: #2d6caf;
    font-size: 18px;
    padding: 16px 50px 16px 30px;
    border-radius: 100vh;
    background-color: #fff;
    border: 1px solid #d3d3d3;
    text-decoration: none;
    transition: 0.3s;
    box-sizing: border-box;
    min-width: 300px;
    cursor: pointer;
}

.button::after {
    content: "\2192";
    position: absolute;
    /* ← 絶対配置 */
    right: 20px;
    /* ← 右に寄せる */
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s;
}

.button:hover::after {
    transform: translate(5px, -50%);
}

@media screen and (max-width: 600px) {
    .button {
        margin: auto;
    }

}



/*++++++++++++++++++++++++++
table
++++++++++++++++++++++++++*/
.table_wrap {
    width: 100%;
    max-width: 1000px;
    overflow-x: auto;
}

table {
    width: 100%;
    min-width: 600px;
}

table td,
table th {
    border: 1px solid #D3D3D3;
    color: #484848;
    padding: 15px 10px;
    text-align: center;
}

table th {
    background-color: #F5F5F5;
}

table tr>*:first-child {
    border-left: none;
}

table tr>*:last-child {
    border-right: none;
}

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



/*++++++++++++++++++++++++++
header
++++++++++++++++++++++++++*/

header {
    position: fixed;
    width: 100%;
    margin: 0 auto;
    padding: 30px 3% 30px;
    top: 0;
    z-index: 100;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
    /* ← ふわっと変化 */
    background-color: #f5f5f5f3;
    /* 初期は透明 */
}

header.scrolled {
    background-color: #f5f5f5f3;
    padding: 10px 3% 10px;
}

header.hide {
    opacity: 0;
    pointer-events: none;
}


header .header_logo {
    width: clamp(240px, 25vw, 350px);
    display: block;
}


header menu {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    border-radius: 100vh;
    margin-left: 10px;
    flex: 1;
}

header menu a {
    display: block;
    background-color: #122F4E;
    color: #fff;
    font-size: clamp(10px, 1.3vw, 18px);
    padding: 2% 2%;
    white-space: nowrap;
}

header menu a:first-child {
    padding: 2% 15px 2% 30px;
    border-radius: 50vh 0 0 50vh;
}

header menu a:last-child {
    padding: 2% 30px 2% 15px;
    border-radius: 0 50vh 50vh 0;
    background-color: #2d6caf;
}




@media screen and (max-width: 800px) {

    header {
        background-color: #fff;
    }

    header menu {
        display: none;
    }

    header.scrolled {
        background-color: #ffffffe5 !important;
        /* ← 無効化（透明に戻す） */
        padding: 30px 3% !important;
        /* ← PCの初期値に戻す */
    }
}


/*++++++++++++++++++++++++++
header_recruit
++++++++++++++++++++++++++*/


header.header_recruit {

    background-color: #ffffffc7;
}

header.header_recruit menu a {
    background-color: #ffffffc7;
    color: #000000;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

header.header_recruit menu a:first-child {
    border-left: 1px solid #000;
}

header.header_recruit menu a:last-child {
    background-color: #ffffffc7;
    border-right: 1px solid #000;
}










/*++++++++++++++++++++++++++
mainvisual
++++++++++++++++++++++++++*/

#mainvisual {
    width: 100%;
    margin: 0 0 0;
    padding: 0 0 0 0;
    position: relative;
    overflow: hidden;
}

#mainvisual .main_photo {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

/* 下からのグラデーション */
#mainvisual .main_photo::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40%;
    /* グラデーションの高さは調整可 */
    background: linear-gradient(to top, #2d6cafc1, transparent);
    z-index: 1;
    pointer-events: none;
}

#mainvisual .main01 {
    background-image: url(../images/main01.jpg);
}

#mainvisual .main_title {
    position: absolute;
    left: 10%;
    bottom: 70px;
    width: clamp(400px, 70vw, 680px);
    z-index: 2;
}


@media screen and (max-width: 600px) {

    #mainvisual .main_title {
        left: 5%;
        bottom: 30px;
        width: clamp(300px, 60vw, 680px);
        z-index: 2;
    }

}

/*mainvisual swiper*/

#mainvisual .main_photo {
    overflow: hidden;
}

#mainvisual .main_photo_bg,
#mainvisual .mainvideo {
    width: 100%;
    height: 100%;
}

#mainvisual .main_photo_bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 8s linear;
}

/* 動画 */
#mainvisual .mainvideo {
    object-fit: cover;
    display: block;
}

/* 表示中 */
#mainvisual .swiper-slide-active .main_photo_bg {
    transform: scale(1.25);
}

/* フェードアウト中 */
#mainvisual .swiper-slide-prev .main_photo_bg {
    transform: scale(1.25);
}

/* 最後→最初 の切替専用 */
#mainvisual .swiper-slide-duplicate-prev .main_photo_bg {
    transform: scale(1.25);
}


/* 動画ローディング */
#mainvisual .movie_slide {
    position: relative;
}

#mainvisual .movie_loading {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    margin: -22px 0 0 -22px;
    border: 4px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: movieLoading 0.8s linear infinite;
    opacity: 0;
    pointer-events: none;
    z-index: 5;
}

#mainvisual .movie_loading.is-show {
    opacity: 1;
}

@keyframes movieLoading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}






/*++++++++++++++++++++++++++
h2_toptitle
++++++++++++++++++++++++++*/

.h2_toptitle {
    font-size: 60px;
    line-height: 1.2em;
    color: #2d6caf;
    font-family: "Noto Sans JP";
    font-weight: 200;
    margin: 0;
    padding: 0 0 40px;
}

.h2_toptitle span {
    font-size: 14px;
    line-height: 1.3em;
    color: #7F89A0;
    display: block;
}


/*++++++++++++++++++++++++++
top_feature
++++++++++++++++++++++++++*/


#top_feature {
    width: 100%;
    background-color: #F5F5F5;
    margin: 0;
    padding: 150px 0;
    background-image: url(../images/nakapla_bk.svg);
    background-position: left bottom;
    background-repeat: repeat-x;
}

#top_feature .top_feature_wap {
    max-width: 1000px;
    width: 95%;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

#top_feature .top_feature_txt {
    font-size: clamp(22px, 3vw, 24px);
    line-height: 1.8em;
    font-weight: bold;
    padding: 0 0 40px;
}

#top_feature .top_feature_photo {
    position: absolute;
    right: -100px;
    top: 0px;
    display: flex;
    width: 70%;
}

#top_feature .top_feature_photo>* {
    width: 34%;
    height: auto;
}

#top_feature .top_feature_photo>*:nth-child(1) {
    padding: 120px 0 0 0;
}

#top_feature .top_feature_photo>*:nth-child(2) {
    padding: 60px 0 0 0;
}

@media screen and (max-width: 1000px) {

    #top_feature .top_feature_photo {
        right: -2.5%;
        width: 55%;
    }

}

@media screen and (max-width: 600px) {

    #top_feature .top_feature_photo {
        position: initial;
        display: flex;
        width: 100%;
        margin: 0 auto 50px 0;
    }

}


/*++++++++++++++++++++++++++
top_recruit
++++++++++++++++++++++++++*/

#top_recruit {
    width: 100%;
    background-color: #2d6caf;
    margin: 0;
    padding: 150px 0;
    color: #fff;
}

#top_recruit .top_recruit_wap {
    max-width: 1000px;
    width: 95%;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

#top_recruit .top_recruit_right {
    margin: 0 auto 0 55%;
    padding: 0 0 0 0;
}

#top_recruit .top_recruit_txt {
    font-size: clamp(16px, 2vw, 16px);
    margin: 0 0 0;
    line-height: 2.0em;
}

#top_recruit .top_recruit_menu {
    font-size: clamp(18px, 4.6vw, 18px);
    padding: 30px 0 30px 0;
    margin: 0 0 0;
}

#top_recruit .top_recruit_menu li {
    padding: 0 0 20px 0;
    margin: 0 0 20px 0;
    border-bottom: solid #d3d3d3 1px;
}

#top_recruit .top_recruit_menu a {
    color: #fff;
    display: block;
    position: relative;
}



#top_recruit .top_recruit_menu a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    width: 7px;
    height: 13px;
    background-image: url(../images/arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: block;
    transition: transform 0.3s;
}

#top_recruit .top_recruit_menu a:hover::after {
    transform: translate(5px, -50%);
}

#top_recruit .top_recruit_photo {
    position: absolute;
    left: -80px;
    top: 130px;
    display: flex;
    width: 50%;
    flex-direction: column;
    line-height: 0;
    min-height: 520px;
}


@media screen and (max-width: 1000px) {

    #top_recruit .top_recruit_photo {
        left: -2.5%;
    }

}


@media screen and (max-width: 600px) {

    #top_recruit {
        padding: 100px 0 50px;
    }

    #top_recruit .top_recruit_right {
        margin: 0 auto 0 0;
        padding: 0 0 0 0;
    }

    #top_recruit .top_recruit_photo {
        position: initial;
        display: flex;
        width: 100%;
        margin: 50px auto 0 0;
    }

}



/*++++++++++++++++++++++++++
top_news
++++++++++++++++++++++++++*/


#top_news {
    width: 100%;
    background-color: #fff;
    margin: 0;
    padding: 150px 0 100px;
}

.news_wap {
    max-width: 1000px;
    width: 95%;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

.news_wap .menu_category {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 670px;
    width: 100%;
    margin: -20px 0 50px auto;
}



.news_wap .menu_category a,
.news_wap .menu_category button {
    display: block;
    background-color: #E7ECF2;
    padding: 10px;
    width: calc(24% - 1%);
    text-align: center;
    border-radius: 5px;
    font-size: clamp(10px, 3vw, 16px);
    line-height: 1em;
    border: none;
    /* button用 */
    cursor: pointer;
    /* button用 */
}

.news_wap .menu_category a.active,
.news_wap .menu_category button.active {
    background-color: #2d6caf;
    color: #FFF;
}



.news_wap .news_list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    margin: 0 0 20px 0;
    padding: 0 0 20px 0;
    border-bottom: solid 1px #F5F5F5;
    align-items: flex-start;
}

.news_wap .menu_category+.news_list {
    border-top: solid 1px #F5F5F5;
    margin-top: 20px;
    padding-top: 20px;
}


.news_wap .news_day {
    font-size: clamp(14px, 3vw, 16px);
    white-space: nowrap;
    margin: 0 10px 5px 0;
    width: 100px;
    flex-shrink: 0;
}

.news_category_wrap {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.news_wap .news_category {
    background-color: #E7ECF2;
    width: 150px;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    font-size: clamp(10px, 3vw, 16px);
    line-height: 1em;
    white-space: nowrap;
    margin: -6px 20px 5px 0;
    flex-shrink: 0;
}

.news_wap .news_contents {
    flex: 1;
}

@media screen and (max-width: 600px) {
    .news_wap .news_list {
        flex-wrap: wrap;
    }

    .news_wap .news_category {
        width: 100px;
    }

    .news_wap .news_contents {
        width: 100%;
        flex-basis: 100%;
        margin-top: 10px;
    }

}


/*++++++++++++++++++++++++++
news
++++++++++++++++++++++++++*/

#news .news_wap {
    margin: 50px auto 0;
}

#news .news_wap .menu_category {
    margin: 0 auto 50px auto;
}

#news .title_wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    margin: 0 0 50px;
}

#news h1.h1_title {
    width: 100%;
    color: #2d6caf;
    font-size: clamp(22px, 4.6vw, 24px);
    margin: 0 0 20px;
    padding: 0 0 10px;
    border-bottom: #E3E3E3 1px solid;
}


#news h1.wp-block-heading {
    font-size: clamp(32px, 4.6vw, 36px);
    text-align: center;
    line-height: 1.1em;
    margin: 0 auto 50px;
    font-weight: 600;
    position: relative;
}

#news h1.wp-block-heading:after {
    border-bottom: 5px solid #2d6caf;
    bottom: -18px;
    content: "";
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    width: 60px;
}

#news h2.wp-block-heading {
    background-color: #f5f7fb;
    width: 100%;
    color: #2d6caf;
    font-size: clamp(22px, 4.6vw, 24px);
    margin: 0 0 30px;
    padding: 10px;
}

#news h3.wp-block-heading {
    width: 100%;
    color: #484848;
    font-weight: 600;
    font-size: clamp(22px, 4.6vw, 24px);
    margin: 0 0 30px;
    padding: 5px 0 5px 15px;
    border-left: #2d6caf 6px solid;
}

#news h4.wp-block-heading {
    width: 100%;
    color: #2d6caf;
    font-size: clamp(18px, 4.6vw, 20px);
    margin: 0 0 30px;
    padding: 0 0 10px;
}

#news h5.wp-block-heading {
    width: 100%;
    color: #ffffff;
    font-size: clamp(16px, 4.6vw, 18px);
    margin: 0 0 30px;
    padding: 5px 10px;
    background-color: #122F4E;

}

#news .has-large-font-size {
    margin-bottom: 30px !important;
}

#news .has-x-large-font-size {
    margin-bottom: 30px !important;
}

#news .wp-block-file__button {
    display: inline-block;
    color: #2d6caf;
    font-size: 16px;
    text-align: center;
    padding: 5px 20px 5px 20px;
    border-radius: 100vh;
    background-color: #fff;
    border: 1px solid #d3d3d3;
    text-decoration: none;
    box-sizing: border-box;
    min-width: 250px;
    cursor: pointer;
}





#news .news_contents {
    font-size: clamp(15px, 3vw, 16px);
    line-height: 1.8em;
    margin: 0 auto 0;

}

#news .news_contents p {
    margin-bottom: 20px;
}

#news .news_contents figure {
    margin-bottom: 20px;
}



@media screen and (max-width: 600px) {
    #news .title_wrap {
        justify-content: flex-start;
    }


}


/*++++++++++++++++++++++++++
default
++++++++++++++++++++++++++*/

#default .default_wap {
    max-width: 1000px;
    width: 95%;
    margin: 50px auto 0;
    padding: 0;
}

#default .default_wap p {
    margin: 0 auto 10px;
}


/*++++++++++++++++++++++++++
top_about
++++++++++++++++++++++++++*/

#top_about {
    width: 100%;
    background-color: #fff;
    margin: 0 0 0;
    padding: 0 0 100px;
    background: linear-gradient(to bottom,
            transparent 0%,
            transparent 50%,
            #E7ECF2 50%,
            #E7ECF2 100%);
}

#top_about .about_wap {
    max-width: 1000px;
    width: 95%;
    margin: 0 auto;
    padding: 0;
}

#top_about .about_contents {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    position: relative;
}


#top_about .about_contents>* {
    flex-basis: calc(100% / 3);
    aspect-ratio: 3 / 4;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center center;
}

#top_about .about_contents a {
    display: block;
    width: 100%;
    height: 100%;
}

/* 下からのグラデーション */
#top_about .about_contents>*::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, #2d6caf7d, transparent);
    z-index: 1;
    pointer-events: none;
}

#top_about .about_company {
    background-image: url(../images/about_p1.jpg);
}

#top_about .about_business {
    background-image: url(../images/about_p2.jpg);
}

#top_about .about_location {
    background-image: url(../images/about_p3.jpg);
}

#top_about .about_link {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 5;
    color: #fff;
    font-size: 33px;
    font-family: "Noto Sans JP";
    font-weight: 300;
    line-height: 1.4em;
    width: 95%;
}

#top_about .about_link span {
    display: block;
    font-size: 14px;
    font-weight: 100;
    line-height: 1.6em;
}


#top_about .about_link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-image: url(../images/arrow_b.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: block;
    transition: transform 0.3s;
}

#top_about .about_link:hover::after {
    transform: translate(5px, -50%);
}

@media screen and (max-width: 600px) {
    #top_about .about_contents>* {
        flex-basis: calc(100%);
        aspect-ratio: 16 / 8;
        margin: 20px 0 0 0;
    }

}




/*++++++++++++++++++++++++++
top_csr,top_contact
++++++++++++++++++++++++++*/

#top_csr,
#top_contact {
    width: 100%;
    background-color: #E7ECF2;
    margin: 0;
    padding: 60px 0 60px;
    margin: 30px 0 0 0;
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
}

#top_csr .about_wap,
#top_contact .contact_wap {
    max-width: 1000px;
    width: 95%;
    margin: 0 auto;
    padding: 0;
}

#top_csr {
    background-image: url(../images/csr_bk.jpg);
}

#top_contact {
    background-image: url(../images/contact_bk.jpg);
}

@media screen and (max-width: 600px) {

    #top_csr,
    #top_contact {
        width: 100%;
        background-color: #E7ECF2;
        margin: 0;
        padding: 120px 0 20px;
        margin: 30px 0 0 0;
        background-position: top center;
        background-repeat: no-repeat;
        background-size: auto 130%;
    }

}



/*++++++++++++++++++++++++++
setitle
++++++++++++++++++++++++++*/

#setitle {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: #F5F5F5;
    margin: 0 0 0;
    padding: 0 0 0;

}

#setitle .h1_setitle {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(32px, 4.6vw, 36px);
    text-align: center;
    line-height: 1.1em;
}

#setitle .h1_setitle span {
    display: block;
    color: #2d6caf;
    font-size: clamp(14px, 4.6vw, 16px);
}

@media screen and (max-width: 600px) {
    #setitle {
        height: 250px;

    }

    #setitle .h1_setitle {
        top: 140px;
    }
}




/*++++++++++++++++++++++++++
linklist
++++++++++++++++++++++++++*/

#linklist {
    width: 100%;
    border-bottom: 1px #E3E3E3 solid;
    padding: 10px;
}

#linklist ul {
    max-width: 1000px;
    width: 95%;
    margin: auto;
    padding: 0;
    font-size: 15px;
    display: flex;
    font-size: 14px;
}

#linklist ul li {
    margin: 0 5px 0 0;
    padding: 0 0 0 0;
    white-space: nowrap;
}

#linklist ul li::after {
    content: ">";
    margin: 0 0 0 5px;
}

#linklist ul li {
    margin: 0 5px 0 0;
    padding: 0 0 0 0;
    white-space: nowrap;
}


/*++++++++++++++++++++++++++
linklist_recruit
++++++++++++++++++++++++++*/
.linklist_recruit {
    border-bottom: 0px #E3E3E3 solid !important;
    padding: 0 !important;
    margin: 0 0 40px;

}






/*++++++++++++++++++++++++++
h2_subtitle
++++++++++++++++++++++++++*/

.h2_subtitle {
    color: #2d6caf;
    font-size: clamp(32px, 4.6vw, 36px);
    text-align: center;
    line-height: 1.1em;
    margin: 0 0 50px;
}

.h2_subtitle span {
    display: block;
    color: #2d6caf;
    font-size: clamp(14px, 4.6vw, 16px);
}



/*++++++++++++++++++++++++++
h2_setitle
++++++++++++++++++++++++++*/
.h2_setitle {
    color: #2d6caf;
    font-size: clamp(28px, 4.6vw, 34px);
    position: relative;
    margin: 50px 0 100px;
    text-align: center;
}

.h2_setitle::after {
    position: absolute;
    border-bottom: 4px solid #2d6caf;
    bottom: -25px;
    content: "";
    left: 0;
    right: 0;
    margin: auto;
    width: 130px;
}

.h2_setitle_noline {
    color: #2d6caf;
    font-size: clamp(28px, 4.6vw, 34px);
    position: relative;
    margin: 50px 0 50px;
    text-align: center;
}

/*++++++++++++++++++++++++++
h3_setitle
++++++++++++++++++++++++++*/
.h3_setitle {
    color: #2d6caf;
    font-size: clamp(22px, 4.6vw, 24px);
    margin: 0 0 20px;
    padding: 0 0 10px;
    border-bottom: #2d6caf 1px solid;
}



/*++++++++++++++++++++++++++
h4_setitle
++++++++++++++++++++++++++*/
.h4_setitle {
    color: #2d6caf;
    font-size: clamp(22px, 4.6vw, 24px);
    margin: 0 0 20px;
    padding: 0 0 20px;
    border-bottom: #E3E3E3 1px solid;

}

.h4_setitle.No {
    display: flex;
    align-items: baseline;
    /* ← ベースライン揃え */
    gap: 8px;
    /* ← 数字と文字の間 */
}



/*++++++++++++++++++++++++++
tab
++++++++++++++++++++++++++*/

#tab {
    width: 100%;
    border-bottom: 4px #2d6caf solid;
    margin: 50px 0 80px 0;
    padding: 0 0 0 0;
}

#tab .tab_wrap {
    max-width: 1000px;
    width: 95%;
    margin: 0 auto 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

#tab .tab_wrap>* {
    width: calc(33% - 1%);
    background-color: #AAB9DB;
    text-align: center;
    font-size: clamp(16px, 4.6vw, 22px);
    min-height: 60px;
}

#tab .tab_wrap a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

#tab .tab_wrap a.active {
    background-color: #2d6caf;
}

#company article {
    display: none;
    opacity: 0;
    transition: opacity .4s ease;
    /* ← ふわっと表示 */
}

#company article.active {
    display: block;
    opacity: 1;
}


/*++++++++++++++++++++++++++
company
++++++++++++++++++++++++++*/

#company .company_meinphoto {
    width: 100%;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    margin: 0 0 50px;
    background-position: top center;
    background-size: cover;
}

#company #greeting .company_meinphoto {
    background-image: url(../images/company/president.jpg);
}

#company #philosophy .company_meinphoto {
    background-image: url(../images/company/rinen.jpg);
}

#company .company_txtarea {
    max-width: 1000px;
    width: 95%;
    margin: 0 auto;
    padding: 0;
    line-height: 2.5em;
}


#company .company_president_mane {
    font-size: 22px;
    text-align: right;
    margin: 20px 0 0 0;
    font-family: 'Noto Serif JP', serif;
}

#company .company_president_mane span {
    font-size: 14px;
    margin: 0 10px 0 0;
    font-family: "Noto Sans JP";
}

#company .company_catchphrase {
    font-size: clamp(23px, 4.0vw, 33px);
    text-align: center;
    padding: 0 0 50px;
}

#company #overview ul {
    max-width: 1000px;
    width: 95%;
    margin: 0 auto 20px auto;
    padding: 0 0 20px 0;
    border-bottom: #d3d3d3 1px solid;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

#company #overview h2+ul {
    margin: 20px auto 20px auto;
    padding: 20px 0 20px 0;
    border-top: #2d6caf 1px solid;
}

#company #overview .last {
    margin: 0 auto 100px auto;
}

#company #overview ul li {
    width: 200px;
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}

#company #overview ul ol {
    font-size: 16px;
    flex: 1;
}

#company #overview a {
    text-decoration: underline;
    color: #2d6caf;
}


#company #overview .history_photo {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 2%;
    margin: 0 0 0;
    padding: 20px 0 0;

}

#company #overview .history_photo>* {
    width: calc(33% - 1%);
    margin: 0 0 0;
    padding: 0 0 10px;

}

#company #overview .history_photo p {
    font-size: 14px;
    margin: 2px 0 0 0;
    text-align: center;
}


@media screen and (max-width: 600px) {
    #company .company_meinphoto {
        aspect-ratio: 16 / 12;
    }

    #tab .tab_wrap>* {
        min-height: 70px;
    }

    #company #overview ul li {
        width: 100%;
        margin: 0 0 10px;
    }

    #company #overview ul ol {
        width: 100%;

    }

    #company #overview .history_photo>* {
        width: calc(100% - 1%);
        margin: 0 0 5px;
    }

}



/*++++++++++++++++++++++++++
csr
++++++++++++++++++++++++++*/

#csr .csr_meinphoto {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    margin: 0 0 100px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

#csr .csr_meinphoto.csr_photo1 {
    background-image: url(../images/csr/csr_photo1.jpg);
}

#csr .csr_meinphoto.csr_photo2 {
    background-image: url(../images/csr/csr_photo2.jpg);
}

#csr .csr_meinphoto.csr_photo3 {
    background-image: url(../images/csr/csr_photo3.jpg);
}

#csr .csr_meinphoto::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    /* グラデーションの高さは調整可 */
    background: #00000022;
    z-index: 1;
    pointer-events: none;
}

#csr .csr_meinphoto_txt1 {
    position: absolute;
    font-family: "Noto Sans JP";
    font-size: clamp(28px, 2.0vw, 36px);
    font-weight: 500;
    line-height: 1.6em;
    color: #fff;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 2;
}

#csr .csr_meinphoto_txt2 {
    font-size: clamp(14px, 2.0vw, 18px);
    font-weight: 300;
    line-height: 1.8em;
    color: #fff;
    padding: 20px 0 0 0;
}



#csr .csr_navi {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 800px;
    width: 95%;
    margin: 0 auto 100px;

}

#csr .csr_navi a {
    color: #fff;
    display: block;
}

#csr .csr_navi>* {
    flex-basis: calc(50% - 2%);
    background-color: #AAB9DB;
    padding: 12px;
    text-align: center;
    font-size: 18px;
    position: relative;
}


#csr .csr_navi>*::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 20px;
    height: 10px;
    background-image: url(../images/arrow_downward.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: block;
    transition: transform 0.3s;
}

#csr .csr_navi>*:hover::after {
    transform: translate(0, calc(-50% + 5px));
}


#csr .subtitle {
    background-color: #F5F5F5;
    text-align: center;
    color: #2d6caf;
    font-size: clamp(26px, 4.6vw, 34px);
    border-top: 2px #AAB9DB solid;
    position: relative;
    padding: 80px 0 40px;

}

#csr .subtitle span {
    position: absolute;
    background-color: #AAB9DB;
    color: #fff;
    font-size: clamp(20px, 4.6vw, 24px);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    max-width: 500px;
    width: 90%;
    padding: 5px;
}


#csr .subcatch {
    max-width: 1000px;
    width: 95%;
    text-align: center;
    font-size: clamp(18px, 4.6vw, 24px);
    padding: 0 0 0;
    margin: 0 auto 50px;

}

#csr .csr_wrap {
    counter-reset: csr-counter;
    max-width: 1000px;
    width: 95%;
    margin: 0 auto 100px;
}


#csr .csr_wrap:last-child {
    counter-reset: csr-counter;
    max-width: 1000px;
    width: 95%;
    margin: 0 auto 0;
}


#csr .csr_txt {
    font-size: clamp(15px, 4.6vw, 16px);
    line-height: 1.8em;
    margin: 0 auto 50px;
}

#csr .sdgs_wrap {
    max-width: 1000px;
    width: 95%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #d3d3d3;
    margin: 0 auto 50px;
    padding: 0 0 50px;
    gap: 5%;
}

#csr .sdgs_mark {
    width: 230px;
    margin: 0 auto 0;
}

#csr .sdgs_txtwrap {
    flex: 1;
}

#csr .sdgs_setitle {
    font-size: clamp(20px, 4.6vw, 24px);
    line-height: 1.8em;
    margin: 0 auto 00px;
    color: #2d6caf;
}

#csr .sdgs_txt {
    font-size: clamp(15px, 4.6vw, 16px);
    line-height: 1.8em;
    margin: 0 auto 50px;
    text-align: left;
}

#csr .sdgs_txt2 {
    font-size: clamp(15px, 4.6vw, 16px);
    line-height: 1.8em;
    padding: 20px 0 0;
}

#csr .sdgs_list {
    font-size: clamp(15px, 4.6vw, 16px);
    line-height: 1.8em;
    text-indent: -1em;
    padding-left: 1em;
}

#csr .sdgs_list::before {
    content: "・";
}



@media screen and (max-width: 600px) {
    #csr .csr_meinphoto {
        aspect-ratio: 16 / 16;
    }

    #csr .csr_meinphoto_txt1 {
        left: 2%;
    }

    #csr .sdgs_wrap {
        flex-wrap: wrap;
        flex-direction: column;
    }

    #csr .sdgs_mark {
        width: 50%;
        margin: 0 auto 10px;
    }


}



/*++++++++++++++++++++++++++
business
++++++++++++++++++++++++++*/

#business .business_menu {
    max-width: 1000px;
    width: 95%;
    margin: 50px auto 100px;
    padding: 0 0 0 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

#business .business_menu>* {
    width: calc(33% - 2%);
    aspect-ratio: 1 / 1;
    background-size: cover;
    position: relative;
    display: block;
}

#business .business_menu>*::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #0000006e;
    z-index: 1;
    pointer-events: none;
    transition: background 0.3s;
    /* ← 追加 */
}

#business .business_menu>*:hover::after {
    background: #00000030;
    border: #2d6cafc9 5px solid;
}

#business .business_menu>*.active::after {
    background: #000000cb;
    border: #2d6cafc9 5px solid;
}

#business .business_menu a {
    color: #fff;
}

#business .business_menu_link {
    width: 100%;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateY(-40%) translateX(-50%);
    -webkit-transform: translateY(-40%) translateX(-50%);
    text-align: center;
    font-size: clamp(16px, 3.6vw, 34px);
    z-index: 2;
}

#business .business_menu span {
    font-size: clamp(5px, 2vw, 14px);
    display: block;
}

#business .business_menu_link::after {
    content: "";
    background-image: url(../images/arrow_b.svg);
    width: clamp(20px, 3.6vw, 40px);
    height: clamp(20px, 3.6vw, 40px);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    margin: 5px 0 0 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

#business .business_menu_equipment {
    background-image: url(../images/business/business_menu1.jpg);
}

#business .business_menu_product {
    background-image: url(../images/business/business_menu2.jpg);
}

#business .business_menu_mold {
    background-image: url(../images/business/business_menu3.jpg);
}


#business .business_menu.se>* {
    aspect-ratio: 2 / 1;
    margin: 50px auto 0px;
}

#business .business_menu_link.se {
    top: 30%;
}




#business .business_wrap {
    counter-reset: csr-counter;
    max-width: 1000px;
    width: 95%;
    margin: 0 auto 100px;
}

#business .business_wrap:last-child {
    counter-reset: csr-counter;
    max-width: 1000px;
    width: 95%;
    margin: 0 auto 0;
}

#business .col2>*,
#business .col2_nowrap>* {
    width: calc(50% - 1%);
    margin: 0 0 1%;
}


#business .business_txt {
    font-size: clamp(15px, 4.6vw, 16px);
    line-height: 2.0em;
    margin: 0 0 50px;
}

#business .tsuyomi_photo {
    margin: 0 0 0px;
}

#business .tsuyomi_title {
    font-size: clamp(18px, 4.6vw, 24px);
    color: #2d6caf;
    margin: 0 0 20px;
}

#business .tsuyomi_txt {
    font-size: clamp(15px, 4.6vw, 16px);
    line-height: 1.8em;
}

#business .equipment_setitle,
#business .mold_setitle {
    font-size: clamp(16px, 4.6vw, 18px);
    line-height: 1.8em;
    background-color: #F5F5F5;
    text-align: center;
    padding: 10px;
    margin: 0 0 50px;
    border-inline: 5px solid #AAB9DB;
}


#business .product_setitle {
    font-size: clamp(20px, 4.6vw, 22px);
    line-height: 1.8em;
    color: #2d6caf;
    background-color: #F5F5F5;
    text-align: left;
    padding: 10px;
    margin: 0 0 20px;
    border-left: 5px solid #AAB9DB;
}


#business .product_list {
    font-size: clamp(15px, 4.6vw, 16px);
    line-height: 1.8em;
    text-indent: -1em;
    padding-left: 1em;
}

#business .product_list::before {
    content: "・";
}


#business .teisei_wrap_flex {
    counter-reset: csr-counter;
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 30px auto 50px;
    gap: 2%;

}

#business .teisei_wrap_flex>* {
    width: calc(25% - 2%);
    margin-bottom: 2%;
}



@media screen and (max-width: 600px) {

    #business .business_menu.se>* {
        aspect-ratio: 4 / 3;
    }


    #business .col2>* {
        width: 100%;
    }

    #business .col2_nowrap>* {
        width: calc(50% - 1%);
        margin: 0 0 1%;
    }

    #business .teisei_wrap_flex>* {
        width: calc(50% - 2%);
        margin-bottom: 2%;
    }

}

/*++++++++++++++++++++++++++
location
++++++++++++++++++++++++++*/


#location .location_wrap {
    max-width: 1000px;
    width: 95%;
    margin: 50px auto 50px;
    padding: 0 0 50px 0;
}

#location .location_contents {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2%;
}

#location .location_right {
    display: flex;
    flex-direction: column;
}

#location .location_contents>* {
    width: 49%;
}

#location .location_photo {
    margin: 0 0 0;
    line-height: 0;
}

#location .location_contents ul {
    width: 100%;
    margin: 0 0 20px 0;
    padding: 0 0 10px 0;
    border-bottom: #d3d3d3 1px solid;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
}


#location .location_contents ul:first-child {
    margin: 0 0 10px 0;
    padding: 10px 0 10px 0;
    border-top: #d3d3d3 1px solid;
}

#location .location_contents ul li {
    font-size: clamp(14px, 4.6vw, 16px);
    font-weight: bold;
    margin: 0 10px 0 0;
    white-space: nowrap;
}

#location .location_contents ul ol {
    font-size: clamp(14px, 4.6vw, 16px);
}

#location .gmap {
    flex: 1;
    /* 幅いっぱい広げる */
}

#location .gmap iframe {
    width: 100%;
    height: 100%;
    /* 左写真の高さに自動で揃う */
    border: 0;
}

@media screen and (max-width: 600px) {

    #location .location_contents ul {
        flex-wrap: wrap;
        flex-direction: column;
    }

    #location .location_contents>* {
        width: 100%;
    }

    #location .location_photo {
        margin: 0 0 10px;
    }

}



/*++++++++++++++++++++++++++
contact
++++++++++++++++++++++++++*/


#contact .contact_wrap {
    max-width: 1000px;
    width: 95%;
    margin: 50px auto 50px;
    padding: 0 0 50px 0;
}

#contact .contact_wrap:last-child {
    counter-reset: csr-counter;
    max-width: 1000px;
    width: 95%;
    margin: 0 auto 0;
}

#contact .contact_txt p {
    font-size: clamp(15px, 3vw, 16px);
    line-height: 1.8em;


}

#contact .contact_txt p {
    font-size: clamp(15px, 4.6vw, 16px);
    line-height: 1.8em;
    text-indent: -1em;
    padding-left: 1em;
}

#contact .contact_txt p::before {
    content: "・";
}

#contact .tel_wrap {
    width: 100%;
    margin: 50px auto 50px;
    padding: 0 0 0 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 2%;
}

#contact .tel_wrap>* {
    width: calc(33.3% - 2%);
    background-color: #E7ECF2;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 18px;
    display: flex;
    flex-direction: column;
}

#contact .tel_wrap em {
    display: block;
    font-size: 15px;
    line-height: 1.8em;
}

#contact .tel_wrap .tel_line {
    display: flex;
    align-items: center;
}

#contact .tel_wrap span {
    display: inline-flex;
    background-color: #2d6caf;
    color: #fff;
    font-size: 13px;
    padding: 5px;
    margin: 0 5px 0 0;
}

#contact .contact_formwrap {
    max-width: 1000px;
    width: 95%;
    margin: 50px auto 50px auto;
    padding: 0 0 0 0;
}

#contact .contact_formwrap ul {
    margin: 0 auto 20px auto;
    padding: 0 0 20px 0;
    border-bottom: #d3d3d3 1px solid;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

#contact .contact_formwrap ul:first-child {
    margin: 0 auto 20px auto;
    padding: 20px 0 20px 0;
    border-bottom: #d3d3d3 1px solid;
    border-top: #d3d3d3 1px solid;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}


#contact .contact_formwrap ul li {
    width: 200px;
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}

#contact .contact_formwrap ul li span {
    font-size: 13px;
    font-weight: normal;
    color: #E6012C;
    margin: 0 0 0 5px;
}

#contact .contact_formwrap ul ol {
    font-size: 16px;
    flex: 1;
}




@media screen and (max-width: 600px) {
    #contact .contact_formwrap ul li {
        width: 100%;
    }

    #contact .contact_formwrap ul ol {
        width: 100%;
        flex-basis: 100%;
        margin-top: 10px;
    }
}

/*++++++++++++++++++++++++++
form_tag
++++++++++++++++++++++++++*/


.input {
    border: none;
}

.input input {
    width: 100%;
    height: 40px;
    border-radius: 3px;
    border: 1px solid #d6dde3;
    font-size: 16px;
}


.select {
    display: flex;
    flex-wrap: wrap;
}

.select select {
    width: auto;
    height: 40px;
    border-radius: 3px;
    border: 1px solid #d6dde3;
    font-size: 16px;
}

.textarea {
    border: none;
}

.textarea textarea {
    width: 100%;
    height: 150px;
    border-radius: 3px;
    border: 1px solid #d6dde3;
    font-size: 16px;
}


.checkbox {
    display: flex;
    flex-wrap: wrap;
    gap: .5em 2em;
    border: none;
}

.checkbox label {
    display: flex;
    align-items: center;
    gap: 0 .5em;
    position: relative;
    cursor: pointer;
}

.checkbox label::before {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    border: 1px solid #d6dde3;
    content: '';
    background-color: #FFFFFF;
}

.checkbox label:has(:checked)::after {
    position: absolute;
    top: 6px;
    left: 7px;
    transform: rotate(45deg);
    width: 6px;
    height: 12px;
    border: solid #E6012C;
    border-width: 0 3px 3px 0;
    content: '';
}

.checkbox input {
    display: none;
}



@media screen and (max-width: 800px) {

    #contact .tel_wrap>* {
        width: calc(50% - 2%);
    }

}

@media screen and (max-width: 600px) {

    #contact .tel_wrap>* {
        width: 100%;
    }

}





/*++++++++++++++++++++++++++
sitepolicy
++++++++++++++++++++++++++*/


#sitepolicy .sitepolicy_wrap {
    max-width: 1000px;
    width: 95%;
    margin: 50px auto 50px;
    padding: 0 0 0 0;
}

#sitepolicy .sitepolicy_txtarea {
    font-size: clamp(15px, 3vw, 16px);
    line-height: 1.8em;
}



/*++++++++++++++++++++++++++
privacypolicy
++++++++++++++++++++++++++*/


#privacypolicy .privacypolicy_wrap {
    max-width: 1000px;
    width: 95%;
    margin: 50px auto 50px;
    padding: 0 0 0 0;
}

#privacypolicy .privacypolicy_txtarea {
    font-size: clamp(15px, 3vw, 16px);
    line-height: 1.8em;
}































































/*++++++++++++++++++++++++++
recruit
++++++++++++++++++++++++++*/
#recruit {
    position: relative;
    width: 100%;
    margin: 0 auto 0;
    padding: 0 0 0 0;
    background-image: url(../images/recruit/bk_semain.png);
    background-repeat: repeat-y;
    background-size: 120%;
    background-position: top 0 center;
}

.recruit_wrap {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 0;
    padding: 150px 0 100px 220px;
    background-image: url(../images/recruit/bk_main.png);
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: top -8% center;
}

.recruit_sewrap {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 0;
    padding: 150px 0 100px 220px;
}


@media (max-width: 1000px) and (min-width: 801px) {

    #recruit {
        min-width: 1000px;
    }

    .recruit_wrap,
    .recruit_sewrap {
        width: 1000px;
        margin: 0 auto;
    }

}

@media (max-width: 800px) {

    #recruit {
        min-width: auto;
    }

    .recruit_wrap,
    .recruit_sewrap {
        padding: 100px 0 100px 0;
        background-position: top -0% center;
    }
}



/*++++++++++++++++++++++++++
recruit_sidemenu
++++++++++++++++++++++++++*/
#recruit .sidemenu {
    position: fixed;
    top: 150px;
    left: calc((100vw - 1200px) / 2);
    z-index: 10;
}

#recruit .sidemenu_title {
    font-size: 16px;
    color: #1D5AFF;
    margin: 0 0 15px;
    padding: 0 0 5px;
    border-bottom: 1px #1D5AFF solid;
}

#recruit .sidemenu .sidemenu_link {
    font-size: 14px;
    color: #1D5AFF;
    margin: 0 0 0;
    padding: 0 0 5px;
    display: block;
}

#recruit .sidemenu .sidemenu_link::before {
    content: "▶";
    margin: 0 3px 0;
}


@media (max-width: 1250px) {
    #recruit .sidemenu {
        left: 2.5vw;
    }
}

@media (max-width: 800px) {
    #recruit .sidemenu {
        display: none;
    }
}



/*++++++++++++++++++++++++++
recruit_table
++++++++++++++++++++++++++*/
#recruit .recruit_table {
    margin: 50px auto;
    padding: 0;
    width: 95%;

}

#recruit .recruit_table ul {
    margin: 0;
    padding: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    background-color: #F7F7F7;
}

#recruit .recruit_table ul:nth-child(2n) {
    background-color: #fff;
}



#recruit .recruit_table li {
    width: 150px;
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    padding: 5px;

}

#recruit .recruit_table ol {
    font-size: 16px;
    flex: 1;
    padding: 5px;
}

#recruit .recruit_table .recruit_img {
    max-width: 300px;
    width: 100%;
    margin: 10px 0 0;
    padding: 5px;
}

#recruit .recruit_table a {
    text-decoration: underline;
}


@media (max-width: 600px) {
    #recruit .recruit_table li {
        width: 100%;
        margin: 0 0 5px;
    }

    #recruit .recruit_table .recruit_img {
        margin: 10px auto 0;
    }

}


/*++++++++++++++++++++++++++
requirements_title
++++++++++++++++++++++++++*/

.requirements_title{
        width: 95%;
    font-size: clamp(25px, 3vw, 30px);
    font-family: "Noto Sans JP";
    font-weight: 600;
    color: #1D5AFF;
    padding: 0 0 00px;
    margin: 0 auto 30px;
    border-bottom: 1px solid #1D5AFF ;
}


/*++++++++++++++++++++++++++
requirements_btn
++++++++++++++++++++++++++*/

.requirements_btn{
    max-width: 450px;
    width: 95%;
    padding: 0 0 0px;
    margin: 0 auto 0;
}

.requirements_btn a.wp-block-button__link{
    text-align: left !important;
}


/*++++++++++++++++++++++++++
requirements_btn2
++++++++++++++++++++++++++*/

.requirements_btn2{
    max-width: 450px;
    width: 95%;
    padding: 0 0 0px;
    margin: 0 auto 0;
    text-align: center !important;
}

.requirements_btn2 a.wp-block-button__link{
    background-color: #364a76 !important;
    border-radius: 10px !important;
    border: 1px solid #fff !important;
    color: #FFF !important;
    padding: 16px 15px !important;
}




/*++++++++++++++++++++++++++
recruit_mainvisual
++++++++++++++++++++++++++*/
#recruit .mainvisual_wrap {
    position: relative;
    width: 95%;
    margin: 0 auto 0;
    padding: 0 0 100px 0;
    clear: both;
}

#recruit .mainvisual {
    max-width: 1000px;
    width: 100%;
}

#recruit .mainvisual_txt {
    margin: -60px 0 0 0;
    width: 55%;
}

#recruit .mainvisual_txt p {
    font-size: 16px;
    margin: 0 0 10px;
}


@media (max-width: 600px) {
    #recruit .mainvisual_wrap {
        margin: -30px auto 0;
    }

    #recruit .mainvisual {
        position: initial;
        width: 120%;
        margin-left: 50%;
        transform: translateX(-50%);
    }

    #recruit .mainvisual_txt {
        margin: 10px 0 0 0;
        font-size: 14px;
        top: 100%;
        left: 0;
        width: 100%;
    }

    #recruit .mainvisual_txt p {
        font-size: 14px;
        margin: 0 0 10px;
    }

}


/*++++++++++++++++++++++++++
recruit_topnews
++++++++++++++++++++++++++*/
#recruit_news {
    position: relative;
    width: 95%;
    margin: 0 auto 100px;
    padding: 0 0 0 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}


#recruit_news .news_left {
    flex-basis: 180px;
    padding: 0 70px 0 0;
    margin: 0 0 0 0;
}

#recruit_news .news_right {
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    width: 100%;
}


#recruit_news .news_tilte {
    position: relative;
    font-size: clamp(27px, 4.6vw, 30px);
    font-weight: 700;
    color: #1D5AFF;
    margin: 0 0 50px 0;
    padding: 10px 0 0 0;
    font-family: "Noto Sans JP";
}

#recruit_news .news_tilte::after {
    position: absolute;
    content: "";
    border-top: 3px solid #1D5AFF;
    top: 0;
    left: 0;
    width: 60px;
}

#recruit_news .news_clickhere {
    display: block;
    border: 1px solid #1D5AFF;
    width: 180px;
    color: #1D5AFF;
    text-align: center;
    font-size: 16px;
    padding: 5px;
    margin: 0 0 30px 0;
}

#recruit_news .news_article,
#recruit_news .news_article {
    padding: 0 0 0 0;
    margin: 0 0 30px 0;
    border-bottom: 1px dotted #919191;
    width: 100%;
    display: block;
}

#recruit_news .news_day,
#recruit_news .news_day {
    font-size: 16px;
    color: #1D5AFF;
    padding: 0 0 0 0;
    margin: 0 0 10px 0;
}

#recruit_news .news_content,
#recruit_news .news_content {
    font-size: 16px;
    padding: 0 0 0 0;
    margin: 0 0 30px 0;
}

@media screen and (max-width: 800px) {
    #recruit_news {
        flex-wrap: wrap;
    }

    #recruit_news .news_left {
        flex-basis: 100%;
        padding: 0 0 0 0;
        margin: 0 0 0 0;
    }

    #recruit_news .news_tilte {

        margin: 0 0 20px 0;
    }

}



/*++++++++++++++++++++++++++
recruit_news
++++++++++++++++++++++++++*/
.recruit_senews {
    position: relative;
    width: 95%;
    margin: 0 auto 100px;
    padding: 30px 0 0 0;
    display: block !important;
}





/*++++++++++++++++++++++++++
topmiryoku
++++++++++++++++++++++++++*/
#appeal {
    position: relative;
    width: 95%;
    margin: 0 auto 50px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* 斜めの水色ライン */
#appeal::before {
    content: "";
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%) skewY(-16deg);
    width: 120vw;
    height: 380px;
    background: #E5FFFF;
    z-index: -1;
}


#appeal .appeal_left {
    width: 40%;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
}

#appeal .appeal_right {
    width: 55%;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
}

#appeal .appeal_right img {
    clip-path: polygon(0 14%, 100% 0, 100% 100%, 0 86%);
}

#appeal .appeal_tilte {
    position: relative;
    display: inline-block;
    font-size: clamp(28px, 4.6vw, 35px);
    font-weight: 700;
    letter-spacing: 0.08em;
    font-family: "Noto Sans JP";
    color: #1D5AFF;
    margin: 80% 0 20px 0;
}

#appeal .appeal_tilte::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 1px;
    background: #1D5AFF;
}

#appeal .appeal_enstilte {
    display: block;
    font-size: clamp(13px, 2vw, 16px);
    color: #1D5AFF;
    margin: 0 0 50px 0;
    padding: 0 0 0 0;
}

#appeal .appeal_clickhere {
    display: block;
    border: 1px solid #1D5AFF;
    width: 180px;
    color: #1D5AFF;
    text-align: center;
    font-size: 16px;
    padding: 5px;
    margin: 0 0 30px 0;
}

#appeal .appeal_img {
    max-width: 430px;
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 50px 20px 0 20px;
    margin: 0 auto 0 auto;
}

#appeal .appeal_kazari {
    display: block;
    max-width: 215px;
    width: 100%;
    padding: 0 0 0 0;
    margin: 0 0 0 auto;
}


@media screen and (max-width: 800px) {

    #appeal .appeal_tilte {
        margin: 0 0 20px 0;
    }

    #appeal .appeal_enstilte {
        margin: 0 0 20px 0;
        padding: 0 0 0 0;
    }

    #appeal .appeal_clickhere {
        margin: 0 0 30px 0;
    }

    #appeal .appeal_left {
        width: 100%;
        padding: 0 0 0 0;
        margin: 0 0 0 0;
    }

    #appeal .appeal_right {
        width: 100%;
        margin: 0 0 20px 0;
    }

    #appeal .appeal_img {
        padding: 0 0 0 0;
        margin: -50px auto 0 auto;
    }

    #appeal .appeal_kazari {
        display: none;
    }

    #appeal::before {
        top: 150px;
    }

}



/*++++++++++++++++++++++++++
message
++++++++++++++++++++++++++*/
#message {
    position: relative;
    width: 95%;
    margin: 0 auto 150px;
    padding: 0;
}

#message .message_tilte {
    position: relative;
    display: inline-block;
    font-size: clamp(28px, 4.6vw, 35px);
    font-weight: 700;
    letter-spacing: 0.08em;
    font-family: "Noto Sans JP";
    color: #1D5AFF;
    margin: 0% 0 20px 0;
}

#message .message_tilte::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 1px;
    background: #1D5AFF;
}

#message .message_enstilte {
    display: block;
    font-size: clamp(13px, 2vw, 16px);
    color: #1D5AFF;
    margin: 0 0 50px 0;
    padding: 0;
}

#message .message_photo {
    margin: 0;
    padding: 0;
    line-height: 0;
}

#message .message_photo img {
    display: block;
    width: 100%;
    height: auto;
    clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 80%);
}





/* =========================
   PC（デフォルト）：羅列
========================= */
#message .message_wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 2%;
    margin: 0;
    padding: 0;
}

/* 3カラム */
#message .message_content {
    width: calc(33% - 2%);
    margin: 0;
    padding: 0;
}

/* 段差（PCだけで使う） */
#message .message_content:nth-child(2) {
    margin-top: 40px;
}

#message .message_content:nth-child(3) {
    margin-top: 80px;
}

#message .message_content:nth-child(4) {
    margin-top: 0px;
}

#message .message_content:nth-child(5) {
    margin-top: 40px;
}

#message .message_content:nth-child(6) {
    margin-top: 80px;
}

#message .message_name {
    position: relative;
    font-size: clamp(15px, 2vw, 16px);
    color: #1D5AFF;
    margin: -20px 0 30px 0;
    padding: 0;
    width: 100%;
}

#message .message_name::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80%;
    height: 2px;
    background: #80CEFF;
}

#message .message_more {
    display: block;
    max-width: 135px;
    width: 100%;
    text-align: center;
    font-size: clamp(15px, 2vw, 16px);
    color: #1D5AFF;
    margin: 0;
    padding: 5px;
    border: 1px #1D5AFF solid;
    border-radius: 100vh;
}

/* PCではSwiperコンテナ扱い（隠さない） */
#message .recruit_swiper {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: visible;
    /* ← PCは見切れないように */
}

/* PCは矢印非表示（Swiper動かさない想定） */
#message .swiper-button-prev,
#message .swiper-button-next {
    display: none;
}

/* =========================
   PC（801px以上）：Swiper用
========================= */
@media screen and (min-width: 801px) {

    #message .swiper-wrapper {
        display: flex;
        flex-wrap: wrap;
        /* ←ここが重要 */
        justify-content: flex-start;
        gap: 2%;
        transform: none !important;
        /* Swiperのtransform残り対策 */
    }

    #message .swiper-slide {
        width: calc(33.333% - 2%) !important;
        /* Swiperのinline width対策 */
    }
}

/* =========================
   SP（800px以下）：Swiper用
========================= */
@media screen and (max-width: 800px) {

    /* Swiperはwrapperを横並びにするので、flex羅列を解除 */
    #message .message_wrap {
        display: block;
        flex-wrap: initial;
        gap: 0;
    }

    /* Swiper用：スライド幅はSwiperに任せる */
    #message .message_content {
        width: auto;
        /* ← calc(33%...) を無効化 */
        margin: 0;
        padding: 0;
    }

    /* SPは段差いらないなら全部リセット */
    #message .message_content:nth-child(2),
    #message .message_content:nth-child(3),
    #message .message_content:nth-child(4),
    #message .message_content:nth-child(5),
    #message .message_content:nth-child(6) {
        margin-top: 0;
    }

    /* Swiperは見切れを作るため overflow hidden */
    #message .recruit_swiper {
        max-width: 800px;
        width: 100%;
        margin: auto;
        padding: 0;
        overflow: hidden;
    }

    /* SPだけ矢印表示 */
    #message .swiper-button-prev,
    #message .swiper-button-next {
        display: block;
    }
}


/*++++++++++++++++++++++++++
message_second
++++++++++++++++++++++++++*/

#message_second {
    position: relative;
    width: 95%;
    margin: 0 auto 100px;
    padding: 0;
}

#message_second .message_wrap {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0 50px;
    overflow: hidden;
    box-sizing: border-box;
}

#message_second .swiper-wrapper {
    align-items: flex-start;
}

#message_second .message_content {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#message_second .message_photo {
    margin: 0;
    padding: 0;
    line-height: 0;
}

#message_second .message_photo img {
    display: block;
    width: 100%;
    height: auto;
    clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 80%);
}

#message_second .message_name {
    position: relative;
    font-size: clamp(15px, 2vw, 16px);
    color: #1D5AFF;
    margin: -20px 0 30px 0;
    padding: 0;
    width: 100%;
}

#message_second .message_name::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80%;
    height: 2px;
    background: #80CEFF;
}

#message_second .message_more {
    display: block;
    max-width: 135px;
    width: 100%;
    text-align: center;
    font-size: clamp(15px, 2vw, 16px);
    color: #1D5AFF;
    margin: 0;
    padding: 5px;
    border: 1px #1D5AFF solid;
    border-radius: 100vh;
    text-decoration: none;
    box-sizing: border-box;
}

/* 矢印 */
#message_second .swiper-button-prev,
#message_second .swiper-button-next {
    width: 40px;
    height: 40px;
    color: #1D5AFF;
}

#message_second .swiper-button-prev::after,
#message_second .swiper-button-next::after {
    font-size: 20px;
    font-weight: bold;
}

#message_second .swiper-button-prev {
    left: 0;
}

#message_second .swiper-button-next {
    right: 0;
}

/* PC */
@media screen and (min-width: 801px) {
    #message_second .message_wrap {
        padding: 0 50px;
    }
}

/* SP */
@media screen and (max-width: 800px) {
    #message_second .message_wrap {
        padding: 0 30px;
    }

    #message_second .swiper-button-prev,
    #message_second .swiper-button-next {
        width: 30px;
        height: 30px;
    }

    #message_second .swiper-button-prev::after,
    #message_second .swiper-button-next::after {
        font-size: 16px;
    }
}








/*++++++++++++++++++++++++++
support
++++++++++++++++++++++++++*/
#support {
    width: 95%;
    padding: 30px 0;

    /* 青＋グレー半々 */
    background: linear-gradient(to bottom,
            #80CEFF 0%,
            #80CEFF 50%,
            #E5E5E5 50%,
            #E5E5E5 100%);
    margin: 0 auto 100px auto;
}

/* 白ボックス */
#support .support_inner {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    padding: 50px 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

/* 左右 */
#support .support_left {
    width: 60%;
}

#support .support_right {
    width: 40%;
}

/* タイトル */
#support .support_tilte {
    position: relative;
    display: inline-block;
    font-size: clamp(27px, 4.6vw, 35px);
    font-weight: 700;
    letter-spacing: 0.08em;
    font-family: "Noto Sans JP";
    color: #1D5AFF;
    margin: 0 0 20px 0;
}

#support .support_tilte::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 1px;
    background: #1D5AFF;
}

/* 英語 */
#support .support_enstilte {
    font-size: clamp(13px, 2vw, 16px);
    color: #1D5AFF;
    margin: 0 0 50px 0;
}

/* ボタン */
#support .support_clickhere {
    display: inline-block;
    border: 1px solid #1D5AFF;
    width: 180px;
    color: #1D5AFF;
    text-align: center;
    font-size: 16px;
    padding: 8px;
    text-decoration: none;
}

/* 画像 */
#support .support_img {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

#support .support_img img {
    width: 100%;
    height: auto;
    display: block;
}


@media screen and (max-width: 800px) {

    #support {
        width: 100%;
        padding: 20px 0;
    }

    #support .support_inner {
        padding: 40px 20px;
    }

    #support .support_left,
    #support .support_right {
        width: 100%;
    }

    #support .support_right {
        margin-top: 30px;
    }

    #support .support_enstilte {
        margin: 0 0 20px 0;
    }
}


/*++++++++++++++++++++++++++
セカンドsupport
++++++++++++++++++++++++++*/

.support_wrap {
    position: relative;
    width: 95%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 auto 100px auto;
    padding: 0 0 0 0;
    gap: 0 2%;
}

.support_wrap .support_se_left {
    width: 54%;
    padding: 0 10px;
    margin: 0;
}

.support_wrap .support_se_right {
    width: 44%;
    padding: 0 10px;
    margin: 0;
}

.support_wrap .flex_50 {
    width: 49%;
    padding: 0 10px;
    margin: 0;
}

.support_wrap .support_h2 {
    width: 100%;
    font-size: clamp(25px, 3vw, 30px);
    font-family: "Noto Sans JP";
    font-weight: 600;
    color: #1D5AFF;
    padding: 0;
    margin: 0 0 30px;
}


.support_wrap .support_h3 {
    font-size: clamp(18px, 3vw, 20px);
    color: #1D5AFF;
    font-family: "Noto Sans JP";
    font-weight: 600;
    padding: 0;
    margin: 0 0 10px;
}

.support_wrap .support_h4 {
    font-size: clamp(18px, 3vw, 20px);
    font-family: "Noto Sans JP";
    font-weight: 600;
    padding: 0;
    margin: 0 0 30px;
    text-align: center;
}


.support_wrap .support_txt {
    font-size: clamp(15px, 3vw, 16px);
    padding: 0;
    margin: 0 0 30px;
}


.support_wrap .data_txt1 {
    font-size: clamp(15px, 3vw, 16px);
    padding: 0;
    margin: 0 0 0px;
}

.support_wrap .data_txt2 {
    font-size: clamp(50px, 3vw, 70px);
    color: #1D5AFF;
    padding: 0 0 0 20px;
    line-height: 1.1em;
    margin: 0 0 20px;
    text-align: left;
}

.support_wrap .data_txt2 span {
    font-size: clamp(30px, 3vw, 40px);
}


.support_wrap .support_line {
    border-right: #7c7c7c dotted 1px;
}

.support_wrap .support_photo {
    max-width: 600px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 0;
}


@media (max-width:800px) {
    .support_wrap .support_se_left {
        width: 100%;
        padding: 0 0;
        margin: 0;
    }

    .support_wrap .support_se_right {
        width: 100%;
        padding: 0 0;
        margin: 0;
    }

    .support_wrap .support_line {
        border-right: #7c7c7c dotted 0px;
    }

    .support_wrap .data_txt2 {
        display: inline-block;
    }


}



.support_wrap .card {
      background: #fff;
      border-radius: 16px;
      padding: 0rem 2.5rem;
      width: 100%;
    }

.support_wrap .chart-area {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      align-items: center;
      justify-content: center;
    }

.support_wrap .donut-wrapper {
      position: relative;
      width: 260px;
      height: 260px;
      flex-shrink: 0;
    }

.support_wrap .donut-center {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      pointer-events: none;
    }

.support_wrap .donut-center .total { font-size: 28px; font-weight: 500; color: #1a1a18; line-height: 1.1; }
.support_wrap .donut-center .label { font-size: 12px; color: #6b6b67; margin-top: 2px; }

.support_wrap .legend { display: flex; flex-direction: column; gap: 10px; min-width: 200px; flex: 1; }

.support_wrap .legend-row { display: flex; align-items: center; gap: 10px; }
.support_wrap .legend-swatch { width: 12px; height: 12px; border-radius: 2px; flex-shrink: 0; }
.support_wrap .legend-age { font-size: 13px; color: #6b6b67; width: 36px; }
.support_wrap .legend-bar-track { flex: 1; height: 6px; background: #efefec; border-radius: 3px; overflow: hidden; }
.support_wrap .legend-bar-fill { height: 100%; border-radius: 3px; }
.support_wrap .legend-value { font-size: 13px; font-weight: 500; color: #1a1a18; min-width: 80px; text-align: right; }

    @media (max-width: 480px) {
.support_wrap .card { padding: 1.25rem; }
.support_wrap .donut-wrapper { width: 220px; height: 220px; }
    }






















/*++++++++++++++++++++++++++
flow
++++++++++++++++++++++++++*/
#flow {
    position: relative;
    width: 95%;
    margin: 0 auto 150px;
    padding: 0;
}


#flow .flow_tilte {
    position: relative;
    display: block;
    font-size: clamp(28px, 4.6vw, 35px);
    font-family: "Noto Sans JP";
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #1D5AFF;
    margin: 0% 0 20px 0;
    text-align: center;
}

#flow .flow_tilte::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 1px;
    background: #1D5AFF;
}

#flow .flow_enstilte {
    display: block;
    font-size: clamp(13px, 2vw, 16px);
    color: #1D5AFF;
    margin: 0 0 50px 0;
    padding: 0 0 0 0;
    text-align: center;
}


@media (max-width:800px) {
    #flow .flow_tilte {
        display: inline-block;
        text-align: left;
    }

    #flow .flow_enstilte {
        text-align: left;
    }

}


/*==============================
#flow .step
==============================*/

#flow .step_wrap {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 40px 3%;
}

#flow .step_box {
    position: relative;
    width: 30%;
    padding: 30px 10px;
    box-sizing: border-box;
    border-bottom: 1px solid #707070;
}

#flow .step_box::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    --corner-v: 20px;
    --corner-h: 60px;

    background:
        linear-gradient(#707070, #707070) left top / var(--corner-h) 1px no-repeat,
        linear-gradient(#707070, #707070) left top / 1px var(--corner-v) no-repeat,
        linear-gradient(#707070, #707070) right top / var(--corner-h) 1px no-repeat,
        linear-gradient(#707070, #707070) right top / 1px var(--corner-v) no-repeat,
        linear-gradient(#707070, #707070) left bottom / 1px var(--corner-v) no-repeat,
        linear-gradient(#707070, #707070) right bottom / 1px var(--corner-v) no-repeat;
}

/* 矢印（1→2、2→3、4→5 だけ表示） */
#flow .step_box:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -35px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: url("../images/recruit/recruit_arrow.svg") no-repeat center / contain;
}

/* 3の後（=3番目）と、最終（=5番目）は矢印なし */
#flow .step_box:nth-child(3)::after,
#flow .step_box:nth-child(5)::after {
    display: none;
}

#flow .step_number {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    font-size: 16px;
}

#flow .step_icon {
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

#flow .step_title {
    margin: 0 auto 20px;
    padding: 0;
    text-align: center;
    color: #2EA6FF;
    height: 2.5em;
}

#flow .step_txt {
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.8em;
}

@media (max-width:800px) {
    #flow .step {
        flex-direction: column;
        gap: 30px;
    }

    #flow .step_box {
        max-width: 550px;
        width: 100%;
        padding: 40px 20px;
        margin: auto;
    }

    #flow .step_box:not(:last-child)::after {
        display: none;
    }
}




/*++++++++++++++++++++++++++
faq
++++++++++++++++++++++++++*/
#faq {
    position: relative;
    width: 95%;
    margin: 0 auto 100px;
    padding: 0;
}


#faq .faq_tilte {
    position: relative;
    display: block;
    font-size: clamp(28px, 4.6vw, 35px);
    font-weight: 700;
    letter-spacing: 0.08em;
    font-family: "Noto Sans JP";
    color: #1D5AFF;
    margin: 0% 0 20px 0;
    text-align: center;
}

#faq .faq_tilte::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 1px;
    background: #1D5AFF;
}

#faq .faq_tilte::before {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 180px;
    height: 135px;
    background: url("../images/recruit/faq_tilte_illust.svg") no-repeat center / contain;

}

#faq .faq_enstilte {
    display: block;
    font-size: clamp(13px, 2vw, 16px);
    color: #1D5AFF;
    margin: 0 0 50px 0;
    padding: 0 0 0 0;
    text-align: center;
}



#faq .faq_wrap {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 40px 3%;
}

#faq .faq_box {
    position: relative;
    width: 30%;
    margin: 0 0 30px 0;
    padding: 0;
}

#faq .bubble {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 150px;
    margin-bottom: 10px;
    padding: 16px;
    border: 1px solid #8c8c8c;
    border-radius: 20px;
    background-color: #ffffff;
    text-align: left;
    line-height: 1.5;
    color: #000000;
    font-family: "Noto Sans JP";
    font-weight: 700;
    font-size: clamp(16px, 4.6vw, 20px);
}

#faq .bubble::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 24%;
    border-style: solid;
    border-width: 25px 30px 0 0;
    border-color: #8c8c8c transparent transparent;
    translate: -50% 100%;
    transform: skew(60deg);
    transform-origin: top;
}

#faq .bubble::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 24%;
    border-style: solid;
    border-width: 22.9px 27.4px 0 0;
    border-color: #ffffff transparent transparent;
    translate: calc(-50% - 0.3px) 100%;
    transform: skew(60deg);
    transform-origin: top;
}

#faq .faq_answer {
    position: relative;
    margin: 20px 0 0 0;
    padding: 0;
}

#faq .faq_answer_illust {
    position: absolute;
    bottom: 1px;
    right: 10px;
    z-index: 1;
    width: clamp(70px, 10vw, 96px);
}

#faq .faq_answer_titie {
    font-size: clamp(17px, 3vw, 20px);
    color: #1D5AFF;
    font-weight: bold;
    margin: 0 auto 10px;
    position: relative;
    display: block;
    padding: 0 0 12px 0;
    cursor: pointer;
}

#faq .faq_arrow {
    margin: 0 5px -3px 0;
    padding: 0;
    transition: transform 0.3s ease;
    transform: rotate(0deg);
    transform-origin: center;
}

/* 開いた時の矢印 */
#faq .faq_answer_titie.active .faq_arrow {
    transform: rotate(90deg);
}

/* ライン */
#faq .faq_answer_titie::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 2px;
    background: #1D5AFF;
}

/* ラインの三角 */
#faq .faq_answer_titie::before {
    content: "";
    position: absolute;
    left: 60px;
    bottom: 0;
    width: 12px;
    height: 12px;
    background: #fff;
    border-left: 2px solid #1D5AFF;
    border-bottom: 2px solid #1D5AFF;
    transform: rotate(-45deg);
    z-index: 1;
}

/* 閉じた状態 */
#faq .faq_answer_txt {
    font-size: clamp(14px, 3vw, 16px);
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding-top 0.25s ease;
}

/* 開いた状態 */
#faq .faq_answer_txt.open {
    max-height: 300px;
    opacity: 1;
    padding-top: 8px;
}

@media (max-width:800px) {

    #faq .faq_tilte {
        display: block;
        text-align: left;
    }

    #faq .faq_enstilte {
        text-align: left;
    }

    #faq .faq_tilte::before {
        width: 120px;
        height: 80px;
    }

    #faq .faq_box {
        width: 48%;
        margin: 0 0 30px 0;
    }
}




/*++++++++++++++++++++++++++
recruit_button
++++++++++++++++++++++++++*/
#recruit_button {
    position: relative;
    width: 95%;
    margin: 100px auto 50px;
    padding: 0;
}

#recruit_button .button_wrap {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 40px 3%;
}

#recruit_button .button_box {
    width: 48%;
    margin: 0 0 30px 0;
    padding: 0;
}

#recruit_button .button_txt {
    font-size: clamp(14px, 4.6vw, 16px);
    text-align: center;
    margin: 0 0 20px 0;
    padding: 0;
}

#recruit_button .recruit_button {
    display: block;
    font-size: clamp(14px, 4.6vw, 18px);
    background: linear-gradient(to bottom,
            #46B1FF 0%,
            #0F05FF 100%);
    color: #fff;
    font-weight: bold;
    text-align: center;
    margin: 0 auto 0 auto;
    padding: 10px;
    border-radius: 100vh;
}

#recruit_button .shisotsu {
    background: linear-gradient(to bottom,
            #46B1FF 0%,
            #0F05FF 100%);
}

#recruit_button .career {
    background: linear-gradient(to bottom,
            #9C49FD 0%,
            #7800B7 100%);
}

#recruit_button .button_arrow {
    margin: 0 0 -5px 20px;
    padding: 0;

}




@media (max-width:800px) {

    #recruit_button .button_box {
        width: 100%;
        margin: 0 0 0 0;
        padding: 0;
    }

}







/*++++++++++++++++++++++++++
recruit_se
++++++++++++++++++++++++++*/



#recruit .recruit_se_tilte {
    position: relative;
    display: block;
    font-size: clamp(28px, 4.6vw, 35px);
    font-weight: 700;
    letter-spacing: 0.08em;
    font-family: "Noto Sans JP";
    color: #1D5AFF;
    margin: 0 auto 20px auto;
    text-align: center;
}

#recruit .recruit_se_tilte::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    width: 50px;
    height: 1px;
    background: #1D5AFF;
    text-align: center;
    margin: auto;

}

#recruit .recruit_se_enstilte {
    display: block;
    font-size: clamp(14px, 2vw, 16px);
    color: #1D5AFF;
    margin: 0 0 20px 0;
    padding: 0;
    text-align: center;
}

#recruit .recruit_se_txt {
    display: block;
    font-size: clamp(14px, 2vw, 15px);
    color: #000000;
    margin: 0 0 50px 0;
    padding: 0;
    text-align: center;
    line-height: 1.8em;
}



/*++++++++++++++++++++++++++
messagetitle
++++++++++++++++++++++++++*/


#recruit .messagetitle {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0 3%;
    margin: -50px 0 100px 0;
    padding: 0 0 0 0;
}

#recruit .messagetitle_photo {
    width: 48%;
    margin: 0 auto 0 auto;
    padding: 0 0 0 0;
    text-align: center;

}

#recruit .messagetitle_photo img {
    max-width: 600px;
    width: 100%;
    clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 80%);
}

#recruit .messagetitle_txtwrap {
    width: 48%;
    margin: 13% 0 0 0;
    padding: 0 0 0 0;
}

#recruit .messagetitle_txt {
    font-size: 18px;
    font-weight: bold;
    line-height: 2.0em;
    margin: 0 0 20px 0;
    padding: 0 0 0 0;

}

#recruit ul.messagetitle_list,
#recruit li.messagetitle_list {
    font-size: 18px;
    margin: 0 0 5px 0;
    padding: 0 0 5px 0;
    color: #1D5AFF;
    border-bottom: 1px solid #80CEFF;
}

#recruit li.messagetitle_list {
    font-size: 15px;
}



@media screen and (max-width: 800px) {

    #recruit .messagetitle_photo {
        width: 100%;
        margin: 0 0 0 0;
        padding: 0 0 0 0;
    }

    #recruit .messagetitle_txtwrap {
        width: 95%;
        margin: 0 auto 0 auto;
        padding: 0 0 0 0;
    }

}



/*++++++++++++++++++++++++++
message_content
++++++++++++++++++++++++++*/
#recruit .message_content {
    width: 95%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 auto 0 auto;
    padding: 0 0 50px 0;
    gap: 0 4%;
}

#recruit .message_content_txtwrap {
    width: 48%;
    font-size: 16px;
    line-height: 1.8em;
    margin: 0 auto 20px auto;
}

#recruit .noflex {
    width: 100%;
}

#recruit .message_content_title {
    font-size: 20px;
    font-weight: 700;
    font-family: "Noto Sans JP";
    margin: 0 0 10px 0;
    padding: 0 0 0 0;
    color: #1D5AFF;
}

#recruit .message_content_photo {
    width: 48%;
    margin: 0 auto 0 auto;
    padding: 0 0 0 0;
    text-align: center;
}

#recruit .message_content_photo img {
    max-width: 600px;
    width: 100%;
}

@media screen and (max-width: 800px) {
    #recruit .message_content_txtwrap {
        width: 100%;
    }

    #recruit .message_content_photo {
        width: 100%;
    }

}




/*++++++++++++++++++++++++++
appeal_content
++++++++++++++++++++++++++*/
#recruit .appeal_content {
    position: relative;
    width: 95%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    margin: 0 auto 0 auto;
    padding: 0 0 0 0;
    gap: 0 2%;
}

#recruit .reverse {
    flex-direction: row-reverse;
}


#recruit .diagonal_l::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%) skewY(-14deg);
    width: 120vw;
    height: 330px;
    background: #E5FFFF;
    z-index: -1;
}

#recruit .diagonal_r::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%) skewY(14deg);
    width: 120vw;
    height: 330px;
    background: #E5FFFF;
    z-index: -1;
}


#recruit .appeal_photo {
    top: 0;
    left: 0;
    width: 48%;
    margin: 0 auto 20px auto;
    padding: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

#recruit .clippy1 {
    aspect-ratio: 1 / 1;
    clip-path: polygon(0 25%, 100% 0%, 100% 75%, 0% 100%);
}

#recruit .clippy2 {
    aspect-ratio: 2 / 1;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 50%);
}

#recruit .clippy3 {
    aspect-ratio: 1 / 1;
    clip-path: polygon(0 0, 100% 25%, 100% 100%, 0 75%);
}

#recruit .clippy4 {
    aspect-ratio: 2 / 1;
    clip-path: polygon(0 0, 100% 50%, 100% 50%, 0 100%);
}

#recruit .appeal_txtwrap {
    top: 0%;
    left: 50%;
    width: 48%;
    line-height: 1.8em;
    margin: 0px auto 20px auto;
    padding: 0% 0px 0;
}

#recruit .appeal_title {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 600;
    font-family: "Noto Sans JP";
    line-height: 1.8em;
    margin: 0 auto 10px auto;
    padding: 0 0;
}

#recruit .appeal_txt {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.8em;
    margin: 0 auto;
    padding: 0 0;
}

#recruit .position {
    margin-top: -100px;
}



@media screen and (max-width: 650px) {

    #recruit .appeal_photo {
        width: 100%;
    }

    #recruit .appeal_txtwrap {
        width: 100%;
    }

    #recruit .position {
        margin-top: 0px;
    }

}







.wp-block-table {
    width: 95%;
    margin: auto;
}

.wp-block-table table {
    min-width: initial;
    margin: auto;
    overflow-x: initial !important;
    table-layout: auto;
}

.wp-block-table table td,
.wp-block-table table th {
    border: 0px solid #D3D3D3;
    color: #484848;
    padding: 15px 10px;
    text-align: center;
    background-color: #F7F7F7;
}

.wp-block-table table td {
    text-align: left;
}

.wp-block-table table th {
    text-align: center;
    white-space: nowrap;
}
.wp-block-table table tr:nth-child(2n) td,
.wp-block-table table tr:nth-child(2n) th {
    background-color: #fff;
}

.wp-block-table table tr>*:first-child {
    border-left: none;
}

.wp-block-table table tr>*:last-child {
    border-right: none;
}



@media screen and (max-width: 650px) {

    .wp-block-table table td,
    .wp-block-table table th {
        display: block;
        width: 100%;
        text-align: left;
    }


.wp-block-table table th {
    padding: 15px 10px 5px 10px;
}

.wp-block-table table td {
    padding: 5px 10px 15px 10px;
}



}



.wp-block-button a.wp-block-button__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* 左右に配置 */
    color: #2d6caf;
    font-size: 18px;
    padding: 16px 30px;
    /* 左右の余白を少し広めに */
    border-radius: 100vh;
    background-color: #fff;
    border: 1px solid #d3d3d3;
    width: 100%;
    text-decoration: none;
    transition: 0.3s;
    box-sizing: border-box;
    margin: 0;
}


/* 矢印を擬似要素で追加 */
.wp-block-button a.wp-block-button__link::after {
    content: "\2192";
    /* 矢印記号 */
    display: inline-block;
    margin-left: 30px;
    transition: transform 0.3s;
}

/* hover時 */
.wp-block-button a.wp-block-button__link:hover::after {
    transform: translateX(5px);
}

@media screen and (max-width: 600px) {
    .wp-block-button a.wp-block-button__link {
        margin: auto;
    }

}












/*++++++++++++++++++++++++++
footer
++++++++++++++++++++++++++*/
footer {
    width: 100%;
    background-color: #122F4E;
    color: #fff;
    margin: 0 0 0;
    padding: 80px 0 100px;
}

footer .footer_wap {
    max-width: 1000px;
    width: 95%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;

}

footer .footer_wap>* {
    flex-basis: calc(50% - 2%);
}

footer .footer_logo {
    max-width: 400px;
    width: 100%;
    padding: 0 0 50px;
}

footer .footer_name {
    font-size: clamp(16px, 4vw, 18px);
    font-weight: bold;
    padding: 0 0 20px;
}

footer .footer_access {
    font-size: clamp(14px, 4vw, 16px);
    line-height: 2.0em;
    padding: 0 0 30px;
}

footer .footer_grouptitle {
    font-size: 20px;
    font-weight: bold;
    padding: 30px 0 10px;
}

footer a.footer_corplink {
    font-size: 16px;
    padding: 0 0 10px;
    color: #8D9AB7;
    display: block;
}

footer .footer_linklistwrap {
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer .footer_linklistwrap>* {
    flex-basis: calc(100% / 2);
}



footer a.footer_link {
    font-size: 16px;
    padding: 0 0 10px;
    color: #fff;
    display: block;
}

footer a.footer_linksub {
    font-size: 14px;
    padding: 0 0 10px;
    color: #8D9AB7;
    display: block;
}

footer .line {
    border-bottom: #7F89A0 1px solid;
    padding: 0 0 30px;
    margin: 0 0 30px;
    width: 100%;
    flex-basis: 100%;
}

footer .copyright {
    font-size: 13px;
    color: #8D9AB7;
}

footer a.pagetop {
    display: block;
    font-size: 16px;
    color: #fff;
    margin: 0 0 0 auto;
    padding: 0 50px 0 0;
    text-align: right;
    position: relative;
}

footer a.pagetop::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%) rotate(-90deg);
    width: 40px;
    height: 40px;
    background-image: url(../images/arrow_b.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: block;
    transition: transform 0.3s;
}

@media screen and (max-width: 600px) {

    footer .footer_wap>* {
        flex-basis: calc(100% / 1);
    }

    footer a.footer_linksub {
        display: none;
    }

    footer .footer_linklistwrap>* {
        flex-basis: calc(100% / 1);
    }

    footer .footer_linklistwrap {
        margin: 30px auto 0;
        padding: 0;
    }

    footer a.footer_link {
        border-bottom: #7f89a0bb solid 1px;
        margin: 0 0 10px;
    }


}



/*++++++++++
pagenation
++++++++++++++*/


.wp-pagenavi {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 80px;
}

.wp-pagenavi span.current {
    display: block;
    font-size: 17px;
    line-height: 1.4em;
    font-weight: 600;
    text-align: center;
    color: #FFFFFF;
    margin: auto 10px;
    background-color: #2d6caf;
    width: 35px;
    height: 35px;
    padding: 7px 0 0 0;
    border-radius: 8px;
}

.wp-pagenavi a.page {
    display: block;
    font-size: 17px;
    line-height: 1.4em;
    font-weight: normal;
    text-align: center;
    color: #c1c1c1;
    margin: auto 10px;
    background-color: #E7ECF2;
    width: 35px;
    height: 35px;
    padding: 7px 0 0 0;
    border-radius: 8px;
}

.wp-pagenavi .nextpostslink {
    position: relative;
    color: transparent;
    /* テキストの色を透明にする */
    font-size: 0;
    /* テキストを見えなくする */
}

.wp-pagenavi .nextpostslink::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 10px;
    height: 10px;
    border-top: solid 2px #2d6caf;
    border-right: solid 2px #2d6caf;
    transform: rotate(45deg);
}

.wp-pagenavi .previouspostslink {
    position: relative;
    color: transparent;
    /* テキストの色を透明にする */
    font-size: 0;
    /* テキストを見えなくする */
}

.wp-pagenavi .previouspostslink::before {
    content: '';
    position: absolute;
    top: 15px;
    right: 0;
    width: 10px;
    height: 10px;
    border-bottom: solid 2px #2d6caf;
    border-left: solid 2px #2d6caf;
    transform: rotate(45deg);
}





/*--------------------------------------
    ロードで表示
---------------------------------------*/
.load-fade {
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}

.load-fade.is-show-l {
    opacity: 1;
    visibility: visible;
}

/*--------------------------------------
    フワッと表示
---------------------------------------*/
.scroll-up {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all 1s;
}

.scroll-up.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.timing1 {
    transition-delay: 0.2s;
}

.timing2 {
    transition-delay: 0.4s;
}

.timing3 {
    transition-delay: 0.6s;
}

.timing4 {
    transition-delay: 0.8s;
}


/*--------------------------------------
    スライド
---------------------------------------*/
.slideinLeft {
    opacity: 0;
}

.slideinLeft.animate {
    opacity: 1;
    animation: slideinLeft 1s forwards;
    animation-iteration-count: 1;
}

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

    100% {
        transform: translateX(0);
    }
}

.slideinRight {
    opacity: 0;
}

.slideinRight.animate {
    opacity: 1;
    animation: slideinRight 1s forwards;
    animation-iteration-count: 1;
}

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

    100% {
        transform: translateX(0);
    }
}


.doit {
    opacity: 0;
}

.doit.animate {
    opacity: 1;
    animation: doit 1s forwards;
    animation-iteration-count: 1;
}

@keyframes doit {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}


/*スワイパー*/
.swiper-wrapper {
    transition-timing-function: linear;
}


/*++++++++++++++++++++++++++
共通
++++++++++++++++++++++++++*/
section {
    padding: 0 0 0 0;
    margin: auto;
    clear: both;
}

.white {
    color: #fff !important;
}

.right {
    text-align: right !important;
    margin-right: 0 !important;
    margin-left: auto !important;
}

.line {
    border-bottom: 3px #AAB9DB solid;
    padding: 0 0 50px 0;
    margin: 0 0 50px 0;
}

.bold {
    font-weight: bold;
}

.space_30 {
    padding: 0 0 30px;
}

.space_50 {
    padding: 0 0 50px;
}

.space_100 {
    padding: 0 0 100px;
}

.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.wrap_flex {
    counter-reset: csr-counter;
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto 50px;
}
.col2>*,
.col2_nowrap>* {
    width: calc(50% - 1%);
    margin: 0 1% 0;
}

@media screen and (max-width: 600px) {
    .col2>* {
        width: 100%;
    }
}



.reverse {
    flex-direction: row-reverse;
}

.nowrap {
    flex-wrap: nowrap;
    gap: 1%;
}

.flex-start {
    justify-content: flex-start;
}


