@charset "UTF-8";

/**************************************************
 @ RESET verHTML5
 - ALL
**************************************************/

html,body,div,span,object,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    }

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section { display: block;}

ul { list-style: none outside none;}

blockquote,q {quotes: none;}
blockquote:before,blockquote:after,q:before,q:after {content: none;}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    color: #4e4f4d;
    text-decoration: none;
    vertical-align: baseline;
    background: transparent;
    }

a:link,a:visited,a:active {
    color: #4e4f4d;
    text-decoration: none;
    }

a:hover {
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    opacity: .65;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
    }

input,select { 
    vertical-align: middle;
    -webkit-appearance: none;
    border-radius: 0;
    }

img { vertical-align: bottom;}


/**************************************************
 @ BASE
 - ALL
**************************************************/

html { 
    font-feature-settings: "palt" 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }

body {
    position: relative;
    background-color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-feature-settings: "palt" 1, "trad" 1;
    font-size: 0.75rem;
    font-weight: 400;
    color: #4f5455;
    line-height: 2;
    letter-spacing: 0.03rem;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust:100%;
    -moz-text-size-adjust:100%;
    -ms-text-size-adjust:100%;
    text-size-adjust:100%;
    }

span, object, article,
aside, dialog, figure, footer,
header, menu, nav, section {
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    }

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    }

img {
    width: 100%;
    height: auto;
    }

article, aside, dialog, figure, footer, header, menu, nav, object, section, span {
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out
    }

#particles-js {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    }

/*---------------------------
	----------------- FONT */

@font-face {
    font-family: "YuGothic M";
    src: local("Yu Gothic Medium");
    }

.en { font-family: 'Roboto', sans-serif;}
.ja { font-family: 'Noto Sans JP', sans-serif;}


/*---------------------------
	----------------- ANIMATION */

.inview {
    opacity: 0;
    transform: translate(0,100px);
    -webkit-transform: translate(0,100px);
    -moz-transition-delay: 200ms;
    -webkit-transition-delay: 200ms;
    -o-transition-delay: 200ms;
    -ms-transition-delay: 200ms;
    transition: all 1s ease;
    }

.inview_rise {
    opacity: 1;
    transform: translate(0,0);
    -webkit-transform: translate(0,0);
    }

@keyframes fadeIn {
    0% { opacity: 0;}
    100% { opacity: 1;}
    }

.animation {
    position: relative;
    display: inline-block;
    overflow: hidden;
    }

.animation:after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    background-color: #f9f9f9;
    animation: secondaryImageOverlayIn .6s 0s cubic-bezier(.77, 0, .175, 1), secondaryImageOverlayOut .6s .6s cubic-bezier(.77, 0, .175, 1);
    animation-fill-mode: both
    }

.animation img {
    display: block;
    line-height: 1;
    animation: fadeIn .1s .5s;
    animation-fill-mode: both;
    }

@keyframes secondaryImageOverlayIn {
    0% { width:0}
    100% { width:100%}
    }
@keyframes secondaryImageOverlayOut {
    0% { transform:translateX(0)}
    100% { transform:translateX(102%)}
    }

.fade_in_down {
    -webkit-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -ms-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 1s;
    animation-delay: 2s;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    visibility: visible !important;
    }
@-webkit-keyframes fadeInDown {
    0% { opacity: 0; -webkit-transform: translateY(-50px); }
    100% { opacity: 1; -webkit-transform: translateY(0); }
    }
@keyframes fadeInDown {
    0% { opacity: 0; -webkit-transform: translateY(-50px); -ms-transform: translateY(-50px); transform: translateY(-50px); }
    100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
    }


/*---------------------------
	----------------- USER AGENT */

@media (min-width: 767px) {
	
	.sp { display: none !important }
	
}

@media (max-width: 767px) and (min-width: 320px) {
	
	body {
		font-size: 0.78rem;
		letter-spacing: 0;
		width: 100%;
		-webkit-text-size-adjust: 100%;
		overflow-x: hidden;
		}
	
	#wrap {
		width: 100%;
		max-width: 767px;
		min-width: 320px;
		overflow: hidden;
		margin: 0 auto;
		}
	
	.pc { display: none !important; }

}


/*************************************************
 @CONTENTS - 1.HEADER
----------------------------------------------- */

header {
    position: absolute;
    width: 100%;
    z-index: 100;
    padding: 30px 2.5% 0;
    }

header .header_inner { position: relative;}
header .header_inner h1 { max-width: 240px;}
header .header_inner h1 a { display: block;}
header .header_inner h1 a img { 
    display: block;
    max-width: 240px;
    }

header .header_inner nav.pc {
    position: absolute;
    right: 0;
    top: 0;
    }
header .header_inner nav ul { 
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    min-width: 780px;
    margin-top: 5px;
    }
header .header_inner nav ul li { 
    line-height: 1;
    letter-spacing: 0.08rem;
    text-align: center;
    margin-left: 2.65%;
    }
header .header_inner nav ul li:first-child { margin-left: 0;}
header .header_inner nav ul li a span {
    display: block;
    font-family: Roboto, sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    color: #8bc11e;
    letter-spacing: 0.05rem;
    margin-top: 7px;
    }

header .header_inner nav ul li:last-child { margin-top: 5px;}
header .header_inner nav ul li:last-child a {
    background-color: #8bc11e;
    font-family: Roboto, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    padding: 15px 45px 14px;
    }

@media (max-width: 767px) and (min-width: 320px) {
	
	header { 
        position: fixed;
        padding: 5px 0 0;
        height: 55px;
        }
	
	header .header_inner {
        position: relative;
        min-width: 320px;
        width: 100%;
        margin: auto;
        padding: 0 0 0 10px;
        }
	
	header .header_inner h1 {
        position: relative;
        top: 12px;
        text-align: center; 
        min-width: 178px;
        z-index: 900;
        }
	header .header_inner h1 a img { width: 178px;}
    
	header .sub_btn {
        position: absolute;
        top: 0;
        right: 55px;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-end;
        width: 100%;
        z-index: 99999;
        }
	
	header .sub_btn p {
        width: 17.777777%;
        height: 55px;
        text-align: center;
        }
	
	header .sub_btn p:nth-child(1) { border-right: 1px solid #fff;}
	
	header .sub_btn p a {
        display: block;
        font-family: 'Roboto', sans-serif;
        font-size: 0.65rem;
        font-weight: 500;
        color: #fff;
        line-height: 1.2;
        letter-spacing: 0.08rem;
        padding: 15px 0 0;
        background-color: #8bc11e;
        height: 100%;
        }
}

@media (max-width: 1000px) and (min-width: 320px) {
    
    #nav_toggle {
        position: fixed;
        top: 0;
        right: 0;
        cursor: pointer;
        }
    #nav_toggle .sp_btn {
        position: relative;
        width: 50px;
        height: 50px;
        background-color: #8bc11e;
        }
    
    #nav_toggle .line {
        width: 50%;
        height: 1px;
        left: 0;
        right: 0;
        margin: auto;
        display: block;
        background: #fff;
        position: absolute;
        transition: top .5s ease, -webkit-transform .6s ease-in-out;
        transition: transform .6s ease-in-out, top .5s ease;
        transition: transform .6s ease-in-out, top .5s ease, -webkit-transform .6s ease-in-out;
        }
    #nav_toggle .line:nth-child(1) { top: 12px;}
    #nav_toggle .line:nth-child(2) { top: 20px;}
    #nav_toggle .line:nth-child(3) { top: 28px;}
    #nav_toggle .en {
        position: absolute;
        left: 0;
        right: 0;
        top: 30px;
        margin: auto;
        font-family: 'Roboto', sans-serif;
        font-size: 0.56rem;
        font-weight: 500;
        color: #fff;
        text-align: center;
        }
    
    .open #nav_toggle .line { background: #fff; z-index: 1000;}
    .open #nav_toggle .line:nth-child(1) {
        top: 23px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        }
    .open #nav_toggle .line:nth-child(2) {
        top: 10px;
        width: 0;
        left: 20%;
        }
    .open #nav_toggle .line:nth-child(3) {
        top: 23px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        }
    .open #nav_toggle .en {
        position: absolute;
        left: 0;
        right: 0;
        top: 32px;
        margin: auto;
        font-family: 'Roboto', sans-serif;
        font-size: 0.56rem;
        font-weight: 500;
        color: #fff;
        text-align: center;
        z-index: 1000;
        }
    
    #sp_nav { z-index: 1000;}
    #sp_nav {
        background: rgba(255,255,255,1);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 990;
        text-align: center;
        visibility: hidden;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 0.8rem;
        opacity: 0;
        transition: opacity .6s ease, visibility .6s ease;
        }
    
    .sp_nav_inner { margin-top: 50px;}
    
    #sp_nav a {
        display: block;
        font-size: 0.78rem;
        font-weight: 400;
        padding: 16px 0;
        transition: color .6s ease;
        }
    
    #sp_nav ul { 
        display: flex;
        justify-content: flex-end;
        flex-wrap: wrap;
        min-width: 320px;
        margin-top: 5px;
        }
    
    #sp_nav ul li {
        opacity: 0;
        width: 100%;
        -webkit-transform: translateX(200px);
        transform: translateX(200px);
        transition: opacity .2s ease, -webkit-transform .6s ease;
        transition: transform .6s ease, opacity .2s ease;
        transition: transform .6s ease, opacity .2s ease, -webkit-transform .6s ease;
        /*border-bottom: 1px solid #eee;*/
        }
    
    /*#sp_nav ul li:nth-child(odd) { border-right: 1px solid #eee;}
    #sp_nav ul li:nth-child(1) { border-top: 1px solid #eee;}*/
    #sp_nav ul li:nth-child(2) { transition-delay: .15s; /*border-top: 1px solid #eee;*/}
    #sp_nav ul li:nth-child(3) { transition-delay: .3s;}
    #sp_nav ul li:nth-child(4) { transition-delay: .45s;}
    #sp_nav ul li:nth-child(5) { transition-delay: .6s;}
    #sp_nav ul li:nth-child(6) { transition-delay: .75s;}
    #sp_nav ul li:nth-child(7) { transition-delay: .9s;}
    #sp_nav ul li:nth-child(8) { transition-delay: 1.05s;}
    #sp_nav ul li:nth-child(9) { transition-delay: 1.25s;}
    
    .open { overflow: hidden;}
    .open #sp_nav {
        visibility: visible;
        opacity: 1;
        }
    
    .open #sp_nav li {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        transition: opacity .9s ease, -webkit-transform 1s ease;
        transition: transform 1s ease, opacity .9s ease;
        transition: transform 1s ease, opacity .9s ease, -webkit-transform 1s ease;
        line-height: 1;
        }
    
    .open #sp_nav li span {
        display: block;
        font-family: 'Roboto', sans-serif;
        font-size: 0.58rem;
        font-weight: 500;
        color: #8bc11e;
        letter-spacing: 0.05rem;
        margin-top: 6px;
        }
    
    #sp_nav .entry_btn {
        width: 80%;
        margin: 10px auto;
        }
    #sp_nav .entry_btn a {
        font-family: 'Roboto', sans-serif;
        font-size: 0.85rem;
        font-weight: 500;
        padding: 18px;
        }
	
}


/*************************************************
 @CONTENTS - 2.KEYVISUAL
----------------------------------------------- */

#keyvisual {
    position: relative;
    margin-bottom: 150px;
    }
#keyvisual .copy_box {
    position: absolute;
    top: 37.8%;
    left: 12.5%;
    width: 88.5%;
    z-index: 100;
    }

#keyvisual .copy_box .main_copy_en svg { 
    max-width: 668px;
    width: 45.85%;
    margin-bottom: 5px;
    }

.path{
    opacity: 1;
    stroke: #646464;
    fill: transparent;
    stroke-width: 0.025rem;
    stroke-dasharray: 3000;
    stroke-dashoffset: 0;
    animation: DASH 4s ease-in alternate forwards;
        -webkit-animation:DASH 4s ease-in 0s forwards;
        -o-animation:DASH 4s ease-in 0s forwards;
    animation:DASH 4s ease-in 0s forwards;
    }

@keyframes DASH{
    0%{ stroke-dashoffset: 3000; fill: transparent;}
    100%{ stroke-dashoffset: 0; fill: #646464;}
}
@-moz-keyframes DASH{
    0%{ stroke-dashoffset: 3000; fill: transparent;}
    100%{ stroke-dashoffset: 0; fill: #646464;}
}
@-webkit-keyframes DASH{
    0%{ stroke-dashoffset: 3000; fill: transparent;}
    100%{ stroke-dashoffset: 0; fill: #646464;}
}
@-o-keyframes DASH{
    0%{ stroke-dashoffset: 3000; fill: transparent;}
    100%{ stroke-dashoffset: 0; fill: #646464;}
}
@-ms-keyframes DASH{
    0%{ stroke-dashoffset: 3000; fill: transparent;}
    100%{ stroke-dashoffset: 0; fill: #646464;}
}


@keyframes fadeIn {
    0% {opacity: 0}
    50% {opacity: 0.75}
    100% {opacity: 1}
}



#keyvisual .copy_box .main_copy_ja {
    display: inline-block;
    font-size: 1.9rem;
    font-weight: 300;
    color: #fff;
    line-height: 1;
    letter-spacing: 0.08rem;
    padding: 14px 22px 16px;
    background-color: #8bc11e;
    margin-bottom: 15px;
    }

#keyvisual .copy_box .sub_copy span { display: block;}

#keyvisual .keyvisual_photo {
    width: 77.5%;
    padding-top: 140px;
    margin-left: 22.5%;
    }

#keyvisual .kv_ornament {
    position: absolute;
    bottom: -50px;
    left: -40%;
    z-index: -1;
    content: "";
    width: 100%;
    height: 25.5%;
    background-color: #f9f9f9;
    }

/*---------------------------
	----------------- SCROLL BAR */

.scroll_wrap {
    padding: 0 0 70px;
    font-size: 0.58rem;
    line-height: 1;
	letter-spacing: 0.08rem;
    position: fixed;
    left: 2.5%;
    bottom: 35%;
	transform: translate(-50%,0);
    	-webkit-transform: translate(-50%,0);
    	-moz-transform: translate(-50%,0);
    transition: all .3s ease;
	z-index: 10;
	}

.scroll-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    height: 120px;
    width: 1px;
    background: #e5e5e5;
	}

.scroll-txt {
	display: block;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	color: #8bc11e;
	transform: rotate(90deg);
    margin-top: -15px;
    margin-left: 35px;
	}

.scroll-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 1px;
    background: #8bc11e;
    animation: scroll-bar-anime 2.8s ease-in-out infinite;
	}

@keyframes scroll-bar-anime {
     0% {
         top:0;
         opacity:0
         }
     10% {
         top:0;
         opacity:1
        }
     50% {
         top:84%;
         opacity:1
         }
     70% {
         top:84%;
         opacity:0
         }
     100% {
         top:84%;
         opacity:0
         }
}


@media (max-width: 768px) and (min-width: 320px) {

    #keyvisual {
        position: relative;
        margin-bottom: 100px;
        }
    #keyvisual .copy_box {
        position: absolute;
        top: 54.5%;
        left: 13.5%;
        width: 84%;
        z-index: 100;
        }
    #keyvisual .copy_box .main_copy_en svg { 
        max-width: 668px;
        width: 100%;
        margin-bottom: 5px;
        height: auto !important;
        }

    #keyvisual .copy_box .main_copy_ja {
        display: inline-block;
        font-size: 1.2rem;
        font-weight: 300;
        color: #fff;
        line-height: 1;
        letter-spacing: 0.08rem;
        padding: 14px 10px 16px;
        background-color: #8bc11e;
        margin-bottom: 15px;
        }
    
    #keyvisual .copy_box .sub_copy span:nth-child(2),
    #keyvisual .copy_box .sub_copy span:nth-child(3),
    #keyvisual .copy_box .sub_copy span:nth-child(4) { display: inline;}

    #keyvisual .keyvisual_photo {
        max-width: 1240px;
        width: 100%;
        padding-top: 0;
        margin-left: 0;
        }

#keyvisual .kv_ornament {
    position: absolute;
    bottom: -50px;
    left: -40%;
    z-index: -1;
    content: "";
    width: 100%;
    height: 25.5%;
    background-color: #f9f9f9;
    }

/*---------------------------
	----------------- SCROLL BAR */

.scroll_wrap {
    padding: 0 0 70px;
    font-size: 0.58rem;
    line-height: 1;
	letter-spacing: 0.08rem;
    position: fixed;
    left: 2.5%;
    bottom: 35%;
	transform: translate(-50%,0);
    	-webkit-transform: translate(-50%,0);
    	-moz-transform: translate(-50%,0);
    transition: all .3s ease;
	z-index: 10;
	}

.scroll-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    height: 120px;
    width: 1px;
    background: #e5e5e5;
	}

.scroll-txt {
	display: block;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	color: #8bc11e;
	transform: rotate(90deg);
    margin-top: -15px;
    margin-left: 35px;
	}

.scroll-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 1px;
    background: #8bc11e;
    animation: scroll-bar-anime 2.8s ease-in-out infinite;
	}
    
}

/*************************************************
 @CONTENTS - 2.COMMON
----------------------------------------------- */

.h2_title1 {
    position: relative;
    font-size: 0.75rem;
    font-weight: 400;
    text-align: center;
    line-height: 1;
    padding-bottom: 25px;
    margin-bottom: 50px;
    }

.h2_title1::before {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    content: "";
    width: 20px;
    height: 1px;
    background-color: #8bc11e;
    transform: rotate(-45deg);
    }

.h2_title1 span {
    display: block;
    font-family: Roboto, sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: #8bc11e;
    letter-spacing: 0.25rem;
    margin-bottom: 10px;
    }

.section_wrap { margin-bottom: 150px;}

.section_inner {
    max-width: 1200px;
    margin: auto;
    }

/*---------------------------
	----------------- BUTTON LAYOUT */

.btn a {
    position: relative;
    display: block;
    padding: 20px 0;
    background-color: #8bc11e;
    width: 100%;
	font-family: 'Roboto', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08rem;
    line-height: 1;
    color: #fff;
    text-align: center;
    text-decoration: none;
    outline: 0;
    transition: all .2s;
	}

.btn a::after,.btn a::before {
 	position: absolute;
 	z-index: 2;
 	content: '';
 	width: 0;
 	height: 0;
 	border: 1px solid transparent;
	}
.btn a::before {
 	top: 0;
 	left: 0;
	}
.btn a::after {
	bottom: 0;
	right: 0;
	}
.btn a:hover {
	opacity: 1;
 	background-color: transparent;
 	font-weight: 500;
 	color: #8bc11e;
 	letter-spacing: 0.15em;
	}
.btn a:hover::after,.btn a:hover::before {
 	width: 100%;
 	height: 100%;
	}
.btn a:hover::before {
 	border-bottom-color: #8bc11e;
 	border-left-color: #8bc11e;
 	transition: height .3s,width .3s .3s;
	}
.btn a:hover::after {
 	border-top-color: #8bc11e;
 	border-right-color: #8bc11e;
 	transition: height .3s,width .3s .3s;
	}

/*************************************************
 @CONTENTS - 3.FEATURES
----------------------------------------------- */

.features_list_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    }

.features_list {
    display: flex;
    align-items: center;
    position: relative;
    border-top: 1px solid #8bc11e;
    width: 28.333333%;
    padding-top: 20px;
    }

.features_list h4 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 15px;
    }
.features_list h4 span {
    display: block;
    font-family: Roboto, sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: #8bc11e;
    letter-spacing: 0.08rem;
    }

.features_list img {
    display: block;
    width: 64px;
    margin: 40px auto 0;
    }

@media (max-width: 768px) and (min-width: 320px) {
    
    .features_list_wrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 95%;
        margin: auto;
        }

    .features_list {
        display: flex;
        align-items: center;
        position: relative;
        border-top: 1px solid #8bc11e;
        width: 100%;
        padding-top: 20px;
        margin-bottom: 20px;
        }

    .features_list h4 {
        font-size: 1rem;
        font-weight: 400;
        line-height: 1;
        margin-bottom: 15px;
        }

    .features_list h4 span {
        display: block;
        font-family: Roboto, sans-serif;
        font-size: 0.8rem;
        font-weight: 500;
        color: #8bc11e;
        letter-spacing: 0.08rem;
        margin-bottom: 5px;
        }

.features_list img {
    display: block;
    width: 64px;
    margin: 40px auto 0;
    }

}

/*************************************************
 @CONTENTS - 4.SERVICE
----------------------------------------------- */

.service_wrap .service_list {
    display: flex;
    flex-wrap: wrap;
    }

.service_wrap .service_list li {
    display: none;
    /*max-width: 400px;*/
    width: 33.333333%;
    }
.service_wrap .service_list li a {
    display: block;
    position: relative;
    background-color: #8bc11e;
    color: #fff;
    padding: 50px 0 45px;
    height: 100%;
    }
.service_wrap .service_list li a:hover { opacity: 0.8;}

.service_wrap .service_list li a::before {
    position: absolute;
    content: "";
    right: 12px;
    bottom: 10px;
    width: 9px;
    height: 9px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 2;
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    }
.service_wrap .service_list li a:hover::before {
    position: absolute;
    content: "";
    right: 8px;
    bottom: 10px;
    width: 9px;
    height: 9px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 2;
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    }


.service_wrap .service_list li a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    content: "";
    width: 30px;
    height: 30px;
    background-color: #a1e020;
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    }

.service_wrap .service_list li a:hover::after {
    position: absolute;
    right: 0;
    bottom: 0;
    content: "";
    width: 30px;
    height: 30px;
    background-color: #76a418;
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    }

.service_wrap .service_list li:nth-child(1),
.service_wrap .service_list li:nth-child(3) {
    border-bottom: 1px solid #fff;
    }

.service_wrap .service_list li:nth-child(2) {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    }

.service_wrap .service_list li:nth-child(5) {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    }

.service_wrap .service_list li h4 {
    position: relative;
    font-size: 1.25rem;
    font-weight: 400;
    text-align: center;
    line-height: 1;
    letter-spacing: 0.1rem;
    padding-bottom: 25px;
    margin-bottom: 30px;
    }

.service_wrap .service_list li h4::before {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    content: "";
    width: 20px;
    height: 1px;
    background-color: #fff;
    transform: rotate(-45deg);
    }

.service_wrap .service_list li h4 span {
    display: block;
    font-family: Roboto, sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    margin-bottom: 5px;
    }

.service_wrap .service_list li img {
    display: block;
    width: 78px;
    margin: 0 auto 30px;
    }

.service_wrap .service_list li p {
    font-weight: 500;
    padding: 0 11.25%;
    }

/*************************************************
 @CONTENTS - 5.INFORMATION
----------------------------------------------- */

.info_list_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
    }

.info_list_wrap li:first-child { margin-left: 0;}
.info_list_wrap li {
    position: relative;
    width: 22.6666666%;
    margin-left: 3.112222%;
    }
.info_list_wrap li a {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    }
.info_list_wrap li img { display: block; margin-bottom: 15px;}
.info_list_wrap li .data {
    font-family: Roboto, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #8bc11e;
    line-height: 1;
    letter-spacing: 0.06rem;
    margin-bottom: 10px;
    }

.info_list_wrap li .data time {
    padding-right: 10px;
    border-right: 1px solid #8bc11e;
    }

.info_list_wrap li .data .cate { padding-left: 10px;}

.info_btn { 
    width: 300px;
    margin: auto;
    }

.gmap {
    height: 0;
    width: 95%;
    overflow: hidden;
    padding-bottom: 26.25%;
    position: relative;
    margin: auto;
    }
.gmap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    }

/*************************************************
 @CONTENTS - 6.CONTACT BOX
----------------------------------------------- */

#section4 {
    background-color: #f9f9f9;
    padding: 60px 0;
    }

#section4 .section_inner .contact_box_wrap {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    }

#section4 .section_inner .contact_box_wrap::before {
    position: absolute;
    left: 49.5%;
    content: "";
    height: 100%;
    width: 1px;
    background-color: #f9f9f9;
    }

#section4 .section_inner .contact_box_wrap .contact_box {
    display: flex;
    align-items: center;
    background-color: #fff;
    width: 50%;
    }

#section4 .section_inner .contact_box_wrap .contact_box .contact_box_inner {
    text-align: center;
    width: 100%;
    background-color: #fff;
    padding: 50px 0;
    }

#section4 .section_inner .contact_box_wrap .contact_box .contact_box_inner h4 {
    position: relative;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.08rem;
    padding-bottom: 25px;
    margin-bottom: 30px;
    }

#section4 .section_inner .contact_box_wrap .contact_box .contact_box_inner h4::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    height: 1px;
    width: 20px;
    margin: auto;
    background-color: #8bc11e;
    transform: rotate(-45deg);
    }

#section4 .section_inner .contact_box_wrap .contact_box .contact_box_inner h4 span {
    display: block;
    font-family: Roboto, sans-serif;
    font-size: 0.7rem;
    color: #8bc11e;
    margin-top: 8px;
    }

#section4 .section_inner .contact_box_wrap .contact_box:nth-child(1) .contact_box_inner p { margin-bottom: 15px;}
#section4 .section_inner .contact_box_wrap .contact_box:nth-child(1) .contact_box_inner p:nth-child(3) { margin-bottom: 0;}

#section4 .section_inner .contact_box_wrap .contact_box .contact_box_inner .btn {
    width: 50%;
    margin: auto;
    }

#section4 .section_inner .contact_box_wrap .contact_box:nth-child(2) .contact_box_inner p { line-height: 1;}
#section4 .section_inner .contact_box_wrap .contact_box:nth-child(2) .contact_box_inner p:nth-child(1) { font-size: 0.75rem; margin-bottom: 15px;}
#section4 .section_inner .contact_box_wrap .contact_box:nth-child(2) .contact_box_inner p:nth-child(2) { margin-bottom: 10px;}
#section4 .section_inner .contact_box_wrap .contact_box:nth-child(2) .contact_box_inner p .tel-link {
    background: url("../img/icon/icon_tel.svg") left no-repeat;
    background-size: 21px;
    font-family: Roboto, sans-serif;
    font-size: 1.75rem;
    color: #4e4f4d;
    padding-left: 25px;
    }
#section4 .section_inner .contact_box_wrap .contact_box:nth-child(2) .contact_box_inner p:nth-child(3) {
    font-size: 0.7rem;
    margin-bottom: 30px;
    }

#section4 .section_inner .contact_box_wrap .contact_box:nth-child(2) .contact_box_inner p:nth-child(4) a {
    font-family: Roboto, sans-serif;
    font-size: 0.9rem;
    }


/*************************************************
 @CONTENTS - 7.FOOTER
----------------------------------------------- */

footer { position: relative; padding: 70px 3.125% 20px;}
footer .footer_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    min-width: 1200px;
    margin: auto;
    }

footer .footer_inner .left_box .logo {
    display: block;
    max-width: 240px;
    margin-bottom: 25px;
    }

footer .footer_inner .left_box p.text {
    font-size: 0.78rem;
    line-height: 1.4;
    letter-spacing: 0.08rem;
    margin-bottom: 5px;
    }

footer .footer_inner .right_box { width: 60%;}
footer .footer_inner .right_box nav { margin-bottom: 25px;}
footer .footer_inner .right_box nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    }

footer .footer_inner .right_box nav ul { width: 100%;}
footer .footer_inner .right_box nav ul li { margin-left: 4%;}
footer .footer_inner .right_box nav ul li:nth-child(1) { margin-left: 0;}
footer .footer_inner .right_box nav ul li a {
    display: block;
    text-align: center;
    }

footer .footer_inner .right_box nav ul li a span {
    display: block;
    font-family: Roboto, sans-serif;
    font-size: 0.65rem;
    color: #8bc11e;
    }

footer .footer_inner .right_box .sns_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    line-height: 1.2
    }

footer .footer_inner .right_box .sns_box p {
    position: relative;
    font-family: Roboto, sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.05rem;
    }

footer .footer_inner .right_box .sns_box p::before {
    position: absolute;
    top: 49%;
    left: -14px;
    content: "";
    height: 1px;
    width: 10px;
    background-color: #8bc11e;
    }

footer .footer_inner .right_box .sns_box a {
    display: block;
    width: 23px;
    margin-left: 1.7%;
    }

footer .copyright {
    font-family: Roboto, sans-serif;
    font-size: 0.58rem;
    font-weight: 500;
    text-align: center;
    margin-top: 70px
    }

footer .page_top {
    position: absolute;
    top: -25px;
    right: 3.125%;
    width: 50px;
    height: 50px;
    }

footer .page_top a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-indent: -9999px;
    background-color: #8bc11e;
    }

footer .page_top a::before{
    position: absolute;
    top: 0;
    bottom: -8px;
    left: 0;
    right: 0;
    width: 15px;
    height: 15px;
    margin: auto;
    content: "";
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    }