/*
Theme Name: exceed-japan
Theme URI: http://www.exceedjapan.co.jp/
Author: Your Name
Version: 1.0
*/

html{
    max-width: 100%;
    height: auto;
    font-size: 16px;
    color: #222;
    font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック", "Yu Gothic", sans-serif;
    scroll-behavior: smooth;
}

h1,h2,h3,h4,h5 {
    font-weight: 600;
}

p {
    line-height: 1.6;
}

a:hover{
    opacity: 0.8;
    transition: 0.6s;
}

.pt10{
    padding-top: 10px;
}
.pt20{
    padding-top: 20px;
}
.pt30{
    padding-top: 30px;
}
.pt40{
    padding-top: 40px;
}
.pt50{
    padding-top: 50px;
}

.pb10{
    padding-bottom: 10px;
}
.pb20{
    padding-bottom: 20px;
}
.pb30{
    padding-bottom: 30px;
}
.pb40{
    padding-bottom: 40px;
}
.pb50{
    padding-bottom: 50px;
}

.mt10{
    margin-top: 10px;
}
.mt20{
    margin-top: 20px;
}
.mt30{
    margin-top: 30px;
}
.mt40{
    margin-top: 40px;
}
.mt50{
    margin-top: 50px;
}

.mb10{
    margin-bottom: 10px;
}
.mb20{
    margin-bottom: 20px;
}
.mb30{
    margin-bottom: 30px;
}
.mb40{
    margin-bottom: 40px;
}
.mb50{
    margin-bottom: 50px;
}

.pc_only{
    display: block;
}

.sp_only{
    display: none;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.left {
    text-align: left;
}

/*-- ヘッダーエリア --*/
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    background: #fff;
    opacity: 0.9;
}

header nav {
    max-width: 1340px;
    width: 100%;
    margin: 0 auto;
    padding: 25px 3%;
}

.header_contain {
    display: flex;
    justify-content: space-between;
}

.header_inner {
    max-width: 900px;
    width: 100%;
}

.header_tel {
    text-align: right;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.header_tel a:first-of-type {
    font-size: 20px;
    font-weight: 500;
}

.header_tel a:last-of-type {
    font-size: 16px;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
}

.header_sns_list {
    max-width: 300px;
    width: 100%;
    padding-top: 0!important;
    display: flex;
}

.header_sns_list img {
    width: 25px;
}

.header_sns_list li:nth-of-type(4) img {
    padding-top: 3px;
}


.header_sns_list li {
    text-align: center;
}

.header_sns_list li a {
    background: none!important;
    padding: 0!important;
    text-align: center;
}

.header_sns_list p {
    color: #000;
    font-size: 10px;
    line-height: 1;
    padding-top: 4px;
}

.header_inner ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-top: 25px;
}

.header_inner ul li a,
.detail_btn a {
    position: relative;
    transition: .3s;
}

.header_inner ul li a::after,
.detail_btn a::after {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background: #EA3341;
    position: absolute;
    bottom: -3px;
    left: 0;
    transform: scale(0, 1);
    transition: .3s;
}

.header_inner ul li a:hover::after,
.detail_btn a:hover::after {
    transform: scale(1, 1);
}

.gnavi_list {
    position: relative;
}

.gnavi_list ul {
    display: block;
}

.gnavi_list:hover .dropdown_lists {
    visibility: visible;
    opacity: 1;
}

.dropdown_lists {
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease-in-out;
    width: 300px!important;
    position: absolute;
    top: 20px;
    right: -189px;
    z-index: 100;
}

.dropdown_list {
    position: relative;
    display: block;
    align-items: center;
    background: #fff;
    height: auto;
    padding: 15px 20px;
    border-bottom: 1px solid #e5e5e5;
    z-index: 100;
}

.acd-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease, visibility 0.5s;
}

.acd-label::after {
    box-sizing: border-box;
    content: "\f067";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 10px;
}

.acd-check:checked + .acd-label::after {
    content: "\f068";
}

.acd-check:checked + .acd-label + .acd-content {
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
}

.acd-content p {
    margin: 15px 0;
}

.dropdown_list a svg {
    position: absolute;
    left: 232px;
    color: #fff;
    background: #BC0F16;
    padding: 3px 6px;
    border-radius: 20px;
}

.dropdown_list:not(:first-child)::before {
    content: "";
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
}

.dropdown_list:hover {
    background: #e5e5e5;
}

.dropdown_list a {
    display: flex;
    align-items: center;
    color: #000;
    position: relative;
}

.dropdown_link a {
    padding: 8px 0;
}

.acd-check {
    display: none;
}

.acd-label {
    display: block;
    margin-bottom: 1px;
    padding: 11px 0 10px;
    position: relative;
}

.acd-label::after {
    box-sizing: border-box;
    content: "\f067";
    display: block;
    font-family: "Font Awesome 6 Free";
    height: 60px;
    padding: 23px 0 10px;
    position: absolute;
    right: 10px;
    top: -12px;
}

.acd-content {
    display: block;
    height: 0;
    opacity: 0;
    padding: 0 20px 0 10px;
    transition: .5s;
    visibility: hidden;
}

.acd-check:checked + .acd-label::after {
    content: "\f068";
}

.acd-check:checked + .acd-label + .acd-content {
    max-height: 500px!important;
    height: 70px;
    opacity: 1;
    visibility: visible;
    padding: 10px 0;
}

.gnavi_list .dropdown_list:nth-of-type(3) .acd-check:checked + .acd-label + .acd-content {
    height: 130px;
}

.gnavi_list .dropdown_list:nth-of-type(4) .acd-check:checked + .acd-label + .acd-content {
    height: 70px;
}

.dropdown_list label {
    font-size: 16px;
}

.dropdown_acd {
    display: block;
}

.header_ctr {
    position: fixed;
    top: 160px;
    right: 0;
    z-index: 15;
}

.header_ctr a {
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
    font-size: 18px;
    letter-spacing: 0.05em;
}

.header_ctr a:hover {
    transform: scale(1.1);
    opacity: 1;
}

.header_ctr img {
    padding-bottom: 7px;
}

.header_ctr_job a {
    width: 60px;
    background: #fff;
    padding: 20px 15px;
    border-radius: 8px 0 0px 8px;
    margin-bottom: 15px;
    box-shadow: 0 0 9px -6px #374149;
}

.header_ctr_company a {
    width: 60px;
    color: #fff;
    background: #374149;
    padding: 20px 15px;
    border-radius: 8px 0 0px 8px;
}

.pankuzu ul {
    display: flex;
    padding-top: 105px;
    padding-bottom: 0!important;
}

.pankuzu ul li {
    font-size: 14px;
    color: #867d7b;
}

.pankuzu ul li svg {
    padding: 0 10px;
}
/*-- メインビジュアルエリア --*/
.top_mv {
    background-image: url(../img/top/main02_pc.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 50vw;
    margin-bottom: 50px;
}

.top_mv_tit h1 {
    color: #fff;
    font-size: 55px;
    font-weight: 600;
    line-height: 1.1;
    text-shadow: 0px 2px 12px #666;
}

.top_mv_tit h1 ruby rt {
    font-size: 10px;
    padding-bottom: 3px;
}

.top_mv_tit h1 span {
    font-size: 28px;
}

.top_mv_tit {
    position: absolute;
    top: 15vw;
    left: 4vw;
}

.top_mv_ctr {
    position: absolute;
    top: 27vw;
    left: 4vw;
}

.top_mv_ctr a:first-of-type {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    background: #fff;
    padding: 13px 40px;
    border-radius: 8px;
    margin-right: 20px;
}

.top_mv_ctr a:first-of-type:hover {
    transform: scale(1.1);
}

.top_mv_ctr a:last-of-type:hover {
    transform: scale(1.1);
}

.top_mv_ctr a:last-of-type {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    background: #374149;
    padding: 13px 40px;
    border-radius: 8px;
}

.top_mv_img {
    position: absolute;
    bottom: 6vw;
    left: 4vw;
}

.top_mv_img img {
    padding-right: 15px;
}

.flex {
    display: flex;
    justify-content: space-between;
}

.wrap {
    max-width: 1340px;
    width: 100%;
    margin: 0 auto;
}

.js-fadeUp {
    opacity: 0; 
    transform: translateY(30px);
    transition: opacity .9s, transform .9s;
  }
  
.js-fadeUp.is-inview {
    opacity: 1; 
    transform: translateY(0);
    transition-delay: .8s;
}

.js-fadeLeft {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity .4s, transform .4s;
}

.js-fadeLeft.is-inview {
    opacity: 1;
    transform: translateX(0);
    transition-delay: .3s;
}

.js-fadeLeft02 {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity .8s, transform .8s;
}

.js-fadeLeft02.is-inview {
    opacity: 1;
    transform: translateX(0);
    transition-delay: .6s;
}


.js-fadeRight {
    opacity: 0;
    transform: translateX(30px;);
    transition: opacity .8s, transform .8s;
}

.js-fadeRight.is-inview {
    opacity: 1;
    transform: translateX(0);
    transition-delay: .5s;
}

/*-- 無限スライダーエリア --*/
.sec01 {
    padding-bottom: 60px;
}

.carousel {
    display: flex;
    overflow: hidden;

    width: 100%;
}

.carousel {
    display: flex;
    overflow: hidden;
}

.carousel .inner {
    display: grid;
    grid-auto-columns: 24rem;
    grid-auto-flow: column;
    justify-items: center;
    animation: horizontal-animation 28s linear infinite;
    width: calc(24rem * 14);
}

.carousel .inner a img {
    width: 320px;
    height: auto;
}

.carousel .inner a:hover {
    transform: scale(1.1);
    opacity: 1;
}

/*--アニメーション設定 --*/
@keyframes horizontal-animation {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-24rem * 7)); 
    }
}

@media (hover: hover) {
    .carousel:hover .inner {
        animation-play-state: paused;
    }
}

/*-- 代表メッセージ --*/
.sec02 {
    position: relative;
    margin-top: 7vw;
    padding-bottom: 100px;
}

.message_bgi {
    position: absolute;
    bottom: 20vw;
    right: 0;
    z-index: 11;
    background-image: url(../img/top/diagonal_img.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 70%;
    height: 65%;
}

.top_tit_h2 h2 {
    font-size: 32px;
    padding-bottom: 30px;
    line-height: 1.4;
}

.avex_tit h2 {
    font-size: 28px;
}

.avex_tit h2 span {
    font-size: 40px;
}

.message_bgi_box {
    width: 73%;
    position: absolute;
    top: 3.5vw;
    right: 5vw;
}

.detail_btn {
    padding-top: 30px;
}

.detail_btn a {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: right;
    margin-left: auto;
}

.top_intro_flex .detail_btn a::after,
.sec08 .detail_btn a::after {
    background: #fff;
}

.detail_btn a svg {
    color: #fff;
    background: #000;
    padding: 10px 13px;
    border-radius: 20px;
    margin-left: 10px;
}

.top_message_img img {
    width: 55vw;
    height: 340px;
}

/*-- Youtube --*/
.sec03 {
    padding: 0 3% 100px;
}

.top_blk {
    width: 50%;
    margin-right: 60px;
}

.top_blk h2 {
    color: #bf0000;
}

/*-- 事業紹介 --*/
.sec04 {
    position: relative;
    background: #bf0000;
    padding: 100px 3% 40px;
    color: #fff;
}

.sec04 .flex {
    width: 49%;
    padding-bottom: 60px;
}

.top_treat_img img {
    width: 30%;
    position: absolute;
    top: 0;
    left: 0;
}

.top_intro_flex {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.top_intro_flex img {
    width: 100%;
}

.top_intro_box {
    width: 100%;
    padding-left: 90px;
}

.top_intro_box h3 {
    font-size: 24px;
    padding-bottom: 25px;
}

.top_intro_box .detail_btn {
    padding-top: 30px;
}

.top_intro_box .detail_btn a svg {
    color: #bf0000;
    background: #ffffff;
}

.top_intro_flex .flex:first-of-type .top_intro_box,
.top_intro_flex .flex:nth-of-type(3) .top_intro_box {
    padding-right: 40px;
}

/*-- 人材をお探しの企業様 --*/
.sec05 {
    background: url(../img/top/treat_img.png) no-repeat;
    padding: 100px 3%;
    background-size: contain;
}

.sec05 .flex {
    justify-content: center;
}

.top_tit_h3 h3 {
    font-size: 24px;
    padding: 30px 0 20px;
}

.top_search_box {
    width: 48%;
}

.top_search_box img {
    width: 100%;
}

/*-- 無限スクロールロゴ画像 --*/
.sec06 {
    background: #fcf8f7;
    padding: 50px 0;
}

/*-- ニュース --*/
.sec07 {
    padding: 80px 3%;
}

.top_news_wrap {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
.top_news_wrap .top_tit_h2 {
	width: 20%;
}
.top_news_contain {
	width: 78%;
}

.top_news_contain .top_news_box:first-of-type {
    padding-top: 0;
}

.top_news_box {
    width: 100%;
    border-bottom: solid 1px #e0e0e0;
    padding: 30px 0 30px 0;
}
.top_news_box a {
    display: flex;
    align-items: center;
}
.top_news_box p:first-of-type {
    margin-right: 10px;
    width: 135px;
}

.top_news_box .post-categories {
    background: #bf0000;
    padding: 6px 25px;
    color: #fff;
    transform: skewX(-35deg);
    font-size: 14px;
    margin-right: 25px;
}

.top_news_box .post-categories span {
    display: inline-block;
    transform: skewX(35deg);
}

/*-- 採用情報・サスティナビリティ --*/
.sec08 {
    color: #fff;
}

.top_recruit_bgi, .top_sdgs_bgi {
    height: 450px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 50px;
}

/* .top_recruit_bgi {
    background-image: url(../img/top/recruitment_bgi.jpg);
}

.top_sdgs_bgi {
    background-image: url(../img/top/sdgs_bgi.jpg);
} */

.top_recruit_bgi .top_recruit_img {
    width: 980px;
    left: 0;
    background: url(../img/top/red_diagonal01.png);
}

.top_sdgs_bgi .top_recruit_img {
    width: 955px;
    right: 0;
    background: url(../img/top/red_diagonal02.png);
}

.top_recruit_bgi .top_recruit_img, .top_sdgs_bgi .top_recruit_img {
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    bottom: 5%;
}

.top_recruit_box {
    width: 87%;
    padding: 70px 50px 70px 80px;
}

.top_sdgs_bgi .top_recruit_box {
    width: 85%;
    margin: 0 0 0 auto;
    padding: 70px 80px 70px 50px;
}

.sec08 .detail_btn a svg {
    color: #bf0000;
    background: #fff;
}
/*-- フッターエリア --*/
footer {
    width: 100vw;
    color: #fff;
    background: #221815;
    font-size: 16px;
}

.foot_contain {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 50px 2% 60px;
}

.foot_inner {
    display: flex;
    justify-content: space-between;
}

.foot_inner li {
    padding-bottom: 23px;
}

.foot_inner ul li a {
    position: relative;
    transition: .3s;
}

.foot_inner ul li a::after {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background: #fff;
    position: absolute;
    bottom: -5px;
    left: 0;
    transform: scale(0, 1);
    transition: .3s;
}

.foot_inner ul li a:hover::after {
    transform: scale(1, 1);
}

.foot_inner ul li p {
    font-size: 10px;
    padding-top: 5px;
    line-height: 1.4;
}

.foot_child {
    font-size: 14px;
    padding-bottom: 10px;
}

.foot_contain .foot_inner:nth-of-type(2) {
    padding-top: 80px;
}

.foot_contain .foot_inner:nth-of-type(2) ul {
    max-width: 750px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.foot_contain .foot_inner:nth-of-type(2) ul div {
    padding-right: 60px;
}

.foot_list a {
    display: block;
    text-align: center;
}

.foot_pr {
    padding-right: 10px;
}

.foot_contain .foot_inner:nth-of-type(2) ul div a:first-of-type{
    margin-right: 50px;
}

.foot_sns_list {
    display: flex;
}

.foot_bana_blk {
    display: flex;
    justify-content: space-around;
    padding-bottom: 40px;
}

.foot_bana_blk a:first-of-type,
.foot_bana_blk a:nth-of-type(2),
.foot_bana_blk a:nth-of-type(3) {
    display: inline-block;
}

.foot_bana_blk a:first-of-type:hover,
.foot_bana_blk a:nth-of-type(2):hover,
.foot_bana_blk a:nth-of-type(3):hover {
    transform: scale(1.1);
    transition: 0.5s;
}

.foot_bana_blk img {
	max-width: 100%;
}

/*-- 固定ページ --*/
.sec_page_tit {
    width: 100vw;
    box-sizing: border-box;
    background: #fcf8f7;
    margin-left: calc( -50vw + 50%);
    padding: 85px 3%;
    margin-bottom: 60px;
}

.sec_page .wrap {
    padding: 3%;
}

.sec_page_h1 {
    max-width: 1340px;
    width: 100%;
    margin: 0 auto;
    padding: 0 3%;
}

.sec_page_h1 .intro_subttl {
	font-size: 1.2rem;
	display: block;
}

.sec_page h1 {
    font-size: 50px;
    font-weight: 600;

    text-align: left;
}

.sec_page h2 {
    font-size: 36px;
    font-weight: 600;
    padding-bottom: 40px;
    line-height: 1.3;
}

.sec_page h3 {
    font-size: 24px;
    font-weight: 600;
    color: #bf0000;
    padding-bottom: 30px;
    line-height: 1.3;
}

.sec_page h4 {
    font-size: 20px;
    font-weight: 600;
    position: relative;
    padding: 0 2rem 1rem 0;
    border-bottom: 2px solid #bf0000;
    padding-bottom: 20px;

    line-height: 1.3;
}

.sec_page h4:before {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 15%;
    height: 2px;
    content: '';
    background: #eeeeee;
}

.sec_page h5 {
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 30px;
}

.sec_page p {
    line-height: 1.8;
    padding-bottom: 50px;
}

.sec_page ul {
    padding-bottom: 30px;
}

.sec_page ul li {
    padding-bottom: 15px;
}

.page_foot_contain {
    height: 360px;
    position: relative;
    background: #bf0008;
    max-width: 1100px;
    width: 100%;
    padding: 30px 20px;
    margin: 80px auto;
}

.page_foot_tit h3 {
    font-size: 24px;
    color: #fff;
    padding-bottom: 0;
    line-height: 1.3;
}

.page_foot_box {
    position: absolute;
    right: 100px;
}

.page_foot_img img {
    width: 390px;
    padding-right: 60px;
    position: absolute;
    left: 70px;
    bottom: 0;
}

.page_foot_ctr {
    display: flex;
    align-items: center;
    text-align: center;
    padding: 23px 0 25px;
}

.page_foot_ctr a:first-of-type {
    width: 250px;
    font-weight: 600;
    padding: 20px 0;
    margin-right: 30px;
    color: #fff;
    background: #000;
    border-radius: 8px;
}

.page_foot_ctr p {
    width: 250px;
    font-weight: 600;
    padding: 13px 0;
    color: #fff;
    border: solid 2px #fff;
    border-radius: 8px;
}

.page_foot_tel a {
    width: 530px;
    font-size: 24px;
    font-weight: 600;
    display: flex;
    color: #bf0008;
    background: #fff;
    border-radius: 8px;
    padding: 20px 0;
    align-items: center;
    justify-content: center;
}

.page_foot_tel img {
    padding-right: 5px;
}

.page_foot_tel span {
    font-size: 16px;
}

.page_foot_tel p {
    color: #fff;
    font-size: 14px;
    padding-top: 8px;
}

.page_foot_img h3 {
    display: none;
}
.page_foot_fax {
    display: none;
}

/*-- お問い合わせフォーム --*/
.form_table {
    padding-bottom: 60px;
}

.form_table th span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    background: #bf0000;
    padding: 5px 10px;
    border-radius: 6px;
    margin-right: 10px;
}

.form_table th {
    border-top: none!important;
}

.form_table th,
.form_table td {
    display: block;
}

.form_table table tr th {
    padding-bottom: 20px;
}

.form_table table tr td {
    display: block;
    padding-top: 0;
    margin-bottom: 50px;
}

.form_table td input {
    border: solid 1px #E9E9EA;
    height: 6vh;
    width: 80vw;
    padding: 0 20px;
    border-radius: 6px;
}

.form_table td textarea {
    border: solid 1px #E9E9EA;
    height: 15vh;
    width: 80vw;
    padding: 15px;
    border-radius: 6px;
}

.form_link a {
    color: #0000ee;
}

.p-country-name {
    display: none;
}

.post_td input{
    width: 20vw!important;
}

.personal_info-box {
    border: solid 1px #E9E9EA;
    overflow-y: scroll;
    height: 30vh;
    padding: 20px;
}

.form_text {
    text-align: right;
}

.form_btn {
    display: flex;
    justify-content: center;
    padding: 70px 0;
}

.form_btn input:first-of-type {
    width: 250px;
    text-align: center;
    padding: 18px 20px;
    border-radius: 8px;
    margin-right: 40px;
    color: #fff;
    background: #000;
}

.form_btn input:last-of-type {
    width: 250px;
    text-align: center;
    padding: 18px 20px;
    border-radius: 8px;
    color: #fff;
    background: #bf0000;
}

.form_btn input:hover {
    opacity: 0.85;
    transition: 0.5s;
}

.mw_wp_form .error {
    margin-top: 10px;
    color: #fff!important;
    background: #b70000;
    padding: 5px 10px 7px;
    width: fit-content;
    line-height: 1;
}

.btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 270px;
    text-align: center;
    padding: 16px 20px;
    border-radius: 8px;
    margin-right: 40px;
    color: #fff;
    background: #bf0000;
    margin: 0 auto;
}

.btn svg {
    color: #bf0000;
    background: #fff;
    padding: 4px 7px;
    border-radius: 20px;
    margin-left: 10px;
}
.btn.target_link svg {
    color: #fff;
    background: none;
}

.mw_wp_form .error {
    padding-top: 10px;
}

.form_check {
    padding-top: 40px;
    text-align: center;
}

.mwform-checkbox-field input, .mwform-radio-field input {
    -webkit-appearance: auto;
    margin-right: 2px;
    margin-bottom: 4px;
}

/*-- 採用情報ページ --*/
.common_flex {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
}

.common_flex .common_blk {
    width: 47.5%;
}

.common_flex img {
    width: 47.5%;
    height: 100%;
}

.saiyo_contain02 .common_flex .common_blk {
    width: 100%;
}

.saiyo_contain .saiyo_flex img {
    width: 22.5%;
}

.saiyo_blk {
    padding: 120px 0;
}

.saiyo_blk .flex .saiyo_img {
    width: 32%;
}

.saiyo_blk .flex div h3 {
    padding-bottom: 20px;
}

.saiyo_img img {
    width: 100%;
    padding-bottom: 30px;
}

.saiyo_blk .flex:nth-of-type(2) {
    flex-wrap: wrap;
}

.fukuri_img img {
    width: 100%;
}

.fukuri_img {
    width: 50%;
    padding-right: 20px; 
}

.fukuri_box {
    width: 48.6%;
} 

.fukuri_box img {
    width: 49%;
    padding: 0 10px 15px 0;
}

.fukuri_box img:nth-of-type(2),
.fukuri_box img:nth-of-type(4) {
    padding-right: 0;
}

.saiyo_table {
    padding-bottom: 30px;
}

.saiyo_table table {
    width: 100%;
}

.saiyo_table table tr th {
    width: 20%;
    border-top: solid 1px #bf0000;
    border-right: solid 20px #fff;
    padding: 30px 20px;
}

.saiyo_table table tr td {
    border-top: solid 1px #d8d8d8;
    padding: 30px 20px;
    line-height: 1.6;
}

.about_inner .business_flex .btn{
    margin: 0 auto 100px;
}

.about_inner .business_flex .btn svg {
    color: #bf0000;
    background: #fff;
}

/*-- 会社案内 --*/
.company_text img {
    width: 25%;
    padding-bottom: 20px;
}

.company_sec .common_blk {
    width: 100%;
}

.company_box {
    width: 31%;
}

.company_box span {
    background: #fff;
    color: #bf0000;
    padding: 7px 12px;
    display: block;
    width: 110px;
    margin: 0 auto 15px;
    font-size: 20px;
}

.company_box h5 {
    text-align: center;
    font-size: 22px;
    color: #fff;
    background: #bf0000;
    padding: 25px 10px 20px;
}

.company_box p {
    background: #f6f6f6;
    padding: 25px 20px;
}

.company_blk {
    padding: 50px 0;
}

.common_blk span {
    text-align: right;
    display: block;
    padding-top: 30px;
}

.common_blk span img {
    width: 25%;
}

.contain {
    padding-bottom: 100px
}

.company_pb {
    padding-bottom: 50px;
}

.company_map {
    width: 47%;
    padding-bottom: 60px;
}

.company_map iframe {
    width: 100%;
    padding-bottom: 30px;
}

.company_map p {
    padding-top: 25px;
    padding-bottom: 0 !important;
}

.sec_company .common_flex {
    flex-wrap: wrap;
}

.company_img {
    width: 47.5%;
}

.company_img img {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}

/*-- 求人広告事業のご案内 --*/
.jobad_contain .common_flex {
    padding-bottom: 50px;
}

.jobad_inner {
    width: 46.12%;
}

.jobad_inner .saiyo_table table tr th {
    width: 120px;
    padding: 30px 0;
}

.jobad_inner .saiyo_table {
    padding-bottom: 0;
} 

.jobad_contain .company_box span {
    width: 130px;
}

.detachment_wrap .jobad_contain:first-of-type {
    padding-bottom: 25px;
}

.jobad_wrap .jobad_contain:nth-of-type(2) .common_flex {
    padding-bottom: 0;
}

.jobad_blk {
    padding: 30px 0;
}

.jobad_blk dl {
    /*height: 21vh;*/
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
}

.jobad_blk p {
    text-align: center;
}

.jobad_blk p img {
    width: auto;
}

.jobad_blk dl dt {
    width: 22%;
    height: 50px;
    color: #fff;
    background: #000;
    text-align: center;
    margin-right: 30px;
	line-height: 50px;
}

.jobad_blk dl dd {
    width: 72%;
    line-height: 1.6;
}

.jobad_box {
    padding-bottom: 70px;
}

.jobad_box .flex {
    padding-top: 0;
}

.jobad_box .flex div {
    width: 60%;
    margin-left: 50px;
}

.class_inner .jobad_blk p {
    padding-bottom: 45px;
}

.class_box p span {
    color: #BF0000;
}

/*-- 派遣事業のご案内 --*/
#guidance, #merit, #coordinator, #service, #flow, #margin {
    padding-top: 120px;
    margin-top: -120px;
}

.detachment_blk p {
    padding-bottom: 25px;
}

.anker_list ul li a svg {
    color: #fff;
    background: #000;
    padding: 3px 4px;
    border-radius: 20px;
    margin-left: 2px;
    margin-bottom: -3px;
}

.anker_list a {
    font-size: 14px;
}

.detachment_wrap .jobad_contain:nth-of-type(2) .common_flex {
    padding-bottom: 0;
}

.staff_blk {
    width: 45.5%;
    padding-bottom: 75px;
}

.staff_blk h4 {
    margin-bottom: 30px;
}

.staff_blk h5 {
    padding-bottom: 20px;
}

.staff_flex img {
    width: 100%;
    height: auto;
}

.staff_flex div:last-of-type {
    width: 70%;
    padding-left: 40px;
}

.staff_flex div:last-of-type h5 {
    color: #bf0000;
}

.staff_contain .common_flex {
    flex-wrap: wrap;
}

.staff_contain p {
    padding-bottom: 20px;
}

.detachment_contain {
    padding-bottom: 40px;
}

.detachment_contain .center img {
    padding-bottom: 60px;
}

.detachment_contain table .btn a {
    width: 290px;
    margin: 30px 0;
    text-align: left;
}

.detachment_contain table .btn svg {
    color: #fff;
    background: none;
    height: 18px;
    margin-left: 3px;
}

.detachment_table tr td:nth-of-type(2) {
    border-left: solid 20px #fff;
}

.detachment_table_box tr:first-of-type th:last-of-type  {
    border-top: solid 1px #d8d8d8;
    font-weight: 400;
    width: auto;
}

.service_inner .saiyo_table {
    padding-bottom: 0;
}

.flow_contain .common_flex {
    padding-bottom: 0;
}

.jobad_wrap .flow_contain .common_flex {
    padding-bottom: 50px;
}

.flow_contain .business_flex {
    justify-content: space-around;
    width: 65%;
    margin: 0 auto 100px;
}

.flow_contain .business_flex .btn svg {
    color: #fff;
    background: #bf0000;
}

.flow_inner .business_flex {
    justify-content: space-around;
    width: 65%;
    margin: 0 auto 150px;
}

.flow_inner .business_flex .btn svg {
    color: #fff;
    background: #bf0000;
}

.pro_contain.flow_inner .business_flex {
    justify-content: space-around;
    width: 65%;
    margin: 0 auto 70px;
}

.pro_contain.flow_inner .business_flex .btn svg {
    color: #bf0000;
    background: #fff;
    padding: 4px 7px;
    border-radius: 20px;
    margin-left: 10px;
}

.flow_wrap .jobad_box .flex div {
    width: 100%;
    margin-left: 0;
}

.pro_contain .jobad_box .flex div{
    margin-top: 0;
}


/*-- 人材をお探しの企業様 --*/
.info_flex {
    flex-wrap: wrap;
    padding-bottom: 100px;
}

.info_flex .info_box {
    width: 47.5%;
}

.info_flex div img {
    width: 100%;
    padding-bottom: 30px;
}

.info_flex div h4 {
    margin-bottom: 30px;
}

.info_flex .btn {
    margin: 0 auto;
}

.info_contain .common_flex {
    padding-bottom: 70px;
}

.pro_contain h4 {
    margin-bottom: 40px;
}

/*-- 事業案内 --*/
.business_wrap .info_box {
    padding-bottom: 80px;
}

.business_wrap .info_box:last-of-type {
    padding-bottom: 30px;
}

.business_wrap .info_flex {
    padding-bottom: 0;
}

.info_flex .flex .btn svg {
    color: #fff;
    background: none;
}

.info_flex .flex {
    margin-top: 40px;
}

.business_wrap .info_flex .info_box:nth-of-type(3) .flex {
    margin-top: 0;
}

/*-- サスティナブル --*/
.sdgs_wrap .center {
    padding-bottom: 50px;
}

.sdgs_wrap .center img {
    width: 30%;
    padding-top: 30px;
}

.sdgs_wrap .center p {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.3;
    padding-top: 20px;
}

.sdgs_img {
    width: 30%;
}

.sdgs_img img {
    width: 75%;
}

.sdgs_blk {
    border-bottom: solid 1px #eee;
    margin-bottom: 60px;
}

.sdgs_box {
    width: 80%;
}

.sdgs_box h4 {
    margin-bottom: 20px;
}

.sdgs_goal_img img {
    width: 80%!important;
    margin: 0 auto;
    padding-top: 0!important;
}

/*-- 投稿ページ --*/
.sec_single.sec_page h1 {
	font-size: 2.5rem;
}

.sec_single h4 {
    margin-bottom: 35px;
}

.sec_single img {
    padding: 20px 0 50px;
}

.sec_single p {
    padding-bottom: 50px;
}

.single_flex {
    display: flex;
}

.single_flex p {
    padding-bottom: 30px;
}

.single_flex p a {
    padding-left: 15px;
}

.single_box {
    width: 67%;
    padding-bottom: 50px;
}

.single_sidebar {
    width: 25%;
    border: solid 1px #eee;
    height: fit-content;
}

.single_sidebar h2 {
    font-size: 22px;
    padding: 15px 24px;
    background: #fcf8f7;
}

.single_sidebar ul {
    padding: 25px;
    border-bottom: solid 1px #eee;
}

.single_thumbnail img {
    width: 100%;
    height: auto;
}

.category_blk {
    border-bottom: solid 1px #eee;
    padding-bottom: 60px;
    margin-bottom: 60px;
}

.category_blk h2 {
    padding-bottom: 15px;
    font-size: 28px;
}

.category_inner {
    width: 70%;
}

.category_img {
    width: 35%;
}

.category_img img {
    width: 100%;
    height: auto;
    padding: 0;
}

.category_box {
    width: 60%;
}

.category_box ul {
    padding-bottom: 0;
}

.category_box p {
    padding-bottom: 15px;
}

.category_btn a {
    width: fit-content;
    display: flex;
    align-items: center;
    position: relative;
    transition: .3s;
}

.category_btn a::after {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background: #EA3341;
    position: absolute;
    bottom: -4px;
    left: 0;
    transform: scale(0, 1);
    transition: .3s;
}

.category_btn a:hover::after {
    transform: scale(1, 1);
}

.category_btn a svg {
    color: #fff;
    background: #be000a;
    padding: 4px 7px;
    border-radius: 20px;
    margin-left: 8px;
}

.category_list {
    display: flex;
    align-items: center;
}

.category_list li:first-of-type {
    padding-right: 15px;
}

.category_list li:last-of-type {
    color: #fff;
    background: #BE000A;
    padding: 5px 15px 6px;
    border-radius: 20px;
    margin-bottom: 15px;
    font-size: 14px;
}

.category_inner .category_blk:last-of-type {
    border: none;
}

#block-9 .wp-block-group ul li {
    border-bottom: solid 1px #eeeeee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

#block-9 .wp-block-group ul li:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.page_navi {
    text-align: center;
    padding-bottom: 40px;
}

.page_navi .wp-pagenavi a,
.page_navi .wp-pagenavi span {
    border: 1px solid #be000a;
    padding: 5px 10px;
    margin: 3px;
}

.page_navi .wp-pagenavi span.current {
    background: #be000a;
    color: #fff;
    border: none;
}

.single_btn {
    margin-bottom: 70px;
}

.sec_list .category_inner {
    width: 100%;
}

.article_link {
    padding: 20px 0;
    text-align: center
}

.article_link span:first-of-type {
    padding: 0 15px;
}

.wp-pagenavi span.current {
    font-weight: bold;
    background: #be000a;
    color: #fff;
    border: none;
}

/*-- 社長紹介 --*/
.intro_img img {
    object-fit: cover;
}

.sec_intro .single_box {
    width: 85%;
    margin: 0 auto;
}

.sec_intro .single_box p a {
	color: #bf0000;
	text-decoration: underline;
}
.sec_intro .single_box p a:hover {
    text-decoration: none;
}

.thanks_box {
    padding-bottom: 40px;
}

.thanks_box strong {
    font-size: 18px;
    color: #BF0000;
}

.thanks_box p {
    padding-bottom: 20px;
}

.thanks_box a {
    color: #BF0000;
    padding-right: 10px;
}

@media (max-width: 1510px) {
    .message_bgi {
        height: 85%;
    }
}

@media (min-width: 1450px) {
    .message_bgi {
        height: 380px;
        bottom: 10vw;
    }
    .top_message_img img {
        width: 55vw;
    }
}

@media (max-width: 1449px) {
    .message_bgi {
        bottom: 12vw;
    }
}


@media (max-width: 1390px) {
    .sec_page_h1 {
        padding: 0;
    }
}

@media (max-width: 1350px) {
    .top_mv_tit {
        top: 13vw;
    }
    .top_mv_img {
        bottom: 2.5vw;
    }
}

@media (max-width: 1310px) {
    .message_bgi {
        height: 85%;
        bottom: 13vw;
    }
    .top_message_img img {
        height: 96%;
    }
}

@media (max-width: 1250px) {
    .business_flex .btn a {
       width: 230px;
    }
}

@media (max-width: 1210px) {
    .message_bgi {
        height: 83%;
        bottom: 11vw;
    }
    .top_message_img img {
        height: 112%;
    }
}

@media (max-width: 1190px) {
    .message_bgi {
        height: 90%;
        bottom: 9vw;
    }
    .top_message_img img {
        height: 118%;
    }
}

@media (max-width: 1150px) {
    .top_mv_tit h1 {
        font-size: 42px;
        line-height: 1.4;
    }
    .top_mv_img img {
        width: 28%;
    }
    .top_intro_flex .flex {
        display: block;
    }
    .top_intro_flex img {
        width: 85%;
    }
    .top_intro_box {
        padding-top: 30px;
        width: 100%;
        padding-left: 0;
    }
    .page_foot_img img {
        left: 50px;
        width: 300px;
        padding-right: 0;
    }
    .page_foot_box {
        right: 50px;
    }
    .foot_contain .foot_inner:nth-of-type(2) {
        padding-top: 160px;
    }
}

@media (max-width: 1100px) {
    .business_flex {
        display: block;
     }
     .business_flex .btn a {
        width: 270px;
    }
    .business_flex .btn:first-of-type a {
        margin-bottom: 35px;
    }
}

@media (max-width: 1045px) {
    .top_mv {
    	height: 600px;
    }
    .top_mv_tit {
        top: 125px;
        left: 40px;
    }
    .top_mv_ctr {
        top: 280px;
        left: 40px;
    }
    .top_mv_img {
        bottom: 3vw;
    }
    .message_bgi {
        height: 97%;
        bottom: 6vw;
    }
    .top_message_img img {
        height: 147%;
    }
    .message_bgi_box {
        width: 68%;
    }
    .sec02 {
        padding-bottom: 130px;
    }
    .sec03 {
        padding-top: 50px;
    }
    .top_recruit_bgi .top_recruit_img, .top_sdgs_bgi .top_recruit_img {
    	width: 700px;
    }
    .top_recruit_bgi .top_recruit_img {
    	background-position-x: right;
    }
    .top_sdgs_bgi .top_recruit_img {
    	background-position-x: left;
    }
    .top_recruit_box {
    	padding: 50px 50px 50px 80px;
    }
    .top_sdgs_bgi .top_recruit_box {
    	padding: 50px 80px 50px 50px;
    }
}

@media (max-width: 940px) {
    .message_bgi {
        height: 107%;
        bottom: 3vw;
    }
    .top_message_img img {
        height: 162%;
    }
    .sec03 {
        padding-top: 80px;
    }
}

@media (max-width: 890px) {
    .pankuzu ul {
        padding-top: 140px;
    }
    .page_foot_img img {
    	left: 20px;
        width: 240px;
    }
    .page_foot_box {
    	right: 25px;
    }
    .page_foot_tit h3 {
    	font-size: 22px;
    }
    .page_foot_ctr {
    	padding: 23px 0 15px;
    }
    .page_foot_ctr a:first-of-type, .page_foot_ctr p {
    	width: 210px;
    }
    .page_foot_ctr a:first-of-type {
    	margin-right: 15px;
    }
    .page_foot_tel a {
    	width: 435px;
    }
    .sec_page .page_foot_tel p {
    	padding: 0;
    }
}

@media (max-width: 860px) {
    .message_bgi {
        height: 115%;
        bottom: 2vw;
    }
    .top_message_img img {
        height: 175%;
    }
    .message_bgi_box {
        width: 66%;
    }
    .sec03 {
        padding-top: 90px;
    }
    .page_foot_contain {
        height: 315px;
    }
}

@media (max-width: 845px) {
    .message_bgi {
        height: 123%;
        bottom: -3vw;
    }
    .top_message_img img {
        height: 195%;
    }
    .message_bgi_box {
        width: 66%;
    }
    .sec03 {
        padding-top: 130px;
    }
}

@media (max-width: 768px) {
    header {
        opacity: 0.95;
    }
    header nav {
        width: 100%;
        padding: 30px 0 100px;
    }
    .header_ctr img {
        padding: 0 5px 0px 0;
        width: 27px;
    }
    .header_ctr a {
        writing-mode: initial;
        font-size: 14px;
        font-weight: 600;
    }
    .header_ctr_job a {
        width: 100%;
        margin-bottom: 0;
        border-radius: 8px;
        padding: 13px 20px;
        box-shadow: 0px 2px 5px #666;
    }
    .header_ctr_company a {
        width: 100%;
        padding: 13px 10px;
        border-radius: 8px;
        box-shadow: 0px 2px 5px #666;
    }
    .wrap {
        max-width: 100%;
        padding: 0 3%;
        overflow: hidden;
    }
    .header_ctr {
        width: 100%;
        top: auto;
        right: auto;
        display: flex;
        align-items: center;
        bottom: 0;
        padding: 10px;
        background: #bf0000;
        justify-content: space-around;
    }
    .header_sns_list {
        max-width: 65%;
        margin: 0 auto;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        text-align: center;
        align-items: start;
    }
    .header_sns_list img {
        width: 40px;
    }
    .sp_sns_list {
        margin-bottom: 25px!important;
    }

    .sp_sns_list .header_sns_list {
        max-width: 100%;
    }
    .sp_sns_list .header_sns_list p {
        padding-top: 7px;
        font-size: 12px;
        line-height: 1.4;
    }
    .sp_sns_list .header_sns_list a {
        display: block;
    }
    .pankuzu ul {
        padding-top: 64px;
    }
    .top_mv {
        width: 100%;
        background-image: url(../img/top/main02_sp.jpg);
        height: 550px;
        margin-bottom: 40px;
        background-position: center;
    }
    .top_mv_tit h1 span {
        font-size: 20px;
    }
    .carousel .inner a img {
        width: 220px;
    }
    .carousel .inner {
        grid-auto-columns: 16rem;
        animation: horizontal-animation 30s linear infinite;
    }
    .avex_tit h2 span {
        font-size: 38px;
    }
    .top_mv_tit {
        top: 80px;
    }
    .top_mv_tit h1 {
        font-size: 32px;
        line-height: 1.2;
    }
    .top_mv_ctr {
        top: 230px;
    }
    .top_mv_img {
        width: 100%;
        position: absolute;
        bottom: 30px;
        left: 40px;
        right: auto;
    }
    .top_mv_img img {
        padding-right: 35px;
    }
    .top_mv_ctr a {
        display: inline-block;
        text-align: center;
        width: 230px;
    }
    .top_mv_ctr a:first-of-type {
        width: 200px;
        font-size: 14px;
        font-weight: 600;
        margin-right: 0;
        margin-bottom: 14px;
        padding: 12px 0;
    }
    .top_mv_ctr a:last-of-type {
        display: block;
        width: 200px;
        font-size: 14px;
        font-weight: 600;
        padding: 12px 0;
    }
    .flex {
        display: block;
    }
    .detail_btn a svg {
        padding: 6px 9px;
    }
    .sec02 {
        margin-top: 0;
        padding-top: 340px;
        padding-bottom: 0;
    }
    .message_bgi {
        background-image: url(../img/top/diagonal_img_sp.jpg);
        bottom: 45px;
        width: 110%;
        height: 75%;
    }
    .message_bgi_box {
        width: 78%;
    }
    .top_message_img {
        position: absolute;
        top: 55px;
    }
    .top_message_img img {
        width: 100%;
        height: auto;
    }
    .top_tit_h2 h2 {
        font-size: 24px;
        padding: 20px 0;
    }
    .sec03 {
        padding-top: 50px;
    }
    .top_iframe iframe {
        width: 100%;
    }
    .top_blk {
        width: 100%;
        margin-right: 0;
        padding-bottom: 40px;
    }
    .top_intro_flex {
        display: block;
    }
    .top_intro_box {
        width: 100%;
        padding-left: 0;
    }
    .top_intro_flex img {
        width: 100%;
    }
    .sec04 {
        padding: 70px 0 40px;
    }
    .sec04 .flex {
        width: 100%;
    }
    .top_intro_flex img {
        padding-bottom: 5px;
    }
    .top_intro_box h3 {
        font-size: 20px;
        padding-bottom: 20px;
    }
    .top_tit_h3 h3 {
        font-size: 20px;
        font-weight: 600;
    }
    .detail_btn {
        padding-top: 30px;
    }
    .top_intro_flex .flex:first-of-type .top_intro_box, 
    .top_intro_flex .flex:nth-of-type(3) .top_intro_box {
        padding-right: 0;
    }
    .top_search_box {
        width: 100%;
    }
    .flex .top_search_box:last-of-type {
        padding-top: 30px;
    }
    .top_tit_h2
    .top_news_contain {
        width: 100%;
    }
    .top_news_box {
        display: block;
    }
    .top_news_contain .top_news_box:first-of-type {
    	padding: 30px 0;
    }
    .top_news_box a {
    	flex-wrap: wrap;
    }
    .top_news_box .post-categories {
        text-align: center;
        font-size: 14px;
    }
    .top_news_box p:first-of-type {
        padding-right: 0;
        padding-bottom: 10px;
    }
    .top_recruit_bgi {
        background-position: center;
    }
    .top_sdgs_bgi {
        background-position: 37%;
    }
    .top_recruit_bgi .top_recruit_img {
        width: 100%;
        bottom: 0;
        background-position: 100%;
    }
    .top_recruit_bgi .top_recruit_box .top_tit_h3 h3 {
        padding-top: 0;
    }
    .top_sdgs_bgi .top_recruit_img {
        width: 100%;
        bottom: 0;
    }
    .top_recruit_box {
        width: 85%;
        padding: 40px 6% 25px;
    }
    .top_sdgs_bgi .top_recruit_box {
        width: 80%;
        margin: 0 0 0 auto;
        padding: 30px 7%;
    }
    .sec07 {
    	padding: 0 3% 80px;
    }
    .top_news_wrap .top_tit_h2, .top_news_contain {
    	width: 100%;
    }
    footer {
        font-size: 14px;
        padding: 0 3%;
    }
    .foot_inner {
        display: block;
    }
    .foot_contain {
        padding: 50px 3% 60px;
    }
    .foot_contain .foot_inner:nth-of-type(2) ul {
        max-width: 100%;
        display: block;
    }
    .foot_inner_sp {
        padding-bottom: 60px;
    }
    .foot_inner_sp p {
        padding-bottom: 0;
    }
    .foot_inner_sp .foot_flex a {
        display: block;
        text-align: center;
    }
    .foot_inner_sp .foot_flex p {
        font-size: 10px;
        padding-top: 5px;
    }
    .foot_flex {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .foot_flex ul {
        display: flex;
    }
    .foot_flex {
        padding: 15px 0 40px;
    }
    .foot_flex p {
        font-weight: 600;
    }
    .foot_flex ul li {
        padding-left: 15px;
    }
    .foot_bana_blk {
        display: block;
        padding-bottom: 0;
        text-align: center;
    }
    .foot_bana_blk a {
        display: inline-block;
        padding-bottom: 50px;
    }
    .pc_only{
        display: none;
    }
    .sp_only{
        display: block;
    }
    .nav_contact_sp a {
        color: #fff!important;
        background: #000;
        padding: 20px;
        border-radius: 8px;
        justify-content: center!important;
    }
    .nav_tel_sp a {
        font-size: 32px!important;
        justify-content: center!important;
    }
    .nav_tel_sp img {
        width: 25px;
        padding: 0 5px 4px 0;
    }
    .top_recruit_bgi {
        height: 250px;
        /* background-image: url(../img/top/recruitment_bgi_sp.jpg); */
        background-position: 65%;
        background-size: cover;
    }
    .top_sdgs_bgi {
        height: 350px;
    }

    .top_mv_tit h1 ruby rt {
        font-size: 7px;
        padding-bottom: 3px;
    }
    .hamburger {
        position: absolute;
        right: 20px;
        top: 18px;
        width: 50px;
        height: 40px;
        cursor: pointer;
        z-index: 300;
    }
    .hamburger__line {
        position: absolute;
        width: 30px;
        height: 2px;
        right: 0;
        background-color: #bf0000;
        transition: all 0.5s;
    }
    .hamburger__line--1 {
        top: 2px;
    }
    .hamburger__line--2 {
        top: 13px;
    }
    .hamburger__line--3 {
        top: 24px;
    }
    /*ハンバーガーがクリックされたら*/
    .open .hamburger__line--1 {
        transform: rotate(-45deg);
        top: 11px;
    }
    .open .hamburger__line--2 {
        opacity: 0;
    }
    .open .hamburger__line--3 {
        transform: rotate(45deg);
        top: 11px;
    }
    /*
    sp-nav(ナビ)
    =================================== */
    .sp-nav {
        position: fixed;
        right: -100%;
        top: 0;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        transition: all 0.5s;
        z-index: 200;
        overflow-y: auto;
    }
    .open .sp-nav {
        right: 0;
    }
    .black-bg {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 5;
        background-color: #fff;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s;
        cursor: pointer;
        z-index: 100;
    }
    /*ハンバーガーメニューが開いたら表示*/
    .open .black-bg {
        opacity: 0.3;
        visibility: visible;
    }
    .sp_nav-list {
        padding: 70px 35px 0 30px;
    }
    .header_logo-sp img {
        width: 110px;
    }
    header {
        height: 59px;
        padding: 10px 20px;
    }
    .sp_nav-list > li {
        margin-bottom: 40px;
    }
    .sp_nav-list a {
        color: #000;
        font-size: 17px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .sp_nav-list svg {
        color: #fff;
        background: #bf0000;
        border-radius: 20px;
        padding: 3px 6px 3px 7px;
    }
    .submenu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        margin-left: 15px;
    }
    .submenu li {
        margin: 35px 0;
    }
    .menu-item {
        position: relative;
    }
    .menu-item .menu-icon {
        position: absolute;
        right: -4px;
        top: -10;
    }
    .open-menu > .submenu {
        max-height: none; 
        height: auto;
    }
    .menu-icon {
        font-size: 30px;
    }
    .menu-item ul li:last-of-type {
        margin-bottom: 0;
    }

    /*-- 固定ページ --*/
    .sec_page_tit {
        padding: 35px 3%;
    }
    .sec_page h1 {
        font-size: 38px;
    }
    .sec_page h2 {
        font-size: 28px;
        padding-bottom: 30px;
    }
    .sec_page h3 {
        font-size: 22px;
        padding-bottom: 20px;
    }
    .sec_page p {
        line-height: 1.8;
    }
    .page_foot_contain {
        max-width: 100%;
        margin: 80px auto;
        height: auto;
    }
    .page_foot_img h3 {
        display: block;
        color: #fff;
        font-size: 18px;
        padding: 0 0 20px 20px;
        line-height: 1.4;
    }
    .page_foot_img {
        position: initial;
        display: flex;
        align-items: end;
        border-bottom: solid 1px #fff;
        margin-top: -60px;
    }
    .page_foot_ctr {
        display: block;
        padding: 0;
    }
    .page_foot_ctr a:first-of-type {
        display: block;
        margin: 0 auto 20px;
        width: 100%;
    }
    .page_foot_tel a {
        margin: 0 auto;
        font-size: 18px;
        width: 100%;
        display: block;
        padding: 10px 0;
    }
    .page_foot_tel span {
        padding-top: 5px;
        display: block;
    }
    .page_foot_tel p {
        display: none;
    }
    .page_foot_tel img {
        padding-right: 0px;
    }
    .page_foot_img img {
        position: initial;
        padding-right: 0;
    }
    .page_foot_box {
        position: initial;
        padding: 0 30px;
        padding: 40px 25px 0;
    }
    .page_foot_tel {
        text-align: center;
    }
    .page_foot_fax {
        display: block;
        text-align: center;
        padding-top: 20px;
    }
    .page_foot_fax p:first-of-type {
        font-weight: 600;
        padding: 13px 0;
        border: solid 2px #fff;
        border-radius: 8px;
        margin: 0 auto 10px;
    }
    .page_foot_fax p {
        color: #fff;
    }

    /*-- お問い合わせフォーム --*/
    .form_table td input {
        width: 100%;
    }
    .form_table td textarea {
        width: 100%;
    }
    .post_td input{
        width: 50%!important;
    }
    .form_btn {
        display: block;
        text-align: center;
        padding: 50px 0 70px;
    }
    .form_btn input:first-of-type {
        margin-right: 0;
        margin-bottom: 30px;
    }

    /*-- 採用情報 --*/
    .common_flex {
        display: block;
    }
    .common_flex .common_blk {
        width: 100%;
    }
    .common_flex img {
        width: 100%;
    }
    .saiyo_flex {
        display: flex;
        flex-wrap: wrap;
    }
    .saiyo_contain .saiyo_flex img {
        width: 45%;
    }
    .saiyo_contain .saiyo_flex img {
        width: 49%;
        padding-bottom: 15px;
    }
    .saiyo_blk {
        padding: 80px 0;
    }
    .saiyo_blk .flex .saiyo_img {
        width: 49%;
    }
    .saiyo_blk .flex:nth-of-type(2) {
        display: flex;
    }
    .fukuri_img {
        width: 100%;
        padding-right: 0;
        padding-bottom: 20px;
    }
    .fukuri_box {
        width: 100%;
    }
    .saiyo_table table tr th {
        display: block;
        width: 100%;
        border-right: none;padding: 20px 10px 30px;
    }
    .saiyo_table table tr td {
        display: block;
        border-right: none;padding: 20px 10px 30px;
    }

    /*-- 会社案内 --*/
    .company_text img {
        width: 100%;
        padding: 0 30px 30px;
    }
    .company_box {
        width: 100%;
        margin-bottom: 50px;
    }
    .common_flex .company_box:last-of-type {
        margin-bottom: 0;
    }
    .company_box span {
        font-size: 16px;
    }
    .company_box p {
        height: auto;
    }
    .contain {
        padding-bottom: 80px;
    }
    .company_blk {
        padding: 30px 0 60px;
    }
    .company_pb {
        padding-bottom: 90px;
    }
    .company_box span {
        width: 85px;
    }
    .company_map {
        width: 100%;
        padding-bottom: 50px;
    }
    .company_box h5 {
        padding: 20px 0 17px;
        font-size: 18px;
    }
    .company_img {
        width: 100%;
    }

    /*-- 求人広告事業のご案内 --*/
    .jobad_contain .common_flex {
        padding-bottom: 20px!important;
    }
    .jobad_inner {
        width: 100%;
    }
    .jobad_inner .saiyo_table table tr th {
        width: 100%;
    }
    .jobad_blk {
        padding: 0px 0 30px;
    }
    .jobad_blk dl {
        display: block;
        height: auto;
    }
    .jobad_blk dl dt {
        width: 100%;
    }
    .jobad_blk dl dd {
        width: 100%;
        padding: 25px 0 0;
    }
    .jobad_blk p {
        text-align: center;
        padding-bottom: 40px !important;
    }
    .jobad_box .flex div {
        width: 100%;
        margin-left: 0;
        margin-top: 30px;
    }
    .jobad_box .flex {
        padding-top: 10px;
    }
    .jobad_box {
        padding-bottom: 30px;
    }
    .jobad_box img {
        width: 100%;
    }
    .jobad_contain .company_box p {
        height: auto;
    }
    .jobad_box .btn {
        margin-top: 0!important;
        margin-bottom: 35px;
    }
    .classified_wrap .flex div {
        margin-top: 0;
    }
    .classified_wrap .jobad_box > h3 {
        padding-bottom: 0;
    }

    /*-- 派遣事業のご案内 --*/
    .anker_list .flex {
        display: flex;
        flex-wrap: wrap;
    }
    .anker_list a {
        font-size: 13px;
    }
    .detachment_wrap .jobad_contain .company_box p {
        height: auto;
    }
    .detachment_wrap .jobad_contain .common_flex img {
        padding-bottom: 50px;
    }
    .staff_blk {
        width: 100%;
        padding-bottom: 30px;
    }
    .staff_flex div:last-of-type {
        width: 100%;
        padding-left: 0;
        padding-top: 30px;
    }
    .staff_contain h3 {
        padding-bottom: 30px;
    }
    .staff_contain h5 {
        font-size: 18px;
    }
    .detachment_wrap .jobad_blk dl {
        height: auto;
    }
    .pb50 {
        padding-bottom: 0;
    }
    .detachment_contain .center img {
        width: 85%;
        margin: 0 auto;
        padding-bottom: 40px;
    }
    .detachment_contain .saiyo_table table tr th,
    .detachment_contain .saiyo_table table tr td {
        display: inline-block;
    }
    .detachment_contain .saiyo_table table tr th {
        width: 30%;
    }
    .detachment_contain .saiyo_table table tr td {
        width: 35%;
    }
    .detachment_table tr td:nth-of-type(2) {
        border-left: none;
    }
     .td_70 {
        width: 70%!important;
    }
     .detachment_contain table .btn a {
        font-size: 14px;
        width: 240px;
        margin-left: 0;
        padding: 16px 0 16px 10px;
    }
    .foot_logo {
        padding-bottom: 30px; 
    }
    #guidance, #merit, #coordinator, #service, #flow, #margin {
        padding-top: 90px;
        margin-top: -90px;
    }
    .flow_contain .business_flex {
        width: 100%;
        margin: 40px auto 100px;
    }
    .flow_inner .jobad_box p {
        padding-bottom;
    }
    .flow_inner .business_flex {
        width: 100%!important;
        margin: 0 auto 110px;
    }

    /*-- 人材をお探しの企業様 --*/
    .info_flex .info_box {
        width: 100%;
    }
    .info_flex .btn {
        margin-bottom: 70px;
    }
    .info_flex div:last-of-type .btn {
        margin-bottom: 0;
    }
    .info_contain .common_flex {
        padding-bottom: 70px;
    }
    .info_wrap .detachment_contain {
        padding-bottom: 0;
    }

    /*-- 事業案内 --*/
    .business_wrap .info_flex .btn {
        margin-bottom: 30px!important;
    }
    .business_wrap .info_box {
        padding-bottom: 50px;
    }
    .business_wrap .info_box:last-of-type {
        padding-bottom: 20px;
    }
    .business_wrap .info_flex {
        padding-bottom: 0;
    }
    .business_wrap .info_flex .flex {
        margin-top: 30px;
    }

    /*-- サスティナビリティ --*/
    .sdgs_wrap .center img {
        width: 80%;
        padding-top: 30px;
    }
    .sdgs_wrap .center p {
        font-size: 32px;
    }
    .sdgs_img img {
        width: 100%;
    }
    .sdgs_img {
        width: 50%;
        margin: 0 auto 40px;
        box-sizing: border-box;
    }
    .sdgs_box {
        width: 100%;
    }
    .sdgs_goal_img img {
        width: 100% !important;
    }

    /*-- 投稿ページ --*/
    .sec_single.sec_page h1 {
		font-size: 2rem;
	}
    .single_box {
        width: 100%;
        padding-bottom: 20px;
    }
    .single_sidebar {
        width: 100%;
        margin-bottom: 70px;
    }
    .single_sidebar h2 {
        font-size: 22px;
        padding: 15px 24px;
        padding-bottom: 15px;
        background: #eee;
    }
    .category_img {
        width: 100%;
    }
    .category_inner {
        width: 100%;
    }
    .category_box ul {
        padding-top: 30px;
    }
    .category_box {
        width: 100%;
    }
    .category_blk h2 {
        font-size: 22px;
        padding-bottom: 20px;
    }
    .category_list li:first-of-type {
        font-size: 0.9em;
    }
    .sec_single .sec_page_tit {
        margin-bottom: 40px;
    }
    .category_inner .category_blk:last-of-type {
        margin-bottom: 20px;
    }
    .page_navi {
        padding-bottom: 70px;
    }
    .single_btn {
        margin-bottom: 50px;
    }
    .intro_img img {
        width: 100%;
        height: 210px;
    }
    .sec_intro .single_box {
        width: 90%;
    }
    .pankuzu li {
        font-size: 12px!important;
    }
    .page_foot_ctr p {
        width: 85%;
        margin: 0 auto 30px;
    }
}

@media (max-width: 690px) {
    .page_foot_box {
        top: 60%;
    }
    .page_foot_fax p:last-of-type {
    	padding-bottom: 20px;
    }
}

@media (max-width: 450px) {
    .top_message_img {
        top: auto;
        bottom: 0;
    }
}

@media (max-width: 431px) {
    .top_mv {
      height: 500px;
    }
    .top_mv_tit {
        top: 90px;
        left: 25px;
    }
    .top_mv_ctr {
        top: 230px;
        left: 25px;
    }
    .top_mv_img {
        width: auto;
    }
    .top_mv_img img {
        padding-right: 15px;
        width: 30%;
    }
    .sec03 {
        padding-top: 50px;
    }
    .page_foot_img img {
        width: 150%;
    }
    .page_foot_img h3 {
        padding: 10px 0 10px 15px;
        font-size: 17px;
    }
}

@media (max-width: 415px) {
    .top_mv_tit {
        top: 21vw;
    }
    .top_mv_ctr {
        top: 53vw;
    }
    .top_mv_tit h1 span {
        line-height: 1.3;
        display: block;
        padding-top: 10px;
    }
    .header_ctr a {
        padding: 13px 12px;
    }
}

@media (max-width: 391px) {
    .header_ctr a {
        font-size: 13px;
        padding: 13px 11px;
    }
    .top_mv_tit {
        top: 25vw;
    }
    .top_mv_ctr {
        top: 63vw;
    }
    .sec03 {
        padding-top: 80px;
    }
    .top_sdgs_bgi .top_recruit_img {
    	width: 115%;
    }
    .top_sdgs_bgi .top_recruit_box {
        padding: 30px 6%;
    }
}

@media (max-width: 376px) {
    .header_ctr a {
        padding: 13px;
    }
    .top_mv {
        min-height: 120vw;
    }
    .top_mv_tit {
        top: 26vw;
    }
    .sec01 {
        padding-bottom: 40px;
    }
    .message_bgi_box {
        width: 78%;
    }
    .message_bgi {
    	height: 90%;
    }
    .top_mv_img {
        bottom: 4vw;
    }
    .top_mv_ctr {
        top: 62vw;
    }
    .header_ctr a {
        font-size: 12px;
    }
    .top_sdgs_bgi .top_recruit_box {
        width: 85%;
        padding: 20px 30px 50px 75px;
    }
}

@media (max-width: 361px) {
    .sec01 {
        padding-bottom: 70px;
    }
    .message_bgi {
        bottom: -12%;
        height: 50vh;
    }
    .message_bgi_box {
        width: 76%;
    }
    .top_message_img {
        top: 55vw;
    }
    .sec03 {
        padding-top: 120px;
    }
}

.hoge_flex .common_blk {
    width: 100%;
}

.hoge_flex .common_blk span img {
    width: 12%;
}

.hoge_flex.company_pb {
    padding-bottom: 0;
}

.hoge_img {
    width: 47.5%;
    margin: 0 auto 50px;
}

@media (max-width: 768px) {
    .hoge_flex .common_blk span img {
        width: 25%;
    }
    .hoge_img {
        width: 100%;
    }
}