@charset "UTF-8";

/* -----------------------------------------------------
                        共通部分
-------------------------------------------------------- */
*{
    box-sizing: border-box;/* widthとheightの中に、paddingとborderが押し込まれるような形になります */
}

html {
    font-size: 100%;
}
html {
    font-size: 100%;
}
/* header */
.header{
    width: 100%;
    /* display: flex; */
    flex-direction: row;/* 横並び */
}

.logo a{
    flex-shrink: 0;
    display: flex;
}
.logo{
    padding-top: 16px;
    padding-left: 4px;
}
.logo .mark{
    width: 60px;
    padding-left: 10px;
}
.typo{
    width: 160px;
    margin-left: 10px;
}
.logo .sp-nav{
    justify-content: space-between;/* 左右に分ける */
    margin-top: 10px;
}

a{
    text-decoration: none;
}


.title h1{
    margin: 5%;
    font-size: 32px;
    border-bottom: solid 3px rgba(106, 57, 6, 1);
    width: 300px;
}
.title h3{
    /* font-size: 14px; */
    /* margin-left: 5%; */
    text-align: center;
    color: rgba(106, 57, 6, 1);
    margin: 8% 5%;
}
.drawer-typo{
    width: 50%;
}
.drawer-brand {
    padding-top: 1rem;
}
.drawer-menu-item{
    border-bottom: solid 1px rgb(115, 176, 138);
    width: 290px;
    color: #464646;
    margin: 0 auto;
}
.drawer--right.drawer-open .drawer-hamburger {
    right: 0;
}
.drawer-nav {
    width: 22.25rem;
}
.drawer--right .drawer-nav {
    right: -22.25rem;
}
.drawer--right .drawer-hamburger{
    right: 2px;
}
.copyright p{
    text-align: left;
    padding: 0 9%;
}
small{
    width: 100%;
    margin: 0 auto;
    /* padding: 20px 0; */
}
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
                        HOME 
---------------------------------------------------------*/

.home .wrapper{
    background-color: #fff;
}

.cover-home {
    margin-bottom: 2rem;
    min-height: 100vh;/* 120vh */
    /* background-position: center center; */
    background-image: url(../img/hero-img.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

/* ---------------header---------------- */
/* ナビ */
.icons-outer{
    display: none;
}
  /* メニュー黒ポチを消す */
.nav_list {
    list-style: none;
}
.drawer-hamburger {
    padding: 20px 1.75rem 30px;
}


/* ----------------footer----------------- */
.footer{
    text-align: center;
}
.footer_inner{
    background-color: rgba(20, 147, 67, 1);
    /* height: 200px; */
    text-align: center;
    margin: 0 auto;
}
.footer_btn a{
    text-align: center;
    font-size: 16px;
    color: #fff;
    /* display: flex; */
    /* float: left;  */
    margin: 15px;
    padding-top: 0px;
}
.logo_footer{
    /* width: 20px; */
    padding: 10px;
    text-align: center;
    /* display: flex; */
}
.copyright{
    color: #fff;
    padding: 25px  0 10px 0;
    display: inline-block;
}
/* .flex{
    display: flex;
} */
/* HOME(index html)-------------------------- */
/* ----------newsbox------------------ */
.newsbox{
    /* align-items: center;中央揃え */
    /* margin: 0 auto;
    display: block;
    margin: 0 auto; */
    box-shadow: 3px 5px 25px rgb(197, 197, 197);
    /* margin: 30px; */
    width: 90%;
    text-align: center;
    margin: 0 auto;
}
.newsbox-inner{
    text-align: center;
    /* margin: 0 auto;
    display: block;
    margin: 0 auto; */ 
    padding: 12px;
    margin: 0;
    margin-bottom: 30px;
}
.news_title{
    /* padding: 35px 0; */
}
table{
    text-align: center;
    margin: 0 auto;
    padding-top: 5px;
}
th{
    /* border: solid 2px rgb(0, 47, 255); */
    font-weight:normal;
    color: rgba(0, 170, 62, 1);
    padding: 5px 16px;
}
tr{
    color: rgba(0, 170, 62, 1);
    font-weight:normal;
    text-align: left;
}
blockquote {
    width: 0;
    margin: 0 auto;
    margin-bottom: 12px;
}
/* ---------mossion--------- */
.mossion{
    position: relative;/*親要素にrelative*/
    /* margin-bottom: 5%; */
}

.mossion h2{
    position: absolute;/*重ねたい子要素にabsolute*/
    top: 5%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);/*ベンダープレフィックス*/
    -webkit-transform: translate(-50%,-50%);/*ベンダープレフィックス*/
    transform: translate(-40%,0%);/*センター寄せの修正*/
    color: #fff;
}
.mossion h1{
    position: absolute;/*重ねたい子要素にabsolute*/
    width: 100%;
    top: 65%;
    left: 0%;
    /* -ms-transform: translate(-50%,-50%); *//*ベンダープレフィックス*/
    /* -webkit-transform: translate(-50%,-50%); *//*ベンダープレフィックス*/
    /* transform: translate(-35%,0%); *//*センター寄せの修正*/
    text-align: center;
    color: #fff;
    text-shadow: 1px 2px 3px #808080;/* テキストドロップシャドウ */
}
.mossion p{
width: 80%;
position: absolute;/*重ねたい子要素にabsolute*/
top:75%;
left: 50%;
-ms-transform: translate(-50%,-50%);/*ベンダープレフィックス*/
-webkit-transform: translate(-50%,-50%);/*ベンダープレフィックス*/
transform: translate(-50%,0%);/*センター寄せの修正*/
color: #fff;
font-size: 1rem;
text-shadow: 1px 2px 3px #808080;/* テキストドロップシャドウ */
font-weight: bold;
/* margin: 0!important; *//*文字がずれている場合や*/
/* padding: 0!important; *//*文字が折り返される場合*/
}
.mossion_inner{
    background-image: url(../img/Keyvisual_mission.svg);
    background-size: cover;
    height: 500px;
    background-position: 33% 50%;
}
/* .Keyvisual_mission{
    text-align: center
}
.mossion_inner{
    text-align: left;
}
.Keyvisual_mission img{
    width: 100%;
    object-fit: cover;
    max-width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: 60% 50%;
    text-align: center;
    margin: 0 auto;
    padding-top: 30px;
} */
/* ---------company--------- */
.company{
    position: relative;/*親要素にrelative*/
    margin-bottom: 3%;
}

.company h2{
    position: absolute;/*重ねたい子要素にabsolute*/
    top: 5%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);/*ベンダープレフィックス*/
    -webkit-transform: translate(-50%,-50%);/*ベンダープレフィックス*/
    transform: translate(-40%,0%);/*センター寄せの修正*/
    color: rgba(106, 57, 6, 1);
    
}
.company h1{
    /* position: absolute;重ねたい子要素にabsolute */
    width: 80%;
    /* padding: 0px 0 0 46%; */
    /* left: 10%;
    top: 30%; */
    margin: 130px 10% 0px;
    text-align: center;
    color: rgba(0, 103, 35, 1);
}
.company_group{
    margin: 0 auto;
    padding: 10px;
    flex-direction: column;
}
.company p{
    /* position: absolute;重ねたい子要素にabsolute */
    width: 80%;
    margin: 0 10%;
    top:40%;
    /* padding: 3rem; */
    color: rgba(0, 103, 35, 1);
    font-size: 1rem;
    line-height: 2rem;
    font-weight: bold;
    /* text-align: center; */
    left: 10%;
}

.company_inner{
    background-image: url(../img/keyvisual_company.svg);
    max-width: 100%;
    width: 100%;
    height: 440px;
    background-position: 85% 0;
    background-size: cover;
}
/* .keyvisual_company{
    text-align: center;
}
.keyvisual_company img{
    max-width: 100%;
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: 85% 0%;
} */
/*  ------Recruit(ほとんどのページに使う)----- */
.recruit{
    max-width: 1036px;
    background-color: rgba(134, 88, 45, 1);
    height: 420px;
    text-align: center;
    margin: 0 auto 30px;
    border-radius: 10px;
}

.recruit h2{
    color: #fff;
    font-size: 24px;
    padding: 25px;
    text-shadow: 1px 2px 3px #3c3c3c;/* テキストドロップシャドウ */
}

.recruit_cover{
    position: relative;/*ここが基準（相対） */
}

/* 右下ボタン */
.recruit .right-bottom{
    position: absolute;/* 絶対 */
    bottom: 0;
    right: 0;
}

/* テキストコンテンツのグループ */
.recruit-content{
    position: absolute;
    left: 0;
    bottom: 0;
}

.recruit_cover p{
    color: #fff;
    font-size: 1rem;
    /* line-height: 2rem; */
    padding: 0 1rem;
    text-align: left;
    font-weight: bold;
    text-shadow: 1px 2px 3px #808080;/* テキストドロップシャドウ */
}
.recruit_cover h1{

    top:50%; 
    color: #fff;
    font-size: 3rem;
    padding: 0 1rem;
    text-align: left;
    text-shadow: 1px 2px 3px #808080;/* テキストドロップシャドウ */
}
.recruit_cover .tap{
    text-align: right;
    margin-right: 100%;
    bottom: 0;
}
.recruit_cover{
    background-image: url(../img/Keyvisual_recruit.svg);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 10px;
    height: 300px;
    border-radius: 0.5%;
}
/* キャリアページ(news.html)---------------- */
.keyvisual_news{
    background-image: url(../img/keyvisual_carrier.svg);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 10px;
    height: 300px;
    border-radius: 0.5%;
}
.carrier-pass{
    margin-top: 30px;
    color: #fff;
    background-color: rgba(20, 147, 67, 1);
    padding: 17px 0 20px 0;
    text-align: center;
    margin: 40px 0;
}
.carrier-pass_inner{
    /* background-color: rgba(20, 147, 67, 1); */
    color: #fff;
    text-align: center;
    
}

.c-1 h3{
    background-color: rgba(0, 204, 75, 1);
    height: 65px;
    padding-top: 17px;
    font-size: 20px;
    margin-top: 20px;
}
.c-2 h3{
    background-color: rgba(22, 140, 62, 1);
    height: 65px;
    padding-top: 17px;
    font-size: 20px;
}
.c-3 h3{
    background-color: rgba(0, 103, 35, 1);
    height: 65px;
    padding-top: 17px;
    font-size: 20px;
}
.c-4 h3{
    background-color: rgba(1, 90, 31, 1);
    /* height: 65px; */
    padding: 20px;
    padding-top: 17px;
    font-size: 20px;
}
.education-pass_inner{
    background-color: rgba(20, 147, 67, 1);
    text-align: center;
    color: #fff;
    /* height: 600px; */
    margin-bottom: 25px;
}
.education-pass_inner h2{
    padding: 30px 0 20px 0;
}
.education-pass_inner .left p{
    text-align: left;
    padding-bottom: 15px;
}
.education-pass_inner p{
    padding: 2px 12px;
}
.education-pass_inner h4{
    padding-top: 20px;
    font-size: 21px;
}
.blog{
    margin-top: 100px;
    /* padding: 25px; */
    padding-top: 1rem;
    text-align: center;
    margin: 0 auto 30px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);
    width: 90%;
}

.thumbnail table{
    padding: 10px;
}
.thumbnail h2{
    padding-bottom: 10px;
}
.sns{
    max-width: 100%;
    background-color: rgba(106, 57, 6, 1);
    /* height: 840px; */
    text-align: center;
    margin: 30px 0;
    padding: 1rem;
}
.sns h2,.sns h3{
    text-align: center;
    color: #fff;
}
/* .instagram,.x{
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 20px 0;
} */
.instagram,.x{
    /* width: 100%; */
    margin: 0 auto;
    text-align: center;
    padding: 20px 0;
}
.instagram h3{
    padding: 0 0 11px;
}
.instagram h3{
    padding: 0 0 11px;
}
/* 採用情報ページ(contact.html)------------ */

.contact_class{
    background-color: rgba(0, 170, 62, 1);
    height: 100%;
    margin-top: 50px;
    /* margin: 0 auto; */
}
.contact_class-inner{
    /* margin: 10px 0; */
    /* text-align: center; */
    padding: 1rem;
}
.contacts_class-inner p,
.contact_class-inner h3,
.contact_class-inner h2{
    color: #fff;
    margin: 0 5%;
}
.contact_class .contact_class-inner h3,
.contact_class .contact_class-inner h2{
    text-align: center;
}

.contact_class .contact_class-inner p{
    font-size: 16px;
    font-weight: lighter;
    border-bottom: 2px dotted rgba(1, 90, 31, 1);;
}
.contact_class .contact_class-inner h3{
    font-size: 20px;
    font-weight: bold;
    padding-top: 15px;
}
.contact_class .contact_class-inner h2{
    padding: 20px;
}
.contact_class2{
    background-color: rgba(0, 103, 35, 1);
}
.contact_class2-inner{
    padding: 15px;
    /* margin-top: 20px; */
}
.contact_class2-inner p{
    font-weight: lighter;
}
.contact_class2-inner h2{
    text-align: center;
}
.contact_class3-inner{
    background-color: rgba(178, 130, 71, 1);
    height: 500px;
    text-align: center;
    margin: 30px 0;
}
.contact_class3-inner h2{
    
}
.contact_Box,.contact_Box p{
    background-color: #fff;
    color: rgb(136, 27, 15);
    border-radius: 5px;
    
}
.contact_Box{
    width: 250px;
    margin: 5px auto;
    text-align: center;
}
.Step{
    padding: 15px 0;
}
.contact-btn{
    background-color: rgba(106, 57, 6, 1);
}
/* 応募サイト(entry.html)----------------- */
.keyvisual_recruit{
    background-image: url(../img/Keyvisual_recruit.svg);
    background-size: cover;
    background-position: 0 20%;
    width: 100%;
    height: 250px;
}

/* メールーーーーーーーーーーーーーーーーーーーー */
.entry th,.entry td{
    border-bottom: 2px dotted  rgba(1, 90, 31, 1);
}

.entry th,.entry td,p{
    color: #fff;
    text-decoration: none;
    padding: 9px 0px;
}
.email table{
    width: 100%;
    margin: 0;
    padding: 3px;
}
.red{
    color: red;
    font-weight: bold;
    margin: 0.5rem ;
}
.email .entry{
    max-width: 100%;
}
.email .entry{
    /* white-space: nowrap;折り返ししない */
    text-decoration: none;
}
textarea {/* textareaのこのチョンチョンを消すcss */
    resize: none;
}
input[type="text"],
input[type="tel"],
input[type="email"],
textarea,
select{
    width: 100%;
    border: 1px solid #432;
    border-radius: .5rem;
    padding: 0.1rem .5rem;
    background-color: #fff;
    /* margin: 2px; */
}
.check_lb{
    display: block;
}
.btn {
    display: inline-block;
    font-size: 1rem;
    background-color: rgba(1, 90, 31, 1);
    color: #fff;
    border-radius: 8px;
    padding: .75rem 3rem;
    transition: .3s;
}
.align-center{
    text-align: center;
    margin-top: 20px;
}
.btn:hover  {
    background-color: rgb(0, 55, 18);
}
.btn-contact{
    background-color: rgb(136, 27, 15);
    width: 320px;
    height: 70px;
    padding-bottom: 1em;
    padding-top: 1.5em;
    transition: .3s;
}
.btn-contact:hover {
    background-color: rgb(72, 38, 1);
}
.btn-reset{
    background-color: rgba(106, 57, 6, 1);
    border-radius: 8px;
    padding: .75rem 3rem;
    transition: .3s;

}
.btn-reset:hover {
    background-color: rgb(77, 4, 4);
}
.email{
    max-width: 916px;
    background-color: rgba(0, 170, 62, 1);
    border-radius: 20px;
    padding: .5rem 1.5rem 2.5rem;
    margin: 0 auto 30px;
}
.email p{
    margin: 1rem 0 2rem;
}
/* ************************************
    PC/スマホ版の切り替え
************************************ */


/* 以下のスマホ用の設定 */
@media screen and ( max-width:639px ) {
    .sp-nav{
        display: block;
    }
    .pc-nav{
        display: none;
    }
    
}