@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@700&family=Noto+Sans+JP:wght@400;500;700&display=swap');

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

	base

-----------------------------------*/
html {
    overflow-y: auto;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 62.5%;
	overflow-x: hidden;
}
body {
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
    font-size: 1.6em;
	color: #000000;
    line-height: 2;
	letter-spacing:0.08em;
	font-weight: 400;
	background: #ffffff;
	margin:0 !important;
	width: 100%;
	overflow: hidden;
}
*, *: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;
}
.contents_inner{
	max-width: 1160px;
    width: 95%;
	margin: 0 auto;
}
img {
    max-width: 100%;
    height: auto;
}
a, a:link, a:visited {
    color: #000000;
	text-decoration:none;
    cursor: pointer;
}
a:hover {
    opacity: 0.6;
	text-decoration:none;
}
.sp{
	display:none;
}
.pc{
	display:block;
}
.left{
	float: left;
}
.right{
	float: right;
}
@media screen and (max-width: 1160px) {
}
@media screen and (max-width: 840px) {
}
@media screen and (max-width: 640px) {
	body {
		font-size: 14px;
		font-size: 1.4em;
	}
    .sp{
        display:block;
    }
    .pc{
        display:none;
    }
}
@media screen and (min-width: 641px){
    a[href^="tel:"]{
        pointer-events: none;
    }
}

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

	clearfix

-----------------------------------*/
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.clearfix {
    display: inline-block;
}
* html .clearfix {
    height: 1%;
}
.clearfix {
    display: block;
}
/*-----------------------------------

	header

-----------------------------------*/
header {
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
    -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 90px;
    width: 100%;
    background: #FFF;
    z-index: 9999;
}
header #logo {
    margin-left: 30px;
    width: 216px;
    line-height: 0;
}
header #logo a {
    display: block;
}
header nav #nav_menu {
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    height: 90px;
}
header nav #nav_menu a {
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
    -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
    -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    text-align: center;
    line-height: 1;
    height: 100%;
    padding: 0 25px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
}
header nav #nav_menu li a span {
    font-size: 12px;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.02em;
    color: #088b37;
    display: block;
    margin-bottom: 10px;
}
header nav #nav_menu li.contact a {
    background: #088b37;
    color: #FFF;
    padding: 0 40px;
    margin-left: 25px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
header nav #nav_menu li.contact a::after {
    content: "";
    width: 21px;
    height: 17px;
    background: url(../img/common/header_icon_mail.png) no-repeat;
    background-size: contain;
    margin-left: 20px;
}
.menu_btn_wrap {
    display: none;
}
@media screen and (max-width: 1190px) {
    header #logo {
        margin-left: 15px;
        width: 180px;
    }
    header nav #nav_menu li a {
        padding: 0 15px;
        font-size: 15px;
        letter-spacing: 0;
    }
    header nav #nav_menu li.contact a {
        padding: 0 20px;
        margin-left: 15px;
    }
    header nav #nav_menu li.contact a::after {
        margin-left: 10px;
    }
}
@media screen and (max-width: 840px) {
    header {
        height: 60px;
    }
    .menu_btn_wrap {
        display: block;
		width: 60px;
		height: 60px;
		cursor:pointer;
		background: #088b37;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 999;
	}
	.menu_btn {
		width: 34px;
		height: 26px;
		display: block;
		position: absolute;
		top: 17px;
		left: 13px;
		background: #FFF;
		border-top: 12px solid #088b37;
		border-bottom: 12px solid #088b37;
		box-sizing: border-box;
		-moz-transition: all 0.3s;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
		z-index:999;
	}
	.menu_btn:before {
		content:'';
		position:absolute;
        width: 34px;
		height: 2px;
		background: #FFF;
		top:-12px;
		-moz-transition:all 0.3s;
		-webkit-transition:all 0.3s;
		transition:all 0.3s;
	}
	.menu_btn:after {
		content:'';
		position:absolute;
        width: 34px;
		height: 2px;
		background: #FFF;
		bottom:-12px;
		-moz-transition:all 0.3s;
		-webkit-transition:all 0.3s;
		transition:all 0.3s;
	}
	.menu_btn.active {
		background:#088b37;
	}
	.menu_btn.active:before{
		-moz-transform:rotate(-135deg);
		-webkit-transform:rotate(-135deg);
		transform:rotate(-135deg);
		top:0;
		left:0;
	}
	.menu_btn.active:after {
		-moz-transform:rotate(135deg);
		-webkit-transform:rotate(135deg);
		transform:rotate(135deg);
		bottom:0;
		left:0;
	}
    header nav #nav_menu {
        max-width: 500px;
		width: 100%;
		height: calc(100% - 60px);
		overflow: auto;
		-webkit-overflow-scrolling: touch;
		background: #088b37;
		position: fixed;
		top:60px;
		right: -100%;
		padding: 20px;
		z-index: 999;
        -webkit-box-orient: vertical;
      	-webkit-box-direction: normal;
      	-ms-flex-direction: column;
      	flex-direction: column;
		-webkit-overflow-scrolling: touch;
		transition: 0.3s;
		-webkit-transition: 0.3s;
		-moz-transition: 0.3s;
		-o-transition: 0.3s;
		-ms-transition: 0.3s;
	}
	header nav #nav_menu.toggle {
		right: 0 !important;
	}
    header nav #nav_menu li {
        margin-bottom: 10px;
    }
    header nav #nav_menu li a {
        -webkit-box-orient: horizontal;
      	-webkit-box-direction: normal;
      	-ms-flex-direction: row;
      	flex-direction: row;
        background: #FFF;
        padding: 20px 0;
    }
    header nav #nav_menu li a span {
        display: none;
    }
    header nav #nav_menu li.contact a {
        padding: 20px 0;
        margin-left: 0;
        border: 1px solid #FFF;
    }
}
@media screen and (max-width: 640px) {
}
/*-----------------------------------

	contents

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

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

	pagetop

-----------------------------------*/
#pagetop{
    position: fixed;
    right: 20px;
    bottom: 50px;
    cursor: pointer;
    z-index: 999;
    width: 80px;
    height: 60px;
    background: #088b37;
    transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
}
#pagetop::after {
    content: "";
    width: 59px;
    height: 36px;
    background: url(../img/common/pagetop.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
@media screen and (max-width: 640px) {
    #pagetop{
        width: 55px;
        height: 40px;
    }
    #pagetop::after {
        width: 36px;
        height: 21px;
    }
}

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

	footer

-----------------------------------*/
footer {
}
footer #footer_top {
    background: #088b37;
    color: #FFF;
    padding: 80px 0;
    font-weight: 500;
    font-size: 14px;
}
footer #footer_top a {
    color: #FFF;
}
footer #footer_top .contents_inner {
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
footer #footer_top .details #footer_logo {
    margin-bottom: 40px;
}
footer #footer_top .details #footer_logo a {
    width: 200px;
    display: block;
    line-height: 0;
}
footer #footer_top nav {
    width: 600px;
}
footer #footer_top nav ul {
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -ms-flex-wrap: wrap;
  	flex-wrap: wrap;
}
footer #footer_top nav ul li {
    width: 23%;
    margin-bottom: 30px;
}
footer #footer_top nav ul li:nth-child(4) {
    width: 31%;
}
footer #footer_top nav ul li a {
    display: block;
    padding-left: 15px;
    position: relative;
    line-height: 1;
}
footer #footer_top nav ul li a::before {
    content: "";
    width: 6px;
    height: 2px;
    background: #FFF;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
footer #footer_bottom {
    background: #088736;
    color: #FFF;
    padding: 20px 0;
    text-align: center;
}
footer #footer_bottom small {
    font-size: 13px;
    font-family: 'Lato', sans-serif;
    line-height: 1;
}
@media screen and (max-width: 1160px) {
    footer #footer_top nav {
        width: 500px;
    }
    footer #footer_top nav ul li a {
        font-size: 12px;
    }
}
@media screen and (max-width: 840px) {
    footer #footer_top {
        padding: 40px 0;
    }
    footer #footer_top .contents_inner {
        -webkit-box-orient: vertical;
      	-webkit-box-direction: normal;
      	-ms-flex-direction: column;
      	flex-direction: column;
    }
    footer #footer_top .details {
        margin-bottom: 40px;
    }
    footer #footer_top .details #footer_logo {
        margin-bottom: 20px;
    }
    footer #footer_top nav {
        width: 100%;
    }
}
@media screen and (max-width: 640px) {
    footer #footer_top nav ul li {
        width: auto;
        margin-bottom: 20px;
        padding-right: 30px;
    }
    footer #footer_top nav ul li:nth-child(4) {
        width: auto;
    }
    footer #footer_bottom {
        padding: 15px 0;
    }
}
