@charset "UTF-8";

@keyframes horizontal {
    0% {
        transform: translateX(-3px);
    }

    100% {
        transform: translateX(0px);
    }
}

@keyframes vertical {
    0% {
        transform: translateY(-16px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* 基本設定
----------------------------------------------------------*/
.pc {
    display: block;
}

.sp {
    display: none;
}

/* contents_block
----------------------------------------------------------*/
.contents:before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 122px;
    background: url("wave.png") no-repeat center 0;
    background-size: 100% 122px;
    position: absolute;
    top: -122px;
    left: 0;
    right: 0;
}

.contents {
    position: relative;
    margin-top: 122px;
}

.contents-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 140px 0 140px;
}

.contents-inner::after {
    content: "";
    display: block;
    clear: both;
}

/* page title
----------------------------------------------------------*/
.pagetitle {
    margin: 0 auto;
    padding: 90px 0 90px;
    text-align: center;
}

.pagetitle h1 {
    width: 170px;
    height: 34px;
    background: url(about_tit_pc.png) no-repeat 0 0;
    background-size: 170px 34px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    margin: 0 auto;
}

/* about-block
----------------------------------------------------------*/
.about-block {
    background-color: #eff5e3;
    position: relative;
    padding: 50px 0 100px;
}

.about-block section {
    width: 800px;
    margin: 0 auto;
    margin-bottom: 150px;
    font-size: 16px;
    font-size: 1.6rem;
}

.about-block section:last-child {
    margin-bottom: 0;
}

.about-block section .border-list a {
    text-decoration: underline;
    color: #60a183;
}

@media only screen and (min-width: 750px) {
    .about-block section .border-list a:hover {
        text-decoration: none;
    }
}

.about-block section .intro-ttl {
    font-size: 20px;
    font-size: 2rem;
    color: #60a183;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}

.about-block section p {
    margin-bottom: 30px;
}

.about-block section h2 {
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    position: relative;
    margin-bottom: 80px;
}

.about-block section h2:after {
    content: "";
    width: 50px;
    height: 4px;
    background-color: #60a183;
    position: absolute;
    bottom: -15px;
    left: 50%;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

/***********************************************************************
recruit-footer
**********************************************************************/
.recruit-footer {
    background-color: #60a183;
    padding: 100px 0;
    position: relative;
}

.recruit-footer:before {
    content: "";
    width: 80px;
    height: 44px;
    background: url(../img/recruit/deco_item.png) no-repeat 0 0;
    background-size: 80px 44px;
    position: absolute;
    top: -22px;
    left: 50%;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.recruit-footer ul {
    width: 890px;
    margin: 0 auto;
    margin-bottom: 40px;
    -js-display: flex;
    display: flex;
    justify-content: space-between;
}

.recruit-footer ul li .bnr {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    background-color: #fff;
    width: 425px;
    vertical-align: middle;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
    color: #60a183;
    padding: 20px 30px;
    position: relative;
}

.recruit-footer ul li .bnr span {
    margin-right: 30px;
}

.recruit-footer ul li .bnr span img {
    vertical-align: middle;
    width: 120px;
    height: 120px;
}

.recruit-footer ul li .bnr:after {
    content: "";
    width: 18px;
    height: 12px;
    background: url(big_right_arrow_gr.png) no-repeat 0 0;
    background-size: 18px 12px;
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.recruit-footer ul li .bnr.active {
    background-color: #5a977b;
    color: #fff;
}

.recruit-footer ul li .bnr.active:after {
    content: none;
}

.recruit-footer .requirements {
    width: 890px;
    margin: 0 auto;
}

.recruit-footer .requirements .requirements-inner {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 45px;
    border: 1px solid #fff;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
}

.recruit-footer .requirements .requirements-inner .text {
    font-size: 17px;
    font-size: 1.7rem;
    color: #fff;
}

.recruit-footer .requirements .requirements-inner .gr-btn {
    background-color: #e0f05c;
}

.recruit-footer .requirements .requirements-inner .gr-btn a {
    width: 350px;
    color: #3d8463;
}

.recruit-footer .requirements .requirements-inner .gr-btn a:after {
    content: "";
    background: url(big_right_arrow_gr.png) no-repeat 0 0;
    background-size: 18px 12px;
}

/* mediaquery
----------------------------------------------------------*/
@media only screen and (max-width: 750px) {

    /* contents_block
  ----------------------------------------------------------*/
    .contents {
        margin-top: 0;
    }

    .contents:before {
        width: 100%;
        height: 40px;
        background: url("wave_sp.png") no-repeat center 0;
        background-size: 100% 40px;
        top: -40px;
    }

    .contents-inner {
        max-width: 100%;
        width: 100%;
        padding: 60px 20px 60px;
        box-sizing: border-box;
    }

    /* page title
  ----------------------------------------------------------*/
    .pagetitle {
        margin: 0 auto 70px;
        padding: 110px 0 0;
        text-align: center;
    }

    .pagetitle h1 {
        width: 335px;
        height: 48px;
        background: url(about_tit_sp.png) no-repeat 50% 50%;
        background-size: 335px 68px;
    }

    /* about-block
  ----------------------------------------------------------*/
    .about-block {
        padding: 30px 0 60px;
    }

    .about-block section {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
        padding: 0 20px;
        margin-bottom: 80px;
    }

    .about-block section .intro-ttl {
        font-size: 18px;
        font-size: 1.8rem;
        text-align: left;
        margin-bottom: 20px;
    }

    .about-block section p {
        margin-bottom: 20px;
    }

    .about-block section h2 {
        font-size: 20px;
        font-size: 2rem;
        margin-bottom: 40px;
    }

    /***********************************************************************
  recruit-footer
  **********************************************************************/
    .recruit-footer {
        background-color: #60a183;
        padding: 30px 0;
        position: relative;
    }

    .recruit-footer:before {
        content: "";
        width: 80px;
        height: 44px;
        background: url(../img/recruit/deco-item.png) no-repeat 0 0;
        background-size: 80px 44px;
        position: absolute;
        top: -22px;
        left: 50%;
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .recruit-footer ul {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
        padding: 0 20px;
        margin-bottom: 0;
        display: block;
    }

    .recruit-footer ul li .bnr {
        width: 100%;
        display: block;
        font-size: 16px;
        font-size: 1.6rem;
        padding: 15px 20px;
        margin-bottom: 20px;
    }

    .recruit-footer ul li .bnr span {
        margin-right: 15px;
    }

    .recruit-footer ul li .bnr span img {
        vertical-align: middle;
        width: 80px;
        height: 80px;
    }

    .recruit-footer ul li .bnr.active {
        background-color: #5a977b;
        color: #fff;
    }

    .recruit-footer ul li .bnr.active:after {
        content: none;
    }

    .recruit-footer .requirements {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
        padding: 0 20px;
    }

    .recruit-footer .requirements .requirements-inner {
        padding: 20px;
        display: block;
    }

    .recruit-footer .requirements .requirements-inner .text {
        display: block;
        font-size: 16px;
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .recruit-footer .requirements .requirements-inner .text br {
        display: none;
    }

    .recruit-footer .requirements .requirements-inner .gr-btn {
        display: block;
    }

    .recruit-footer .requirements .requirements-inner .gr-btn a {
        height: 60px;
    }
}