@charset "UTF-8";
/*-------------
vars
-------------*/
:root{
    --font-sans-serif: 'Noto Sans JP', "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    --font-en: 'Poppins', sans-serif;
    --font-size-base: 1.5rem;
    --font-size-base--sp: 1.4rem;
    --main-black: #333;
    --sub-black: #1a1a1a;
    --main-green: #47991e;
    --main-light-green: #7dbd31;
    --bg-green: #e1efe2;
    --bg-gray: #f5f5f5;
    --border-gray: #e6e6e6;
    --inner-width--sp: 90.625%;
    --inner-width--sp_vw: 90.625vw;
    --inner-sidespace--sp: 4.6875%;
    --inner-sidespace--sp_vw: 4.6875vw;
}

/*-------------
base
-------------*/
html{
    font-size: 62.5%;
}
body{
    width: 100%;
    min-width: 960px;
    background: #fff;
    color: var(--main-black);
    font-family: var(--font-sans-serif);
    font-size: var(--font-size-base);
    line-height: normal;
    text-align: left;
    word-wrap: break-word;
}
*{
    letter-spacing: .04em;
}
.sp{
    display: none;
}
.i-block{
    display: inline-block;
}
.clearfix::after,
.cf::after{
    content: "";
    display: block;
    clear: both;
}
@media screen and (min-width:768px){
    body > header,
    body > footer,
    body > section,
    body > article,
    body > div{
        font-size: var(--font-size-base);
    }
}
.preload *{
    transition: none!important;
}
a:hover{
    text-decoration: none;
}
@media screen and (min-width:769px){
    a[href^="tel:"]{
        pointer-events: none;
    }
}
.txt_ind {
    text-indent: -1.04em;
    padding-left: 1.04em;
}
/* sp */
@media screen and (max-width:768px){
    html{
        font-size: 62.5%;
    }
    body{
        min-width: 320px;
        font-size: var(--font-size-base--sp);
    }
    .sp{
        display: block;
    }
    .pc{
        display: none;
    }
    img{
        width: 100%;
        height: auto;
    }
}

/*-------------
outer-container
-------------*/
.outer-container{
    display: flex;
}
.main-visual-container{
    flex: 1 1 auto;
    position: relative;
    max-width: 30%;
    min-height: 100vh;
}
@media screen and (min-width:769px){
    .page--top .main-visual-container{
        max-width: 50%;
    }
}
.main-visual{
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: url(../images/main-visual-logo_bg.png) no-repeat right 5px bottom 5px / auto,
    var(--main-light-green);
}
.main-visual::before{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    min-height: 810px;
    background: url(../images/main-visual-pic.png) no-repeat center / auto 100%;
    content: "";
}
.main-visual-logo{
    position: absolute;
    top: 20px;
    left: 8px;
}
.main-visual-ctach{
    position: absolute;
    right: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
}
.main-visual-ctach img{
    width: auto;
    max-width: 100%;
    height: auto;
}
.main-container{
    flex: 0 0 70%;
    position: relative;
    min-width: 660px;
}
@media screen and (min-width:769px){
    .page--top .main-container{
        max-width: 50%;
    }
}
/*--- sp ---*/
@media screen and (max-width:768px){
    .outer-container{
        display: block;
        padding-top: 51px;
    }
    .main-visual-container{
        max-width: none;
        min-height: 0;
    }
    body:not(.page--top) .main-visual-container{
        display: none;
    }
    .main-visual{
        position: static;
        height: 330px;
        background: url(../images/main-visual-logo_bg@sp.png) no-repeat right 5px bottom 5px / 110px auto,
        var(--main-light-green);
    }
    .main-visual::before{
        min-height: 0;
        background: url(../images/main-visual-pic@sp.png) no-repeat center / auto 100%;
    }
    .main-visual-logo{
        top: 10px;
        left: 4px;
        width: 132px;
    }
    .main-visual-ctach{
        right: 6px;
        bottom: 5px;
        width: 310px;
        max-width: none;
    }
    .main-container{
        position: static;
        min-width: 0;
    }
}

/*-------------
header
-------------*/
.header{
    border-bottom: solid 1px var(--border-gray);
}
@media screen and (min-width:769px){
    .header{
        overflow: hidden;
        white-space: nowrap;
    }
}
.header-inner{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 80px;
}
.header-logo--sp{
    display: none;
}
.header-nav-list{
    display: flex;
    margin-right: 5px;
}
.header-nav-list-item{
    position: relative;
}
.header-nav-list-item:not(:first-child){
    margin-left: 10px;
}
.header-nav-list-item:not(:first-child)::before{
    position: absolute;
    top: calc(50% - 10px);
    left: -1px;
    transform: skewX(-25deg);
    transform-origin: top right;
    width: 1px;
    height: 20px;
    background: var(--main-light-green);
    content: "";
}
.header-nav-list-item__link{
    display: block;
    padding: 20px 20px 21px;
    color: var(--sub-black);
    font-size: 1.6rem;
    font-weight: bold;
    line-height: calc(1em + 5px);
    transition: color .3s ease;
}
@media screen and (min-width:769px){
    .header-nav-list-item__link:hover{
        color: var(--main-green);
    }
}
.header-nav-list--sub{
    display: none;
}
.header-contact{
    width: 180px;
    height: 100%;
    transform: skewX(-21deg);
    transform-origin: right bottom;
}
.header-contact__link{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 15px 1px;
    background: var(--main-green);
    transition: background .3s ease;
}
@media screen and (min-width:769px){
    .header-contact__link:hover{
        background: var(--main-light-green);
    }
}
.header-contact__link-inner{
    display: flex;
    align-items: center;
    transform: skewX(21deg);
}
.header-contact__link-inner::before{
    width: 25px;
    height: 18px;
    margin-right: 5px;
    background: url(../images/icon_mail.svg) no-repeat center / contain;
    content: "";
}
.header-contact__text{
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: calc(1em + 5px);
}
.header-menubtn{
    position: relative;
    z-index: -1;
    width: 60px;
    height: 100%;
    background: #000;
}
/*--- sp ---*/
@media screen and (max-width:768px){
    .header{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }
    .header-inner{
        position: relative;
        height: 50px;
    }
    .header-logo--sp{
        display: block;
        margin-right: auto;
        padding: 10px;
    }
    .header-logo--sp img{
        display: block;
    }
    .header-nav{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 51px;
        left: 0;
        z-index: 99;
        width: 100%;
        height: 330px;
        box-shadow: 0 3px 6px rgba(50,50,50,.25);
        background: url(../images/header-manu-logo_bg.png) no-repeat right 5px bottom 5px / 110px auto,
        var(--main-green);
        transition: opacity .3s ease;
    }
    .header-nav:not(.is--active){
        display: none;
    }
    .header-nav:not(.is--show){
        opacity: 0;
    }
    .header-nav-list{
        display: block;
        margin: 0;
    }
    .header-nav-list-item{
        text-align: center;
    }
    .header-nav-list-item:not(:first-child){
        margin: 10px 0 0;
    }
    .header-nav-list-item:not(:first-child)::before{
        content: none;
    }
    .header-nav-list-item__link{
        padding: 7px 10px 8px;
        color: #fff;
    }
    .header-nav-list--sub{
        display: block;
        margin-top: 20px;
    }
    .header-nav-list--sub-item{
        text-align: center;
    }
    .header-nav-list--sub-item:not(:last-child){
        margin-bottom: 10px;
    }
    .header-nav-list--sub-item__link{
        display: block;
        padding: 7px 10px 8px;
        color: #fff;
        font-size: 1.4rem;
        line-height: calc(1em + 5px);
    }
    .header-contact{
        width: 50px;
        height: 100%;
        transform: none;
    }
    .header-contact__link{
        height: 100%;
        padding-bottom: 0;
    }
    .header-contact__link-inner{
        transform: none;
    }
    .header-contact__link-inner::before{
        display: block;
        width: 22px;
        height: 16px;
        margin-right: 0;
    }
    .header-contact__text{
        display: none;
    }
    .header-menubtn{
        position: relative;
        z-index: 0;
        width: 50px;
        background: linear-gradient(to right,#fff,#fff) no-repeat left 15px top 24px / 20px 2px,
        var(--sub-black);
        cursor: pointer;
        transition: background-position .3s ease;
    }
    .header-menubtn.menu--open{
        background-position: 50px;
    }
    .header-menubtn::before,
    .header-menubtn::after{
        position: absolute;
        left: 15px;
        width: 20px;
        height: 2px;
        background: #fff;
        transition: transform .3s ease,top .3s ease;
        content: "";
    }
    .header-menubtn::before{
        top: 17px;
    }
    .header-menubtn.menu--open::before{
        top: 24px;
        transform: rotate(-45deg);
    }
    .header-menubtn::after{
        top: 31px;
    }
    .header-menubtn.menu--open::after{
        top: 24px;
        transform: rotate(45deg);
    }
}

/*-------------
footer
-------------*/
.footer{
    position: relative;
    width: 100%;
    border-top: solid 1px #fff;
}
.footer__pagetop-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: calc(35% - 315px);
    z-index: 1;
    transform: translateY(-50%) rotate(45deg) scale(.999);
    width: 35.4px;
    height: 35.4px;
    background: var(--sub-black);
    font-size: 0;
    letter-spacing: -1em;
    cursor: pointer;
    transition: transform .3s ease 0s;
}
@media screen and (min-width:769px){
    .page--top .footer__pagetop-btn{
        right: calc(25% - 300px);
    }
    @media screen and (max-width:1360px){
        .page--top .footer__pagetop-btn{
            right: 30px;
        }
    }
    .footer__pagetop-btn:hover{
        transform: translateY(-50%) rotate(45deg) scale(1.15);
    }
}
.footer__pagetop-btn::after{
    transform: rotate(-45deg) scaleY(.8) rotate(45deg);
    width: 8px;
    height: 8px;
    border-top: solid 2px #fff;
    border-left: solid 2px #fff;
    content: "";
    transition: transform .3s ease 0s;
}
@media screen and (min-width:769px){
    .footer__pagetop-btn:hover::after{
        transform: rotate(-45deg) scaleY(.8) rotate(45deg) translate(-5px,-5px);
    }
}
/* footer-contact */
.footer-contact{
    position: relative;
    z-index: 0;
    padding: 40px 0 50px;
    background: var(--main-light-green);
}
.footer-contact::before{
    position: absolute;
    top: 0;
    left: calc(50% - 250px);
    z-index: -1;
    border-top: solid 250px var(--main-green);
    border-right: solid 250px rgba(113,179,36,0);
    border-left: solid 250px rgba(113,179,36,0);
    content: "";
}
.footer-contact-title{
    margin-bottom: 19px;
    color: #fff;
    font-family: var(--font-en);
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
}
.footer-contact-lead{
    margin-bottom: 20px;
    color: #fff;
    font-size: 1.4rem;
    line-height: calc(1em + 11px);
    text-align: center;
}
.footer-contact-list{
    display: flex;
    justify-content: center;
}
.footer-contact-list-item{
    flex: 0 0 340px;
    min-height: 110px;
    padding-top: 17px;
    border: solid 1px #fff;
}
.footer-contact-list-item:not(:last-child){
    margin-right: 30px;
}
.footer-contact-list-item-head{
    margin-bottom: 12px;
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: calc(1em + 5px);
    text-align: center;
}
.footer-contact-tel{
    padding: 5px 0;
    text-align: center;
}
.footer-contact-mail{
    width: 200px;
    margin: 0 auto;
}
.footer-contact-mail__link{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    border: solid 1px #fff;
    background: #fff;
    transition: background .3s ease;
}
@media screen and (min-width:769px){
    .footer-contact-mail__link:hover{
        background: none;
    }
}
.footer-contact-mail-icon path{
    transition: fill .3s ease;
}
@media screen and (min-width:769px){
    .footer-contact-mail__link:hover .footer-contact-mail-icon path{
        fill: #fff;
    }
}
.footer-contact-mail-text{
    margin: 0 0 2px 10px;
    color: var(--main-green);
    font-size: 1.6rem;
    font-weight: bold;
    transition: color .3s ease;
}
@media screen and (min-width:769px){
    .footer-contact-mail__link:hover .footer-contact-mail-text{
        color: #fff;
    }
}
/* footer-main */
.footer-main{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 40px 0 35px;
    background: linear-gradient(rgba(0,14,0,.7),rgba(0,14,0,.7)),
    linear-gradient(rgba(255,255,255,.3),rgba(255,255,255,.3)),
    url(../images/footer-bg.jpg) no-repeat center bottom / cover;
}
.footer-company{
    display: flex;
    align-items: center;
}
.footer-company-logo{
    margin-right: 35px;
}
.footer-company-address{
    color: #fff;
    font-size: 1.4rem;
    line-height: calc(1em + 5px);
}
.footer-company-address__list{
    margin-top: 8px;
}
.footer-company-address__list-item{
    display: inline-block;
}
.footer-company-address__list-item:not(:last-child){
    margin-right: 1em;
}
.footer-company-safe{
    margin-left: 40px;
}
.footer-nav{
    margin-top: 25px;
}
.footer-nav-list{
    display: flex;
    border-left: solid 1px #7e8484;
}
.footer-nav-list-item{
    border-right: solid 1px #7e8484;
}
.footer-nav-list-item__link{
    display: block;
    padding: 0 18px 1px;
    color: #c7caca;
    font-size: 1.3rem;
    line-height: calc(1em + 5px);
    transition: color .3s ease;
}
@media screen and (min-width:769px){
    .footer-nav-list-item__link:hover{
        color: #fff;
    }
}
/* footer__copy */
.footer__copy{
    display: block;
    padding: 11px 0 12px;
    background: var(--sub-black);
    color: #c7caca;
    font-size: 1.3rem;
    line-height: 1;
    text-align: center;
}
/*--- sp ---*/
@media screen and (max-width:768px){
    /* footer-contact */
    .footer-contact{
        padding: 30px var(--inner-sidespace--sp) 40px;
    }
    .footer-contact::before{
        left: calc(50% - 140px);
        border-top-width: 140px;
        border-right-width: 140px;
        border-left-width: 140px;
    }
    .footer-contact-title{
        margin-bottom: 10px;
        font-size: 30px;
    }
    .footer-contact-lead{
        margin-bottom: 26px;
        line-height: calc(1em + 9px);
        text-align: left;
    }
    .footer-contact-list{
        display: block;
        justify-content: center;
    }
    .footer-contact-list-item{
        min-height: 0;
        padding: 12px 15px 15px;
    }
    .footer-contact-list-item:not(:last-child){
        margin: 0 0 10px;
    }
    .footer-contact-list-item-head{
        margin-bottom: 8px;
        font-size: 1.3rem;
    }
    .footer-contact-tel{
        padding: 0 15px;
    }
    .footer-contact-tel img{
        width: auto;
        max-width: 100%;
        height: auto;
    }
    .footer-contact-mail{
        width: 100%;
    }
    /* footer-main */
    .footer-main{
        display: block;
        padding: 40px var(--inner-sidespace--sp);
        background: linear-gradient(rgba(0,14,0,.7),rgba(0,14,0,.7)),
        linear-gradient(rgba(255,255,255,.3),rgba(255,255,255,.3)),
        url(../images/footer-bg@sp.jpg) no-repeat center bottom / cover;
    }
    .footer__pagetop-btn{
        right: var(--inner-sidespace--sp);
        transform: rotate(45deg) scale(.999);
        transform-origin: top right;
    }
    .footer-company{
        display: block;
    }
    .footer-company-logo{
        width: 180px;
        margin: 0 0 20px;
    }
    .footer-company-address{
        color: #fff;
        font-size: 1.3rem;
    }
    .footer-company-address__list{
        margin-top: 8px;
    }
    .footer-company-safe{
        width: 45px;
        margin: 15px 0 0;
    }
    .footer-nav{
        margin-top: 25px;
    }
    .footer-nav-list{
        flex-wrap: wrap;
        margin: 0 0 -10px -15px;
        border-left: none;
    }
    .footer-nav-list-item{
        margin-bottom: 10px;
    }
    .footer-nav-list-item:last-child{
        border: none;
    }
    .footer-nav-list-item__link{
        padding: 0 15px 1px;
        color: #fff;
    }
    /* footer__copy */
    .footer__copy{
        padding: 11px 0 calc(12px + env(safe-area-inset-bottom));
        font-size: 1.2rem;
    }
}
.footer-icon-list{
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: 48px;
}
.footer-icon-list-item a{
    transition: opacity .3s ease;
}
@media screen and (min-width:769px){
    .footer-icon-list-item a:hover{
        opacity: .7;
    }    
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .footer-icon-list{
        gap: 20px;
        margin: 30px 0;
    }
    .footer-icon-list-item img{
        width: auto;
        max-height: 40px;
    }
}

/*-------------
top
-------------*/
.contents.top{
    padding: 50px 0 100px;
}
.top-sec-title{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    margin-bottom: 30px;
    padding-top: 25px;
}
.top-sec-title::before{
    margin-right: 15px;
    color: #0d0d0d;
    font-family: var(--font-en);
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .02em;
    content: attr(data-title-en);
}
.top-sec-title::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 5px;
    background: var(--main-light-green);
    content: "";
}
.top-sec-title--ja{
    display: inline-block;
    margin-bottom: 1px;
    color: #b3b3b3;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: calc(1em + 5px);
    letter-spacing: .02em;
}
/* top-lead */
.top-lead{
    width: 600px;
    margin: 0 auto 55px;
    padding-top: 3px;
    background: url(../images/top-lead-bg_logo.png) no-repeat top right / auto;
}
.top-lead-catch{
    margin-bottom: 25px;
    color: var(--sub-black);
    font-size: 34px;
    font-weight: bold;
    line-height: calc(1em + 12px);
    letter-spacing: .08em;
}
.top-lead-catch .is--emph{
    color: var(--main-green);
}
.top-lead-words-list{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px 1px 0;
}
.top-lead-words-list-item{
    margin: 0 5px 5px 0;
    padding: 4px 8px 6px;
    color: var(--sub-black);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: calc(1em + 6px);
}
.top-lead-words-list--machine .top-lead-words-list-item{
    background: #faf2c8;
}
.top-lead-words-list--packing .top-lead-words-list-item{
    background: #ffe3d1;
}
.top-lead-pic-list{
    display: flex;
    justify-content: space-between;
    margin: 10px 0 28px;
}
.top-lead-pic-list-item{
    flex: 0 0 195px;
}
.top-lead-text{
    line-height: calc(1em + 12px);
}
/* top-news */
.top-news{
    width: 600px;
    margin: 0 auto 60px;
}
.top-news-list{
    border-top: solid 1px var(--border-gray);
}
.top-news-list-item{
    display: flex;
    padding: 14px 10px 16px;
    border-bottom: solid 1px var(--border-gray);
}
.top-news-list-item__date{
    flex: 0 0 95px;
    margin-top: 7px;
    color: var(--main-light-green);
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1;
}
.top-news-list-item-body a:not(:hover){
    text-decoration: underline;
}
.top-news-list-item__title{
    font-size: 1.5rem;
    line-height: calc(1em + 10px);
}
.top-news-list-item__text{
    margin-bottom: -1px;
    line-height: calc(1em + 11px);
}
.top-news-list-item__text:not(:first-child){
    margin-top: 9px;
}
/* top-recruit */
.top-recruit{
    width: 600px;
    margin: 0 auto;
}
.top-recruit-container{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}
.top-recruit-lead{
    flex: 0 0 285px;
}
.top-recruit-lead__catch{
    margin: -7px 0 8px;
    color: var(--sub-black);
    font-size: 36px;
    font-weight: bold;
    line-height: calc(1em + 12px);
}
.top-recruit-lead__catch .is--emph{
    color: var(--main-green);
}
.top-recruit-lead__text{
    line-height: calc(1em + 12px);
}
.top-recruit-lead__btn{
    width: 314px;
    margin: 25px auto 0;
}
.top-recruit-lead__btn__link{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 44px;
    padding-bottom: 2px;
    background: var(--main-green);
    color: #fff;
    font-weight: bold;
    transition: background .3s ease;
}
@media screen and (min-width:769px){
    .top-recruit-lead__btn__link:hover{
        background: var(--main-light-green);
    }
}
.top-recruit__youtube{
    flex: 0 0 285px;
}
.top-recruit__youtube__link{
    display: block;
    position: relative;
}
.top-recruit__youtube__link::before{
    position: absolute;
    top: calc(50% - 32.5px);
    left: calc(50% - 32.5px);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(0,0,0,.5);
    content: "";
    transition: background .3s ease;
}
.top-recruit__youtube__link:hover::before{
    background: #f00;
}
.top-recruit__youtube__link::after{
    position: absolute;
    top: calc(50% - 12.5px);
    left: calc(50% - 8px);
    border-top: solid 12.5px rgba(0,0,0,0);
    border-bottom: solid 12.5px rgba(0,0,0,0);
    border-left: solid 20px rgba(255,255,255,.5);
    content: "";
    transition: border .3s ease;
}
.top-recruit__youtube__link:hover::after{
    border-left-color: #fff;
}
.top-recruit__youtube img{
    width: 100%;
    height: auto;
}
/*--- sp ---*/
@media screen and (max-width:768px){
    .contents.top{
        padding: 29px 0 60px;
    }
    .top-sec-title{
        margin-bottom: 20px;
        padding-top: 15px;
    }
    .top-sec-title::before{
        margin-right: 15px;
        font-size: 31px;
    }
    .top-sec-title::after{
        position: absolute;
        top: 0;
        left: 0;
        width: 40px;
        height: 5px;
        background: var(--main-light-green);
        content: "";
    }
    .top-sec-title--ja{
        font-size: 1.5rem;
    }
    /* top-lead */
    .top-lead{
        width: var(--inner-width--sp);
        margin: 0 auto 45px;
        padding-top: 0;
        background: url(../images/top-lead-bg_logo.png) no-repeat top 7px right / 125px auto;
    }
    .top-lead-catch{
        margin-bottom: 21px;
        font-size: 2.1rem;
        line-height: calc(1em + 10px);
    }
    .top-lead-words-list-item{
        padding: 3px 6px 5px;
        font-size: 1.4rem;
    }
    .top-lead-pic-list{
        flex-wrap: wrap;
        margin-bottom: 16px;
    }
    .top-lead-pic-list-item{
        flex: 0 0 calc(50% - 3px);
    }
    .top-lead-pic-list-item:last-child{
        flex: 0 0 100%;
        margin-top: 6px;
    }
    .top-lead-text{
        line-height: calc(1em + 10px);
    }
    .top-lead-text:not(:last-child){
        margin-bottom: 10px;
    }
    /* top-news */
    .top-news{
        width: var(--inner-width--sp);
        margin-bottom: 50px;
    }
    .top-news-list-item{
        display: block;
        padding: 19px 0 17px;
    }
    .top-news-list-item__date{
        display: block;
        margin: 0 0 6px;
        font-size: 1.3rem;
    }
    .top-news-list-item__title{
        font-size: 1.5rem;
        line-height: calc(1em + 7px);
    }
    .top-news-list-item__text{
        line-height: calc(1em + 10px);
    }
    .top-news-list-item__text:not(:first-child){
        margin-top: 7px;
    }
    /* top-recruit */
    .top-recruit{
        width: var(--inner-width--sp);
    }
    .top-recruit-container{
        display: block;
    }
    .top-recruit-lead{
        margin-bottom: 20px;
    }
    .top-recruit-lead__catch{
        margin: 0 0 10px;
        font-size: 2.1rem;
        line-height: calc(1em + 10px);
    }
    .top-recruit-lead__text{
        line-height: calc(1em + 10px);
    }
    .top-recruit-lead__btn{
        width: 100%;
    }
    .top-recruit__youtube{
        width: 100%;
    }
}

/*-------------
page-header
-------------*/
.page-header{
    margin-bottom: 50px;
    padding: 50px 0;
    background: var(--bg-gray);
}
.page-header__title{
    margin-top: -3px;
    text-align: center;
}
.page-header__title::after{
    display: block;
    margin-top: 8px;
    color: var(--main-green);
    font-family: var(--font-en);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    content: attr(data-pagetitle-en);
}
.page-header__title--ja{
    display: block;
    color: var(--sub-black);
    font-size: 34px;
    font-weight: bold;
    line-height: calc(1em + 5px);
}
/*--- sp ---*/
@media screen and (max-width:768px){
    .page-header{
        margin-bottom: 30px;
        padding: 25px var(--inner-sidespace--sp);
    }
    .page-header__title::after{
        margin-top: 8px;
        font-size: 1.6rem;
    }
    .page-header__title--ja{
        font-size: 2.7rem;
    }
}

/*-------------
section-title
-------------*/
.section-title--basic{
    display: flex;
    align-items: center;
    margin-bottom: 33px;
    color: var(--main-green);
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    line-height: calc(1em + 6px);
}
.section-title--basic::before,
.section-title--basic::after{
    flex: 1 1 auto;
    min-width: 20px;
    height: 1px;
    background: currentColor;
    content: "";
}
.section-title--basic::before{
    margin-right: 10px;
}
.section-title--basic::after{
    margin-left: 10px;
}
/*--- sp ---*/
@media screen and (max-width:768px){
    .section-title--basic{
        margin-bottom: 23px;
        font-size: 2.4rem;
    }
}

/*-------------
company
-------------*/
:root{
    --inner-width--company: 630px;
}
.contents.company{
    padding-bottom: 100px;
}
.com-policy{
    display: flex;
    align-items: center;
    width: var(--inner-width--company);
    margin: 0 auto;
}
.com-policy:not(:last-child){
    margin-bottom: 50px;
}
.com-policy-title{
    flex: 0 0 120px;
    margin-right: 20px;
    padding: 5px 5px 7px;
    background: var(--main-green);
    color: #fff;
    font-size: 2.1rem;
    font-weight: bold;
    line-height: calc(1em + 6px);
    text-align: center;
}
.com-policy:nth-of-type(2n) .com-policy-title{
    background: var(--main-light-green);
}
.com-policy-body{
    flex: 1 1 auto;
    padding: 8px 0 10px 20px;
    border-left: solid 1px var(--main-green);
}
.com-policy:nth-of-type(2n) .com-policy-body{
    border-left-color: var(--main-light-green);
}
.com-policy-body__sect:not(:last-child){
    margin-bottom: 20px;
}
.com-policy__mid-title{
    margin-bottom: 5px;
    font-size: 1.6rem;
    font-weight: bold;
}
.com-policy__list{
    line-height: calc(1em + 11px);
}
.com-policy__list li:not(:last-child){
    margin-bottom: 5px;
}
/* com-policy--company */
.com-policy--company__text{
    font-size: 2.2rem;
    font-weight: bold;
    line-height: calc(1em + 14px);
}
.com-policy--company__text--line_2{
    display: inline-block;
    text-indent: -.5em;
}
.com-policy--company-bottom{
    display: flex;
    justify-content: flex-end;
    margin-top: 23px;
    color: #666;
    line-height: calc(1em + 10px);
}
/* com-policy--manage */
.com-policy--manage__catch{
    margin-bottom: 20px;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: calc(1em + 14px);
}
.com-policy--manage__catch .is--emph{
    color: var(--main-green);
}
.com-policy--manage__text{
    line-height: calc(1em + 11px);
}
/* com-policy--act */
.com-policy--act-list-item{
    position: relative;
    padding-left: 18px;
    line-height: calc(1em + 6px);
}
.com-policy--act-list-item:not(:last-child){
    margin-bottom: 8px;
}
.com-policy--act-list-item::before{
    position: absolute;
    top: calc(.5em - .5px);
    left: calc(.5em - 4.5px);
    width: 9px;
    height: 9px;
    border: solid 2px var(--main-light-green);
    border-radius: 50%;
    content: "";
}
.com-policy--act-list-item .is--emph{
    font-weight: bold;
}
/* com-policy--iso */
.com-policy--iso{
    counter-reset: iso-num;
}
.com-policy--iso-list{
    margin-bottom: 22px;
    padding-left: 2rem;
}
.com-policy--iso-list__term{
    position: relative;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: calc(1em + 4px);
}
.com-policy--iso-list__term:not(:last-child){
    margin-bottom: 10px;
}
.com-policy--iso-list__term::before{
    position: absolute;
    top: 0;
    left: -2rem;
    color: var(--main-green);
    content: counter(iso-num)'.';
    counter-increment: iso-num;
}
.com-policy--iso-list__desc{
    position: relative;
    padding-left: 13px;
    line-height: calc(1em + 6px);
}
.com-policy--iso-list__desc:not(:last-child){
    margin-bottom: 4px;
}
.com-policy--iso-list__desc::before{
    position: absolute;
    top: calc(.5em + 1.5px);
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--main-light-green);
    content: "";
}
.com-policy--iso-bottom{
    display: flex;
    justify-content: flex-end;
    margin-top: 27px;
    color: #666;
    line-height: calc(1em + 10px);
}
/* com-about */
.com-about{
    width: var(--inner-width--company);
    margin: 120px auto 80px;
}
.com-about-table{
    width: 100%;
}
.com-about-table th,
.com-about-table td{
    padding: 10px 0 12px 15px;
    line-height: calc(1em + 8px);
}
.com-about-table th{
    border-top: solid 1px var(--main-green);
    border-bottom: solid 1px var(--main-green);
    color: var(--main-green);
}
@media screen and (min-width:769px){
    .com-about-table .colm_1{
        width: 150px;
    }
}
.com-about-table td{
    border-top: solid 1px var(--border-gray);
    border-bottom: solid 1px var(--border-gray);
}
.com-about-table a:not([href^="tel:"]):not(:hover){
    text-decoration: underline;
}
.com-about-table__business-list{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px -4px 0;
}
.com-about-table__business-list-item{
    margin: 0 20px 4px 0;
}
.com-about-table__relation{
    display: flex;
}
.com-about-table__relation-name{
    flex: 0 0 180px;
    font-weight: bold;
}
.com-about-table__relation__desc{
    font-size: 1.4rem;
}
/* com-history */
.com-history{
    width: var(--inner-width--company);
    margin: 0 auto 80px;
}
.com-history-table{
    width: 100%;
}
.com-history-table tr:nth-child(odd){
    background: var(--bg-gray);
}
.com-history-table th{
    padding: 16px 0 15px 18px;
    color: var(--main-green);
    font-size: 1.5rem;
    line-height: calc(1em + 5px);
}
@media screen and (min-width:769px){
    .com-history-table .colm_1{
        width: 120px;
    }
}
.com-history-table td{
    padding: 16px 15px 18px;
    font-size: 1.4rem;
    line-height: calc(1em + 6px);
}
.com-history-table td p:not(:last-child){
    margin-bottom: 8px;
}
.com-history-table td a:not(:hover){
    text-decoration: underline;
}
/* com-primary */
.com-primary{
    width: var(--inner-width--company);
    margin: 0 auto 80px;
}
.com-primary-sec:not(:last-of-type){
    margin-bottom: 40px;
}
.com-primary-sec-title{
    margin-bottom: 20px;
    padding: 6px 10px 8px;
    background: var(--bg-green);
    border-top: solid 2px var(--main-green);
    color: var(--main-green);
    font-size: 2.1rem;
    font-weight: bold;
    line-height: calc(1em + 6px);
}
.com-primary-list{
    margin-top: 10px;
}
.com-primary-list-item{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding-left: 18px;
    line-height: calc(1em + 6px);
}
.com-primary-list-item:not(:last-child){
    margin-bottom: 8px;
}
.com-primary-list-item::before{
    flex: 1 1 auto;
    min-width: 10px;
    margin: 11px 8px 0;
    border-top: dotted 2px var(--border-gray);
    content: "";
}
.com-primary-list-item::after{
    position: absolute;
    top: calc(0.5em - 0.5px);
    left: calc(0.5em - 4.5px);
    width: 9px;
    height: 9px;
    border: solid 2px var(--main-light-green);
    border-radius: 50%;
    content: "";
}
.com-primary-list-item-head{
    order: -1;
}
.com-primary-list-item-bottom{
    flex: 0 0 auto;
}
.com-primary-list-item-bottom .is--num{
    color: var(--main-green);
    font-weight: bold;
}
/* com-license */
.com-license{
    width: var(--inner-width--company);
    margin: 0 auto;
}
.com-license-table{
    width: 100%;
}
.com-license-table th,
.com-license-table td{
    padding: 10px 0 12px 15px;
    line-height: calc(1em + 8px);
}
.com-license-table th{
    border-top: solid 1px currentColor;
    border-bottom: solid 1px currentColor;
    color: var(--main-green);
}
@media screen and (min-width:769px){
    .com-license-table .colm_1{
        width: 210px;
    }
}
.com-license-table td{
    border-top: solid 1px var(--border-gray);
    border-bottom: solid 1px var(--border-gray);
}
.com-license-list-item{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding-left: 18px;
    line-height: calc(1em + 6px);
}
.com-license-list-item:not(:last-child){
    margin-bottom: 8px;
}
.com-license-list-item::before{
    flex: 1 1 auto;
    min-width: 10px;
    margin: 11px 8px 0;
    border-top: dotted 2px var(--border-gray);
    content: "";
}
.com-license-list-item::after{
    position: absolute;
    top: calc(0.5em - 0.5px);
    left: calc(0.5em - 4.5px);
    width: 9px;
    height: 9px;
    border: solid 2px var(--main-light-green);
    border-radius: 50%;
    content: "";
}
.com-license-list-item-head{
    order: -1;
}
.com-license-list-item-bottom{
    flex: 0 0 auto;
}
.com-license-list-item-bottom .is--num{
    color: var(--main-green);
    font-weight: bold;
}
.com-license-update{
    margin-top: 10px;
    text-align: right;
}
/*--- sp ---*/
@media screen and (max-width:768px){
    :root{
        --inner-width--company: var(--inner-width--sp);
    }
    .contents.company{
        padding-bottom: 60px;
    }
    .com-policy{
        display: block;
    }
    .com-policy:not(:last-child){
        margin-bottom: 40px;
    }
    .com-policy-title{
        margin: 0 0 10px;
        padding: 3px 5px 5px;
        font-size: 1.8rem;
    }
    .com-policy-body{
        padding: 0;
        border: none;
    }
    .com-policy-body__sect:not(:last-child){
        margin-bottom: 15px;
    }
    .com-policy__mid-title{
        margin-bottom: 3px;
        font-size: 1.5rem;
    }
    .com-policy__list{
        line-height: calc(1em + 10px);
    }
    .com-policy__list li:not(:last-child){
        margin-bottom: 3px;
    }
    /* com-policy--company */
    .com-policy--company__text{
        font-size: 1.8rem;
        line-height: calc(1em + 10px);
    }
    @media screen and (max-width:320px){
        .com-policy--company__text{
            font-size: 1.6rem;
        }
    }
    .com-policy--company-bottom{
        margin-top: 15px;
    }
    /* com-policy--manage */
    .com-policy--manage__catch{
        margin-bottom: 12px;
        font-size: 1.8rem;
        line-height: calc(1em + 10px);
    }
    .com-policy--manage__text{
        line-height: calc(1em + 10px);
    }
    /* com-policy--act */
    .com-policy--act{
        margin-top: 12px;
    }
    .com-policy--act-list-item{
        padding-left: 17px;
    }
    .com-policy--act-list-item::before{
        top: .5em;
        left: calc(.5em - 4px);
        width: 8px;
        height: 8px;
    }
    /* com-policy--iso */
    .com-policy--iso{
        margin-top: 13px;
    }
    .com-policy--iso-list{
        padding-left: 1.9rem;
    }
    .com-policy--iso-list__term{
        font-size: 1.5rem;
    }
    .com-policy--iso-bottom{
        margin-top: 17px;
    }
    /* com-about */
    .com-about{
        margin: 80px auto 50px;
    }
    .com-about-table{
        border-top: solid 1px var(--main-green);
    }
    .com-about-table tr{
        border-bottom: solid 1px var(--border-gray);
    }
    .com-about-table th,
    .com-about-table td{
        display: block;
        width: 100%;
        border: none;
    }
    .com-about-table th{
        padding: 10px 0 0;
    }
    .com-about-table td{
        padding: 3px 0 12px;
    }
    .com-about-table td:only-child{
        padding-top: 10px;
    }
    .com-about-table__relation{
        display: block;
    }
    .com-about-table__relation__desc{
        font-size: 1.3rem;
    }
    /* com-history */
    .com-history{
        margin-bottom: 60px;
    }
    .com-history-table th{
        display: block;
        width: 100%;
        padding: 16px 15px 0;
        font-size: 1.5rem;
    }
    .com-history-table td{
        display: block;
        width: 100%;
        padding: 6px 15px 18px;
    }
    /* com-primary */
    .com-primary{
        margin-bottom: 60px;
    }
    .com-primary-sec-title{
        margin-bottom: 15px;
        font-size: 1.8rem;
    }
    .com-primary-list-item{
        padding-left: 17px;
    }
    .com-primary-list-item::after{
        top: 0.5em;
        left: calc(0.5em - 4px);
        width: 8px;
        height: 8px;
    }
    /* com-license */
    .com-license-table{
        border-top: solid 1px var(--main-green);
    }
    .com-license-table tr{
        border-bottom: solid 1px var(--border-gray);
    }
    .com-license-table th,
    .com-license-table td{
        display: block;
        width: 100%;
        border: none;
    }
    .com-license-table th{
        padding: 10px 0 0;
    }
    .com-license-table td{
        padding: 3px 0 12px;
    }
    .com-license-list-item{
        padding-left: 17px;
    }
    .com-license-list-item::after{
        top: 0.5em;
        left: calc(0.5em - 4px);
        width: 8px;
        height: 8px;
    }
}

/*-------------
service
-------------*/
:root{
    --inner-width--service: 630px;
}
.contents.service{
    padding-bottom: 100px;
}
.service-sec{
    width: var(--inner-width--service);
    margin: 0 auto;
}
.service-sec:not(:last-of-type){
    margin-bottom: 80px;
}
.service-about{
    display: flex;
    justify-content: space-between;
}
.service-about-pic{
    flex: 0 0 303px;
    margin-right: 24px;
}
.service-about-title{
    margin-bottom: 15px;
    padding: 4px 10px 6px;
    background: var(--bg-green);
    border-top: solid 2px currentColor;
    color: var(--main-green);
    font-size: 2rem;
    font-weight: bold;
    line-height: calc(1em + 6px);
}
.service-about-list-item{
    padding-left: 18px;
}
.service-about-list-item:not(:last-child){
    margin-bottom: 6px;
}
.service-about-list-item__term{
    display: block;
    position: relative;
    font-weight: bold;
    line-height: calc(1em + 5px);
}
.service-about-list-item__term:not(:last-child){
    margin-bottom: 2px;
}
.service-about-list-item__term::before{
    position: absolute;
    top: calc(0.5em - 1.5px);
    left: -13.5px;
    width: 9px;
    height: 9px;
    border: solid 2px var(--main-light-green);
    border-radius: 50%;
    content: "";
}
.service-about-list-item__desc{
    line-height: calc(1em + 6px);
}
.service-about-list-item:not(:last-child) .service-about-list-item__desc{
    margin-bottom: 12px;
}
.service-btn--dtl{
    margin-top: 40px;
}
.service-btn--dtl__link{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 49px;
    padding-bottom: 2px;
    background: var(--main-green);
    color: #fff;
    font-weight: bold;
    transition: background .3s ease;
}
@media screen and (min-width:769px){
    .service-btn--dtl__link:hover{
        background: var(--main-light-green);
    }
}
.service-other{
    display: flex;
    width: var(--inner-width--service);
    margin: 80px auto 0;
    padding-top: 80px;
    border-top: solid 1px var(--border-gray);
}
.service-other-item{
    flex: 0 0 303px;
}
.service-other-item:not(:last-child){
    margin-right: 24px;
}
.service-other-item-pic{
    margin-bottom: 5px;
}
.service-other-item__desc{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 10px 7px;
    background: var(--bg-green);
    color: var(--main-green);
    font-size: 1.6rem;
    font-weight: bold;
    line-height: calc(1em + 6px);
}
/*--- sp ---*/
@media screen and (max-width:768px){
    :root{
        --inner-width--service: var(--inner-width--sp);
    }
    .contents.service{
        padding-bottom: 80px;
    }
    .service-sec:not(:last-of-type){
        margin-bottom: 50px;
    }
    .service-about{
        display: block;
    }
    .service-about-pic{
        margin: 0 0 15px;
    }
    .service-about-title{
        margin-bottom: 15px;
        font-size: 1.8rem;
    }
    .service-about-list-item{
        padding-left: 17px;
    }
    .service-about-list-item__term::before{
        top: calc(0.5em - 1px);
        left: -12.5px;
        width: 8px;
        height: 8px;
    }
    .service-btn--dtl{
        margin-top: 25px;
    }
    .service-btn--dtl__link{
        height: 44px;
    }
    .service-other{
        display: block;
        margin-top: 40px;
        padding-top: 40px;
    }
    .service-other-item:not(:last-child){
        margin: 0 0 15px;
    }
    .service-other-item-pic{
        margin-bottom: 5px;
    }
    .service-other-item__desc{
        font-size: 1.5rem;
    }
}

/*-------------
service-dtl
-------------*/
:root{
    --inner-width-service-dtl: 630px;
}
.contents.service-dtl{
    padding-bottom: 100px;
}
.service-dtl-lead{
    width: var(--inner-width--service);
    margin: 0 auto 80px;
}
.service-dtl-lead-main{
    display: flex;
    justify-content: space-between;
}
.service-dtl-lead-pic{
    flex: 0 0 303px;
    margin-right: 24px;
}
.service-dtl-lead__text{
    margin: -4px 0 12px;
    line-height: calc(1em + 10px);
}
.service-dtl-lead-list-item{
    padding-left: 18px;
}
.service-dtl-lead-list-item:not(:last-child){
    margin-bottom: 6px;
}
.service-dtl-lead-list-item__term{
    display: block;
    position: relative;
    font-weight: bold;
    line-height: calc(1em + 5px);
}
.service-dtl-lead-list-item__term:not(:last-child){
    margin-bottom: 2px;
}
.service-dtl-lead-list-item__term::before{
    position: absolute;
    top: calc(0.5em - 1.5px);
    left: -18px;
    border-top: solid 9px var(--main-light-green);
    border-right: solid 6px rgba(255,255,255,0);
    border-left: solid 6px rgba(255,255,255,0);
    content: "";
}
.service-dtl-lead-list-item__desc{
    line-height: calc(1em + 6px);
}
.service-dtl-lead-list-item:not(:last-child) .service-dtl-lead-list-item__desc{
    margin-bottom: 12px;
}
.service-dtl-lead-list-item a:not(:hover){
    text-decoration: underline;
}
/* service-dtl-sec */
.service-dtl-sec{
    width: var(--inner-width-service-dtl);
    margin: 0 auto;
}
.service-dtl-sec:not(:last-of-type){
    margin-bottom: 80px;
}
.service-dtl-sec__text{
    line-height: calc(1em + 10px);
}
.service-dtl-sec__text:not(:last-child){
    margin-bottom: 9px;
}
.service-dtl-sec hr{
    margin: 25px 0;
    border-color: var(--border-gray);
}
/* service-dtl__column-block */
.service-dtl__block-title{
    margin-bottom: 15px;
    padding: 4px 10px 6px;
    background: var(--bg-green);
    border-top: solid 2px currentColor;
    color: var(--main-green);
    font-size: 1.8rem;
    font-weight: bold;
    line-height: calc(1em + 6px);
}
.service-dtl__column-block{
    position: relative;
    min-height: 202px;
    padding-left: 327px;
}
@media screen and (min-width:769px){
    .service-dtl__column-block.is--pic_square{
        min-height: 303px;
    }
}
.service-dtl__column-block:not(:last-child){
    margin-bottom: 25px;
}
.service-dtl__column-block-pic{
    position: absolute;
    top: 0;
    left: 0;
}
.service-dtl__column-block__text{
    line-height: calc(1em + 10px);
}
/* service-dtl-pic-list */
.service-dtl-pic-list{
    display: flex;
    flex-wrap: wrap;
    margin-top: 21px;
}
.service-dtl-pic-list-item{
    flex: 0 0 calc(50% - 5px);
}
.service-dtl-pic-list-item:not(:nth-child(2n)){
    margin-right: 10px;
}
.service-dtl-pic-list-item:not(:nth-child(-n+2)){
    margin-top: 10px;
}
/* service-dtl-figure */
.service-dtl-figure{
    display: block;
    position: relative;
}
.service-dtl-figure__caption{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 9px 5px 11px;
    background: rgba(0,0,0,.5);
    color: #fff;
    line-height: calc(1em + 6px);
}
/* service-dtl-flow-list */
.service-dtl-flow-list{
    display: flex;
    flex-wrap: wrap;
    margin-top: 21px;
    counter-reset: list-num;
}
.service-dtl-flow-list-item{
    flex: 0 0 200px;
}
@media screen and (min-width:769px){
    .service-dtl-flow-list-item:not(:nth-child(3n)){
        margin-right: 15px;
    }
    .service-dtl-flow-list-item:not(:nth-child(-n+3)){
        margin-top: 28px;
    }
}
.service-dtl-flow-list-item--colmn_2{
    flex: 0 0 303px;
}
.service-dtl-flow-list-item--colmn_2:not(:nth-child(2n)){
    margin-right: 24px;
}
.service-dtl-flow-list-item--colmn_2:not(:nth-child(-n+2)){
    margin-top: 42px;
}
.service-dtl-flow-list-item-pic{
    position: relative;
    overflow: hidden;
}
.service-dtl-flow-list-item-pic::before{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transform: skew(-21deg);
    transform-origin: left top;
    width: 38px;
    height: 32px;
    border-right: solid 2px #fff;
    border-bottom: solid 2px #fff;
    background: var(--main-green);
    content: "";
}
.service-dtl-flow-list-item-pic::after{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 30px;
    height: 30px;
    padding-bottom: 2px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    content: counter(list-num);
    counter-increment: list-num;
}
.service-dtl-flow-list-item__text{
    margin-top: 6px;
    font-size: 1.4rem;
    line-height: calc(1em + 6px);
}
/* service-dtl-works-list */
.service-dtl-works-list{
    display: flex;
    flex-wrap: wrap;
}
.service-dtl-works-list-item{
    flex: 0 0 295px;
    position: relative;
}
@media screen and (min-width:769px){
    .service-dtl-works-list-item:not(:nth-child(2n)){
        margin-right: 40px;
    }
    .service-dtl-works-list-item:not(:nth-child(-n+2)){
        margin-top: 37px;
    }
}
.service-dtl-works-list-item-pic:not(:last-child){
    margin-bottom: 12px;
}
.service-dtl-works-list-item__term{
    margin-bottom: 5px;
    padding-bottom: 7px;
    border-bottom: solid 1px var(--border-gray);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: calc(1em + 8px);
}
.service-dtl-works-list-item__term:not(:last-child){
    margin-bottom: 7px;
}
.service-dtl-works-list-item__term-inner{
    position: relative;
}
.service-dtl-works-list-item__term-inner::before{
    position: absolute;
    bottom: -9px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--main-green);
    content: "";
}
.service-dtl-works-list-item__desc{
    font-size: 1.4rem;
    line-height: calc(1em + 8px);
}
/* export */
.service-dtl__export-pics{
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}
.service-dtl-sec__text + .service-dtl__export-pics{
    margin-top: 21px;
}
/* protect */
.service-dtl__protect-seal-pics{
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}
/* woods */
.service-dtl-flow-list--woods .service-dtl-flow-list-item:last-child{
    flex: 0 0 100%;
    margin-right: 0;
}
/*--- sp ---*/
@media screen and (max-width:768px){
    :root{
        --inner-width-service-dtl: var(--inner-width--sp);
    }
    .contents.service-dtl{
        padding-bottom: 80px;
    }
    .service-dtl-lead{
        margin-bottom: 50px;
    }
    .service-dtl-lead-main{
        display: block;
    }
    .service-dtl-lead-pic{
        margin: 0 0 15px;
    }
    .service-dtl-lead-title{
        margin-bottom: 15px;
        font-size: 1.8rem;
    }
    .service-dtl-lead-list-item{
        padding-left: 17px;
    }
    .service-dtl-lead-list-item__term::before{
        top: calc(0.5em - 2px);
        left: -17px;
    }
    /* service-dtl-sec */
    .service-dtl-sec:not(:last-of-type){
        margin-bottom: 50px;
    }
    .service-dtl-sec__text:not(:last-child){
        margin-bottom: 10px;
    }
    /* service-dtl__column-block */
    .service-dtl__block-title{
        margin-bottom: 10px;
    }
    .service-dtl__column-block{
        min-height: 0;
        padding-left: 0;
    }
    .service-dtl__column-block-pic{
        position: static;
        margin-bottom: 14px;
    }
    /* service-dtl-flow-list */
    .service-dtl-flow-list-item,
    .service-dtl-flow-list-item--colmn_2{
        flex: 0 0 calc(50% - 7px);
        position: relative;
        overflow: hidden;
    }
    .service-dtl-flow-list-item:not(:nth-child(2n)),
    .service-dtl-flow-list-item--colmn_2:not(:nth-child(2n)){
        margin-right: 14px;
    }
    .service-dtl-flow-list-item:not(:nth-child(-n+2)),
    .service-dtl-flow-list-item--colmn_2:not(:nth-child(-n+2)){
        margin-top: 18px;
    }
    .service-dtl-flow-list-item-pic::before{
        width: 32px;
        height: 26px;
    }
    .service-dtl-flow-list-item-pic::after{
        width: 24px;
        height: 24px;
        font-size: 14px;
    }
    .service-dtl-flow-list-item__text{
        font-size: 1.3rem;
    }
    /* service-dtl-works-list */
    .service-dtl-works-list{
        display: block;
    }
    .service-dtl-works-list-item:not(:last-child){
        margin-bottom: 30px;
    }
    /* export */
    .service-dtl__export-pics{
        display: block;
    }
    .service-dtl__export-pics-item .service-dtl-figure{
        aspect-ratio: 1;
        background: var(--bg-gray);
    }
    .service-dtl__export-pics-item .service-dtl-figure img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .service-dtl__export-pics-item:not(:last-child){
        margin-bottom: 10px;
    }
    /* protect */
    .service-dtl__protect-seal-pics{
        display: block;
    }
    .service-dtl__protect-seal-pics-item:not(:last-child){
        margin-bottom: 10px;
    }
    /* woods */
    .service-dtl-flow-list--woods .service-dtl-flow-list-item:first-child{
        flex: 0 0 100%;
        margin: 0 0 18px 0;
    }
    .service-dtl-flow-list--woods .service-dtl-flow-list-item:nth-child(3){
        margin: 0 0 0 14px;
    }
}

/*-------------
contact
-------------*/
:root{
    --inner-width--contact: 630px;
}
.contents.contact{
    padding-bottom: 120px;
}
.contact-lead-message{
    width: var(--inner-width--contact);
    margin: 0 auto 27px;
    line-height: calc(1em + 8px);
}
.contact-tel{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: var(--inner-width--contact);
    margin: 0 auto 50px;
    padding: 25px 0 27px;
    background: var(--bg-green);
}
.contact-tel-title{
    margin-bottom: 12px;
    padding: 3px 9px 5px;
    background: var(--main-green);
    color: #fff;
    font-size: 2.1rem;
    font-weight: bold;
    line-height: calc(1em + 6px);
}
.contact-tel-time{
    margin-bottom: 22px;
    line-height: calc(1em + 8px);
}
.contact-tel-list{
    display: flex;
    justify-content: center;
}
.contact-tel-list-item{
    flex: 0 0 270px;
}
.contact-tel-list-item:not(:last-child){
    margin-right: 15px;
    padding-right: 15px;
    border-right: solid 1px var(--main-green);
}
.contact-tel-list-item-head{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 13px;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1;
    text-align: center;
}
.contact-tel-list-item-head.is--icon_tel::before{
    width: 17px;
    height: 22px;
    margin-right: 5px;
    background: url(../images/contact/icon_tel.svg) no-repeat center / contain;
    content: "";
}
.contact-tel-list-item-head.is--icon_fax::before{
    width: 22px;
    height: 22px;
    margin-right: 5px;
    background: url(../images/contact/icon_fax.svg) no-repeat center / contain;
    content: "";
}
/* contact-form */
.contact-form-container{
    width: var(--inner-width--contact);
    margin: 0 auto;
}
.contact-form{
    width: 100%;
}
.contact-form th{
    width: 200px;
    padding: 22px 0 13px 15px;
    border-top: solid 1px var(--main-green);
    border-bottom: solid 1px var(--main-green);
    color: var(--main-green);
    line-height: calc(1em + 6px);
}
.contact-form--check th{
    padding: 11px 0 13px 15px;
}
.contact-form th .req{
    display: inline-block;
    border: solid 1px #d91316;
    box-sizing: border-box;
    margin-left: 10px;
    padding: 3px 5px 4px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #d91316;
    line-height: 1;
    text-align: center;
}
.contact-form td{
    padding: 10px 15px;
    border-top: solid 1px var(--border-gray);
    border-bottom: solid 1px var(--border-gray);
}
.contact-form input,
.contact-form select,
.contact-form textarea{
    border: solid 1px #ccc;
}
.contact-form input{
    width: 240px;
    height: 43px;
    padding: 10px;
}
.contact-form input::placeholder {
    color: #bbb;
    opacity: 1;  
}
.contact-form input[name="company"],
.contact-form input[name="email"],
.contact-form input[name="address"]{
    width: 100%;
}
.contact-form .postal-code{
    display: flex;
    align-items: center;
}
.contact-form .postal-code__mark{
    width: 20px;
}
.contact-form input[name="postal-code"]{
    width: 220px;
}
.contact-form textarea{
    width: 100%;
    height: 150px;
    min-height: 150px;
    padding: 10px;
    resize: vertical;
}
.contact-form .error-message{
    margin-top: 5px;
    color: #f00;
}
.contact-form-end-text{
    margin-top: 30px;
}
.contact-form-btn-block{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 60px;
}
.contact-form-btn{
    width: 270px;
}
.contact-form-btn:not(:last-child){
    margin-right: 20px;
}
.contact-form-btn__link{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    padding-bottom: 2px;
    background: var(--main-green);
    color: #fff;
    transition: background .3s ease;
}
button.contact-form-btn__link{
    border: none;
}
@media screen and (min-width:769px){
    .contact-form-btn__link:hover{
        background: var(--main-light-green);
    }
}
.contact-form-btn__link::after{
    transform: rotate(45deg);
    width: 6px;
    height: 6px;
    margin-left: 10px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    content: "";
}
.contact-form-btn--back{
    width: 180px;
}
.contact-form-btn--back__link{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    padding-bottom: 2px;
    background: #666;
    color: #fff;
    transition: background .3s ease;
}
#js-submit-btn.contact-form-btn--back__link{
    border: none;
    width: 100%;
}
@media screen and (min-width:769px){
    .contact-form-btn--back__link:hover{
        background: #333;
    }
}
/* contact-form-complete */
.contact-complete{
    width: var(--inner-width--contact);
    margin: 0 auto;
}
.contact-form-complete-text{
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: solid 1px var(--border-gray);
}
.contact-complete__back-btn{
    width: 270px;
    margin: 0 auto;
}
.contact-complete__back-btn__link{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    padding-bottom: 2px;
    background: var(--main-green);
    color: #fff;
    transition: background .3s ease;
}
@media screen and (min-width:769px){
    .contact-complete__back-btn__link:hover{
        background: var(--main-light-green);
    }
}
.contact-complete__back-btn__link::after{
    transform: rotate(45deg);
    width: 6px;
    height: 6px;
    margin-left: 10px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    content: "";
}
/*--- sp ---*/
@media screen and (max-width:768px){
    :root{
        --inner-width--contact: var(--inner-width--sp);
    }
    .contents.contact{
        padding-bottom: 80px;
    }
    .contact-tel{
        display: block;
        margin-bottom: 40px;
        padding: 20px 15px 22px;
    }
    .contact-tel-title{
        font-size: 1.8rem;
        text-align: center;
    }
    .contact-tel-time{
        text-align: center;
    }
    .contact-tel-list{
        display: block;
    }
    .contact-tel-list-item{
        padding: 0 15px;
    }
    .contact-tel-list-item:not(:last-child){
        margin: 0 0 15px;
        padding-bottom: 15px;
        border-right: none;
        border-bottom: solid 1px var(--main-green);
    }
    .contact-tel-list-item-head{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 13px;
        font-size: 1.6rem;
        font-weight: bold;
        line-height: 1;
        text-align: center;
    }
    .contact-tel-list-item-num{
        text-align: center;
    }
    .contact-tel-list-item-num img{
        width: auto;
        max-width: 100%;
        height: auto;
    }
    /* contact-form */
    .contact-form{
        border-top: solid 1px var(--main-green);
    }
    .contact-form tr{
        border-bottom: solid 1px var(--border-gray);
    }
    .contact-form th{
        display: block;
        width: 100%;
        padding: 10px 0 0;
        border: none;
    }
    .contact-form th .req{
        font-size: 1rem;
    }
    .contact-form td{
        display: block;
        width: 100%;
        padding: 5px 0 12px;
        border: none;
    }
    .contact-form input{
        width: 100%;
        height: 42px;
    }
    .contact-form .postal-code{
        display: flex;
        align-items: center;
    }
    .contact-form input[name="postal-code"]{
        width: calc(100% - 20px);
    }
    .contact-form-end-text{
        margin-top: 30px;
    }
    .contact-form-btn-block{
        display: block;
        padding-top: 30px;
    }
    .contact-form-btn{
        width: 100%;
    }
    .contact-form-btn:not(:last-child){
        margin: 0 0 20px;
    }
    .contact-form-btn__link{
        height: 50px;
    }
    .contact-form-btn--back{
        width: 50%;
        margin: 0 auto;
    }
    .contact-form-btn--back__link{
        height: 44px;
    }
    /* contact-form-complete */
    .contact-form-complete-text{
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    .contact-complete__back-btn{
        width: 100%;
    }
    .contact-complete__back-btn__link{
        height: 50px;
    }
}

/* privacy */
:root{
    --inner-width--privacy: 630px;
}
.contents.privacy{
    padding-bottom: 100px;
}
.privacy-lead{
    width: var(--inner-width--privacy);
    margin: 0 auto 25px;
    line-height: calc(1em + 12px);
}
.privacy-sec{
    width: var(--inner-width--privacy);
    margin: 0 auto;
}
.privacy-sec:not(:last-of-type){
    margin-bottom: 50px;
}
.privacy-sec-title{
    margin-bottom: 19px;
    padding-bottom: 7px;
    border-bottom: solid 1px var(--main-green);
    color: var(--main-green);
    font-size: 2.4rem;
    font-weight: bold;
    line-height: calc(1em + 8px);
}
.privacy-sec__text{
    line-height: calc(1em + 12px);
}
.privacy-sec__text:not(:last-child){
    margin-bottom: 13px;
}
.privacy-sec__list{
    margin-top: 18px;
}
.privacy-sec__list-item{
    position: relative;
    padding-left: 13px;
    line-height: calc(1em + 6px);
}
.privacy-sec__list-item:not(:last-child){
    margin-bottom: 8px;
}
.privacy-sec__list-item::before{
    position: absolute;
    top: calc(.5em + 1.5px);
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--main-light-green);
    content: "";
}
/*--- sp ---*/
@media screen and (max-width:768px){
    :root{
        --inner-width--privacy: var(--inner-width--sp);
    }
    .ontents.privacy{
        padding-bottom: 60px;
    }
    .privacy-lead{
        margin-bottom: 21px;
        line-height: calc(1em + 10px);
    }
    .privacy-sec:not(:last-of-type){
        margin-bottom: 40px;
    }
    .privacy-sec-title{
        margin-bottom: 14px;
        padding-bottom: 5px;
        font-size: 1.8rem;
    }
    .privacy-sec__text{
        line-height: calc(1em + 10px);
    }
    .privacy-sec__text:not(:last-child){
        margin-bottom: 11px;
    }
    .privacy-sec__list{
        margin-top: 15px;
    }
}

/*-------------
cert
-------------*/
.cert{
    margin: 60px auto 40px;
    padding-bottom: 40px;
    border-bottom: solid 1px var(--border-gray);
}
.cert-title{
    display: flex;
    align-items: center;
    gap: 1em;
    margin-bottom: 20px;
}
.cert-title::before,
.cert-title::after{
    flex: 1 1 auto;
    height: 1px;
    background: var(--border-gray);
    content: "";
}
.cert-title-inner{
    flex: 0 0 auto;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1;
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .cert{
        margin: 30px auto;
        padding-bottom: 25px;
    }
    .cert-title{
        margin-bottom: 15px;
    }
    .cert-title-inner{
        font-size: 2rem;
    }
}
.cert-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: flex-start;
    gap: 20px 40px;
}
.cert-list-item{
    flex: 0 0 auto;
    text-align: center;
}
.cert-list-item img{
    width: 120px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}
.cert-list-item h4{
    margin: 3px 0 1px;
    font-weight: bold;
}
.cert-list-item a{
    display: inline-block;
    position: relative;
    padding-left: 1em;
    color: var(--main-green);
}
.cert-list-item a:not(:hover){
    text-decoration: underline;
}
.cert-list-item a::before{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) scaleX(.7);
    transform-origin: left center;
    content: "≫";
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .cert-list{
        gap: 11px 22px;
    }
    .cert-list-item{
        flex: 0 0 calc((100% - 44px) / 3);
        font-size: 1.2rem;
        white-space: nowrap;
    }
    .cert-list-item img{
        width: 100%;
    }
}
