@charset "utf-8";
* {
    font-family: 'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3',"游ゴシック体","YuGothic","游ゴシック","Yu Gothic",'Meiryo','メイリオ', sans-serif;
}
body{
    margin: 0;
    padding: 0;
}
.abs {
    position: absolute;
}
.rel {
    position: relative;
}
.mt10 {
    margin-top: 10px;
}
.fcr {
    color: #ff0000;
}
.fcp {
    color: #FA57CC;
}
.fcb {
    color: #0047b2;
}
.fcsb {
    color: #0497FF;
}
.fsm {
    font-size: 19px;
}
.fsl {
    font-size: 21px;
}
.fsll {
    font-size: 23px;
}
.tal {
    text-align: left;
}
.tar {
    text-align: right;
}
.tac {
    text-align: center;
}
.bold {
    font-weight: bold;
}
.mark {
    background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%,#ffff00 0%) repeat scroll 0 0;
}
#wrapper{
    margin: auto;
}
img,video {
    width: 100%;
    vertical-align: middle;
    /* margin-bottom: 10px; */
}
.anno {
    font-size: 10px;
    color: gray;
    text-align: right;
    margin-top: -10px;
}

/* -------------------------画面幅設定------------------------- */
.pc {
    display: block;
}
.sp {
    display: none;
}


@media screen and (max-width:699px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}



body {
    padding-top: 85px; /* ヘッダーの高さぶん入れる */
}
h1,h2,h3 {
    margin: 0 !important;
}
@media screen and (max-width:699px) {
    body {
        padding-top: 57px; /* ヘッダーの高さぶん入れる */
    }
}

/* -------------- ヘッダー ------------- */
/* header を確実に横幅いっぱいにする */
header {
    width: 100%;
    padding: 1%;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    box-sizing: border-box;
  }
.header_inner {
    display: flex;
    gap: 30px;
    margin: 0 auto;
    box-sizing: border-box;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}
.header_logo {
    flex: 0 1 auto; 
}
.header_logo img {
    width: 100%;
    height: auto;
}
.header_btn_inner {
    display: flex;
    gap: 10px;
    white-space: nowrap; /* ボタン内が折れないように */
}
.header_btn_anno p {
    margin: 1% 0 0;
    font-size: 1em;
    font-weight: bold;
}
.header_btn_item img:hover {
    opacity: 0.6;
    transition: opacity 0.3s;
}
@media screen and (min-width: 701px) {
    /* PC版ではハンバーガーアイコンを非表示にする */
    .menu-icon {
        display: none;
    }
}

/* ---------------------------------
/* SP版のスタイル (700px以下)
/* --------------------------------- */
@media screen and (max-width: 700px) {

    /* ---------------------------------
    /* ヘッダー全体・PCコンテンツの制御
    /* --------------------------------- */
    header {
        padding: 15px 5%; /* SP版のパディング */
    }
    .header_btn {
        display: none; /* 初期状態で非表示 */
        position: fixed;
        top: 50px; 
        left: 0;
        width: 100%;
        height: auto;
        max-height: calc(100vh - 50px);
        padding: 30px 5%;
        background: rgba(255, 255, 255, 0.98); 
        z-index: 9998;
        overflow-y: auto;
        box-sizing: border-box;
    }
    .header_logo img {
        width: 70%;
    }
    .menu-icon {
        display: block; 
        width: 30px;
        height: 20px;
        position: relative;
        cursor: pointer;
        z-index: 10000;
    }
    
    /* ---------------------------------
    /* ハンバーガーアイコンのバーのスタイル
    /* --------------------------------- */
    .menu-icon-bar {
        display: block; 
        width: 100%; 
        height: 2px; 
        background-color: #14238c;
        position: absolute; 
        left: 0; 
        transition: transform 0.3s, opacity 0.3s;
    }
    .menu-icon-bar.top { top: 0; }
    .menu-icon-bar.middle { top: 50%; transform: translateY(-50%); }
    .menu-icon-bar.bottom { bottom: 0; }
    .js-menu-icon.active .menu-icon-bar.top { transform: translateY(10px) rotate(45deg); }
    .js-menu-icon.active .menu-icon-bar.middle { opacity: 0; }
    .js-menu-icon.active .menu-icon-bar.bottom { transform: translateY(-8px) rotate(-45deg); }


    /* ---------------------------------
    /* SPメニューが開いた時のスタイル
    /* --------------------------------- */
    /* JavaScriptで 'active' クラスが付与されたらメニューを表示 */
    .header_btn.js-target-menu.active {
        display: block;
        padding: 6% 12%;
    }
    
    .header_btn_inner {
        flex-direction: column; /* 縦並び */
        gap: 20px; /* 縦の間隔 */
        width: 100%;
        margin-bottom: 20px;
    }
    
    /* ボタン画像を幅いっぱいに広げる */
    .header_btn_item {
        display: block;
        width: 100%;
    }
    .header_btn_item img {
        width: 100%;
        height: auto;
    }

    /* 注意書きのフォントサイズ調整 */
    .header_btn_anno p {
        font-size: 0.8em;
    }
}


/* -------------- MV -------------- */
.mv {
    position: relative;
    padding: 0;
}
.mv_inner {
    width: 100%;
    height: 100%;
}
.cta_area {
    width: 32%;
    height: 100%;
    position: absolute;
    bottom: -75%;
    left: 15%;
    right: 0;
    text-align: center;
    z-index: 1;
}
.cta_area_item {
    margin-bottom: 2%;
}
.cta_area_btn img:hover {
    opacity: 0.6;
    transition: opacity 0.3s;
}
.tell_btn {
    width: 80%;
    margin: 0 auto;
}
.cta_area_item p {
    margin: 2% auto 0;
    font-size: 0.8vw;
    font-weight: bold;
}

@media screen and (max-width: 700px) {
    .cta_area {
        width: 85%;
        height: auto;
        bottom: 9%;
        left: 8%;
    }
    .cta_area_item p {
        font-size: 2.1vw;
    }
    .cta_area_item {
        margin-bottom: 0%;
    }
}


/* -------------- 高度人材とは -------------- */
.explanation {
    background-image: url(../img02/explanation_bg_pc.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    padding: 8% 0;
}
.explanation_inner {
    max-width: 63%;
    margin: 0 auto;
    background-image: url(../img02/explanation_bg_pc.png);
    background-size: auto;
    background-position: left;
    background-repeat: repeat;
    padding: 3% 0;
    text-align: left;
}
.explanation_inner_item {
    width: 80%;
    margin: 0 auto;
}
.explanation h2 img {
    width: 20vw;
}
.explanation_item {
    text-align: center;
}
.explanation_item img {
    margin: 4% auto;
}

/* --- アコーディオン設定 --- */
.explanation_fold {
    max-height: 200px;     /* ★最初にどこまで見せるか調整 */
    overflow: hidden;
    transition: max-height 0.6s ease;
}
/* 開いたときに付与するクラス */
.explanation_fold.open {
    max-height: 2000px;  /* 十分大きい値にしておけばOK */
}
/* ボタン */
.explanation_btn_wrap {
    text-align: center;
}
.explanation_btn {
    background-image: linear-gradient(90deg, #10248b, #49b0ec);
    color: #fff;
    padding: 0.5% 5%;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 15px;
    margin: 3% 0 0;
}

@media screen and (max-width: 700px) {
    .explanation {
        background-image: url(../img02/explanation_bg_sp.jpg);
        background-size: cover;
        background-position: top;
        background-repeat: no-repeat;
        padding: 8% 0;
    }
    .explanation h2 img {
        width: 100%;
    }
    .explanation_inner_item {
        width: 90%;
        margin: 0 auto;
    }
    .explanation_inner {
        max-width: 80%;
        padding: 6% 3%;
    }
}

/* -------------- お悩み -------------- */
.problem {
    background-color: #ededed;
    padding: 8% 0 0;
}
.problem_content {
    padding: 0 20%;
}
.problem_content h2 img {
    width: 36vw;
    margin-bottom: 5%;
}
.problem_item {
    text-align: center;
}
.problem_item img {
    width: 90%;
    margin: 0 auto 5%;
}

.about_contnet {
    background-color: #3b80e7;
    padding: 4% 0 8%;
}
.about_inner_item {
    padding: 0 17%;
}
.about_ttl {
    text-align: center;
}
.about_ttl img {
    width: 25vw;
    margin: 0 auto 5%;
}

@media screen and (max-width: 700px) {
    .problem {
        padding: 15% 0 0;
    }
    .problem_content {
        padding: 0 6%;
    }
    .problem_content h2 img {
        width: 60%;
    }
    .problem_item img {
        width: 100%;
        margin: 0 auto 5%;
    }

    .about_contnet {
        padding: 4% 0 0;
    }
    .about_inner_item {
        padding: 0;
    }
    .about_ttl img {
        width: 85%;
        margin: 5% auto 8%;
    }
}



/* -------------- 実績 -------------- */
.achievement {
    background-image: url(../img02/achievement_bg_pc.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    padding: 8% 0;
}
.achievement_inner {
    padding: 0 22%;
}
.achievement_content h2 img {
    width: 12vw;
    margin-bottom: -4%;
}
.achievement_item {
    text-align: center;
}
.achievement_item img {
    width: 100%;
}

@media screen and (max-width: 700px) {
    .achievement {
        padding: 0;
    }
    .achievement_inner {
        padding: 0;
    }
    .achievement_content h2 img {
        width: 35%;
        margin-bottom: 8%;
    }
}

/* -------------- CTA -------------- */
.cta {
    background-image: url(../img02/cta_bg_pc.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    padding: 8% 0;
}
.cta_inner {
    padding: 0 30%;
}
.cta_content {
    text-align: center;
}
.cta:hover {
    opacity: 1 !important;
}
.cta_btn img:hover {
    opacity: 0.6;
    transition: opacity 0.3s;
}
.cta_btn img {
    width: 100%;
    margin-bottom: 2%;
}
.tell_btn img {
    width: 85%;
}
.cta_content p {
    margin: 0 auto 4%;
    font-size: 0.9vw;
    font-weight: bold;
}

@media screen and (max-width: 700px) {
    .cta {
        padding: 12% 0;
    }
    .cta_inner {
        padding: 0 15%;
    }
    .cta_content p {
        margin: 4% auto 0;
        font-size: 2.2vw;
    }
}

/* -------------- 採用プラン -------------- */
.plan {
    background-image: url(../img02/plan_bg_pc.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    padding: 8% 0;
}
.plan_inner {
    padding: 0 18%;
}
.plan_inner h2 img {
    width: 32vw;
    margin-bottom: 2%;
}
.plan_content {
    text-align: center;
}
.plan_content img {
    width: 100%;
}

.plan_content2 {
    margin-top: 10%;
}
.plan_content2_ttl {
    text-align: center;
}
.plan_content2_ttl img {
    width: 28vw;
    margin-bottom: 7%;
}

@media screen and (max-width: 700px) {
    .plan {
        padding: 0;
    }
    .plan_inner {
        padding: 0;
    }
    .plan_content2 {
        margin-top: 0;
    }
}
/* -------------- ポイント -------------- */
.point {
    background-image: linear-gradient(#50beff, #3b80e7 80%);
    padding: 8% 0;
}
.point_inner {
    padding: 0 19%;
}
.point_content h2 img {
    width: 22vw;
    margin-bottom: 5%;
}
.point_item {
    text-align: center;
}
.point_item {
    background-color: #fff;
    padding: 4%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.point_item img {
    width: 100%;
}

@media screen and (max-width: 700px) {
    .point_inner {
        padding: 0;
    }
    .point {
        padding: 0;
    }
}

/* -------------- イベント開催時の様子 -------------- */
.scenes {
    background-image: linear-gradient(90deg, #f8fbff, #dceaff);
    padding: 8% 0;
}
.scenes_inner {
    padding: 0 20%;
}
.scenes_inner h2 img {
    width: 23vw;
    margin-bottom: 5%;
}
.scenes_item {
    display: grid;
    gap: 2%;
    grid-template-columns: repeat(3, 1fr); /* PC：横3つ */
    padding: 0 5%;
}
.scenes_item img {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 700px) {
    .scenes {
        padding: 16% 0 18%;
    }
    .scenes_inner {
        padding: 0 10%;
    }
    .scenes_inner h2 img {
        width: 90%;
        margin-bottom: 8%;
    }
    .scenes_item {
        display: grid;
        gap: 2%;
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
    }
}

/* -------------- サポート体制 -------------- */
.support {
    background-image: url(../img02/support_bg_pc.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    padding: 8% 0;
}
.support_inner {
    padding: 0 20%;
}
.support_ttl {
    margin-bottom: 5%;
}
.support_inner h2 img {
    width: 23vw;
    margin-bottom: 2%;
}
.support_content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5%;
    align-items: stretch;
}

.supportnt_item {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative; /* 元々の指定は残す */
}
.item_img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.item_content {
    background-color: #eff2ff;
    padding: 24% 7% 7%;
    margin-top: 16%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
}
.item_content p {
    margin: 0;
    text-align: center;
}
.item_content .name {
    font-size: 20px;
    font-weight: bold;
    color: #10248b;
}
.item_content .furigana {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #6971af;
}
.support_text{
    font-size: 16px;
    line-height: 1.8;
    text-align: justify !important;
}

/* アコーディオン */
.support_wrap {
    position: relative;
    max-height: 65px;     /* ←途中まで表示する高さ */
    overflow: hidden;
    transition: max-height .3s ease;
}
.fade {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40px;            /* フェードの高さ */
    background: linear-gradient(to bottom, rgba(255,255,255,0), #eff2ff);
}
/* 開いたとき */
.support_wrap.open {
    max-height: 2000px;      /* autoはtransitionできないので大きめ数値 */
}
.support_wrap.open .fade {
    display: none;
}
.support_toggle {
    margin-top: 10px;
    text-align: center;
    background: #ccd2ff;
    padding: 8px;
    cursor: pointer;
    border-radius: 6px;
}

.support_text.adjust::after,
.support_text.adjust02::after {
    content: "";
    display: block;
    height: 172px; /* ← 左と揃う高さを入れる。ここだけ調整すればOK */
}
@media screen and (min-width:1360px) and (max-width:1566px) {
    .support_text.adjust::after {
        height: 200px;
    }
}
@media screen and (min-width:1241px) and (max-width:1359px) {
    .support_text.adjust::after {
        height: 230px;
    }
}
@media screen and (min-width:1223px) and (max-width:1240px) {
    .support_text.adjust::after {
        height: 259px;
    }
}
@media screen and (min-width:1169px) and (max-width:1222px) {
    .support_text.adjust::after {
        height: 230px;
    }
}
@media screen and (min-width:1104px) and (max-width:1168px) {
    .support_text.adjust::after {
        height: 260px;
    }
}
@media screen and (min-width:1025px) and (max-width:1103px) {
    .support_text.adjust::after {
        height: 288px;
    }
}
@media screen and (min-width:700px) and (max-width:1024px) {
    .support_text.adjust::after {
        height: 27vw;
    }
}

.support_text.adjust02::after {
    content: "";
    display: block;
    height: 172px; /* ← 左と揃う高さを入れる。ここだけ調整すればOK */
}

@media screen and (min-width:1386px) and (max-width:1657px) {
    .support_text.adjust02::after {
        height: 200px;
    }
}
@media screen and (min-width:1303px) and (max-width:1385px) {
    .support_text.adjust02::after {
        height: 230px;
    }
}
@media screen and (min-width:1241px) and (max-width:1302px) {
    .support_text.adjust02::after {
        height: 260px;
    }
}
@media screen and (min-width:1233px) and (max-width:1240px) {
    .support_text.adjust02::after {
        height: 230px;
    }
}
@media screen and (min-width:1163px) and (max-width:1232px) {
    .support_text.adjust02::after {
        height: 260px;
    }
}
@media screen and (min-width:1098px) and (max-width:1163px) {
    .support_text.adjust02::after {
        height: 288px;
    }
}
@media screen and (min-width:1078px) and (max-width:1097px) {
    .support_text.adjust02::after {
        height: 317px;
    }
}
@media screen and (min-width:1037px) and (max-width:1077px) {
    .support_text.adjust02::after {
        height: 290px;
    }
}
@media screen and (min-width:1025px) and (max-width:1036px) {
    .support_text.adjust02::after {
        height: 316px;
    }
}
@media screen and (min-width:1018px) and (max-width:1024px) {
    .support_text.adjust02::after {
        height: 276px;
    }
}
@media screen and (min-width:961px) and (max-width:1017px) {
    .support_text.adjust02::after {
        height: 27vw;
    }
}
@media screen and (min-width:944px) and (max-width:960px) {
    .support_text.adjust02::after {
        height: 260px;
    }
}
@media screen and (min-width:908px) and (max-width:943px) {
    .support_text.adjust02::after {
        height: 253px;
    }
}
@media screen and (min-width:900px) and (max-width:907px) {
    .support_text.adjust02::after {
        height: 29.5vw;
    }
}
@media screen and (min-width:892px) and (max-width:899px) {
    .support_text.adjust02::after {
        height: 243px;
    }
}
@media screen and (min-width:878px) and (max-width:891px) {
    .support_text.adjust02::after {
        height: 265px;
    }
}
@media screen and (min-width:843px) and (max-width:877px) {
    .support_text.adjust02::after {
        height: 27vw;
    }
}
@media screen and (min-width:824px) and (max-width:842px) {
    .support_text.adjust02::after {
        height: 30vw;
    }
}
@media screen and (min-width:805px) and (max-width:823px) {
    .support_text.adjust02::after {
        height: 30vw;
    }
}
@media screen and (min-width:778px) and (max-width:804px) {
    .support_text.adjust02::after {
        height: 27vw;
    }
}
@media screen and (min-width:767px) and (max-width:777px) {
    .support_text.adjust02::after {
        height: 30vw;
    }
}
@media screen and (min-width:755px) and (max-width:766px) {
    .support_text.adjust02::after {
        height: 27vw;
    }
}
@media screen and (min-width:740px) and (max-width:754px) {
    .support_text.adjust02::after {
        height: 30vw;
    }
}
@media screen and (min-width:713px) and (max-width:739px) {
    .support_text.adjust02::after {
        height: 27vw;
    }
}
@media screen and (min-width:700px) and (max-width:712px) {
    .support_text.adjust02::after {
        height: 30vw;
    }
}


@media screen and (min-width:700px) and (max-width:1024px) {
    .item_content .name {
        font-size: 2vw;
    }
    .item_content .furigana {
        font-size: 1.5vw;
    }
    .support_text {
        font-size: 1.5vw;
    }
}

@media screen and (max-width: 700px) {
    .support {
        background-image: url(../img02/support_bg_sp.jpg);
        background-size: cover;
        background-position: top;
        background-repeat: no-repeat;
        padding: 16% 0 50%;
    }
    .support_inner {
        padding: 0 10%;
    }
    .support_inner h2 img {
        width: 75%;
        margin-bottom: 5%;
    }
    .support_content {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 2%;
        align-items: stretch;
        padding: 0 6%;
    }
    .support_text.adjust::after,
    .support_text.adjust02::after {
        display: none;
    }
}
/* -------------- 採用事例 -------------- */
.cases {
    background-image: linear-gradient(#50beff, #3b80e7 80%);
    padding: 8% 0 0;
    margin: 0 0 -2%;
}
.cases_inner {
    padding: 0 20%;
}
.cases_inner h2 img {
    width: 19vw;
    margin-bottom: 5%;
}
.cases_item {
    text-align: center;
}
.cases_item img {
    width: 100%;
}

@media screen and (max-width: 700px) {
    .cases {
        padding: 0;
    }
    .cases_inner {
        padding: 0;
    }
}

/* -------------- ベトナム提供大学 -------------- */
.college { 
    background-image: url(../img02/college_bg_pc.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    padding: 15% 0 8%;
}
.college_inner {
    padding: 0 23%;
}
.college_inner h3 img {
    width: 36vw;
    margin: 0 auto 7%;
}
.college_item {
    text-align: center;
}

@media screen and (max-width: 700px) {
    .college_inner {
        padding: 0;
    }
    .college {
        padding: 0;
    }
}

/* -------------- 選ばれる理由 -------------- */
.reasons {
    background-image: url(../img02/reason_gb_pc.png);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    padding: 8% 0;
}
.reasons_inner {
    padding: 0 20%;
}
.reasons_inner h2 img {
    width: 40vw;
    margin-bottom: 6%;
}

@media screen and (max-width: 700px) {
    .reasons {
        background-image: url(../img02/reason_gb_sp.png);
        background-size: cover;
        background-position: top;
        background-repeat: no-repeat;
        padding: 16% 0;
    }
    .reasons_inner {
        padding: 0 7%;
    }
    .reasons_inner h2 img {
        width: 85%;
        margin-bottom: 10%;
    }
}

/* ---- 口コミ ----*/
.voice-contents {
    padding: 5% 10% 0;
}

.slick-prev:before, .slick-next:before {
    font-size: 35px !important;
}

/* 1. デフォルトのアイコン（文字）を完全に非表示 */
.slick-prev:before, .slick-next:before {
    content: '' !important;
}

/* 2. 矢印要素の設定を上書き（サイズを画像に合わせて拡大） */
.slick-prev, .slick-next {
    width: 40px !important; /* 画像のサイズに合わせる */
    height: 40px !important;
    
    /* 背景画像設定を確実に適用 */
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important; 
    
    background-color: transparent !important; 
    border: none !important;
    z-index: 10 !important;
}

.slick-prev {
    background-image: url('../img02/arrow_l.png') !important; 
    left: -50px !important;
}

.slick-next {
    background-image: url('../img02/arrow_r.png') !important; 
    right: -50px !important; 
}

/* 4. SP版のサイズと位置調整 */
@media (max-width: 700px) {
    .voice-contents {
        padding: 5% 4% 0 7%;
    }
    
    .slick-prev {
        left: -15px !important;
    }
    .slick-next {
        right: 2px !important;
    }
    .slick-prev, .slick-next {
        width: 40px !important;
        height: 40px !important;
    }
    .slick-dots {
        left: 50%;
        transform: translateX(-50%);
    }
}
/* -------------- フォーム -------------- */

.form_ttl {
    display: flex;
    align-items: flex-end;
    padding: 0 15%;
    margin-bottom: 3%;
    gap: 5%;
}
.form_ttl h2 img {
    width: 9vw;
}
.Fss {
    font-weight: bold;
}
.form {
    background-color: #ecf3f9;
    padding: 8% 0;
}
.form .ttl {
    width: 30%;
    max-width: 120px;
    margin: auto;
}

@media screen and (max-width: 700px) {
    .form {
        background-color: #ecf3f9;
        padding: 19% 0;
    }
    .form_ttl h2 img {
        width: 67%;
    }
    .form_ttl {
        display: flex;
        align-items: flex-start;
        padding: 0 6%;
        margin-bottom: 3%;
        gap: 15px;
        flex-direction: column;
    }
    .Fss {
        font-size: 14px;
    }
}


/* -------------- 会社概要 -------------- */
.gaiyou{
    background-color: #023898;
    padding-bottom: 6%;
}
.gaiyou_ttl {
    padding: 8% 16% 2%;
}
.gaiyou_ttl h2 img{
    width: 13vw;
    margin-bottom: 3%;
}

@media screen and (max-width:700px){
    .gaiyou{
        position: relative;
    }
    .gaiyou_ttl {
        padding: 16% 7% 2%;
    }
    .gaiyou_ttl h2 img {
        width: 50%;
        margin-bottom: 5%;
    }
}

.gaiyou_flx{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 69%;
    margin: 0 auto;
}

.gaiyou_flx>img{
    width: 56%;
}

.gaiyou_flx .gaiyou_hr{
    width: 42%;
    color: #fff;
    padding: 2%;
    box-sizing: border-box;
}

@media screen and (max-width:700px){
    .gaiyou_flx{
        flex-direction: column;
        width: 100%;
    }
    .gaiyou_flx>img{
        width: 90%;
        margin: 0 auto;
    }
    .gaiyou_flx .gaiyou_hr{
        width: 94%;
        margin: 0 auto;
    }
}

/* HRコンサルティング事業部 */
.hr_ttl{
    font-size: 26px;
}

@media screen and (min-width:1300px) and (max-width:1600px){
    .hr_ttl{
        font-size: 24px;
    }
}

@media screen and (min-width:1000px) and (max-width:1300px){
    .hr_ttl{
        font-size: 20px;
    }
}

@media screen and (min-width:699px) and (max-width:1000px){
    .hr_ttl{
        font-size: 16px;
    }
}


@media screen and (max-width:699px){
    .hr_ttl{
        font-size: 19px;
        text-align: center;
        margin: 0 auto;
        display: block;
        padding-top: 30px;
    }
}

.acc-ttl{
    font-size: 22px;
    padding: 5% 4%;
    border-bottom: 2px solid #fff;
    font-weight: bold;
    position: relative;
    cursor: pointer;
}

.acc-content{
    font-size: 19px;
    padding: 5% 4% 3%;
    border-bottom: 1px solid #fff;
}

/* 文字サイズクエリ */
@media screen and (min-width:1450px) and (max-width:1600px){
    .acc-ttl{
        font-size: 20px;
    }
    .acc-content{
        font-size: 17px;
    }
}

@media screen and (min-width:1280px) and (max-width:1450px){
    .acc-ttl{
        font-size: 16px;
    }
    .acc-content{
        font-size: 14px;
    }
}

@media screen and (min-width:1160px) and (max-width:1280px){
    .acc-ttl{
        font-size: 14px;
    }
    .acc-content{
        font-size: 12px;
    }
}

@media screen and (min-width:699px) and (max-width:1160px){
    .acc-ttl{
        font-size: 12px;
    }
    .acc-content{
        font-size: 10px;
    }
}


@media screen and (max-width:699px){
    .acc-ttl{
        font-size: 16px;
    }
    .acc-content{
        font-size: 15px;
    }
}

/* openの場合のスタイル */
.acc-ttl.open{
    border-bottom: 2px solid #fce200;
    color: #fce200;
}

/* content中身スタイル */
.acc-content p{
    padding-left: 40px;
    position: relative;
    margin-bottom: 10px;
}

.acc-content p:before{
    content: '';
    display: block;
    width: 28px;
    height: 28px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
}

/* アイコンサイズクエリ */
@media screen and (min-width:1450px) and (max-width:1600px){
    .acc-content p{
        padding-left: 30px;
    }
    .acc-content p:before{
        width: 20px;
        height: 20px;
    }
}

@media screen and (min-width:1280px) and (max-width:1450px){
    .acc-content p{
        padding-left: 25px;
    }
    .acc-content p:before{
        width: 15px;
        height: 15px;
    }
}

@media screen and (min-width:1160px) and (max-width:1280px){
    .acc-content p{
        padding-left: 20px;
    }
    .acc-content p:before{
        width: 14px;
        height: 14px;
    }
}

@media screen and (min-width:699px) and (max-width:1160px){
    .acc-content p{
        padding-left: 18px;
    }
    .acc-content p:before{
        width: 12px;
        height: 12px;
    }
}

@media screen and (max-width:699px){
    .acc-content p{
        padding-left: 30px;
    }
    .acc-content p:before{
        width: 20px;
        height: 20px;
    }
}

.acc-content .mail:before{
    background-image: url(../img02/mail_icon.png);
}

.acc-content .address:before{
    background-image: url(../img02/address_icon.png);
}

.acc-content .mobile:before{
    background-image: url(../img02/mobile_icon.png);
    left: 4%;
}

.acc-content .landline:before{
    background-image: url(../img02/landline_icon.png);
}

.acc_flx{
    display: flex;
    gap: 25px;
}

.acc-content a{
    color: #fff;
    text-decoration: none;
}

.acc-content a:hover{
    text-decoration: underline;
}

/* アコーディオン設定 */
/* 初期状態 */
.acc-ttl+.acc-content{
    display: none;
}

.acc-ttl:first-child+.acc-content{
    display: block;
}

/* プラスマイナス */
.acc-ttl::before{
    content:'';
    position:absolute;
    top:50%;
    right:20px;
    width:20px;
    height:2px;
    background-color: #fff;
    transform:rotate(90deg);
    transition:all .3s ease-in-out;
}

.acc-ttl::after{
    content:'';
    position:absolute;
    top:50%;
    right:20px;
    width:20px;
    height:2px;
    background-color: #fff;
    transition:all .2s ease-in-out;
}

.acc-ttl.open::before{
    transform:rotate(180deg);
    background-color: #fce200;
}

.acc-ttl.open::after{
    opacity:0;
}

/* -------------------------ホバー時の設定------------------------- */
.cta:hover{
    opacity: 0.6;
}
.tab-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 0 10px;
    margin: 3vh auto;
    width: 95%;
    max-width: 1350px;
}
.tab-2 > label {
    flex: 1 1;
    order: -1;
    opacity: .5;
    min-width: 70px;
    padding: .6em 0.8em;
    border-radius: 15px 15px 0 0;
    background-color: #023898;
    color: #fff;
    font-size: .9em;
    text-align: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tab-2 > label:nth-of-type(2) {
    background-color: #fbe201;
    color: #023898;
}
.tab-2 > label img {
    width: 3%;
    min-width: 10px;
    margin-right: 5px;
    object-fit: contain;
}
.tab-2 > label:hover {
    opacity: .8;
}
.tab-2 > input {
    display: none;
}
.tab-2 > div {
    display: none;
    width: 100%;
    padding: 0em 1.5em;
    background-color: #fff;
    border-radius: 0 0 15px 15px;
}
.tab-2 label:has(:checked) {
    opacity: 1;
}
.tab-2 label:has(:checked) + div {
    display: block;
}

.tab-2 > .form-content {
    display: none;
}
.tab-2 input:checked + img + text + .form-content {
    display: block; /* ←このCSSは消す or 機能しないので、JSで切替へ */
}
.tab-2 label input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.form-content > div {
    max-width: 1304px;
}

.form .policy {
    width: 80%;
    max-width: 960px;
    margin: auto;
    background-color: #fff;
    max-height: 200px;
    overflow-y: scroll;
    padding: 20px;
}
.form .policy p {
    margin-bottom: 10px;
    font-size: 14px;
    width: 100%;
}
.form table {
    font-size: 14px;
    width: 100%;
    margin-bottom: 14px;
}
.form table ,.form td, .form th {
	border-collapse: collapse;
}
.form td, .form th {
    padding: 3px;
    border-bottom: 1px solid #595959;
}
.form td {
    width: 70%;
}
.form th {
    width: 30%;
    color: #023898;
    text-align: left;
}

.page-contact .contact-zoom figure {
    margin: 0 !important;
}

@media (max-width: 767px) {
    .page-right {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .tab-2 > div {
        padding: 0em 0em;
    }
    .tab-2 .page-left {
        padding: 0em 0.7em;
    }
    .tab-2 {
        width: 97%;
    }
}

.page-download .col-md-4.item a {
    pointer-events: none;
}