@charset "UTF-8";


/* --------------------------------------
ヘッダー
---------------------------------------*/
header {
    width: 100%;
    height: 100px;
    /* overflow: hidden; */
    display: flex;
    justify-content: right;
}
.head_inner {
    width: 98%;
    height: 100%;
    margin: auto;
}
@media screen and (max-width: 1100px) {
    header {
        min-width: 1100px;
    }
}
@media screen and (max-width: 768px) {
    header {
        min-width: initial;
    }
}
.top_header {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* --------------------------------------
ヘッダーロゴ
---------------------------------------*/
h1.head_main_logo {
    z-index: 100;
}
h1.head_main_logo a img {
    height: 70px;
    filter: drop-shadow(2px 2px 5px #fff);
}
h1.head_main_logo.panelactive {
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
}
@media screen and (max-width: 768px) {
    h1.head_main_logo a img {
        height: 60px;
    }
}


/* --------------------------------------
ヘッダー内レイアウト
---------------------------------------*/
nav.head_main_menu {
    height: 100px;
    display: flex;
}
/* ヘッダーリンク*/
.head_menu_link {
    display: flex;
    align-items: center;
    z-index: 1000;
    margin-right: 70px;
}
.head_menu_link a img {
    height: 30px;
}
@media only screen and (max-width:768px) {
    .head_menu_link {
        display: flex;
        align-items: center;
        margin-left: 0;
        margin-right: 4.5rem;
    }
}

/* --------------------------------------
ヘッダー固定
---------------------------------------*/
.header_space {
    height: 100px;
    width: 100%;
}

/*========= スクロール途中でヘッダーが表示＆非表示するためのCSS ===============*/
#header {
    /*fixedで上部固定*/
    position: fixed;
    z-index: 999;
    /*最前面へ*/
    top: 0;
}


/* --------------------------------------
ハンバーガーメニュー
---------------------------------------*/
/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -100vw;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    /*ナビの高さ*/
    background-color: #f4f4f4;
    /*動き*/
    transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed !important;
    z-index: 999 !important;
    width: 100% !important;
    max-width: 500px;
    height: 100vh !important;
    height: 100svh !important;
    /*表示する高さ*/
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
}
/*ナビゲーション内ロゴ*/
h1.g-nav_main_logo {
    position: absolute;
    top: 20px;
    left: 5%;
}
h1.g-nav_main_logo a img {
    height: 60px;
}
/*ナビゲーション*/
#g-nav .g-nav-list_wrap {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 130px;
    left: 5%;
    width: 90%;
    padding-bottom: 30px;
}


/*リストのレイアウト設定*/
#g-nav ul.g-nav-list_wrap li {
    font-size: 1.2rem;
    list-style: none;
    text-align: center;
    text-decoration: none;
    padding: 2rem 1rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    /* margin-bottom: 1rem; */
}
@media screen and (max-width: 400px) {
    #g-nav ul.g-nav-list_wrap li {
        padding: 1rem 1rem;
    }
}
#g-nav ul.g-nav-list_wrap li a,
#g-nav ul.g-nav-list_wrap li {
    color: #000;
}
#g-nav ul.g-nav-list_wrap li p {
    font-size: 1.2rem;
}

#g-nav ul.g-nav-list_wrap li i {
    color: #3f74b0;
}
#g-nav ul.g-nav-list_wrap li a.link_btn_large i {
    color: #fff;
    -webkit-text-stroke: 1px #3f74b0;
}
.fa-angle-right {
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke: 1px #fff;
}

#g-nav ul.g-nav-list_wrap li .top_jobs_btn,
#g-nav ul.g-nav-list_wrap li a.link_btn {
    letter-spacing: 0;
}


/*ナビゲーション住所*/
p.g-nav_add {
    line-height: 1.5;
    margin-top: 3rem;
}
p.g-nav_add span.g-nav_add_title {
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

/* スクロールでボタン非表示 */
.openbtn1 {
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}
.openbtn1.scroll {
    opacity: 1;
    pointer-events: auto;
}
header.scroll {
    background-color: #f4f4f4dd;
    transition: 0.5s;
}
header.scroll.panelactive {
    background-color: initial;
    transition: 0.5s;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 15px;
    right: 0px;
    cursor: pointer;
    width: 70px;
    height: 70px;
}

/*×に変化*/
.openbtn1 span {
    z-index: 9999;
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 18px;
    height: 2px;
    background-color: #000;
    width: 50%;
}
.openbtn1 span:nth-of-type(1) {
    top: 20px;
}
.openbtn1 span:nth-of-type(2) {
    top: 32px;
}
.openbtn1 span:nth-of-type(3) {
    top: 45px;
}
.openbtn1.active span:nth-of-type(1) {
    background-color: #000;
    top: 26px;
    left: 22px;
    transform: translateY(6px) rotate(-45deg);
    width: 40%;
}
.openbtn1.active span:nth-of-type(2) {
    opacity: 0;
}
.openbtn1.active span:nth-of-type(3) {
    background-color: #000;
    top: 38px;
    left: 22px;
    transform: translateY(-6px) rotate(45deg);
    width: 40%;
}



/* --------------------------------------
サイトマップ
---------------------------------------*/
ul.accordion {
    width: 100%;
}
ul.accordion li {
    width: 100%;
    margin-bottom: 1.5rem;
}
ul.accordion li:last-child {
    margin-bottom: 0;
}

/* アコーディオン無リンク */
a.acc_option_none_link {
    display: block;
    border: solid 1px #ccc;
    padding: 1rem;
    box-sizing: border-box;
}
a.acc_option_none_link:hover {
    border: solid 1px #3f74b0;
    background-color: #3f74b0;
    color: #fff;
}

ul.accordion li.acc_option {
    position: relative;
}

/* チェックボタン非表示 */
.acc_toggle {
    display: none;
}


label.acc_title,
.acc_content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
}

/* アコーディオンパネル */
label.acc_title {
    display: block;
    width: 100%;
    border: solid 1px #ccc;
    padding: 1rem;
    box-sizing: border-box;
}
label.acc_title:hover {
    border: solid 1px #3f74b0;
    background-color: #3f74b0;
    color: #fff;
}


/* +ボタン */
label.acc_title::after,
label.acc_title::before {
    content: "";
    position: absolute;
    right: 1.25em;
    width: 1px;
    height: 0.75em;
    background-color: #000;
    transition: all 0.3s;
}
label.acc_title::after {
    transform: rotate(90deg);
}
.acc_toggle:checked + label.acc_title::before {
    transform: rotate(90deg) !important;
}
label.acc_title:hover::after,
label.acc_title:hover::before {
    background-color: #fff;
}


/* 展開後のスペース */
.acc_content {
    max-height: 0;
    overflow: hidden;
}
.acc_content_inner {
    width: 100%;
    padding: 1rem 0;
    padding-left: 1rem;
    box-sizing: border-box;
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.acc_toggle:checked + label.acc_title + .acc_content {
    max-height: 500px;
    transition: all 1s;
}
@media screen and (max-width: 768px) {
    .acc_content_inner {
        gap: 1rem 0.5rem;
    }
}
/* アコーディオンスペース内リンク */
a.acc_inner_link {
    display: block;
    width: 100%;
    border: solid 1px #ccc;
    padding: 1rem;
    box-sizing: border-box;
}
a.acc_inner_link:hover {
    border: solid 1px #3f74b0;
    background-color: #3f74b0;
    color: #fff;
}
a.acc_inner_link2 {
    display: inline-block;
    width: auto;
    border: solid 1px #ccc;
    background-color: #808080;
    color: #fff;
    padding: 0.75rem 2rem;
    box-sizing: border-box;
}
a.acc_inner_link2:hover {
    border: solid 1px #3f74b0;
    background-color: #3f74b0;
    color: #fff;
}
a.acc_inner_link2::before {
    content: '#';
}
@media screen and (max-width: 768px) {
    a.acc_inner_link2 {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}