@charset "UTF-8";

/* 全体 */
html, body{
	margin: 0;
	padding: 0;
	width: 100vw;
	height: 100vh;
	color: rgba(255,255,255,1.00);
	font-size: 13px;
	font-family: "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-style: normal;
	font-weight: normal;
	background-color: rgba(236,236,236,1.00);}
.container::-webkit-scrollbar {
    display:none;}
 a {
	text-decoration: none;}

/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 15;
  right : 23px;
  top   : 22px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;}
.hamburger span {
  display : block;
  position: absolute;
  width   : 15px;
  height  : 3px ;
  left    : 6px;
  background : rgba(255, 255, 255, 1);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;}
.hamburger span:nth-child(1) {
  top: 10px;}
.hamburger span:nth-child(2) {
  top: 20px;}
.hamburger span:nth-child(3) {
  top: 30px;}

/* ナビ開いてる時のボタン */
.hamburger span.active {
  color: rgba(0, 0, 0, 1);}
.hamburger.active {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition     : all 0.3s ease-in-out;
  transition        : all 0.3s ease-in-out;
  -webkit-transition-delay: 0.6s;
  -o-transition-delay     : 0.6s;
  transition-delay        : 0.6s;
  -webkit-transform: rotate(45deg);
  -ms-transform    : rotate(45deg);
  -o-transform     : rotate(45deg);
  transform        : rotate(45deg);}
.hamburger.active span:nth-child(2){
  width: 0px;}
.hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(3){
  background-color: rgba(0, 0, 0, 1);
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;}
.hamburger.active span:nth-child(1){
  -webkit-transform: translateY(4px);
  -ms-transform    : translateY(4px);
  -o-transform     : translateY(4px);
  transform        : translateY(4px);}
.hamburger.active span:nth-child(3){
  -webkit-transform: translateY(-16px) rotate(90deg);
  -ms-transform: translateY(-16px) rotate(90deg);
  -o-transform : translateY(-16px) rotate(90deg);
  transform    : translateY(-16px) rotate(90deg);}
nav.globalMenuSp {
  position: fixed;
  z-index : 10;
  top  : 0;
  right : 0;
  color: rgba(0, 0, 0, 1);
  background-color: rgba(255, 255, 255, 0.93);
  text-align: left;
  transform: translateX(100%);
  transition: all .9s;
  width: 93px;
  font-family: basic;
  font-size: 21px;
  letter-spacing: 1px;
  font-style: normal;
  font-weight: 400;}
nav.globalMenuSp ul {
  margin-top: 55px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 10px;
  padding: 0;
  width: 100%;}
nav.globalMenuSp ul li {   
  list-style-type: none; 
  width: 100%; }
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;}
nav.globalMenuSp ul li:hover{
  background-color: rgba(121,155,142,1.00);}
nav.globalMenuSp ul li a {
	display: block;
	color: rgba(0, 0, 0, 1);
	padding-top: 2px;
	padding-bottom: 2px;
	text-decoration : none;
	padding-left: 8px;
}
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
    transform: translateX(0%);}
  
/* PAGETOP */	
.pagetop {
	display: none;
	position: fixed;
	bottom: -20px;
	right: 25px;
	opacity: 1;
	z-index: 99;}
.pagetop a {
    display: block;
    text-align: center;
    text-decoration: none;}

/* フッター */
#footer {
	width: 100%;
	height: 35px;
	font-family: "Arial Black";
	font-size: 14px;
	font-style: normal;
	background-color: rgba(121,155,142,1.00);
	z-index: 1;
}
#footer p {
	color: rgba(0,0,0,1.00);
	text-align: center;
	padding-top: 9px;
	font-weight: bold;}	