@charset "utf-8";
html,
body{
    height: 100%;
}
body{
    font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
    height: 100%;
    font-size: 17px;  
    line-height: 1.8;
    font-weight: 500;
    color: #333;
}
img{
    display: block;
    max-width: 100%;
    height: auto;
}
a{
    display: block;
}
a:hover {
    opacity: 0.7;
}
@media screen and (max-width: 767px) {
    /* -------- スマホ -------- */
    body{
        width: 100%;
        padding: 3%;
    }

}

/* -------------------------
           PC共通
------------------------- */
.head{
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
h1{
    text-indent: -9999px;
}
.logo{
    width: 230px;
}
.tel{
    display: flex;
    margin-right: 25px;
}
.tel img{
    width: 25px;
}
.tel p{
    font-size: 20px;
    margin-left: 10px;
    align-items: center;
}
nav{
    margin-bottom: 60px;
}
nav ul{
    width: 1400px;
    margin:0 auto;
    display: flex;
    justify-content: center;
}
nav ul li{
    width: 100%;
    text-align: center ;
    border-right: 1px #B5D56A  solid;
}
nav ul li a{
    padding: 10px 20px;
    font-size: 16px;
    height: 44px;
}
nav ul li:last-child{
    border-right:none;
}
nav ul li a:hover{
    color: #3D7D55;
}
.current {
    color: #3D7D55;
    font-weight: bold;
}
footer{
    font-size: 14px;
    width: 100%;
    line-height: 20px;
    margin: 0 auto;
    margin-top: 150px;
    padding: 50px;
    background-color: #F7FFF9;
}
.foot{
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
.foot section{
    max-width: 250px;
}
.introduction{
    width: 400px;
}
footer ul{
    display: flex;
    justify-content: center;
    color: rgba(112, 112, 112, 0.9);
}
footer li a{
    padding: 0 20px;
    text-decoration: none;
}
footer li:first-child{
    border-right:1px #B5D56A solid;
}
footer small{
    margin-top: 10px;
    color: rgba(112, 112, 112, 0.5);
    display: block;
    text-align: center;
}
@media screen and (max-width: 767px) {
    /* -------- スマホ -------- */
    h1{
        display: none;
    }
    .header_inner{
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .head{
        flex-direction: column;
        justify-content:center;
        margin: 0 10px;
    }
    .logo{
        width: 150px;
    }
    .tel{
        margin: 0;
    }
    .tel img{
        width: 15px;
    }
    .tel p{
        font-size: 0.8rem;
    }
    .sp_menu {
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 2rem;
        background-color: #fff;        
        position: relative;
        z-index: 10000;
        /* キレイなshadow https://getcssscan.com/css-box-shadow-examples */
        box-shadow: rgba(149, 157, 165, 0.2) 0px 2px 24px;
    }
    /* -------- nav -------- */
    nav {
        width: 100%;
        position: absolute;
        top: -1000px;
        left: 0;
        z-index: 9999;
        transition: top .4s;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 2px 24px;
    }
    .js_nav.active {
        top: 70px;
    }
    nav ul {
        width: 100%;
        display: block;
        margin-left: 0;
        text-align: center;
        padding: 40px 0;
        background-color: #fff;
    }
    nav ul li {
        margin-right: 0;
    }
    nav ul li:last-child {
        margin-bottom: 0;
    }
    nav a {
        display: block;
        padding: 12px 0;
    }
        /* -------- navbtn -------- */
    .menubtn{
        display: block;
        position: relative;/*ボタン内側の基点となるためrelativeを指定*/
        cursor: pointer;
        width: 50px;
        height:50px;
        border-radius: 5px;
    }
    /*ボタン内側*/
    .menubtn span{
        display: inline-block;
        transition: all .4s;/*アニメーションの設定*/
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background: #333;
        width: 45%;
    }
    .menubtn span:nth-of-type(1) {
        top:15px;
    }
     .menubtn span:nth-of-type(2) {
        top:23px;
    }
    .menubtn span:nth-of-type(3) {
        top:31px;
    }
    .menubtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }
    .menubtn.active span:nth-of-type(2) {
        opacity: 0;/*真ん中の線は透過*/
    }
    .menubtn.active span:nth-of-type(3){
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }  
    footer{
        padding: 2%;
        margin-top:3rem;
        background-color: #F6FFF9;
    }
    .foot{
        flex-direction: column;
    }
    .foot section{
        max-width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
        font-size: 0.8rem;
    }
    .sp_flex{
        padding-right: 1rem;
    }
    .foot section img{
        width: 150px;
        margin:0 auto;
    }
}
/* -------------------------
    index.html 以外共通
------------------------- */
.wrapper{
    width: 950px;
    margin: 20px auto;
}
.h2{
    font-size: 20px;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    /* -------- スマホ -------- */
    .wrapper{
        width: 100%;
        padding:3%;
    }
    h2{
        font-size: 0.9rem;
    }
}

/* -------------------------
           TOP
------------------------- */
.top img{
    width: 60%;
    margin: 0 auto;
}
.news_title_wrapper{
    display: flex;
    justify-content: center;
}
.news{
    margin-top: 20px;
}
.news.top_h2{
    margin-left: 8px;
    font-size: 18px;
}
.news dl{
    max-width: 660px;
    margin: 0 auto;
    overflow: hidden;
    text-align: center;  
}
.news dt{
    float: left;
    width: 100px;
    padding: 15px 0;
    padding-left: 30px;
    font-size: 16px;
}
.news dd{
    padding: 15px 0;
    border-bottom: 1px #DCDCDC solid;
}
.top_wrapper{
    max-width: 880px;
    margin: 100px auto;
    line-height: 30px;
}
.top_wrapper section{
    text-align: left;
}
.top_h2{
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}
.covit{
    display: inline-block;
    font-size: 18px;
    position: relative;
    padding: 0.7rem 0;
    background-image: repeating-linear-gradient(45deg, transparent 0 3px, #bee0e1 3px 6px);
    background-repeat: no-repeat;
    background-size: 100% 15px;
    background-position: left 0 bottom 7px;
    color: #353535;
    font-weight: bold;
}
.covit_ul {
    list-style: disc;
    margin-bottom: 20px;
}
.covit_ul li{
    margin-left: 20px;
}
.covit_p{
    margin-top: 20px;
}
.baner{
    display: inline-block;
    font-size: 18px;
    position: relative;
    padding: 0.7rem 0;
    background-image: repeating-linear-gradient(45deg, transparent 0 3px, #FFB2B8 3px 6px);
    background-repeat: no-repeat;
    background-size: 100% 15px;
    background-position: left 0 bottom 7px;
    color: #353535;
    font-weight: bold;
}
.kaigai_banner,
.equick_banner{
    width: 250px;
}
.top_wrapper section{
    margin-top: 50px;
}
.link ul{
    display: flex;
    flex-wrap: wrap;
}
.link li{
    margin: 20px;
}
@media screen and (max-width: 767px) {
    /* -------- スマホ -------- */
    .news_wrapper{
        padding: 3%;
    }
    .news.top_h2,
    .top_h2{
        font-size: 0.9rem;
    }
    .news dt,
    .news dd{
        font-size: 0.8rem;
    }
    .top_wrapper{
        margin: 0;
    }
    .top_wrapper p,
    .top_wrapper li{
        font-size: 0.8rem;
        text-align: left;
    }
    .covit_ul{
        list-style: disc;
        flex-direction: column;
    }
    .covit_ul li{
        margin: 20px auto;
    }
    }
/* -------------------------
個人のお客様 individual.html
------------------------- */
.individual p{
    display: block;
    width: 990px;
    margin: 0 auto;
    margin-top: 50px;
}
.individual ul{ 
    max-width: 990px;
    margin: 0 auto;
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.individual li{
    margin-bottom:50px;
}
.individual img{
    width: 400px;
}
    
@media screen and (max-width: 767px) {
    .individual p{
        width: 100%;
        margin-top: 1rem;
        font-size: 0.8rem;
    }
    .individual ul{
        margin-top: 2rem;
        flex-direction: column;
    }
}
/* -------------------------
法人のお客様 corporation.html
------------------------- */
.corporation p{
    display: block;
    width: 990px;
    margin: 0 auto;
    margin-top: 50px;
}
.corporation ul{ 
    max-width: 990px;
    margin: 0 auto;
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.corporation li{
    margin-bottom:50px;
}
.corporation img{
    width: 400px;
}
@media screen and (max-width: 767px) {
    .corporation p{
        width: 100%;
        margin-top: 1rem;
        font-size: 0.8rem;
    }
    .corporation ul{
        margin-top: 2rem;
        flex-direction: column;
    }
}
/* スタッフ紹介　staff.html */
.staff{
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.staff li{
    width: 360px;
    margin: 50px 40px;
}
.staff img{
    width: 200px;
    margin: 0 auto;
    margin-bottom: 20px;
}
.name{
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
}
.staff h3{
    display: inline-block;
    font-size: 17px;
    position: relative;
    padding: 0.7rem 0;
    margin-bottom: 0.2rem;
    background-image: repeating-linear-gradient(45deg, transparent 0 3px, #bee0e1 3px 6px);
    background-repeat: no-repeat;
    background-size: 100% 15px;
    background-position: left 0 bottom 7px;
    color: #353535;
    font-weight: bold;
}
/* -------------------------
代表挨拶　greeting.html
------------------------- */
.greeting{
    display: flex;
    margin-top: 40px;
}
.greeting p{
    margin-left: 30px;
    line-height: 30px;
}
.takahashi_greeting{
    max-width: 28%;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
.greeting{
    margin-top: 2rem;
    flex-direction: column;
    font-size: 0.8rem;
}
.takahashi_greeting{
    max-width: 50%;
    margin: 0 auto;
    margin-bottom: 1.5rem;
}
}

/* -------------------------
会社概要　companyinfo.html
------------------------- */
.companyinfo{
    max-width: 600px;
    margin: 0 auto;
    margin-top: 60px;
}
.all_staff{
    max-width: 80%;
    margin: 0 auto;
    margin-top: 30px;
}
.companyinfo tr{
    border-bottom: solid 2px white;
}
.companyinfo tr:last-child{
    border-bottom: none;
}
.companyinfo th{
    position: relative;
    text-align: left;
    width: 30%;
    background-color: #B5D569;
    color: white;
    text-align: center;
    padding: 10px 40px;
}
.companyinfo th:after{
    display: block;
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    top:calc(50% - 10px);
    right:-10px;
    border-left: 10px solid #B5D569;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}
.companyinfo td{
    text-align: left;
    width: 70%;
    text-align: center;
    background-color: #eee;
    padding: 10px 40px ;
}
@media screen and (max-width: 767px) {
    .companyinfo{
        margin: 2rem auto;
    }
    .companyinfo th,
    .companyinfo td{
        font-size: 0.8rem;
        padding: 1%;
    }
}
/* -------------------------
経営方針　managementpolicy.html 
------------------------- */
.management{
    max-width: 650px;
    margin: 0 auto;
}
.management h3{
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 3px 0 0 10px;
    font-size: 18px;
    font-weight: normal;
    line-height: 1;
    color: #7fa710;
    border-left: solid 8px #7fa710;
}
.action{
    max-width: 650px;
    margin: 0 auto;
    margin-top: 80px;
}
.action h3{
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 3px 0 0 10px;
    font-size: 18px;
    font-weight: normal;
    line-height: 1;
    color: #7fa710;
    border-left: solid 8px #7fa710;
}
.action ul{
    list-style: disc;
    margin-left: 20px;
}
.action li{
    margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
    .action{
        margin-top: 0;
    }
    .management h3,
    .action h3{
        font-size: 0.9rem;
        margin-top: 2rem;
    }
    .management p,
    .action li{
        font-size: 0.8rem;
    }
}

/* -------------------------
採用情報　recruit.html
------------------------- */
.recruit{
    max-width:1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}
.recruit section{
    border:2px solid #7fa710;
    padding: 20px;
}
.recruit section:hover{
    background-color: rgba(181, 213, 105, 0.3);
}
.recruit img{
    margin-bottom: 10px;
}
.recruit h3{
    margin-bottom: 8px;
    font-size: 18px;
    border-left: solid 8px #7fa710;
    padding: 3px 0 0 10px;
}
@media screen and (max-width: 767px) {
    .recruit{
        flex-direction: column;
        margin: 2rem auto;
    }
    .recruit_sp{
        margin-bottom: 2rem;
    }
}
/* -------------------------
採用情報詳細　recruit1.html　recruit2.html
------------------------- */
.recruit1{
    max-width: 800px;
    margin: 0 auto;
    margin-top: 60px;
}
.recruit1 h3{
    position: relative;
    font-size: 18px;
    border-left: solid 8px #7fa710;
    padding: 2px 0 0 10px;
}
.recruitinfo{
    max-width: 800px;
    margin: 0 auto;
    font-size: 17px;
    margin-top: 30px;
    position: relative;
}
.recruitinfo tr{
    height: 30px;
    line-height: 30px;
}
.recruitinfo th{
    padding: 5px;
    text-align: center;
    position: relative;
    padding: 10px 0;
    margin-bottom: 0.2rem;
    background-image: repeating-linear-gradient(45deg, transparent 0 3px, #bee0e1 3px 6px);
    background-repeat: no-repeat;
    background-size: 100% 15px;
    background-position: left 0 bottom 7px;
    color: #353535;
    font-weight: bold;
}
.recruitinfo td{
    padding: 10px 50px;
}
@media screen and (max-width: 767px) {
    .recruit1{
        margin: 3rem auto;
    }
    .recruit1 h3{
        font-size: 0.9rem;
    }
    .recruitinfo tr{
        padding: 3%;
        margin-bottom: 1rem;
        height: 5rem;
    }
    .recruitinfo th{
        font-size: 0.9rem;
        width: 5rem;
        background-position: left 0 bottom 2rem;
    }
    .recruitinfo td{
        font-size: 0.8rem;
        padding: 3%;
    }
}
/* -------------------------
  問い合わせ contact.html
------------------------- */
.contact p{
    text-align: center;
    margin-top: 50px;
    font-size: 17px;
}
.contactform{
    max-width: 900px;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 50px;
    border-collapse: separate;
    border-spacing: 0rem 0.5rem;
    position:relative;
}
.contactform th{
    border:1px solid #707070;
    border-right: none;
    text-align: center;
    padding: 5px 20px;
    max-width: 200px;
    background-color: #E1FDE6;
    font-size: 16px;
}
.contactform td{
    border:1px solid #707070;
    padding: 5px 10px;
    max-width: 700px;
    font-size: 16px;
}
.contactform textarea{
    height: 300px;
    max-width: 400px;
}
input[type="submit"]{
    display: block;
    text-align: center;
    font-size: 17px;
    max-width: 150px;
    height: 50px;
    line-height: 50px;
    padding-left: 25px;
    letter-spacing: 30px;
    margin: 0 auto;
    background-color: #B5D56A;
    color: #fff;
    border-style: none;
    cursor: pointer;
}
input[type="submit"]:hover{
    background-color: #B9ECC2;
}
@media screen and (max-width: 767px) {
    .contact p{
        font-size: 0.8rem;
        margin-top: 2rem;
        text-align: left;
    }
    .contactform{
        width:100%;
        table-layout: fixed;
        height: 1rem;
    }
    .contactform th,
    .contactform td{
        font-size: 0.8rem;
    }
    .contactform th{
        width:25%;
    }
    .contactform td{
        width:75%;
    }
}

/* -------------------------
勧誘方針 solicitationpolicy.html
------------------------- */
.solicitation section{
    max-width: 930px;
    margin: 0 auto;
}
.solicitation h3{
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 3px 0 0 10px;
    font-size: 18px;
    font-weight: normal;
    line-height: 1;
    color: #7fa710;
    border-left: solid 8px #7fa710;
    position:relative;
}
.solicitation h4{
    margin-top: 15px;
    margin-bottom:15px;
    font-size: 16px;
}  
.solicitation ol li {
	list-style-type: none;
	counter-increment: cnt;
    line-height: 25px;
    font-weight: 14px;
}
.solicitation ol li::before {
	content: "(" counter(cnt) ") ";
    display:inline-block;
	margin-left:-25px; 
	max-width:25px;
}
.solicitation p{
    text-align: center;
    margin-top:60px;
}
@media screen and (max-width: 767px) {
    .solicitation section{
        width: 95%;
    }
    .solicitation h4{
        font-size: 0.9rem;
        font-weight: bold;
    }
    .solicitation li{
        margin-left: 1.5rem;
    }
    .solicitation li,
    .solicitation p{
        font-size: 0.8rem;
    }

/* -------------------------
プライバシーポリシー privacypolicy.html
------------------------- */
.privacy section{
    max-width: 930px;
    margin: 0 auto;
    margin-top: 25px;
    line-height: 25px;
}
.privacy h3{
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 3px 0 0 10px;
    font-size: 18px;
    font-weight: normal;
    line-height: 1;
    color: #7fa710;
    border-left: solid 8px #7fa710;
    position: relative;
}
.privacy h4{
    margin-top: 15px;
    margin-bottom:10px;
    font-size: 16px;
    font-weight: bold;
}
.privacy li{
    line-height: 25px;
}
.privacy ol li {
	list-style-type: none;
	counter-increment: cnt;
    line-height: 25px;
}
.privacy ol li::before {
	content: "(" counter(cnt) ") ";
    display:inline-block;
}
.privacy_contact{
    display: flex;
    justify-content: right;
}
.privacy_contact dl{
    margin-top: 30px;
}
.privacy_contact dt{
    padding: 3px;
}
.privacy_contact dt:first-child{
    color: #7fa710;
}
}