@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');
@import url("https://use.typekit.net/pwl6iww.css");
html{
    font-size: 62.5%;
    box-sizing: border-box;
}
body {
    font-family:'Noto Sans JP', sans-serif;
    letter-spacing: 0.05em;
    color: #333;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
a{
    font-family:'Noto Sans JP', sans-serif;
    cursor: pointer;
    text-decoration-line: none;
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}
a, a:hover, a:active {
    text-decoration-line: none;
    text-decoration: none;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
}
img{
    width: 100%;
    height: auto;
}
header{
    line-height: inherit;
}
li > ul, li > ol{
    margin-left: 0;
}
li{
    list-style:none;
}
small{
    font-size: 80%;
    font-weight: inherit;
}

/* ----------------------------------------------------------
common
---------------------------------------------------------- */
.pc{
    display: block;
}
.sp{
    display: none;
}
:root {
    /* 色指定 */
    --blue:#005eae;
    --skyblue:#3ec6f8;
    --seablue: #008ede;
    --bluegray:#8b93a2;
    --navy_g:linear-gradient(45deg, rgba(23,25,48,1) 0%, rgba(23,56,95,1) 100%);
    --blue_g:linear-gradient(45deg, #005eae 0%, #1f9af9 100%);
    --skyblue_g:linear-gradient(45deg, #1e98f6 0%, #3ec6f8 100%);
}
.flex{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.inner_1200{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.inner_1000{
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}
.inner_800{
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}
/* --------------------------------
FONT
----------------------------------- */
.montserrat{
    font-family: "Montserrat", sans-serif;
}
.adobe-handwriting{
    font-family: "adobe-handwriting-ernie",sans-serif;
}

/* --------------------------------
header
----------------------------------- */
body{
    background: var(--navy_g);
}
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    transition: 0.3s;
    z-index: 10;
}
header .hdr_inner{
    position: relative;
    width: 97%;
    justify-content: space-between;
    align-items: center;
    transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s 0.3s;
    /* opacity: 0;
    visibility: hidden; */
}
header.js-header::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    top: -72px;
    left: 0;
    transition: 0.5s;
}
header.js-header.is-show::before{
    top: 0;
}
header .hdr_inner h1{
    position: relative;
    width: 23%;
    max-width: 300px;
    z-index: 100;
}
header .hdr_inner h1 a{
    display: block;
    width: 100%;
}
header .hdr_inner nav ul{
    justify-content: flex-end;
    align-items: center;
}
header .hdr_inner nav ul li{
    margin-right: 25px;
}
header .hdr_inner nav ul li a{
    position: relative;
    color: #fff;
    font-size: 1.4rem;
    transition: 0.3s;
}
header .hdr_inner nav ul li a::after{
    position: absolute;
    content: "";
    background: #fff;
    width: 0;
    height: 1px;
    bottom: -1px;
    left: 0;
    transition: 0.3s;
}
header .hdr_inner nav ul li a:hover::after{
    width: 100%;
}

header .hdr_inner nav ul li.hdr_btn{
    margin-right: 10px;
}
header .hdr_inner nav ul li.hdr_btn a{
    display: block;
    padding: 12px 20px;
    text-align: center;
    z-index: 0;
}
header .hdr_inner nav ul li.hdr_btn.entry01 a{
    background: var(--blue_g);
}
header .hdr_inner nav ul li.hdr_btn.entry02 a{
    background: var(--skyblue_g);
}
header .hdr_inner nav ul li.hdr_btn a::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
}
header .hdr_inner nav ul li.hdr_btn.entry01 a::before{
    background: linear-gradient(45deg, #1f9af9 0%, #005eae 100%);
}
header .hdr_inner nav ul li.hdr_btn.entry02 a::before{
    background: linear-gradient(45deg, #3ec6f8 0%, #1e98f6 100%);
}
header .hdr_inner nav ul li.hdr_btn a:hover::before {
    opacity: 1;
}
header .hdr_inner nav ul li.hdr_btn a::after{
    content: none;
}
/* ロゴ色変更 */
#members header .hdr_inner h1 .svg .cls-1,
#career header .hdr_inner h1 .svg .cls-1{
    fill: #111;
}
#members header .hdr_inner h1 .svg .cls-2,
#career header .hdr_inner h1 .svg .cls-2{
    fill: #005eae;
}
#members header .hdr_inner h1 .svg .cls-3,
#career header .hdr_inner h1 .svg .cls-3{
    fill: #000;
}
body#members.active header .hdr_inner h1 .svg .cls-1,
body#members.active header .hdr_inner h1 .svg .cls-2,
body#members.active header .hdr_inner h1 .svg .cls-3,
body#career.active header .hdr_inner h1 .svg .cls-1,
body#career.active header .hdr_inner h1 .svg .cls-2,
body#career.active header .hdr_inner h1 .svg .cls-3{
    fill: #fff;
}

/* ハンバーガーメーニュー */
#menu{
    position: fixed;
    top: 20px;
    right: 1.5%;
    width: 30px;
    height: 30px;
    padding: 10px;
    z-index: 100;
    cursor: pointer;
}
#menu span{
    position: absolute;
    display: block;
    background: #fff;
    width: 30px;
    height: 1px;
    left: 50%;
    transform: translate(-50%);
    transition: 0.3s;
}
#menu span:nth-child(1){
    top: 5px;
}
#menu span:nth-child(2){
    top: 15px;
}
#menu span:nth-child(3){
    top: 25px;
}
/* ナビ開いてる時のボタン */
#menu.active span:nth-child(1) {
    top : 15px;
    -webkit-transform: translateX(-50%) rotate(-45deg);
    -moz-transform   : translateX(-50%) rotate(-45deg);
    transform        : translateX(-50%) rotate(-45deg);
}
#menu.active span:nth-child(2){
    display: none;
}
#menu.active span:nth-child(3) {
    top: 15px;
    -webkit-transform: translateX(-50%) rotate(45deg);
    -moz-transform   : translateX(-50%) rotate(45deg);
    transform        : translateX(-50%) rotate(45deg);
}
/* ナビ開いてるときのnav */
header .hdr_inner nav{
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
header .hdr_inner nav.active{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease-in, visibility 0.3s ease-in;
}
/* メニュー中身 */
#globalMenu{
    position: fixed;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    max-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease-in, visibility 0.3s ease-in;
    z-index: 99;
}
#globalMenu::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(1, 41, 75, 0.7);
    opacity: 0;
    translate: -50% -50%;
    top: 50%;
    left: 50%;
    transition: opacity ease .3s;
    z-index: -1;
}
#globalMenu.active{
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    overflow-y: scroll;
}
#globalMenu.active::before{
    opacity: 1;
}
#globalMenu nav{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
body.active{
    /* overflow: clip; */
}
ul.gNav{
    justify-content: center;
}
ul.gNav li.site-title{
    display: none;
}
ul.gNav li.main_List{
    position: relative;
    margin-right: 5%;
}
ul.gNav li.main_List:last-child{
    margin-right: 0;
}
ul.gNav li.main_List a.main_link{
    position: relative;
    display: inline-block;
    font-size: 2.4rem;
    font-weight: 600;
    padding-left: 0.8em;
    margin-bottom: 20px;
    color: #fff;
}
ul.gNav li.main_List a.main_link::before{
    position: absolute;
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--skyblue);
    top: 0.4em;
    left: 0;
}
ul.gNav li.main_List a.main_link:hover{
    opacity: 0.7;
}
ul.gNav li.main_List ul.sub_List li a{
    position: relative;
    display: block;
    width: 100%;
    padding-left: 30px;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #fff;
}
ul.gNav li.main_List ul.sub_List li a::before{
    position: absolute;
    content: "";
    width: 25px;
    height: 1px;
    background: #fff;
    top: 0.5em;
    left: 0;
}
ul.gNav li.main_List ul.sub_List li a:hover{
    opacity: 0.7;
}
/* エントリーボタン */
.entry_Btn{
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}
.entry_Btn a{
    position: relative;
    display: block;
    width: 48%;
    margin: 30px auto 0;
    padding: 20px 10px;
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    text-align: center;
    z-index: 0;
}
.entry_Btn a.entry01{
    background: var(--blue_g);
}
.entry_Btn a.entry02{
    background: var(--skyblue_g);
}
.entry_Btn a::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
}
.entry_Btn a.entry01::before{
    background: linear-gradient(45deg, #1f9af9 0%, #005eae 100%);
}
.entry_Btn a.entry02::before{
    background: linear-gradient(45deg, #3ec6f8 0%, #1e98f6 100%);
}
.entry_Btn a:hover::before {
    opacity: 1;
}
/* その他リンク */
.other_link_Btn{
    width: 100%;
    margin: 30px auto 0;
    justify-content: center;
}
.other_link_Btn a.other_link{
    position: relative;
    display: inline-block;
    font-size: 1.6rem;
    color: #fff;
    text-align: center;
    margin-right: 2%;
}
.other_link_Btn a.other_link:last-child{
    margin-right: 0;
}
.other_link_Btn a.other_link .material-symbols-sharp{
    font-size: 16px;
}
.other_link_Btn a.other_link:hover{
    opacity: 0.7;
}

/* --------------------------------
footer
----------------------------------- */
footer{
    position: relative;
    background: var(--navy_g);
    padding: 80px 0 50px;
}
footer .entry_Area{
    border-bottom: 1px solid #fff;
}
footer .entry_Area h3{
    text-align: center;
}
footer .entry_Area h3 span{
    font-size: 4.8rem;
    letter-spacing: 0.25em;
    color: var(--skyblue);
}
footer .entry_Area .entry_Btn{
    max-width: 1000px;
    margin-top: 40px;
    padding-bottom: 50px;
}
footer .entry_Area .entry_Btn a{
    margin-top: 0;
    padding: 25px 10px;
}
footer .ftr_nav{
    padding: 0 10px;
}
footer h1{
    width: 90%;
    max-width: 300px;
    margin-bottom: 30px;
    padding: 30px 0 0 10px;
}
footer h1 a{
    display: block;
    width: 100%;
}
footer .ftr_nav .ftr_left{
    width: 25%;
}
footer .ftr_nav .ftr_left .entry_Btn{
    width: 100%;
}
footer .ftr_nav .ftr_left .entry_Btn a{
    width: 100%;
    margin: 0 auto 15px;
    padding: 15px 10px;
    font-size: 1.6rem;
}
footer .ftr_nav .ftr_left .other_link_Btn a.other_link{
    display: block;
    margin-bottom: 15px;
    font-size: 1.4rem;
}
footer .ftr_nav .ftr_right{
    width: 73%;
}
footer .ftr_nav .ftr_right ul.gNav{
    justify-content: flex-end;
}
footer .ftr_nav .ftr_right ul.gNav li.main_List{
    margin-right: 4%;
}
footer .ftr_nav .ftr_right ul.gNav li.main_List a.main_link{
    font-size: 1.8rem;
    padding-left: 0.7em;
    font-weight: 400;
}
footer .ftr_nav .ftr_right ul.gNav li.main_List a.main_link::before {
    width: 6px;
    height: 6px;
}
footer .ftr_nav .ftr_right ul.gNav li.main_List ul.sub_List li a{
    font-size: 1.4rem;
    padding-left: 22px;
    font-weight: 300;
}
footer .ftr_nav .ftr_right ul.gNav li.main_List ul.sub_List li a::before{
    width: 15px;
}
footer .copyright{
    margin-top: 30px;
    font-size: 1.2rem;
    color: #fff;
}

/* --------------------------------
Pagetop
----------------------------------- */
#Pagetop{
    position: fixed;
    right: 1%;
    bottom: 1.5%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    line-height: 30px;
    background: var(--skyblue);
    border: var(--skyblue) 2px solid;
    padding: 30px;
    transition: 0.3s;
    z-index: 9;
}
#Pagetop a{
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
#Pagetop a::before,
#Pagetop a::after{
    position: absolute;
    content: "";
    width: 15px;
    height: 3px;
    background: rgb(255, 255, 255);
    top: 48%;
    transition: 0.3s;
}
#Pagetop a::before{
    left: 30%;
    transform: translateY(-50%) rotate(-45deg);
}
#Pagetop a::after{
    right: 30%;
    transform: translateY(-50%) rotate(45deg);
}
#Pagetop:hover{
    background: #fff;
}
#Pagetop:hover a::before,
#Pagetop:hover a::after{
    background: var(--skyblue);
}

/* ----------------------------------------------------------
下層ページ共通
---------------------------------------------------------- */
/* h2見出し */
.Wrap_ttl span.sub_ttl{
    color: var(--skyblue);
    font-size: 2rem;
}
.Wrap_ttl h2{
    font-size: 5rem;
    margin-bottom: 20px;
}
.lead_txt{
    font-size: 1.6rem;
    line-height: 1.6;
}
/* 下層ページセクション見出し */
.lower_ttl_Box .main_ttl{
    position: relative;
    font-size: 1.2rem;
    color: #111;
    margin-bottom: 5px;
    padding-left: 1em;
}
.lower_ttl_Box .main_ttl::before{
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    background: var(--seablue);
    border-radius: 50%;
    top: 0.4em;
    left: 0;
}
.lower_ttl_Box h2,
.lower_ttl_Box h3{
    font-size: 3rem;
    line-height: 1.4;
    color: #111;
}
.txt{
    font-size: 1.6rem;
    line-height: 1.6;
}
/* サイドボタンがあるレイアウト */
[class*=_Wrap] aside{
    width: 22%;
    max-width: 260px;
    position: relative;
}
[class*=_Wrap] aside .index_Box{
    /* position: absolute;
    top: 0;
    transition: all 0.5s ease; */
    position: sticky;
    top: 100px;
    padding-bottom: 30px;
}
[class*=_Wrap] main{
    width: 74%;
    max-width: 890px;
}
/* もっと見るボタン */
.viewmore{
    position: relative;
    display: block;
    width: 100%;
    max-width: 360px;
    padding: 20px 10px;
    text-align: center;
    overflow: hidden;
    transition: ease .3s;
    cursor: pointer;
}
.viewmore span{
    position: relative;
    font-size: 2rem;
    font-weight: 600;
    transition: ease .5s;
    z-index: 2;
}
/* インデックスのサイドボタン */
.side_Btn [class*=Btn]{
    position: relative;
    display: block;
    width: 100%;
    background: #111;
    border: 1px solid #111;
    padding: 20px;
    text-align: center;
    margin-bottom: 10px;
    transition: 0.3s;
}
.side_Btn [class*=Btn] span{
    position: relative;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.2;
    transition: 0.3s;
    z-index: 2;
}
.side_Btn .job_detail_Btn:hover{
    background: #fff;
}
.side_Btn .job_detail_Btn:hover span{
    color: #111;
}
.side_Btn .job_detail_Btn::before,
.side_Btn .job_detail_Btn::after{
    position: absolute;
    content: "";
    width: 12px;
    height: 2px;
    background: #fff;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    transition: 0.3s;
}
.side_Btn .job_detail_Btn::after{
    transform: translateY(-50%) rotate(90deg);
}
.side_Btn .job_detail_Btn:hover::before,
.side_Btn .job_detail_Btn:hover::after{
    background: #111;
}
.bgleft::before,
.bgleft_w::before{
    position: absolute;
    content: "";
 	top: 0;
 	left: 0;
 	z-index: 2;
 	width: 100%;
	height: 100%;
    /*アニメーション*/
 	transition: transform .5s cubic-bezier(0.8, 0, 0.2, 1) 0s;
 	transform: scale(0, 1);
	transform-origin: right top;
}
.bgleft::before{
    background: #111;
}
.bgleft:hover span{
    color: #fff;
}
.bgleft_w::before{
    background: #fff;
}
.bgleft_w:hover span{
    color: #111;
}
.bgleft:hover::before,
.bgleft_w:hover::before{
    transform-origin:left top;
	transform:scale(1, 1);
}

/* 職種紹介モーダル */
.js-modal-open{
    cursor: pointer;
}
.modal{
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    top: 0;
    left: 0;
    transition: 0.3s;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
}
.modal.is-active{
    opacity: 1;
    visibility: visible;
}
.modal-container .close_btn{
    position: absolute;
    width: 30px;
    height: 30px;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.modal-container .close_btn::before,
.modal-container .close_btn::after{
    position: absolute;
    content: "";
    width: 1px;
    height: 21px;
    background: #111;
    top: 50%;
    left: 50%;
}
.modal-container .close_btn::before{
    transform: translate(-50%,-50%) rotate(45deg);
}
.modal-container .close_btn::after{
    transform: translate(-50%,-50%) rotate(-45deg);
}
.modal-container .modal-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 10px;
    background: #fff;
    padding: 40px;
}
.modal-container .modal-content .modal_ttl{
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #111;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
.modal-container .modal-content .txt{
    margin: 15px 0;
    line-height: 1.5;
    color: #111;
}
.modal-container .modal-content .job_recruit_Btn{
    position: relative;
    display: block;
    width: 100%;
    max-width: 340px;
    background: #111;
    border: 1px solid #111;
    padding: 20px;
    text-align: center;
    margin: 0 auto;
    transition: 0.3s;
}
.modal_buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.modal_buttons li {
    width: 100%;
    max-width: 300px;
}
.modal-container .modal-content .job_recruit_Btn span{
    position: relative;
    color: #fff;
    font-size: 1.4rem;
    transition: 0.3s;
    z-index: 2;
}
.modal-container .modal-content .job_recruit_Btn:hover span{
    color: #111;
}

.modal-container .modal-content ul {
    display: flex;
    justify-content: center;
    gap: 16px;
    width: 90%;
    margin: 0px auto;
}
.modal-container .modal-content ul li {
    /*margin: 0 4px;*/
    width: 50%;
}
.modal-container .modal-content ul li a span {
    font-size: 12px!important;
}
@media screen and (max-width: 768px) {
    .modal-container .modal-content {
        width: 95%;
    }
    .modal-container .modal-content ul {
        gap: 8px;
        width: 100%;
    }    
}
/* --------------------------------
人を知る
----------------------------------- */
.member_Wrap{
    position: relative;
    background: #fff;
    z-index: 0;
}
.member_Wrap::after{
    content: "";
    background: url(../img/blue_bg.jpg) center center no-repeat;
    background-size: cover;
    width: 90%;
    top: 50%;
    right: 0;
    z-index: -1;
}
#top .member_Wrap::after{
    position: absolute;
    height: 80%;
    transform: translateY(-50%);
}
#members .member_Wrap::after{
    position: fixed;
    height: 50%;
    top: 0;
}
.member_Wrap .inner{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}
.member_Wrap .Wrap_ttl h2{
    font-weight: 600;
}
.member_Wrap .slider-inner .lead_txt{
    width: 85%;
    margin-top: 20px;
}
.member_Wrap .slider-inner{
    align-items: flex-end;
}
.member_Wrap .slider{
    margin-top: 15px;
}
.member_Wrap .viewmore{
    margin: 50px auto 0;
    background: #111;
    border: 1px solid #111;
    color: #fff;
}

/* --------------------------------
人を知る＞社員インタビュースライダー
----------------------------------- */
/* .slider .slick-slide{
    height: auto;
} */
.arrow_Box{
    width: auto;
}
.arrow_Box .slide-arrow{
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #111;
    background: #fff;
    transition: 0.3s;
    cursor: pointer;
}
.arrow_Box .slide-arrow:hover{
    background: #111;
}
.arrow_Box .slide-arrow:hover::before,
.arrow_Box .slide-arrow:hover::after{
    background: #fff;
}
.arrow_Box .slide-arrow::before,
.arrow_Box .slide-arrow::after{
    position: absolute;
    content: "";
    width: 10px;
    height: 1px;
    background: #111;
}
.arrow_Box .slide-arrow.prev-arrow{
    margin-right: 10px;
}
.arrow_Box .slide-arrow.prev-arrow::before{
    top: 42%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-45deg);
}
.arrow_Box .slide-arrow.prev-arrow::after{
    top: 57%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
}
.arrow_Box .slide-arrow.next-arrow::before{
    top: 42%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
}
.arrow_Box .slide-arrow.next-arrow::after{
    top: 57%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-45deg);
}
.slider .slider-item{
    position: relative;
    display: block;
    width: calc((100% / 3) - 0.5%);
    border-radius: 10px;
    margin: 10px 0.5% 10px 0;
    left: 10px;
}
.slider .slider-item figure{
    width: 100%;
    filter: drop-shadow(0px 5px 5px #aaa);
    transition: 0.3s;
}
.slider .slider-item figure img{
    border-radius: 10px 10px 0 0;
}
.slider .slider-item .txt_Box{
    padding: 15px;
    background: #fff;
    border-radius: 0 0 10px 10px;
    filter: drop-shadow(0 0 5px #aaa);
    transition: 0.3s;
}
.slider .slider-item .txt_Box span.job{
    display: inline-block;
    font-size: 1.4rem;
    padding: 5px 8px;
    border: var(--blue) 1px solid;
    border-radius: 50px;
    color: var(--blue);
}
.slider .slider-item .txt_Box h3{
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 7px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.slider .slider-item .txt_Box .name{
    font-size: 1.4rem;
    line-height: 1.4;
    color: #999;
    margin-top: 7px;
}
.slider .slider-item:hover figure,
.slider .slider-item:hover .txt_Box{
    filter: none;
}


/* ==============================================================
PC(1600px~)
============================================================== */
@media screen and (min-width: 1600px) {

    /* --------------------------------
    footer
    ----------------------------------- */
    footer.inner_1200{
        max-width: none;
    }
    footer .ftr_nav .ftr_left{
        max-width: 350px;
    }

}

/* ==============================================================
TAB(~1050px)
============================================================== */
@media screen and (max-width:1050px) {

    /* --------------------------------
    header
    ----------------------------------- */
    header .hdr_inner{
        width: 98%;
    }
    header .hdr_inner h1 {
        max-width: 200px;
    }
    header .hdr_inner nav ul li {
        margin-right: 10px;
    }
    header .hdr_inner nav ul li a{
        font-size: 1.2rem;
    }
    header .hdr_inner nav ul li.hdr_btn a{
        padding: 8px 12px;
    }
    /* ハンバーガーメーニュー */
    #menu{
        top: 15px;
        width: 20px;
        height: 20px;
    }
    #menu span{
        width: 20px;
    }
    #menu span:nth-child(2){
        top: 13px;
    }
    #menu span:nth-child(3){
        top: 21px;
    }

    /* --------------------------------
    footer
    ----------------------------------- */
    footer h1{
        max-width: 250px;
    }
    footer .ftr_nav .ftr_left .entry_Btn a {
        margin: 0 auto 10px;
        padding: 10px;
        font-size: 1.4rem;
    }
    footer .ftr_nav .ftr_left .other_link_Btn{
        margin-top: 0;
    }
    footer .ftr_nav .ftr_left .other_link_Btn a.other_link {
        margin-bottom: 10px;
        font-size: 1.2rem;
    }
    footer .ftr_nav .ftr_right ul.gNav li.main_List {
        margin-right: 1%;
    }
    footer .ftr_nav .ftr_right ul.gNav li.main_List a.main_link {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    footer .ftr_nav .ftr_right ul.gNav li.main_List ul.sub_List li a {
        font-size: 1.2rem;
        margin-bottom: 10px;
        padding-left: 20px;
    }
}

/* ==============================================================
TAB・SP(~819px)
============================================================== */
@media screen and (max-width:819px) {

    /* --------------------------------
    header
    ----------------------------------- */
    header {
        padding: 10px;
    }
    header .hdr_inner nav{
        display: none;
    }
    header .hdr_inner h1{
        width: 60%;
        max-width: 300px;
        z-index: 99;
    }
    /* ハンバーガーメーニュー */
    #menu{
        right: 15px;
    }
    ul.gNav {
        width: 90%;
        margin: 0 auto;
        justify-content: space-between;
    }
    ul.gNav li.site-title{
        display: block;
        width: 70%;
        max-width: 280px;
        margin-bottom: 20px;
    }
    ul.gNav li.main_List{
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    ul.gNav li.main_List a.main_link {
        font-size: 1.6rem;
        font-weight: 400;
        padding-left: 0.7em;
        margin-bottom: 15px;
    }
    ul.gNav li.main_List a.main_link::before {
        width: 6px;
        height: 6px;
    }
    ul.gNav li.main_List ul.sub_List{
        padding-left: 1em;
    }
    ul.gNav li.main_List ul.sub_List li a{
        font-size: 1.4rem;
        font-weight: 300;
        padding-left: 22px;
        margin-bottom: 15px;
    }
    ul.gNav li.main_List ul.sub_List li a::before{
        width: 15px;
    }
    /* エントリーボタン */
    #globalMenu .entry_Btn a{
        margin-top: 10px;
    }
    .entry_Btn a{
        width: 100%;
        padding: 15px 10px;
        font-size: 1.6rem;
    }
    #globalMenu .other_link_Btn{
        display: flex;
        flex-direction: column;
        margin: 15px auto 0;
    }
    #globalMenu .other_link_Btn a{
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    #globalMenu .other_link_Btn a.other_link .material-symbols-sharp {
        font-size: 14px;
    }
    .other_link_Btn {
        width: 100%;
        margin: 0 auto;
    }

    /* --------------------------------
    footer
    ----------------------------------- */
    footer {
        padding: 50px 0 30px;
    }
    footer h1 {
        width: 90%;
        margin-bottom: 30px;
        margin: 0 auto 10px;
        padding: 20px 0 0;
    }
    footer .entry_Area h3 span {
        font-size: 3rem;
    }
    footer .entry_Area .entry_Btn {
        width: 100%;
        margin-top: 35px;
        padding-bottom: 20px;
    }
    footer .entry_Area .entry_Btn a{
        margin-bottom: 10px;
        padding: 15px 10px;
    }
    footer .ftr_nav .ftr_left {
        width: 100%;
    }
    footer .ftr_nav .ftr_left .entry_Btn,
    footer .ftr_nav .ftr_right{
        display: none;
    }
    footer .copyright {
        margin-top: 20px;
        text-align: center;
        font-size: 1rem;
        line-height: 1.4;
    }
}

/* ==============================================================
SP(~768px)
============================================================== */
@media screen and (max-width:768px) {
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }

    /* --------------------------------
    Pagetop
    ----------------------------------- */
    #Pagetop{
        right: 3%;
        bottom: 8.5%;
        width: 25px;
        height: 25px;
        line-height: 25px;
        padding: 25px;
    }
    #Pagetop a::before,
    #Pagetop a::after{
        width: 10px;
    }
    #Pagetop a::before{
        left: 34%;
    }
    #Pagetop a::after{
        right: 34%;
    }

    /* ----------------------------------------------------------
    下層ページ共通
    ---------------------------------------------------------- */
    /* h2見出し */
    .Wrap_ttl span.sub_ttl{
        font-size: 1.4rem;
    }
    .Wrap_ttl h2{
        font-size: 2.4rem;
    }
    .lead_txt{
        font-size: 1.4rem;
        line-height: 1.4;
    }
    /* 下層ページセクション見出し */
    .lower_ttl_Box h2,
    .lower_ttl_Box h3{
        font-size: 2rem;
    }
    .txt{
        font-size: 1.4rem;
    }
    /* サイドボタンがあるレイアウト */
    [class*=_Wrap] aside{
        width: 100%;
        max-width: none;
    }
    [class*=_Wrap] aside .index_Box {
        position: relative;
        top: unset;
    }
    [class*=_Wrap] main{
        width: 100%;
        max-width: none;
    }
    .side_Btn [class*=Btn] span{
        font-size: 1.2rem;
    }
    .side_Btn .job_detail_Btn::before,
    .side_Btn .job_detail_Btn::after{
        width: 8px;
        height: 1px;
        right: 7px;
    }
    [class*=_Wrap] aside .index_Box .side_Btn{
        position: fixed;
        display: flex;
        justify-content: space-between;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        background: rgba(255,255,255, 0.8);
        padding: 10px;
        z-index: 3;
    }
    [class*=_Wrap] aside .index_Box .side_Btn .job_detail_Btn,
    [class*=_Wrap] aside .index_Box .side_Btn .job_recruit_Btn{
        width: 49%;
        margin-bottom: 0;
    }
    /* もっと見るボタン */
    .viewmore{
        max-width: none;
        padding: 15px 10px;
    }
    .viewmore span {
        font-size: 1.6rem;
    }
    /* 職種紹介モーダル */
    .modal-container .modal-content {
        border-radius: 8px;
        padding: 45px 20px 20px;
    }
    .modal-container .modal-content .modal_ttl {
        font-size: 1.8rem;
        padding: 15px 0 10px;
    }
    .modal-container .modal-content .txt {
        margin: 10px 0;
        line-height: 1.5;
    }
    .modal-container .modal-content .job_recruit_Btn{
        padding: 15px 5px;
    }

    /* --------------------------------
    人を知る
    ----------------------------------- */
    .member_Wrap .inner {
        padding: 50px 0;
    }
    .member_Wrap .slider-inner .lead_txt {
        width: 100%;
        margin-top: 0;
    }
    .member_Wrap .viewmore {
        margin: 30px auto 0;
    }

    /* --------------------------------
    人を知る＞社員インタビュースライダー
    ----------------------------------- */
    .arrow_Box {
        position: absolute;
        width: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
    }
    .slider .slider-item .txt_Box span.job {
        font-size: 1.2rem;
        padding: 3px 8px;
    }
    .slider .slider-item .txt_Box h3 {
        font-size: 1.6rem;
        line-height: 1.4;
        margin-top: 5px;
    }
    .slider .slider-item .txt_Box .name {
        font-size: 1.2rem;
        margin-top: 5px;
    }
}