/*---basic---*/

body{
    margin: 0;
    padding: 0;
    background-color: #fff;
}

*, *::after, *::before{
    font-family: 
        'open_sansSemiBold',
        Arial,
        Helvetica,
        sans-serif;
    scroll-behavior: smooth;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

img, svg, iframe{
    vertical-align: middle;
}

h1, h2, h3, h4, h5, h6{
    margin-top: 0;
    margin-bottom: 0.75rem;
}

p{
    margin-top: 0;
    margin-bottom: 1rem;
    color: rgb(87,87,87);
}

a, a:hover{
    cursor: pointer;
    text-decoration: none;
}

ul{
    margin-top: 0;
    margin-bottom: 0;
}

/*---basic_end---*/

/*---framework---*/

.d-large{
    display: block;
}

.d-small{
    display: none;
}

.d-hide{
    display: none;
}

.section{
    margin-left: 20%;
    margin-right: 20%;
}

.section-large{
    margin-left: 10%;
    margin-right: 10%;
}

.top-space{
    margin-top: 50px;
    margin-bottom: 50px;
}

.top-space-large{
    margin-top: 75px;
    margin-bottom: 75px;
}

.top-space-xlarge{
    margin-top: 150px;
    margin-bottom: 150px;
}

.center{
    display: flex;
    justify-content: center;
}

.center-middle{
    display: flex;
    justify-content: center;
    align-items: center;
}

.pos-right{
    display: flex;
    justify-content: flex-end;
}

.pos-hor-flex-end{
    display: flex;
    align-items: flex-end;
}

.wide-full{
    width: 100%;
    height: auto;
}

.height-full{
    width: auto;
    height: 100%;
}

#bttButton {
    display: none;
    position: fixed;
    z-index: 10000;
    bottom: 3%;
    right: 3%;
    cursor: pointer;
    width: 30px;
}

.para{
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

/*---framework_animation---*/

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/*---framework_animation_end---*/

/*---framework_end---*/

/*---header---*/

header{
    position: absolute;
    width: 100%;
    padding: 5px 0 0 0;
}

.header_content{
    width: 300px;
}

.header_contact{
    text-align: center;
    margin-bottom: 15px;
}

.header_contact p{
    color: rgb(87,87,87);
}

.header_contact a{
    color: rgb(118,184,42);
}

.header_logo{
    width: 300px;
    margin-bottom: 15px;
}

/*---nav---*/

nav ul{
    text-align: center;
    line-height: 2;
    list-style: none;
    padding: 0;
}

nav a{
    font-size: 1.15em;
    position: relative;
    color: rgb(87,87,87);
}

nav a:hover{
    color: rgb(118,184,42);
}

nav a::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: rgb(118,184,42);
    opacity: 0;
}

nav a:hover::before{
    bottom: -3.5px;
    opacity: 1;
}

/*---nav_end---*/

.banner{
    background-image:
        url(../link/img/banner/banner_pic-01.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 100%;
    height: 100vh;
}

/*---header_end---*/

/*---content---*/

.sec01 h1{
    font-family: "open_sansBold";
    color: rgb(87,87,87);
    margin-bottom: 35px;
}

.sec01 p{
    line-height: 2.25;
    margin: 0;
    width: 50%;
}

.sec01_pic{
    width: 48%;
    /*border-right: solid 35px rgb(255,255,255);
    border-left: solid 15px rgb(255,255,255);*/
}

.sec01_pic img{
    width: 100%;
}

.sec02{
    background-color: rgb(245,245,245);
}

.sec02 h1{
    font-family: "open_sansBold";
    color: rgb(87,87,87);
    margin-bottom: 35px;
}

.sec02 li{
	color: rgb(87,87,87);
}

.sec02_content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.sec02_txt{
    width: 48%;
}

.sec02_txt h2{
    font-family: "open_sansBold";
    font-size: 2em;
    color: rgb(118,184,42);
    margin-bottom: 35px;
}

.sec02_txt p{
    line-height: 2;
}

.sec02_txt b{
    color: rgb(118,184,42);
}

.sec02_pic{
    width: 48%;
    border-right: solid 35px rgb(255,255,255);
    border-left: solid 15px rgb(255,255,255);
    transform: skewX(-10deg);
}

.sec02_pic img{
    width: 100%;
}

.sec02_txt p{
	width: 100%;
}

.sec03{
    background-image:
        url(../link/img/sec02_graphic.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 35%;
    padding: 150px 0;
    text-align: center;
}

.sec03 h3{
    font-family: "open_sansBold";
    font-size: 2em;
    color: rgb(118,184,42);
    margin-bottom: 35px;
}

.sec03 p{
    line-height: 2.25;
    margin: 0;
}

.sec03 a{
    color: rgb(87,87,87);
}

.sec03 a:hover{
    color: rgb(118,184,42);
}

.sec04 h1{
    font-family: "open_sansBold";
    color: rgb(87,87,87);
    margin-bottom: 35px;
}

.sec04 h2{
    font-family: "open_sansBold";
    color: rgb(87,87,87);
    margin-bottom: 30px;
}

.sec04 p{
    line-height: 2.25;
    margin: 0;
    width: 100%;
}

.sec04 a{
    color: rgb(87,87,87);
}

.sec04 a:hover{
    color: rgb(118,184,42);
}

.sec05{
    background-color: rgb(245,245,245);
}

.sec05 h1{
    font-family: "open_sansBold";
    color: rgb(87,87,87);
    margin-bottom: 35px;
}

.sec05 h2{
    font-family: "open_sansBold";
    color: rgb(87,87,87);
    margin-bottom: 30px;
}

.sec05 h3{
    font-family: "open_sansBold";
    color: rgb(87,87,87);
    margin-bottom: 28px;
}

.sec05 h4{
    font-family: "open_sansBold";
    color: rgb(87,87,87);
    margin-bottom: 26px;
}

.sec05_content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.sec05_txt{
    width: 100%;
}

.sec05_txt h2{
    font-family: "open_sansBold";
    color: rgb(118,184,42);
    margin-bottom: 30px;
}

.sec05_txt h3{
    font-family: "open_sansBold";
    color: rgb(118,184,42);
    margin-bottom: 28px;
}

.sec05_txt h4{
    font-family: "open_sansBold";
    color: rgb(118,184,42);
    margin-bottom: 26px;
}

.sec05_txt p{
    line-height: 2;
}

.sec05_txt b{
    color: rgb(118,184,42);
}

.sec05_pic{
    width: 48%;
    border-right: solid 35px rgb(255,255,255);
    border-left: solid 15px rgb(255,255,255);
    transform: skewX(-10deg);
}

.sec05_pic img{
    width: 100%;
}

.sec05 a{
    color: rgb(87,87,87);
}

.sec05 a:hover{
    color: rgb(118,184,42);
}

.sec05 ul{
    font-family: "open_sansBold";
    color: rgb(87,87,87);
    margin-bottom: 28px;
}

.sec05 li{
    font-family: "open_sansBold";
    color: rgb(87,87,87);
    margin-bottom: 28px;
}

/*---content_end---*/

/*---footer---*/

footer{
    text-align: center;
    padding: 15px 0;
    background-color: rgb(245,245,245);
}

footer p{
    margin: 0;
}

footer a{
    color: rgb(87,87,87);
}

footer a:hover{
    color: rgb(118,184,42);
}

/*---footer_end---*/

@media screen and (min-width: 1367px){}

@media screen and (min-width: 768px) and (max-width: 1366px){

    /*---framework---*/

    .section{
        margin-left: 10%;
        margin-right: 10%;
    }
    
    .section-large{
        margin-left: 5%;
        margin-right: 5%;
    }
    
    .para{
        background-attachment: scroll;
    }

    /*---framework_end---*/

    /*---header---*/

    .banner{
        background-size: cover;
        background-position-x: -165px;
    }

    /*---header_end---*/

    /*---content---*/

    .sec01 p{
        line-height: 2.25;
        margin: 0;
        width: 65%;
    }

    .sec02{
        padding: 50px 50px 0 50px;
    }

    .sec02_txt{
        width: 100%;
        margin-bottom: 35px;
    }

    .sec02_pic{
        width: 100%;
        border-top: solid 15px rgb(255,255,255);
    }

    /*---content_end---*/

}

@media screen and (max-width: 767px){

    /*---framework---*/
    
    .d-large{
        display: none;
    }
    
    .d-small{
        display: block;
    }

    .section,
    .section-large{
        margin-left: 5%;
        margin-right: 5%;
    }

    .para{
        background-attachment: scroll;
    }

    /*---framework_end---*/

    /*---header---*/

    .banner{
        background-size: cover;
        background-position-x: -150px;
        background-position-y: 75px;
    }

    /*---header_end---*/

    /*---content---*/

    .sec01 p{
        width: 85%;
    }

    .sec02{
        padding: 25px 25px 0 25px;
    }

    .sec02_txt{
        width: 100%;
        margin-bottom: 35px;
    }

    .sec02_pic{
        width: 100%;
        border-top: solid 15px rgb(255,255,255);
    }

    /*---content_end---*/

}

/*----storage

---*/