@charset "UTF-8";
/* CSS Document */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}
_::-webkit-full-page-media, _:future, :root body {}
body, div {
    margin: 0;
    padding: 0;
    border: 0;
    transition: width 1s ease-in-out 0.01s;
    font-family: sans-serif;
}
p, ul, li, span, th, td {
    font-size: 16px;
    font-weight: 400;
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    letter-spacing: 1px;
    border: 0;
    text-decoration: none;
    list-style: none;
    margin: 0;
    padding: 0;
    color: #474747;
    cursor: default;
}
a {
    font-size: 16px;
    font-weight: 400;
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    letter-spacing: 1px;
    border: 0;
    text-decoration: none;
    list-style: none;
    margin: 0;
    padding: 0;
    color: #474747;
}
::before, ::after {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #474747;
}
h1, h2, h3, h4, h5 {
    font-size: 20px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    color: #474747;
    cursor: default;
}
main, header, footer {
    overflow: hidden;
}
main {}
/*header*/
.header_wrap {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 1);
}
.header_wrap.change_color {}
.header_inner_pc {
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: 90px;
    opacity: 1;
    transition: all .5s ease;
}
.header_logo {
    width: 300px;
    height: 90px;
    margin-left: 60px;
    object-fit: contain;
    vertical-align: top;
}
.header_list {
    width: calc(100% - 330px);
    display: flex;
    justify-content: right;
    margin-right: 30px;
}
.header_li {
    height: 90px;
    margin: 0 15px;
    line-height: 90px;
}
.header_pc_nav {
    font-size: 14px;
    transition: .3s;
    color: #000000;
    text-align: center;
    position: relative;
    cursor: pointer !important;
}
.header_pc_nav:before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    border-bottom: 1px solid #fff;
    transition: .3s;
}
.yellow_btn {
    font-size: 14px;
    color: #000000;
    cursor: pointer !important;
    padding: 10px 15px;
    border-radius: 20px;
    background-color: #E6E745;
    transition: 0.3s;
}
.yellow_btn:hover {
    background-color: #474747;
    color: #fff;
}
_::-webkit-full-page-media, _:future, :root .header_pc_nav:before {
    bottom: -25px;
}
.header_pc_nav span {
    display: block;
    font-size: 12px;
    color: #fff;
    cursor: pointer !important;
}
.header_pc_nav:hover:before {
    transition: .3s;
    width: 100%;
    cursor: pointer !important;
}
/*hamburger　ハンバーガーメニュー*/
.header_inner_sp {
    height: 0;
    opacity: 0;
    transition: all .5s ease;
}
@media(max-width:1300px) {
    .header_inner_pc {
        height: 0;
        opacity: 0;
    }
    .header_pc_nav{
        display: none;
    }
    .header_inner_sp {
        display: flex;
        opacity: 1;
        height: 60px;
    }
    .hamburger {
        display: block;
        height: 60px;
        margin-left: auto;
        position: relative;
        z-index: 10;
        width: 60px;
        border: none;
        background-color: transparent;
    }
    .hamburger.-active .hamburger__line {
        background-color: transparent;
    }
    .hamburger.-active .hamburger__line::before {
        top: 0;
        transform: rotate(45deg);
    }
    .hamburger.-active .hamburger__line::after {
        top: 0;
        transform: rotate(-45deg);
    }
    .hamburger.-active .hamburger__text::before {
        content: '閉じる';
        color: #474747;
    }
    .hamburger__line {
        display: block;
        height: 2px;
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translateX(-50%);
        width: 24px;
        background-color: #474747;
        transition: 0.4s;
    }
    .hamburger__line:before, .hamburger__line:after {
        content: "";
        display: block;
        height: 100%;
        position: absolute;
        width: 100%;
        background-color: #474747;
        transition: inherit;
    }
    .hamburger__line:before {
        top: -6px;
    }
    .hamburger__line:after {
        top: 6px;
    }
    .hamburger__text {
        position: absolute;
        bottom: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }
    .hamburger__text::before {
        content: "メニュー";
        text-align: center;
        color: #474747;
        ;
        font-size: 10px;
    }
    .header__nav-area {
        position: fixed;
        top: 0;
        left: -100%;
        z-index: 9;
        height: 100vh;
        width: 100vw;
        visibility: hidden;
        margin-top: 60px;
        border-top: 1px solid #ccc;
        background-color: #E6E745;
        transition: 0.4s;
    }
    .header__nav-area.-active {
        left: 0;
        visibility: visible;
    }
    .global-navigation {
        padding-top: 10px;
    }
    .logo_icon{
        width: 150px;
        object-fit: cover;
        vertical-align: top;
        margin: 0 auto;
        display: block;
    }
    .global-navigation__list > li {
        padding-bottom: 20px;
        border-bottom: 2px solid #e7e9ee;
    }
    .global-navigation__list > li + li {
        margin-top: 20px;
    }
    .global-navigation__link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #172e59;
        font-weight: 900;
        transition: color 0.4s;
        font-size: 0.875rem;
    }
    .global-navigation__link.-accordion {
        position: relative;
        background: none;
        border: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        width: 100%;
        padding: 0;
    }
    .global-navigation__link.-accordion::after {
        content: '';
        display: block;
        height: 12px;
        position: absolute;
        top: 50%;
        right: 5px;
        width: 2px;
        background-color: #ed3242;
        transform: translateY(-50%);
        transition: transform 0.4s;
    }
    .global-navigation__link.-accordion::before {
        content: '';
        display: block;
        height: 2px;
        position: absolute;
        top: 50%;
        right: 0;
        width: 12px;
        background-color: #ed3242;
        transform: translateY(-50%);
    }
    .global-navigation__link.-active::after {
        transform: translateY(-50%) rotate(-90deg);
    }
    .accordion {
        height: 0;
        overflow: hidden;
        visibility: hidden;
        transition: 0.4s;
    }
    .accordion.-active {
        height: auto;
        padding-top: 30px;
        visibility: visible;
    }
    .header_logo {
        width: 240px;
        position: relative;
        z-index: 10;
        height: 60px;
        margin-left: 15px;
    }
    .header_list {
        flex-wrap: wrap;
        width: 100%;
        margin-bottom: 60px;
    }
    .header_li {
        display: flex;
        width: 100%;
        text-align: left;
        margin: 0;
        padding: 0 15px;
        height: 70px;
    }
    .header_sp_nav {
        width: 100%;
        height: 50px;
        line-height: 50px;
        color: #474747;
        font-size: 18px;
        font-weight: bold;
        padding: 10px 15px 10px 15px;
        border-bottom: 1px solid #ccc;
        transition: .3s;
    }
    .header_sp_nav span {
        color: #E6E745;
        font-size: 14px;
        margin-left: 30px;
    }
    .header_sp_nav:hover {
        transition: .3s;
        padding-right: 60px;
    }
}
/*TOP 投稿スライダー*/
.l-inner {
    position: relative;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    width: 80%;
    margin: 0 auto;
}
.card02 .swiper-area {
    position: relative;
}
.card02 {
    overflow: hidden;
}
.card02 .swiper {
    overflow: visible;
}
.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}
.card02 .swiper-slide {
    width: 36rem;
}
.swiper-pointer-events {
    touch-action: pan-y;
}
.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}
.card02 .slide-media {
    padding-top: 62.5%;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}
.card02 .slide-media img {
    height: calc(100% + 16px);
    -webkit-transform: translateY(-16px);
    transform: translateY(-16px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.slide-content {
    width: 100%;
    padding-top: 10px;
}
.slide-date {
    font-size: 14px;
    color: #000;
}
.slide-title {
    font-size: 16px;
    font-weight: bold;
}
/*ページネージャー*/
.card02 .swiper-controller {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 1.6rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 3.2rem;
}
.card02 .swiper-pagination {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.2rem 0.8rem;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin: 0 auto 0 0;
    text-align: center;
}
.card02 .swiper-pagination-bullet {
    width: 1.6rem;
    height: 3px;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    vertical-align: top;
    background-color: var(--color-gray);
}
.card02 .swiper-pagination-bullet-active {
    width: 4rem;
    background-color: var(--color-theme);
}
.card02 .swiper-button-prev, .card02 .swiper-button-next {
    position: relative;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0;
}
.swiper-button-prev, .swiper-button-next {
    display: grid;
    place-content: center;
    width: 6.4rem;
    height: 6.4rem;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    background-color: rgba(100, 100, 100, .1);
    border-radius: 100px;
}
.swiper-button-prev::before, .swiper-button-next::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    border-radius: 50%;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
}
.swiper-button-prev::after, .swiper-button-next::after {
    width: 1.2rem;
    height: 1.2rem;
    content: "";
    border: 1px solid #333;
    border-width: 2px 2px 0 0;
}
.swiper-button-next::after {
    margin-right: 0.4rem;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.swiper-button-prev::after {
    margin-left: 0.4rem;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.swiper-button-disabled {
    pointer-events: none;
    opacity: 0;
}
.card02 .swiper-button-disabled {
    pointer-events: none;
    opacity: 0.5;
}
/*main*/
.keyvisual_wrap {
    width: 100%;
    position: relative;
}
.keyvisual {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    vertical-align: top;
}
.key_nav_list{
    position: absolute;
    top:60%;
    left: 7%;
    transform: translateY(-50%);
}
.key_icon{
    width: 100px;
    object-fit: cover;
    vertical-align: top;
    display: block;
    margin-bottom: 40px;
}
.key_nav_li{
    padding: 5px 0;
    margin: 20px auto;
    text-align: left;
}
.key_nav_link{
    font-size: 14px;
    font-weight: 400;
    transition: .3s;
}
.key_nav_link:hover{
    
}
.key_text {
    width: auto;
    display: block;
    position: absolute;
    top: 60%;
    left: 40%;
    transform: translate(-50%, -50%);
    font-size: 100px;
    line-height: 1.3;
    z-index: 10;
    font-weight: bold;
    color: #474747;
}
.keyvisual_it {
    position: absolute;
    top: 90px;
    right: 0;
    width: 55%;
    z-index: 5;
}
/*TOP ABOUT*/
.top_about_wrap {
    width: 90%;
    padding: 180px 5% 150px;
}
.top_about_hl {
    font-weight: bold;
    font-size: 100px;
    text-align: left;
    display: flex;
    line-height: 140px;
}
.top_about_hl span {
    font-size: 24px;
    color: #E6E745;
    font-weight: bold;
    margin-left: 20px;
    display: block;
    line-height: 170px;
}
.top_about_subhl {
    font-size: 18px;
    line-height: 1.6;
    font-weight: bold;
    margin-bottom: 10px;
}
.top_about_text {
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.6;
}
.top_about_btn {
    padding: 15px 35px;
    background: #E6E745;
    color: #474747;
    font-size: 14px;
    display: inline-block;
    border-radius: 25px;
    transition: .3s;
}
.top_about_btn:hover {
    background: #474747;
    color: #E6E745;
    transition: .3s;
}
.about_bt_img {
    width: 75%;
    margin-bottom: 30px;
    object-fit: cover;
    vertical-align: top;
}
/*TOP BUSINESS*/
.top_business_wrap {
    width: 100%;
    margin: 0 auto 100px;
    position: relative;
}
.top_business_inner {
    width: 75%;
    padding: 0 5% 0 20%;
}
.top_business_hl {
    font-weight: bold;
    font-size: 100px;
    text-align: left;
    display: flex;
    line-height: 140px;
    position: relative;
    width: 100%;
}
.top_business_hl span {
    font-size: 24px;
    font-weight: bold;
    color: #E6E745;
    margin-left: 20px;
    display: block;
    line-height: 170px;
}
.top_business_inner ul {
    width: 100%;
    margin-bottom: 30px;
}
.top_business_inner li {
    display: flex;
    justify-content: left;
    position: relative;
    width: 100%;
    min-width: 1000px;
    border-bottom: 1px solid #ccc;
    padding: 30px 0 30px 5px;
}
.top_business_inner h3 {
    font-size: 18px;
    font-weight: bold;
    width: 200px;
}
.top_business_inner h3 span {
    display: block;
    font-size: 14px;
    color: #E6E745;
}
.top_business_inner p {
    margin-left: 3%;
    width: 55%;
}
.top_business_btn {
    position: absolute;
    top: 50%;
    right: 0;
    line-height: 20px;
    transform: translateY(-50%);
    width: 140px;
    height: 20px;
    padding: 15px 35px;
    background: #E6E745;
    color: #474747;
    font-size: 14px;
    display: inline-block;
    border-radius: 25px;
    transition: .3s;
}
.top_business_btn:hover {
    background: #474747;
    color: #E6E745;
    border: 1px solid #474747;
    transition: .3s;
}
.top_business_btn2{
    position: absolute;
    top: 50%;
    right: 0;
    line-height: 20px;
    transform: translateY(-50%);
    width: 140px;
    height: 20px;
    padding: 15px 35px;
    background: #E6E745;
    color: #474747;
    font-size: 14px;
    display: none;
    border-radius: 25px;
    transition: .3s;
}
.top_business_btn2:hover {
    background: #474747;
    color: #E6E745;
    border: 1px solid #474747;
    transition: .3s;
}
.tag_position {
    position: absolute;
    bottom: 0;
    left: 7%;
}
.business_tag {
    position: relative;
    width: 70px;
    display: inline-block;
    padding: 200px 25px 200px;
}
.business_tag::before {
    content: "";
    transform: skewY(40deg);
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #E6E745;
}
.business_tag p {
    position: relative;
    z-index: 2;
    width: auto;
    margin: 0;
    color: #ffffff;
    writing-mode: vertical-rl;
    line-height: 2;
    height: 250px;
}
.business_tag span {
    display: block;
    font-size: 18px;
    font-weight: bold;
    writing-mode: vertical-rl;
    text-orientation: upright;
}


/*TOP works*/
.top_work_wrap{
	width:100%;
	margin:200px 0 180px;
	position:relative;
}
.top_work_kv{
	width:100%;
	object-fit:cover;
}
.top_work_img{
	width:50%;
	object-fit:cover;
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	z-index:10;
}




/*TOP COMPANY*/
.top_company_wrap {
    width: 80%;
    padding: 150px 10% 150px;
    position: relative;
}
.company_bg {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    vertical-align: top;
    z-index: -1;
}
.top_company_hl {
    font-weight: bold;
    font-size: 100px;
    text-align: left;
    display: flex;
    line-height: 140px;
    color: #fff;
}
.top_company_hl span {
    font-size: 24px;
    font-weight: bold;
    color: #E6E745;
    margin-left: 20px;
    display: block;
    line-height: 170px;
}
.top_company_text {
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #fff;
}
.top_company_btn {
    padding: 15px 35px;
    background: #E6E745;
    color: #474747;
    border: 1px solid #E6E745;
    font-size: 14px;
    display: inline-block;
    border-radius: 25px;
    transition: .3s;
}
.top_company_btn:hover {
    background: #474747;
    color: #E6E745;
    border: 1px solid #474747;
    transition: .3s;
}
/*TOP RECRUIT*/
.top_recruit_wrap {
    width: 80%;
    padding: 150px 10% 150px;
    position: relative;
    overflow: hidden;
}
.recruit_bg {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    vertical-align: center;
    z-index: -1;
}
.top_recruit_hl {
    font-weight: bold;
    font-size: 100px;
    text-align: left;
    display: flex;
    line-height: 100px;
    color: #fff;
}
.top_recruit_hl span {
    font-size: 24px;
    color: #E6E745;
    margin-left: 20px;
    display: block;
    line-height: 120px;
}
.top_recruit_subhl {
    font-size: 24px;
    font-weight: bold;
    color: #E6E745;
    margin-bottom: 40px;
}
.top_recruit_text {
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #fff;
}
.top_recruit_btn {
    padding: 15px 35px;
    background: #E6E745;
    color: #474747;
    border: 1px solid #E6E745;
    font-size: 14px;
    display: inline-block;
    border-radius: 25px;
    transition: .3s;
}
.top_recruit_btn:hover {
    background: #474747;
    color: #E6E745;
    border: 1px solid #474747;
    transition: .3s;
}
/*お問い合わせ*/
.contact_wrap {
    width: 100%;
    height: 500px;
    text-align: right;
    position: relative;
	display:flex;
}
.contact_bg {
    width: 65%;
    display:block;
	object-fit:cover;
	vertical-align:top;
}
.contact_hl_text_box{
	width:35%;
	background-color:#E6E745;
	padding-top:100px;
	text-align:center;
}
.contact_hl{
    font-weight: bold;
    font-size: 100px;
    color: #474747;
    margin-bottom: 40px;
    line-height: 1.3;
}
.contact_hl span {
    font-weight: bold;
    font-size: 24px;
    color: #474747;
    display: block;
}
.contact_btn {
	width:250px;
    padding: 15px 0px;
	margin:0 auto 20px;
    background: #474747;
    color: #fff;
    font-size: 14px;
    display: block;
    border-radius: 25px;
    border: 1px solid #474747;
    transition: .3s;
}
.contact_btn:hover {
    background: #E6E745;
    color: #474747;
    border: 1px solid #474747;
    transition: .3s;
}
/*FOOTER*/
.footer_wrap {
    width: 100%;
    padding: 100px 0 60px;
    display: flex;
    flex-wrap: wrap;
}
.footer_logobox {
    width: 30%;
    padding-left: 10%;
    text-align: right;
}
.footer_logo {
    width: 100%;
    object-fit: cover;
    margin-bottom: 37px;
    margin-top: 100px;
}
.copy_right {
    color: #BABABA;
    font-size: 14px;
}
.footer_nav {
    width: 50%;
    padding-left: 10%;
}
.footer_nav h3 {
    margin-bottom: 30px;
}
.footer_nav ul {
    width: 500px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.footer_nav li {
    width: 30%;
    margin-bottom: 15px;
}
.footer_nav a {
    transition: .3s;
}
.footer_nav a:hover {
    color: #000;
    font-weight: bold;
}
.pp_link {
    font-size: 14px;
    color: #BABABA;
    transition: .3s;
}
.pp_link:hover {
    color: #747474;
}
/*仮想ページ*/
/*
 ページ 固定パーツ
*/
.page_keyvisual {
    width: 100%;
    object-fit: cover;
    vertical-align: top;
}
.page_hl {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    font-size: 60px;
    color: #fff;
    letter-spacing: 2px;
}
.page_subtext {
    width: 60%;
    margin: 0 auto;
    text-align: center;
    padding: 100px 0;
    font-weight: bold;
    font-size: 20px;
}
.page_subtext span {
    display: block;
    margin-bottom: 30px;
    font-size: 16px;
}
.page_subhl {
    width: 80%;
    margin: 0 auto;
    font-weight: bold;
    font-size: 32px;
    color: #00267F;
    margin-bottom: 20px;
}
.page_content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    justify-content: center;
}
.c_boll {
    width: 300px;
    height: 300px;
    position: relative;
    z-index: 1;
    border: 1px solid #00267F;
    border-radius: 200px;
}
.c_boll .boll_hl {
    width: 100%;
    text-align: center;
    font-size: 28px;
    color: #00267F;
    font-weight: bold;
    display: inline-block;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.c_boll .boll_text {
    text-align: center;
    font-size: 14px;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.c_boll_2 {
    width: 300px;
    height: 300px;
    position: relative;
    z-index: 2;
    background-color: rgba(0, 38, 127, 0.2);
    border: 1px solid #00267F;
    border-radius: 200px;
}
.c_boll_2 .boll_hl {
    width: 100%;
    text-align: center;
    font-size: 18px;
    color: #00267F;
    font-weight: bold;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.c_boll_2 .boll_text {
    width: 100%;
    text-align: center;
    font-size: 36px;
    color: #00267F;
    font-weight: bold;
    display: inline-block;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.c_boll:first-child {
    margin-right: -20px;
}
.c_boll:last-child {
    margin-left: -20px;
}
.page_inner {
    display: flex;
    justify-content: right;
    width: 90%;
    margin: 0 0 120px auto;
}
.page_text {
    width: calc(100% - 450px);
    display: block;
    margin-right: 30px;
    font-size: 14px;
    line-height: 1.6;
}
.page_c_img {
    width: 420px;
    vertical-align: top;
    object-fit: contain;
}
.material_box {
    width: 80%;
    margin: 0 auto 120px;
    position: relative;
}
.material_img {
    width: 100%;
    object-fit: cover;
    vertical-align: top;
}
.material_link {
    padding: 15px 30px;
    color: #fff;
    font-size: 16px;
    background-color: #000;
    transition: .3s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.material_link:hover {
    color: #000;
    background-color: #fff;
    border-radius: 5px;
    transition: .3s;
}
/*シングルページ*/
/*ポスト*/
.post_wrap {
    width: 80%;
    margin: 120px auto 100px;
    display: flex;
}
.post_wrap .top_news_inner {
    width: 90%;
    padding: 0;
    padding-right: 10%;
}
.post_inner {
    width: calc(100% - 350px);
    padding-right: 30px;
}
.post_inner ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.post_inner li {
    position: relative;
    width: 48.6%;
    margin-bottom: 40px;
}
.thumbnail {
    width: 100%;
    overflow: clip;
}
.thumbnail {
    width: 100%;
    height: 250px;
    display: inline-flex;
    overflow: clip;
    margin-bottom: 5px;
    background-color: #ccc;
}
.attachment-post-thumbnail {
    width: 100% !important;
    object-fit: cover;
    height: 250px !important;
    transition: all 0.3s;
}
.attachment-post-thumbnail:hover {
    transform: scale(1.2);
}
.category-name {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #071627;
    color: #fff;
    font-size: 12.8px;
    padding: 4px 8px 2px;
    z-index: 50;
}
.day {
    color: #454545;
    font-size: 12px;
    padding-top: 5px;
}
.title {
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 15px;
    line-height: 1.4;
}
/*single*/
.single_keyvisual {
    width: 100%;
    background: linear-gradient(90deg, rgb(22, 135, 237), rgb(50, 10, 140));
    height: 500px;
    position: relative;
}
.single_keytitle {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translatey(-50%);
    font-size: 42px;
    color: #fff;
    font-weight: bold;
    text-align: center;
}
.single_wrap {
    width: 80%;
    margin: 30px auto 100px;
    display: flex;
}
.single_inner {
    width: calc(100% - 350px);
    padding-right: 30px;
}
.single_inner .tag_wrap ul {
    flex-wrap: nowrap;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    margin: 0 0 15px;
}
.single_inner .tag_wrap li {
    color: #454545;
    margin: 0;
    font-size: 14.8px;
    width: auto;
}
.tag_wrap {
    width: 100%;
}
.bread_li a {
    color: #454545;
    font-size: 14.8px;
}
.bread_li span {
    display: inline-block;
    margin: -2px 10px 0 0;
    color: #454545;
    font-size: 14.8px;
    padding-left: 5px;
}
.bread_text {
    color: #454545;
    font-size: 14.8px;
}
.blog-detail__title {
    font-size: 26px;
    font-weight: bold;
    color: #000;
    letter-spacing: 2px;
    line-height: 1.4;
    margin-bottom: 15px;
}
.blog-detail__time {
    color: #454545;
    font-size: 12.8px;
    margin-bottom: 15px;
}
.single_category {
    display: inline-block;
    background-color: #071627;
    color: #fff;
    font-size: 12.8px;
    padding: 4px 8px 2px;
    margin-bottom: 30px;
}
.blog-detail__image {
    margin-bottom: 40px;
}
.blog-detail__image img {
    width: 100%;
    object-fit: cover;
}
.single_interview_wrap {
    display: flex;
    margin-bottom: 20px;
}
.single_interview_day, .single_interview_name {
    font-size: 14px;
    color: #454545;
    margin-right: 30px;
}
.single_hl {
    padding: 0.25em 0.5em;
    margin-bottom: 20px;
    background: transparent;
    border-left: solid 5px #7db4e6;
}
.news-img, .service-img {
    width: 100%;
    object-fit: cover;
}
.service-link {
    display: block;
    width: 250px;
    padding: 10px 25px;
    font-size: 14.5px;
    text-align: center;
    margin-bottom: 25px;
    color: #454545;
    background: #fff;
    transition: 0.3s;
}
.service-link:hover {
    background-color: #42647F;
    color: #fff;
    border-color: #42647F;
    transition: 0.3s;
}
.single_content {
    margin-bottom: 30px;
    letter-spacing: 1.4px;
    line-height: 1.6;
    color: #454545;
}
.single_gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
}
.single_gallery li {
    width: 30%;
    margin: 0 0 20px;
}
.single_gallery li:nth-child(2), .single_gallery li:nth-child(5), .single_gallery li:nth-child(8) {
    width: 30%;
    margin: 0 5%;
}
.single_gallery_img {
    width: 100%;
    object-fit: cover;
}
.page_nav_wrap {
    width: 100%;
    margin-top: 60px;
    display: flex;
    justify-content: center;
}
.page_nav_wrap a {
    display: inline-block;
    margin: 0 30px;
    padding: 15px 20px;
    border: 1px solid #444;
    color: #444;
    font-size: 14px;
    text-align: center;
    transition: 0.3s;
}
.page_nav_wrap a:hover {
    background-color: #42647F;
    color: #fff;
    border-color: #42647F;
    transition: 0.3s;
}
.sidebar_content {
    width: 320px;
    padding-left: 30px;
    border-left: 0.6px solid #ccc;
}
.sideber_headline {
    color: #111111;
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 15px;
}
.side_category_list {
    margin-bottom: 40px;
}
.side_category_list article, .side_category_list li {
    margin-bottom: 3px;
}
.side_category_list article a, .side_category_list li a {
    font-size: 14.8px;
    transition: .3s;
}
.side_category_list article a:hover, .side_category_list li a:hover {
    color: #ccc;
}
.side_category_list li {
    margin-bottom: 30px;
}
.sidber_link {
    width: 100%;
}
.sidber_img {
    width: 100%;
    height: 250px;
    object-fit: contain;
}
.pp_box {
    margin-bottom: 30px;
    text-align: right;
}
.pp_btn {
    font-size: 14px;
}
/*PAGE About*/
.page_keyvisual {
    width: 100%;
    vertical-align: top;
    object-fit: cover;
}
.page_title {
    width: 90%;
    padding: 180px 5% 80px;
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
}
.page_title span {
    display: block;
    font-size: 24px;
    color: #E6E745;
    font-weight: bold;
    margin-top: 20px;
}
.page_breadcrumbs {
    width: 90%;
    padding: 0 5%;
    display: flex;
    justify-content: right;
    margin-bottom: 20px;
}
.page_breadcrumbs li {
    font-size: 14px;
    color: #C1C1C1;
    margin: 0 5px;
}
.page_breadcrumbs a {
    color: #000000;
    font-size: 14px;
    font-weight: bold;
}
.about_wrap {
    width: 90%;
    padding: 0 5%;
    margin: 100px auto 0;
    max-width: 1200px;
}
.about_text {
    width: 70%;
    margin: 100px auto 200px;
    min-width: 700px;
    font-size: 18px;
    line-height: 1.6;
}
.about_hl {
    font-size: 60px;
    font-weight: bold;
}
.about_subhl {
    color: #E6E745;
    font-size: 100px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 200px;
}
.about_subhl span {
    color: #000000;
    font-size: 48px;
    font-weight: bold;
    margin-left: 40px;
}
.vision_inner {
    width: 100%;
    position: relative;
    margin-bottom: 200px;
}
.vision_hl {
    display: inline-block;
    font-size: 60px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 40px;
    height: 60px;
    position: relative;
}
.vision_hl::before {
    content: "";
    display: block;
    height: 1px;
    width: 120%;
    position: absolute;
    top: 30px;
    right: -130%;
    border-bottom: 1px solid #ccc;
}
.vision_subhl {
    margin-bottom: 20px;
    height: 35px;
    line-height: 35px;
    display: flex;
    color: #ECE02C;
    font-size: 24px;
    font-weight: bold;
}
.vision_subhl span {
    display: block;
    font-size: 20px;
    height: 35px;
    line-height: 35px;
    font-weight: bold;
    margin-left: 20px;
}
.vision_text {
    width: 60%;
    padding-right: 40%;
    padding-bottom: 40px;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 40px;
    border-bottom: 1px solid #ccc;
}
.vision_text span {
    display: block;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}
.mission_subhl {
    width: 60%;
    padding-right: 40%;
    margin-bottom: 20px;
    display: flex;
    color: #ECE02C;
    font-size: 24px;
    font-weight: bold;
}
.mission_subhl span {
    display: block;
    font-size: 20px;
    height: 35px;
    line-height: 35px;
    font-weight: bold;
    margin-left: 20px;
}
.mission_list {
    width: 60%;
    padding-right: 40%;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #ccc;
    position: relative;
    z-index: 1;
}
.mission_text {
    font-size: 18px;
    font-weight: bold;
    line-height: 2;
}
.vision_img {
    position: absolute;
    bottom: 0;
    transform: translatey(0);
    right: -50%;
    width: 80%;
    vertical-align: top;
    object-fit: cover;
    background-color: #fff;
    padding-left: 50px;
}
.message_inner {
    width: 90%;
    padding: 150px 5%;
    margin: 0 auto;
    background-color: #F0F0F0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap-reverse;
    position: relative;
}
.message_text_box {
    width: 50%;
    padding-right: 5%;
}
.message_hl {
    font-size: 60px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 80px;
}
.message_hl span {
    font-size: 24px;
    display: block;
    margin-top: 15px;
}
.message_subhl {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 30px;
}
.message_text {
    line-height: 1.6;
    letter-spacing: 1px;
    margin-bottom: 60px;
}
.message_name {
    font-weight: bold;
    text-align: right;
}
.message_name span {
    font-weight: bold;
    font-size: 24px;
    margin-left: 10px;
}
.message_img {
    width: 40%;
    padding-right: 5%;
    object-fit: contain;
    vertical-align: top;
}
.about_it {
    position: absolute;
    top: -50px;
    right: 5%;
    width: 350px;
}
/*PAGE company*/
.company_wrap {
    width: 80%;
    padding: 120px 10% 200px;
    margin: 0 auto;
    max-width: 1200px;
}
.company_hl {
    font-size: 50px;
    color: #E6E745;
    font-weight: bold;
    margin-bottom: 60px;
    line-height: 1;
    text-align: center;
}
.company_wrap table {
    width: 100%;
}
.company_wrap tr {
    display: flex;
    width: 100%;
    border-top: 1px solid #ccc;
    padding: 15px 0;
}
.company_wrap tr:last-child {
    border-bottom: 1px solid #ccc;
}
.company_wrap th {
    padding-left: 5%;
    width: 25%;
    min-width: 260px;
    font-weight: bold;
    font-size: 16px;
    text-align: left;
}
.company_wrap td {
    width: 65%;
    font-size: 16px;
    padding-right: 5%;
}
/*PAGE business*/
.business_wrap {
    width: 90%;
    padding: 120px 5%;
    margin: 0 auto;
    max-width: 1200px;
}
.business_inner {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-bottom: 100px;
    min-height: 350px;
}
.business_img {
    width: 30%;
    object-fit: cover;
    vertical-align: top;
}
.business_textbox {
    width: 60%;
    padding-right: 7%;
    margin-right: 3%;
    border-bottom: 1px solid #ccc;
    position: relative;
}
.business_hl {
    display: inline-block;
    font-size: 50px;
    font-weight: bold;
    line-height: 90px;
    position: relative;
    margin-bottom: 60px;
    z-index: 5;
    padding-right: 5%;
    background-color: #fff;
}
.business_textbox::before {
    position: absolute;
    width: 100%;
    height: 1px;
    content: "";
    top: 45px;
    right: 0;
    border-bottom: 1px solid #ccc;
}
.business_hl::before {
    position: absolute;
    content: "";
    width: 120px;
    height: 4px;
    background-color: #ECE02C;
    bottom: -25px;
    left: 0;
}
.re-left {
    flex-direction: row;
}
.re-left .business_textbox {
    width: 60%;
    padding-left: 7%;
    padding-right: 0%;
    margin-left: 3%;
    margin-right: 0;
    border-bottom: 1px solid #ccc;
    position: relative;
    text-align: right;
}
.re-left .business_textbox {
    text-align: right;
}
.re-left .business_hl {
    padding-left: 2%;
    padding-right: 0;
    background-color: #fff;
}
.re-left .business_hl::before {
    left: auto;
    right: 0;
}
.business_text {
    margin-bottom: 60px;
    padding-right: 5%;
}
/*PAGE recruit*/
.recruit_wrap {
    width: 80%;
    padding: 200px 10% 100px;
    margin: 0 auto;
    max-width: 1200px;
}
.recruit_inner {
    width: 85%;
    padding-left: 15%;
    position: relative;
    margin-bottom: 200px;
}
.tag_position_recruit {
    position: absolute;
    top: 0;
    left: 0;
}
.tag_position_recruit .business_tag {
    padding: 150px 20px 150px;
}
.tag_position_recruit .business_tag span{
    height: 300px;
}
.recruit_textbox {
    width: 100%;
    position: relative;
}
.recruit_hl {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 40px;
}
.recruit_hl span {
    display: block;
    font-size: 40px;
    font-weight: bold;
    color: #E6E745;
}
.recruit_text {
    margin-bottom: 60px;
}
.recruit_subhl {
    display: block;
    font-size: 40px;
    font-weight: bold;
    color: #E6E745;
}
.recruit_subhl span {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    display: block;
}
.recruit_it {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20%;
    object-fit: cover;
}
.recruit_list_hl {
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    color: #000;
    margin-bottom: 60px;
}
.recruit_list_subhl {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #000;
}
#tab_recruit_nav{
	width:80%;
	padding:0 10% 0;
	border-bottom:1px solid #E6E745;
	margin-bottom:30px;
}
#tab_recruit_nav a{
	display:inline-block;
	font-size:24px;
	color:#fff;
	font-weight:bold;
	padding:10px 50px;
	text-align:center;
	background-color:#E6E745;
	position: relative;
}
.tab.active{
	background-color:#707070!important;
}
.panel{
	display:none;
}
.panel.active{
	display:block;
}
#tabbody div{
	position: relative;
	z-index: 0;
}
.recruit_wrap table {
    width: 80%;
    margin: 0 auto 60px;
}
.recruit_wrap tr {
    display: flex;
    padding: 15px 10px;
    border-top: 1px solid #ccc;
}
.recruit_wrap tr:last-child {
    border-bottom: 1px solid #ccc;
}
.recruit_wrap th {
    width: 25%;
    padding-left: 5%;
    padding-right: 5%;
    text-align: left;
}
.recruit_wrap td {
    width: 65%;
}
.recruit_btn {
    display: block;
    width: 280px;
    padding: 15px 30px;
    background-color: #E6E745;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    transition: .3s;
    margin: 0 auto;
    text-align: center;
}
.recruit_btn:hover {
    background-color: #474747;
}

/*PAGE CONTACT*/
.recruit_contact_wrap{
    width: 80%;
    margin: 100px auto;
    max-width: 1200px;
}
.recruit_contact_hl{
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 20px;
}
.recruit_contact_text{
    font-size: 18px;
    margin-bottom: 60px;
}
.recruit_contact_inner{
    width: 100%;
    background-color: #E2E1D2;
    padding: 120px 0;
    margin-bottom: 60px;
}
.recruit_contact_inner table{
    width: 94%;
    padding:0 3%;
    margin: 0 auto;
}
.recruit_contact_inner tr{
    display: flex;
    justify-content: left;
    width: 90%;
    padding: 15px 5%;
    border-top: 1px solid #ccc;
}
.recruit_contact_inner th{
    width: 250px;
    text-align: left;
    font-size: 20px;
    font-weight: bold;
}
.recruit_contact_inner th p{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.recruit_contact_inner th span{
    display: inline-block;
    padding: 5px 15px;
    background-color: red;
    color: #fff;
    font-size: 10px;
    margin-left: 15px;
}
.recruit_contact_inner td{
    padding-left: 5%;
    font-size: 18px;
    width: calc(95% - 250px);
}
.wpcf7-list-item-label{
    margin-right: 10px;
}
.wpcf7-text,.wpcf7-select{
    padding: 5px 10px;
}
.wpcf7-not-valid-tip{
    margin-left: 20px;
}
.screen-reader-response{
    display: none;
}
.wpcf7-response-output{
    text-align: center;
    margin-top: 30px;
}
.recruit_contact_pp{
    width: 100%;
    margin: 30px auto 30px;
    text-align: center;
}
.optional{
    display: block;
    text-align: center;
    width: 70%;
    margin: 0 auto 60px;
}
.contact_textarea{
    width: 100%;
    padding: 5px 10px;
}
.contact_pp_link{
    color: #000;
	border-bottom:1px solid #000;
}
.recruit_contact_btn{
    width: 200px;
    padding: 20px 0;
    text-align: center;
    display: block;
    margin: 0 auto;
    background-color: #E6E745;
    transition: 0.3s;
    border: 0;
}
.recruit_contact_btn:hover{
    background-color: #474747;
    color: #fff;
}


/*プライバシーポリシー*/
.page_pp_wrap{
    width: 70%;
    margin: 120px auto 0;
}
.pp_hl{
    font-size: 40px;
    font-weight:bold;
    margin-bottom: 60px;
}
.pp_table{
    width: 100%;
    margin: 0 auto;
}
.pp_table tr{
    display: block;
    text-align: left;
    margin-bottom: 30px;
}
.pp_table th{
    width: 100%;
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}
.pp_table td{
    display: block;
    width: 97%;
    font-size: 15px;
    padding-left: 3%;
}
.pp_days{
    text-align: right;
    font-weight: bold;
}
.page_thanks_wrap{
    width: 80%;
    max-width: 1200px;
    margin: 200px auto 0;
    text-align: center;
}
.thanks_hl{
    color: #ECE02C;
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: bold;
}
.page_thanks_wrap p{
    line-height: 2;
    margin-bottom: 60px;
}
.thanks_btn{
    width: 300px;
    margin: 0 auto;
    display: block;
    padding: 20px 0;
    background-color: #ECE02C;
    text-align: center;
    transition: .3s;
}
.thanks_btn:hover{
    background-color: #474747;
    color: #fff;
}
/*sp css*/
.max800br {
    display: none;
}
.min800br {
    display: block;
}
@media(max-width:800px) {
    .max800br {
        display: block;
    }
    .min800br, .keyvisual_news {
        display: none;
    }
    /*main*/
    .key_text {
        top: 85%;
        left: 60%;
        font-size: 32px;
        width: 100%;
    }
    .key_nav_list{
        top: 45%;
        display: none;
    }
    .key_nav_li{
        margin: 10px auto;
    }
    .top_about_wrap {
        padding: 60px 5% 60px;
    }
    .top_about_hl {
        font-size: 40px;
        line-height: 1;
        display: block;
    }
    .top_about_hl span {
        font-size: 18px;
        line-height: 1;
        margin: 10px 0 20px;
    }
    .top_about_subhl {
        font-size: 15px;
    }
    .top_about_text {
        font-size: 14px;
    }
    .top_about_btn {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
    .about_bt_img {
        width: 100%;
        margin-bottom: 60px;
    }
    .top_business_inner {
        width: 90%;
        padding: 0 5% 60px;
    }
    .top_business_hl {
        font-size: 40px;
        line-height: 1;
        display: block;
        height: 70px;
        margin-bottom: 100px;
    }
    .top_business_hl span {
        font-size: 18px;
        line-height: 1;
        margin: 10px 0 0;
    }
    .top_business_subhl {
        font-size: 15px;
    }
    .top_business_text {
        font-size: 14px;
    }
    .top_business_inner li {
        flex-wrap: wrap;
        min-width: auto;
        padding: 30px 5px 40px 5px;
    }
    .top_business_inner h3 {
        width: 100%;
        margin-bottom: 20px;
    }
    .top_business_inner p {
        margin: 0;
        width: 100%;
    }
    .top_business_btn{
        display: none;
    }
    .top_business_btn2 {
        display: inline-block;
        width: 90%;
        padding: 10px 0;
        text-align: center;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0px;
        margin: 0 auto;
    }
    .tag_position {
        left: 50%;
        bottom: auto;
        top: 100px;
        width: 270px;
        transform: translateX(-50%);
    }
    .business_tag {
        padding: 15px 0;
        width: 270px;
        text-align: center;
    }
    .business_tag::before {
        transform: skewX(-40deg);
    }
    .business_tag p {
        writing-mode: horizontal-tb;
        line-height: 1.6;
        font-size: 14px;
        height: auto;
    }
    .business_tag span {
        writing-mode: horizontal-tb;
        font-size: 14px;
        height: auto;
    }
	.top_work_img{
		width:85%;
	}
	
	
    .tag_position_recruit .business_tag span{
        height: auto;
    }
    .top_company_wrap {
        width: 90%;
        padding: 60px 5%;
    }
    .company_bg {
        width: auto;
        height: 100%;
        object-fit: cover;
    }
    .top_company_hl {
        font-size: 40px;
        line-height: 1;
        display: block;
    }
    .top_company_hl span {
        font-size: 15px;
        font-weight: bold;
        line-height: 1;
        margin: 10px 0 20px;
    }
    .top_company_subhl {
        font-size: 15px;
    }
    .top_company_text {
        font-size: 14px;
    }
    .top_company_btn {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
    .top_recruit_wrap {
        width: 90%;
        padding: 60px 5%;
    }
    .recruit_bg {
        width: auto;
        height: 100%;
        object-fit: cover;
    }
    .top_recruit_hl {
        font-size: 40px;
        line-height: 1;
        display: block;
    }
    .top_recruit_hl span {
        font-size: 18px;
        line-height: 1;
        margin: 10px 0 20px;
    }
    .top_recruit_subhl {
        font-size: 15px;
        margin-top: 10px;
    }
    .top_recruit_text {
        font-size: 14px;
    }
    .top_recruit_btn {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
    .contact_wrap {
        width: 100%;
        height: auto;
        padding: 0;
		flex-wrap:wrap;
		flex-direction:column-reverse;
    }
	.contact_hl_text_box{
		width:100%;
		padding:60px 0;
	}
	.contact_bg{
		width:100%;
	}
    .contact_hl {
        font-size: 40px;
        line-height: 1;
        display: block;
        padding: 0;
        margin-bottom: 30px;
    }
    .contact_hl span {
        font-size: 18px;
        line-height: 1;
        margin: 10px 0 20px;
    }
    .footer_logobox {
        width: 90%;
        padding: 0 5%;
        margin-bottom: 30px;
    }
    .footer_logo {
        margin-top: 0;
        margin-bottom: 15px;
    }
    .copy_right {
        font-size: 10px;
        text-align: left;
    }
    .footer_nav {
        width: 90%;
        padding: 0 5%;
    }
    .footer_nav ul {
        width: 100%;
    }
    .footer_nav li {
        width: 50%;
    }
    .footer_nav h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .footer_nav a {
        font-size: 14px;
    }
    /*page*/
    .page_title {
        padding: 120px 5% 80px;
    }
    .page_title span {
        margin-top: 20px;
    }
    .about_text {
        width: 90%;
        margin: 100px auto 100px;
        min-width: auto;
        font-size: 16px;
    }
    .about_hl {
        font-size: 40px;
    }
    .about_subhl {
        font-size: 60px;
        margin-bottom: 100px;
        line-height: 1.1;
    }
    .about_subhl span {
        font-size: 32px;
        font-weight: bold;
        margin-left: 0px;
        margin-top: 10px;
        line-height: 1.2;
    }
    .vision_inner {
        width: 100%;
        position: relative;
        margin-bottom: 100px;
    }
    .vision_hl {
        font-size: 40px;
        line-height: 1.1;
        margin-bottom: 40px;
        height: 40px;
        padding-bottom: 20px;
        border-bottom: 1px solid #ccc;
    }
    .vision_hl::before {
        display: none;
    }
    .vision_subhl {
        margin-bottom: 20px;
        font-size: 24px;
        width: 100%;
    }
    .vision_subhl span {
        font-size: 24px;
        margin-left: 20px;
    }
    .vision_text {
        width: 100%;
        padding-right: 0%;
        padding-bottom: 40px;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 40px;
        border-bottom: 1px solid #ccc;
    }
    .vision_text span {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .mission_subhl {
        width: 100%;
        padding-right: 0%;
        margin-bottom: 20px;
        font-size: 24px;
        font-weight: bold;
    }
    .mission_subhl span {
        display: block;
        font-size: 24px;
        font-weight: bold;
        margin-left: 20px;
    }
    .mission_list {
        width: 100%;
        padding-right: 0%;
        padding-bottom: 40px;
        margin-bottom: 40px;
        border-bottom: 1px solid #ccc;
        position: relative;
        z-index: 1;
    }
    .mission_text {
        line-height: 1.6;
        font-size: 16px;
        margin-bottom: 15px;
    }
    .vision_img {}
    .message_inner {
        padding: 100px 5%;
    }
    .message_text_box {
        width: 100%;
        padding-right: 0%;
    }
    .message_hl {
        font-size: 40px;
        font-weight: bold;
        line-height: 1;
        margin-bottom: 40px;
    }
    .message_hl span {
        font-size: 18px;
        display: block;
        margin-top: 15px;
    }
    .message_subhl {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 20px;
    }
    .message_text {
        line-height: 1.6;
        letter-spacing: 1px;
        margin-bottom: 20px;
        font-size: 14px;
    }
    .message_name {
        font-weight: bold;
        text-align: right;
        font-size: 14px;
    }
    .message_name span {
        font-weight: bold;
        font-size: 20px;
        margin-left: 10px;
    }
    .message_img {
        width: 100%;
        padding-right: 0%;
        margin-bottom: 40px;
    }
    .about_it {
        position: absolute;
        top: -50px;
        right: 5%;
        width: 100px;
    }
    /*PAGE company*/
    .company_wrap {
        width: 90%;
        padding: 80px 5% 100px;
    }
    .company_hl {
        font-size: 30px;
        margin-bottom: 40px;
    }
    .company_wrap table {
        width: 100%;
    }
    .company_wrap tr {
        display: flex;
        flex-wrap: wrap;
    }
    .company_wrap th {
        padding-left: 5%;
        width: 95%;
        min-width: auto;
        font-size: 18px;
        margin-bottom: 5px;
    }
    .company_wrap td {
        width: 95%;
        font-size: 16px;
        padding-left: 5%;
    }
    .business_wrap {
        width: 90%;
        padding: 80px 5%;
    }
    .business_inner {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row-reverse;
        justify-content: space-between;
        margin-bottom: 100px;
        min-height: auto;
    }
    .business_img {
        width: 100%;
        object-fit: cover;
        vertical-align: top;
    }
    .business_textbox {
        width: 100%;
        margin-right: 0%;
    }
    .business_hl {
        margin-top: 10px;
        font-size: 28px;
        line-height: 1.3;
        padding-bottom: 10px;
        margin-bottom: 40px;
        padding-right: 5%;
    }
    .business_textbox::before {
        position: absolute;
        width: 100%;
        height: 1px;
        content: "";
        top: 30px;
        right: 0;
        border-bottom: 1px solid #ccc;
    }
    .business_hl::before {
        position: absolute;
        content: "";
        width: 120px;
        height: 4px;
        background-color: #ECE02C;
        bottom: 0;
        left: 0;
    }
    .re-left {
        flex-direction: row;
    }
    .re-left .business_textbox {
        width: 100%;
        margin-left: 0%;
        margin-right: 0;
        padding-left: 0;
        border-bottom: 1px solid #ccc;
        position: relative;
        text-align: left;
    }
    .re-left .business_hl {
        padding-left: 0%;
        padding-right: 5%;
    }
    .re-left .business_hl::before {
        left: 0;
        right: auto;
    }
    /*PAGE recruit*/
    .recruit_wrap {
        width: 90%;
        padding: 100px 5% 100px;
        margin-top: 60px;
    }
    .recruit_inner {
        width: 100%;
        padding-left: 0%;
        position: relative;
        margin-bottom: 60px;
        padding-bottom: 120px;
    }
    .tag_position_recruit {
        left: 50%;
        top: auto;
        bottom: 0;
        width: 270px;
        transform: translateX(-50%);
    }
    .tag_position_recruit .business_tag {
        padding: 15px 0;
        width: 270px;
        text-align: center;
    }
    .recruit_textbox {
        width: 100%;
        position: relative;
    }
    .recruit_hl {
        font-size: 28px;
        margin-bottom: 40px;
    }
    .recruit_hl span {
        font-size: 18px;
    }
    .recruit_text {
        margin-bottom: 60px;
    }
    .recruit_subhl {
        font-size: 28px;
    }
    .recruit_subhl span {
        font-size: 18px;
    }
    .recruit_it {
        bottom: auto;
        top: -120px;
        right: 0;
    }
    .recruit_list_hl {
        font-size: 32px;
        margin-bottom: 15px;
    }
    .recruit_list_subhl {
        text-align: center;
        font-size: 24px;
    }
    .recruit_wrap table {
        width: 100%;
        margin: 0 auto 60px;
    }
    .recruit_wrap tr {
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 15px 10px;
        border-top: 1px solid #ccc;
    }
    .recruit_wrap tr:last-child {
        border-bottom: 1px solid #ccc;
    }
    .recruit_wrap th {
        width: 90%;
        padding-left: 5%;
        padding-right: 5%;
        margin-bottom: 10px;
        font-weight: bold;
    }
    .recruit_wrap td {
        width: 90%;
        padding-left: 5%;
        padding-right: 5%;
        font-size: 14px;
    }
    .recruit_btn {}
    .recruit_btn:hover {}
    
    /*PAGE CONTACT*/
.recruit_contact_wrap{
    width: 90%;
    margin: 100px auto 0px;
}
.recruit_contact_hl{
    font-size: 30px;
    margin-bottom: 20px;
}
.recruit_contact_text{
    font-size: 12px;
    margin-bottom: 30px;
}
.recruit_contact_inner{
    width: 100%;
    background-color: #E2E1D2;
    padding: 60px 0;
    margin-bottom: 00px;
}
.recruit_contact_inner table{
    width: 100%;
    padding:0 0%;
}
.recruit_contact_inner tr{
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    padding: 15px 5%;
}
.recruit_contact_inner th{
    width: 95%;
    padding-right: 5%;
    margin-bottom: 10px;
    font-size: 16px;
}
    .recruit_contact_inner th p{
    width: 100%;
    display: flex;
    justify-content: left;
}
.recruit_contact_inner th span{
    display: inline-block;
    padding: 5px 15px;
    background-color: red;
    color: #fff;
    font-size: 10px;
    margin-left: 15px;
}
.recruit_contact_inner td{
    font-size: 14px;
    width: 100%;
    padding: 0;
}
.wpcf7-list-item-label{
    margin-right: 10px;
    font-size: 14px;
}
.wpcf7-text{
    width: calc(100% - 20px);
    padding: 5px 10px;
}
	.wpcf7-select{
		width: 100%;
    padding: 5px 10px;
	}
.recruit_contact_pp{
    width: 90%;
    margin: 0 auto 30px;
    font-size: 12px;
}
.optional{
    width: 90%;
    margin: 0 auto 20px;
}
    .optional .wpcf7-list-item-label{
        font-size: 12px;
    }
.contact_textarea{
    width: calc(100% - 20px);
    padding: 5px 10px;
}
.contact_pp_link{
    color: #2F74EC;
    font-weight: bold;
    font-size: 12px;
}
.recruit_contact_btn{
    width: 200px;
    padding: 20px 0;
    text-align: center;
    display: block;
    margin: 0 auto;
    background-color: #ECE02C;
    transition: 0.3s;
    border: 0;
}
.recruit_contact_btn:hover{
    background-color: #474747;
    color: #fff;
}
    .pp_title{
        font-size: 40px;
    }
    .page_pp_wrap{
        width: 90%;
        margin: 60px auto 0;
    }
    .page_thanks_wrap{
        margin: 120px auto 0;
    }
    .thanks_hl{
        font-size: 28px;
    }
    .page_thanks_wrap p{
        font-size: 14px;
    }
}