@charset "UTF-8";
/* CSS Document */

html{
    overflow: auto;
    height: 100%;
}

body{
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-size: 16px;
    color: #000;
    letter-spacing: .2em;
    box-sizing: border-box;
    overflow-x: hidden;
}

#wrap{
    position: relative;
    overflow-x: hidden;
}

/*--------------------

louder

--------------------*/

#loader-bg {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: #fff;
    z-index: 10000;
}

#loader {
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -5vh);
    width: 20vw;
    min-width: 200px;
    height: auto;
    text-align: center;
    z-index: 20000;
}

#loader svg{
    overflow: visible;
}

#wrap_all path {
    fill: #5FAB6E;
    stroke: #5FAB6E;
    stroke-width: 1px;
    animation: svg 3s ease-in both;
}

@keyframes svg {
    0% {
        fill: transparent;
        stroke-dasharray: 2000px;
        stroke-dashoffset: 2000px;
    }
    50%{
        stroke-dashoffset: 0;
    }
    55%{
        fill: transparent;
    }
    70%{
        fill: #5FAB6E;
    }
}

/*--------------------

scroll animation

--------------------*/

.scroll_scale {
    opacity: 0;
}

.scroll_scale.active {
    animation: scroll_scale 1s ease-in-out forwards;
}

@-webkit-keyframes scroll_scale {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scroll_scale {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.scroll_in {
	opacity : 0;
	transform : scale(1.1);
	transition : all 1s;
}

.scroll_in.active {
	opacity : 1;
	transform : scale(1.0);
}

/*--------------------

common

--------------------*/

a{
    text-decoration: none;
    color: #000;
}

.common_link a, .common_link a span {
    position: relative;
    text-align: center;
}

.common_link a {
    margin: 0 auto;
    display: block;
    border: solid 2px #5FAB6E;
    border-radius: 40px;
    width: 220px;
    overflow: hidden;
    color: #5FAB6E;
    background-color: #fff;
    font-weight: bold;
    padding: 23px 0;
}

.common_link a:before {
	display: block;
	content: "";
	position: absolute;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 50%;
	right: 20px;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	background: #5FAB6E;
}

.common_link a:after {
	display: block;
	content: "";
	position: absolute;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 50%;
	right: 23px;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	background: #fff;
}

.common_link a:hover {
    color: #fff;
    background-color: #5FAB6E;
}

.common_link a:hover:before {
    background: #fff;
}

.common_link a:hover:after {
    background: #5FAB6E;
}

.common_link a,
.common_link a::before,
.common_link a::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.flex{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.container {
    margin: 0 auto;
    max-width: 1100px;
    padding: 0 30px;
}

.top_about, .top_services, .top_recruit, .contact{
    position: relative;
    width: 100%;
    padding-top: 140px;
}

.sub_img_container {
    width: 50%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    justify-content: space-between;
}

.sub_img_inner {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    border-radius: 10px;
}

.sub_img {
    width: 48%;
    height: auto;
    overflow: hidden;
}

.section_title{
    text-align: center;
    margin-bottom: 45px;
}

.section_title .section_title-en {
    font-size: 50px;
    display: block;
    letter-spacing: .2em;
    margin-bottom: 8px;
    font-family: 'Josefin Sans', sans-serif;
}

.section_title .section_title-ja {
    font-size: 20px;
    letter-spacing: .2em;
    display: block;
}

.img01 {
    background: url(../img/img01.jpg) no-repeat 90% 30%;
}

.img02 {
    background: url(../img/img02.jpg) no-repeat 90% 30%;
}

.img03 {
    background: url(../img/img03.jpg) no-repeat 50% 50%;
}

.services_img01{
    background: url("../img/services01.jpg") no-repeat 50% 50%;
}

.services_img02{
    background: url("../img/services02.jpg") no-repeat 50% 50%;
}

.services_img03{
    background: url("../img/services03.jpg") no-repeat 50% 20%;
}

/*--------------------

header

--------------------*/

header {
    display: flex;
    position: fixed;
    align-items: center;
    font-weight: bold;
    background: #fff;
    width: 100%;
    height: 100px;
    z-index: 999;
}

.header_logo {
    padding-left: 40px;
}
 
.header_container {
    margin: auto;
    width: 100%;
    height: 100px;
}
 
header .flexbox {
    height: 100px;
    align-items: center;
    display: flex;
    justify-content: space-between;
}
 
.header_logo img {
    vertical-align: bottom;
    max-width: 340px;
}

#nav-global li{
    height: 100px;
    display: table;
}

#nav-global li:last-child {
    padding-right: 40px;
}
 
#nav-global a {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    padding: 0 24px;
    color: #000;
    line-height: 1.4;
    text-align: center;
    outline: none;
    transition: all 0.3s;
}

span.nav-title-en {
    font-size: 10px;
    color: #5FAB6E;
    font-family: 'Josefin Sans', sans-serif;
}

#nav-global a span:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: #5FAB6E;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all .4s cubic-bezier(1,0,0,1);
    transition: all .4s cubic-bezier(1,0,0,1);
    -webkit-transition-timing-function: cubic-bezier(1,0,0,1);
    transition-timing-function: cubic-bezier(1,0,0,1);
}

#nav-global a:hover span:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

/* Toggle Button */
#nav-toggle {
    display: none;
    position: absolute;
    right: 23px;
    transform: translate(-50%, -50%);
    top: 50%;
    width: 34px;
    height: 24px;
    cursor: pointer;
    z-index: 9999;
}

#nav-toggle div {
    position: relative;
}

#nav-toggle span {
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    background: #000;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}

#nav-toggle span:nth-child(1) {
    top: 0;
}

#nav-toggle span:nth-child(2) {
    top: 11px;
}

#nav-toggle span:nth-child(3) {
    top: 22px;
}

/*--------------------

common-mainvisual

--------------------*/

.mv {
    position: relative;
    width: 100%;
    height: 490px;
    margin-bottom: 100px;
}

.main_img {
    position: absolute;
    top: 100px;
    right: 0;
    width: 88vw;
    height: 300px;
    overflow: hidden;
    border-radius: 40px 0 0 0;
}

.main_img_inner {
    width: 100%;
    height: 100%;
    background-size: cover !important;
}

.about_main .main_img_inner {
    background: url("../img/about_main.jpg") no-repeat 10% 90%;
}

.services_main .main_img_inner {
    background: url("../img/services_main.jpg") no-repeat 10% 100%;
}

.recruit_main .main_img_inner {
    background: url("../img/recruit_main.jpg") no-repeat 10% 80%;
}

.main_txt {
    position: absolute;
    left: 5vw;
    top: 45%;
    z-index: 5;
}

.main_txt-en {
    font-size: 14px;
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    margin: 0 1em;
}

.main_txt_inner:first-child {
    margin-top: 0;
}

.main_txt_inner {
    display: inline-block;
    padding: .6em .2em .6em .8em;
    box-sizing: border-box;
    margin-top: 20px;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    white-space: nowrap;
    position: relative;
}

.main_txt_inner::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #5FAB6E;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.mv .hero-bg {
    position: absolute;
    height: 160px;
    bottom: 0;
    background: #edf2f4;
    width: 72%;
    z-index: -1;
}

/*--------------------

bread

--------------------*/

.breadcrumb_container {
    position: absolute;
    bottom: 0;
    left: 5vw;
    margin: 35px 0;
    color: #000;
}

.breadcrumb_container .breadcrumbs {
	padding-left: 0;
	margin-top: 0;
	margin-bottom: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}

.breadcrumb_container li {
    display: inline-block;
    position: relative;
    padding-right: 18px;
    margin-right: 6px;
}

.breadcrumb_container li::before {
	content: '›';
	width: 1em;
	height: 1em;
	line-height: 1;
	text-align: center;
	font-size: 1em;
	color: inherit;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.breadcrumb_container li:last-child {
	margin-right: 0;
	padding-right: 0;
}

.breadcrumb_container li:last-child::before {
	content: normal;
}

/*--------------------

sub-page main

--------------------*/

.sub-page.main{
    padding-bottom: 120px;
}

.sub-page .main-copy {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: .2em;
    display: block;
    margin-bottom: 20px;
}

.sub-page .main-copy span {
    display: inline-block;
}

.sub-page p{
    letter-spacing: 0.1em;
    line-height: 2em;
}

.sub-page .text_container{
    flex: 1;
    margin: 40px 5vw 40px 0;
}

/*--------------------

SERVICES

--------------------*/

.sub-page .services-title {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: .2em;
    display: block;
    margin-bottom: 10px;
    text-align: center;
}

.services_contents .contents_inner {
    padding-bottom: 100px;
}

.services_contents .sub_img_container {
    width: 52%;
}

.services_contents .contents_inner:nth-child(even) {
    flex-direction: row-reverse;
}

.services_contents .contents_inner:nth-child(even) .text_container {
    flex: 1;
    margin: 40px 0 40px 5vw;
}

.services_contents .menu-icon {
    margin-bottom: 0;
    text-align: center;
}

.services_contents .contents_inner:last-child {
    padding-bottom: 0
}

/*--------------------

table

--------------------*/

table {
    width: 100%;
    margin: 0 auto;
    max-width: 850px;
}

.common_table th {
    width: 180px;
}

.common_table td, .common_table th {
    border: 0;
    border-bottom: 1px solid #e6ede1;
    padding: 25px 0;
    text-align: left;
    line-height: 2em;
    letter-spacing: 0.1em;
}

.common_table tr:first-child td, .common_table tr:first-child th {
    padding-top: 0;
}

/*--------------------

CONTACT

--------------------*/

.contact-sec_inner, .contact_text{
    letter-spacing: 0.1em;
    line-height: 2em;
}

.contact-sec_inner {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 35px 0;
    background-color: #edf2f4;
}

.contact_text{
    text-align: center;
    margin-top: 25px;
}

.contact-ttl-side , .contact-address-side{
    padding: 0 55px;
}

.contact-ttl-side {
    border-right: solid 1px #000;
}

.contact-address-side {
    font-size: 20px;
    font-weight: bold;
}

/*--------------------

footer

--------------------*/

footer{
    width: 100%;
    height: 100%;
    margin-top: 130px;
    text-align: center;
    background-color: #5FAB6E;
}

.footer_container {
    padding: 50px 0;
}

img.footer_logo{
    width: 80vw;
    max-width: 320px;
    height: auto;
}

.footer_copyright {
    padding-top: 30px;
    font-size: 12px;
    letter-spacing: .1em;
    line-height: 1.5em;
    color: #fff;
}






@media screen and (max-width: 959px) {
    
    /*--------------------

    header

    --------------------*/
    
    header .flexbox {
        display: block;
    }

    .header_logo{
        display: table-cell;
        vertical-align: middle;
    }
    
    #mobile-head {
        display: table;
        background: #fff;
        width: 100%;
        height: 100px;
        z-index: 999;
        position: relative;
    }

    #nav-global {
        position: absolute;
        right: -300px;
        background: #fff;
        width: 250px;
        height: 100vh;
        text-align: center;
        z-index: 5;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
    }
    
    .nav_inner {
        height: calc(100vh - 100px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    #nav-global li {
        width: 100%;
    }
    
     #nav-toggle {
        display: block;
    }

    .open #nav-toggle span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .open #nav-toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }

    .open #nav-toggle span:nth-child(3) {
        top: 11px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .open #nav-global {
        -moz-transform: translateX(-300px);
        -webkit-transform: translateX(-300px);
        transform: translateX(-300px);
    }
    
    .sp-nav-bk{
        display: none;
        position: absolute;
        width: 100vw;
        height: 100vh;
        background-color: rgba(95,171,110,0.4);
        z-index: 1;
    }
    
    .mv {
        margin-bottom: 80px;
    }
    
    .sub-page.main {
        padding-bottom: 80px;
        flex-direction: column;
    }
    
    .sub-page .text_container {
        margin: 0;
    }
    
    .sub_img_container {
        width: 100%;
        height: 300px;
        margin-top: 60px;
    }
    
    .services_contents .contents_inner {
        padding-bottom: 80px;
        flex-direction: column;
    }
    
    .services_contents .sub_img_container {
        width: 100%;
    }
    
    .services_contents .contents_inner:nth-child(even) {
        flex-direction: column;
    }
    
    .services_contents .contents_inner:nth-child(even) .text_container {
        margin: 0;
    }
    
    .services_contents .sub_img_container {
        margin-top: 30px;
    }
}

@media screen and (max-width: 559px) {

    .header_logo {
        padding-left: 20px;
    }

    .header_logo img {
        vertical-align: bottom;
        width: calc(100vw - 100px);
    }

    #nav-toggle {
        right: 10px;
    }
    
    .mv {
        height: 440px;
    }
    
    .main_img {
        height: 250px;
    }
    
    .section_title .section_title-en {
        font-size: 40px;
    }
    
    .sub-page .main-copy {
        font-size: 6vw;
    }
    
    .top_about, .top_services, .top_recruit, .contact {
        padding-top: 100px;
    }
    
    .about_main .main_img_inner {
    background: url("../img/about_main_sp.jpg") no-repeat 10% 90%;
    }

    .services_main .main_img_inner {
        background: url("../img/services_main_sp.jpg") no-repeat 10% 100%;
    }

    .recruit_main .main_img_inner {
        background: url("../img/recruit_main_sp.jpg") no-repeat 10% 80%;
    }
    
    .common_table th {
        width: 120px;
    }
    
    .contact-sec_inner {
        flex-direction: column;
    }
    
    .contact-ttl-side {
        border-bottom: solid 1px #000;
        border-right: none;
    }
    
    .contact-ttl-side, .contact-address-side {
        padding: 0 0;
        margin: 0 20px;
    }
    
    .contact-ttl-side {
        padding-bottom: 20px;
    }
    
    .contact-address-side {
        padding-top: 20px;
    }
    
    .contact_text {
        text-align: inherit;
    }
    
    footer {
        margin-top: 80px;
    }
    
}