@charset "UTF-8";


html {
    font-size: 62.5%;
    overflow: auto;
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    word-break: break-all;
    word-break: break-word;

    font-feature-settings: "palt";
}

p {
    line-break: strict;
    margin: 0;
}

a {
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -ms-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;

    color: #333;
    text-decoration: none;
}

a:hover {
    opacity: 0.7;
    -webkit-opacity: .7;
    -moz-opacity: .7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

dl,
dt,
dd {
    margin: 0;
}

body {
    font-size: 14px;
    font-family: 'メイリオ', 'Meiryo', sans-serif;
    font-weight: 300;
    line-height: 2;
    background: #fff;
    -webkit-text-size-adjust: 100%;
    color: #333;
    overflow: hidden;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

#wrapper {
    width: 100%;
}

.pc-block {
    display: block;
}

.sp-block {
    display: none;
}

.hide,
.hidden {
    visibility: hidden;
}

img {
    max-width: 100%;
}

p.logo{

    
}

main {
    display: block;
    margin-top: 70px;
}

.inner {
    max-width: 1300px;
    margin: 0 auto;
}

.bg {
    background: url(../img/pc/bg.png) no-repeat top center/contain;
    background-color: #3cb378;

    padding-bottom: 150px;
}


@media screen and (max-width: 768px) {
    .bg {
        padding-bottom: 5px;
    }
}


@media screen and (max-width: 540px) {
    .bg {
        background: url(../img/sp/bg.png) no-repeat top center/contain;
        background-color: #3cb378;
    }
}



@media screen and (max-width: 767px) {
    a {
        -webkit-transition: none;
        -moz-transition: none;
        -ms-transition: none;
        transition: none;
    }

    a:hover {
        opacity: 1;
        -webkit-opacity: 1;
        -moz-opacity: 1;
        filter: alpha(opacity=100);
        
        -ms-filter: "alpha(opacity=100)";
        
    }

    body {
        -webkit-text-size-adjust: 100%;
        background: #fff;
        min-width: 100%;
    }

    img {
        width: 100%;
    }

    .pc-block {
        display: none;
    }

    .sp-block {
        display: block;
    }
}


header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 70px;
    z-index: 999;
    background: #ffffff;
    transition: .3s;

    box-shadow: 0 1px 4px #ccc;
}

header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo {
    max-width: 100%;
    padding: 8px;
    margin: 0;
}

header .logo img {
    vertical-align: middle;
}

header .g-nav ul {
    display: flex;
    justify-content: flex-end;
    transition: all 0.35s ease;
}

header .g-nav ul li {
    margin-left: 40px;
}

header .g-nav ul li:first-of-type {
    margin-left: 0;
}


@media screen and (max-width: 767px) {

    
    header .g-nav {
        position: fixed;
        width: 100%;
        
        top: 70px;
        height: 0;
        background-color: #fff;
        overflow: scroll;
        -webkit-transition: all 300ms 0s ease;
        -moz-transition: all 300ms 0s ease;
        transition: all 300ms 0s ease;
    }

    header.open .g-nav {
        height: calc(100vh - 70px);
    }

    header .g-nav ul {
        display: block;
    }

    header .g-nav ul li {
        margin-left: 0;
    }

    header .g-nav ul li:first-child {
        border-top: 3px solid #009260;
    }

    header ul li a {
        padding: 15px 30px 15px 10px;

        text-align: left;

        border-top: solid 1px #009260;
        border-bottom: solid 1px #009260;
        display: block;
        position: relative;
        margin-bottom: -1px;
    }

    header ul li a::before {
        display: inline-block;
        content: "\03e";
        position: absolute;
        top: 45%;
        transform: translateY(-45%);
        -webkit-transform: translateY(-45%);
        -ms-transform: translateY(-45%);

        right: 10px;
        width: 20px;
        height: 20px;
        margin-top: -8px;
        color: #009260;
        font-weight: bold;
        font-size: 22px;
    }

    #nav-toggle {
        width: 25px;
        height: 25px;
        position: absolute;
        
        
        top: 25px;
        right: 15px;
        z-index: 999;
    }

    #nav-toggle div {
        position: relative;
    }

    #nav-toggle span {
        display: block;
        height: 2px;
        background: #cccccc;
        position: absolute;
        width: 100%;
        left: 0;
        -webkit-transition: 0.2s ease-in-out;
        -moz-transition: 0.2s ease-in-out;
        transition: 0.2s ease-in-out;
    }

    #nav-toggle span:nth-child(1) {
        top: 0;
    }

    #nav-toggle span:nth-child(2) {
        top: 8px;
    }

    #nav-toggle span:nth-child(3) {
        top: 16px;
    }

    
    .open #nav-toggle span:nth-child(1) {
        top: 12px;
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    .open #nav-toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }

    .open #nav-toggle span:nth-child(3) {
        top: 12px;
        -webkit-transform: rotate(-135deg);
        -moz-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }


}



footer {
    background-color: #333;
    color: #fff;
}

footer .inner {
    display: flex;
    align-items: center;

    justify-content: space-between;
    padding: 50px 2%;
    font-size: 12px;
    font-weight: 400;
}

footer .inner ul {
    display: flex;
}

footer .inner ul li {
    padding-left: 10px;
    margin-left: 10px;
    position: relative;
}

footer .inner ul li:first-of-type {
    padding-left: 0;
    margin-left: 0;
}

footer .inner ul li::before {
    position: absolute;
    content: "";
    height: 10px;
    border-left: 1px solid #fff;
    left: 0;
    top: 6px;
}

footer .inner ul li:first-of-type::before {
    border-left: none;
}

footer .inner ul li a {
    color: #fff;
}


@media screen and (max-width: 767px) {

    footer .inner {
        display: block;
        margin: auto;
        text-align: center;
    }

    footer .inner ul {
        justify-content: center;
    }

}




.top-main-visual {
    position: relative;
}


@media screen and (max-width: 1024px) {
    .top-main-visual {
        height: 660px;
    }
}


@media screen and (max-width: 768px) {
    .top-main-visual {
        height: 580px;
    }
}


@media screen and (max-width: 540px) {
    .top-main-visual {
        height: 345px;
    }
}


@media screen and (max-width: 425px) {
    .top-main-visual {
        height: 353px;
    }
}


@media screen and (max-width: 320px) {
    .top-main-visual {
        height: 325px;
    }
}


@media screen and (max-width: 280px) {
    .top-main-visual {
        height: 313px;
    }
}


.main-visual {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.4)), url(../img/mv_top.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 380px;

    position: relative;
    z-index: -10;
}

.main-visual .inner {
    text-align: right;
}

.top-heading-one {
    display: inline-block;
    position: relative;

    height: 65px;
    
    line-height: 65px;
    
    text-align: center;
    
    padding: 0 30px 0 100px;
    
    font-size: 30px;
    
    font-weight: 500;
    background: #3cb378;
    
    color: #FFF;
    
    box-sizing: border-box;

    margin-top: 70px;
}

.top-heading-one::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    height: 65px;
    width: 500%;
    overflow: hidden;
    background-color: #3cb378;
    z-index: -1;
}

.top-heading-one::after {
    position: absolute;
    left: -35px;
    top: 0;
    content: '';
    width: 0;
    height: 0;
    z-index: 2;

    border-style: solid;
    border-width: 0 0 65px 35px;
    border-color: transparent transparent #3cb378 transparent;
    z-index: -2;

}


@media screen and (max-width:1280px) {
    .top-heading-one {
        padding: 0 30px;
    }

}


@media screen and (max-width: 540px) {
    .main-visual {
        height: 205px;
    }

    .top-heading-one {
        display: inline-block;
        position: relative;

        height: 35px;
        
        line-height: 35px;
        
        text-align: center;
        
        padding: 0 20px;
        
        font-size: 18px;
        
        font-weight: 500;
        background: #3cb378;
        
        color: #FFF;
        
        box-sizing: border-box;

        margin-top: 30px;
    }


    .top-heading-one::after {
        position: absolute;
        left: -20px;
        top: 0;
        content: '';
        width: 0;
        height: 0;
        z-index: 2;

        border-style: solid;
        border-width: 0 0 35px 20px;
        border-color: transparent transparent #3cb378 transparent;
        z-index: -2;

    }

    .top-heading-one::before {
        content: none;
    }

}



.top-message-title {
    width: 100%;
    height: 280px;
    background: url(../img/pc/message-band.png) no-repeat bottom center;
    background-color: #f8fbf9;
}

.top-message-title h3 {
    padding: 48px 0;
    text-align: center;
    
    font-weight: 500;
    color: #007c2f;
    font-size: 30px;
    line-height: 48px;
}



@media screen and (max-width: 1024px) {
    .top-message-title {
        width: 100%;
        background: url(../img/tablet/message-band.png) no-repeat bottom center/cover;
        margin-bottom: -1px;
        background-color: #f8fbf9;
        position: absolute;
        bottom: 0;

    }

    .top-message-title h3 {
        padding: 24px 0;
        text-align: center;
        
        font-weight: 500;
        color: #007c2f;
        font-size: 30px;
        line-height: 48px;
    }
}

@media screen and (max-width: 768px) {
    .top-message-title {
        height: 200px;
    }

    .top-message-title h3 {
        padding: 36px 0;
        text-align: center;
        
        font-weight: 500;
        color: #007c2f;
        font-size: 24px;
        line-height: 30px;
    }

}


@media screen and (max-width: 540px) {
    .top-message-title {
        height: 140px;
    }

    .top-message-title h3 {
        padding: 24px 0;
        text-align: center;
        
        font-weight: 500;
        color: #007c2f;
        font-size: 18px;
        line-height: 24px;
    }

}


@media screen and (max-width: 425px) {

    .top-message-title {
        width: 100%;
        background: url(../img/sp/message-band.png) no-repeat bottom center/cover;
        margin-bottom: -1px;
        height: 148px;
    }
}


@media screen and (max-width: 320px) {

    .top-message-title {
        width: 100%;
        background: url(../img/sp/message-band-320.png) no-repeat bottom center/cover;
        margin-bottom: -1px;
        height: 120px;
    }

    .top-message-title h3 {
        padding: 24px 0;
        text-align: center;

        font-weight: 500;
        color: #007c2f;
        font-size: 18px;
        line-height: 24px;
    }
}

@media screen and (max-width: 280px) {

    .top-message-title h3 {
        font-size: 14px;
        line-height: 18px;
    }

}


.top-contents {
    padding: 70px 0 85px;
    background-color: #3cb378;
}

.top-contents .inner {
    max-width: 1460px;
}

.top-contents h3 {
    width: 100%;
    font-size: 48px;
    font-weight: 500;
    text-align: center;
    position: relative;
    line-height: 1.8;
    color: #fff;
}

.top-contents h3::after {
    position: absolute;
    content: "";
    width: 58px;
    bottom: 0;
    left: 50%;
    margin-left: -29px;
    border-bottom: 2px solid #fff;
}

.copy-txt {
    width: 100%;
    text-align: center;
    font-size: 24px;
    padding: 20px 0;
    color: #fff;
}



@media screen and (max-width: 540px) {
    .top-contents {
        padding: 35px 0 85px;
    }

    .top-contents h3 {
        font-size: 24px;
        line-height: 2;
    }

    .copy-txt {
        font-size: 16px;
        padding: 8px 0;
    }
}


.top-contents ul {
    width: 100%;

    padding: 0 5% 80px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 56px auto 0px;
    display: flex;
}


.box {
    width: 300px;
    height: 400px;
    background: #fff;
    position: relative;
    transition: all 800ms;

    margin: 0 11px 22px;
}

.box::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 55px;
    top: 0;
    left: 0;
    background: #007c2f;
}

.box a {
    display: block;
    text-decoration: none;
    line-height: 1.8;
}

.box-title {
    display: flex;
    align-items: center;
    font-weight: 400;
    height: 55px;
    padding-left: 50px;
    font-size: 16px;
}

.box-img {
    padding: 0 30px;
    margin-top: 55px;
}

.box-img img {
    border: 1px solid #ccc;
}

.box dl {
    padding: 15px 30px 20px;
}

.box dl dt {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 24px;
    line-height: 1.2;
    color: #a02108;
}


.box dl dd {
    font-size: 16px;
    line-height: 1.2;
    padding-top: 15px;
}


.arrow {
    width: 40%;
    position: absolute;
    bottom: 25px;
    right: 30px;

}




.message-main-visual {
    background-color: #fff;
    width: 980px;
    margin: 0 auto;
}

.message-main-visual p {
    width: 30%;
    max-width: 400px;
    height: 430px;
    margin: 0 auto;
    padding: 50px 0;
}

@media screen and (max-width: 768px) {
    .message-main-visual {
        width: 100%;
    }

    .message-main-visual p {
        height: auto;
        padding: 30px 0 60px;
        min-width: 200px;
    }
}


.message-contents {
    width: 980px;
    padding-bottom: 250px;
    margin: -140px auto 0;
    background: #fff;
    border-top: 5px solid #009260;

    background: #ffffff;
    transition: .3s;
    box-shadow: 0 1px 4px #ccc;
}

.message-contents .inner {
    width: 850px;
    margin: 0 auto;
}

.message-title {
    padding-bottom: 10px;
    margin-bottom: 30px;
    
    padding-top: 50px;
}

.message-contents h1 {
    width: 100%;
    font-size: 30px;
    font-weight: 500;
    text-align: center;
    position: relative;
    line-height: 1.8;
    color: #007c2f;
}

.message-contents h1::after {
    position: absolute;
    content: "";
    width: 58px;
    bottom: 0;
    left: 50%;
    margin-left: -29px;
    border-bottom: 2px solid #007c2f;
}

.message-contents .copy-txt {
    width: 100%;
    text-align: center;
    font-size: 18px;
    padding: 12px 0;
    margin: 0;
    color: #007c2f;
}

.message-txt p {
    margin-bottom: 28px;
}

.message-txt ul {
    display: inline-block;
    float: right;
    width: 240px;
    color: #009260;
}

.message-txt ul ::after {
    content: "";
    display: block;
    clear: both;
}

.message-txt ul li {
    margin-bottom: 15px;
}

.message-txt ul li:last-of-type {
    margin-bottom: 0;
}


@media screen and (max-width: 768px) {
    

    .message-contents {
        width: 90%;
        margin: -40px auto 15%;
        padding-bottom: 0 0 250px;
        background: #fff;
        border-top: 2px solid #009260;
    }

    .message-contents .inner {
        width: 90%;
        margin: 0 auto;
    }

    .message-title h1 {
        font-size: 24px;
        line-height: 2;
    }

    .message-title .copy-txt {
        font-size: 16px;
        padding: 8px 0;
    }

    .message-title {
        padding-bottom: 7%;
        margin-bottom: 0;
        padding-top: 10%;
    }
}



@media screen and (max-width: 540px) {
    .message-txt ul {
        text-align: right;
    }

}


@media screen and (max-width: 320px) {
    .message-title .copy-txt {
        font-size: 14px;
    }

}



.company-main-visual {
    background-color: #fff;
    position: relative;
    z-index: 1;
    height: 340px;

    background: url("../img/pc/company.png") repeat-x bottom center;
}




@media screen and (max-width: 540px) {
    .company-main-visual {
        height: 220px;

        background: url("../img/sp/company.png") repeat-x bottom center;
    }

    
}


.company-contents {
    position: relative;
    z-index: 5;

    width: 980px;
    padding-bottom: 55px;
    margin: -50px auto 0;
    background: #fff;
    border-top: 5px solid #009260;

    background: #ffffff;
    transition: .3s;
    box-shadow: 0 1px 4px #ccc;
}

.company-contents .inner {
    width: 850px;
    margin: 0 auto;
}

h1.company-title {
    width: 100%;
    font-size: 30px;
    font-weight: 500;
    text-align: center;
    position: relative;
    line-height: 1.8;
    color: #007c2f;

    padding-bottom: 10px;
    margin-bottom: 30px;
    padding-top: 50px;
}

.company-nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: 55px;
}

.company-nav-list {
    width: 49%;
    border: #009260 2px solid;
    overflow-y: hidden;
    position: relative;
}

.company-nav-list::before {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 1;
    left: 0;
    top: 0;
    content: "";
    transition: all 0.6s cubic-bezier(0.05, 0.06, 0.05, 0.95);
    background: #009260;
    transform: translateX(-100%);
}

.company-nav-link {
    display: block;
    position: relative;
    font-weight: 500;
    overflow: hidden;
    text-align: center;
    color: #009260 !important;
    font-size: 16px;
    padding: 10px;
}

.company-nav-link::after {
    content: "";
    background: url(../img/green-arrow.png) no-repeat;
    width: 12px;
    height: 8px;
    background-size: contain;
    position: absolute;
    right: 17px;
    top: 50%;
    transform: translateY(-50%);
}

.company-nav-list:active a.company-nav-link {
    color: #fff !important;
    position: relative;
    opacity: 1;
}

.company-nav-list:active a.company-nav-link::after {
    background: url("../img/white-arrow.png") no-repeat;
    background-size: contain;
    opacity: 1;
}

.company-nav-list:active::before {
    transform: translateX(0);
}


.compay-link a {
    text-decoration: underline;
}

.compay-link a::after {
    background: url(../img/link.png) no-repeat;
    content: "";
    width: 14px;
    height: 12px;
    background-size: contain;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

#overview,
#group {
    padding-top: 70px;
    margin-top: -70px;
}

#group {
    margin-top: 55px;
}

#overview h3,
#group h3 {
    font-size: 30px;
    color: #009260;
    font-weight: 500;
    margin-bottom: 15px;
}

#overview > ul,
#group > ul {
    border-top: #ccc 1px solid;
    margin-bottom: 0;
}

#overview > ul > li,
#group > ul > li {
    border-bottom: #ccc 1px solid;
    padding: 20px 0;
    position: relative;
}

#overview > ul > li > dl,
#group > ul > li > dl {
    display: flex;
}

#overview > ul > li > dl > dt,
#group > ul > li > dl > dt {
    width: 350px;
    text-align: left;
    color: #009260;
    font-weight: 500;
    vertical-align: top;
}


@media screen and (max-width: 790px) {

    #overview > ul > li,
    #group > ul > li {
        padding: 0;
    }

    #overview > ul > li > dl,
    #group > ul > li > dl {
        display: block;
    }

    #overview > ul > li > dl > dt,
    #group > ul > li > dl > dt {
        vertical-align: top;
        text-align: left;
        padding: 10px 0 0;
        border-bottom: none;
    }

    #overview > ul > li > dl > dd,
    #group > ul > li > dl > dd {
        padding: 0 0 10px;
    }


}



@media screen and (max-width: 768px) {

    .company-contents {
        width: 90%;
        margin: -40px auto 15%;
        padding-bottom: 0 0 250px;
        background: #fff;
        border-top: 2px solid #009260;
    }

    .company-contents .inner {
        width: 90%;
        margin: 0 auto;
    }

    h1.company-title {
        font-size: 24px;
        line-height: 2;

        padding-bottom: 7%;
        margin-bottom: 0;
        padding-top: 10%;
    }

    .company-nav {
        display: block;
        margin-bottom: 20px;
    }

    .company-nav-list {
        width: auto;
        margin-bottom: 5px;
    }

    .company-nav-link {
        font-size: 14px;
        padding: 8px;
    }

}


@media screen and (min-width: 768px) {
    .company-nav-list:hover a.company-nav-link {
        color: #fff !important;
        position: relative;
        opacity: 1;
    }

    .company-nav-list:hover a.company-nav-link::after {
        background: url("../img/white-arrow.png") no-repeat;
        background-size: contain;
        opacity: 1;
    }

    .company-nav-list:hover::before {
        transform: translateX(0);
    }

}



@media screen and (max-width: 540px) {}


@media screen and (max-width: 320px) {}


.container-fluid {
margin-right: auto;
margin-left: auto;
max-width: 980px; 
}

footer {
    background: #009260;
    padding: 10px 0;
    text-align: center;
    overflow: hidden;
    display: block;
}

footer p {
    margin: 1em;
}
