@charset "utf-8";

html{
	/*font-size: 10px;*/
	font-size: 62.5%;
}

:root{
	--green1: #87BF93;
	--green2: #D0E7D6;
	--green3: #69B078;
	--btnHover1: #70D1FA;
	/*--btnHover1: #00BFFF;*/
	--link1: #0040FF;
}

body{
	font-family: "Noto Sans", sans-serif;
	font-weight: 400;
	font-optical-sizing: auto;
	font-style: normal;
	line-height: 1.0;
	letter-spacing: 0;
	color: #000000;
}

a,a img,input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="image"]{
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

a:hover img,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="image"]:hover{
	filter:alpha(opacity=50);
	-moz-opacity: 0.5;
	opacity: 0.5;
}

/*a:focus{outline: 2px solid blue;}*/

img{
	image-rendering: -webkit-optimize-contrast;
	max-width: 100%;
	height: auto;
}

::before,
::after{
	position: absolute;
	content: '';
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

.flexWrap{	
	display:-webkit-box;
  	display:flex;
	flex-wrap: wrap;
}

.flexColumn{	
	display:-webkit-box;
  	display:flex;
	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	flex-direction: column;
}

br.smp{display: none;}

.blockskip{
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 9992;
	pointer-events: none;
}
.blockskip a{
	display: block;
	width: 100%;
	padding: 20px;
	font-size: 1.8rem;
	color: #FFFFFF;
	text-align: center;
	background: #383838;
	opacity: 0;
	pointer-events: none;
}
.blockskip a:focus{
	opacity: 1;
	pointer-events: all;
}



/**************************************************
 header
**************************************************/
header{
	position: fixed;
	width: 100%;
	min-width: 1150px;
	height: 120px;
	top: 0;
	left: 0;
	padding: 0 50px;
	background: rgba(255,255,255,1.0);
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	align-items: center;
	z-index: 9990;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}
header.scroll{height: 90px;}

header h1 small{
	display: block;
	color: #000000;
	font-size: 1.4rem;
	letter-spacing: 1px;
	margin-bottom: 7px;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}
header h1 img{width: 280px;}
header.scroll h1 small{font-size: 1.2rem;}
header.scroll h1 img{width: 240px;}

#globalNavi ul li{
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 1px;
	margin-left: 50px;
}
#globalNavi ul li:first-of-type{margin-left: 0;}
#globalNavi ul li a{
	position: relative;
	color: #000000;
}
#globalNavi ul li a::before{
	width: 4px;
	height: 0;
	top: -17px;
	left: calc(50% - 2px);
	background: #383838;
}
#globalNavi ul li a:hover{opacity: 0.5;}
#globalNavi ul li a:hover::before{height: 15px;}

#menu{
	position: absolute;
	width: 60px;
	height: 60px;
	top: 0;
	right: 0;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	cursor: pointer;
	background: #383838;
	display: none;
}
#menu span{
	position: absolute;
	width: 30px;
	height: 2px;
	top: 19px;
	left: calc(50% - 15px);
	background: #FFFFFF;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}
#menu span:nth-of-type(2){top: 29px;}
#menu span:nth-of-type(3){top: 39px;}
#menu.open span{
	background: #FFFFFF;
	width: 32px;
	top: 29px;
	left: calc(50% - 16px);
}
#menu.open span:first-of-type{transform: rotate(-45deg);}
#menu.open span:nth-of-type(2){display: none;}
#menu.open span:nth-of-type(3){transform: rotate(45deg);}



/**************************************************
 wrapper
**************************************************/
#wrapper{
	position: relative;
	padding-top: 120px;
	min-width: 1150px;
	overflow: hidden;
}



/**************************************************
 main
**************************************************/
main,
article,
section{position: relative;}



/**************************************************
 footer
**************************************************/
footer{
	position: relative;
	margin-top: 80px;
}

.contact{
	padding: 80px 20px;
	color: #FFFFFF;
	text-align: center;
	background: #707070;
}
.contact h3{
	font-size: 3.5rem;
	font-weight: 700;
	letter-spacing: 2px;
}
.contact dl dt{
	font-size: 2.1rem;
	font-weight: 700;
	letter-spacing: 1px;
	margin: 60px 0 25px 0;
}
.contact dl dd{
	font-size: 1.6rem;
	line-height: 2.0;
}
.contact dl dd a{
	color: #FFFFFF;
	/*pointer-events: none;*/
}
.contact dl dd a:hover{opacity: 0.5;}

.copyRight{
	padding: 50px 20px;
	font-size: 1.2rem;
	text-align: center;
}

