@charset "UTF-8";
@import url("reset.css");
/*
メイン背景色：f8f9fa
カラー：f87eac
*/
img{ vertical-align: bottom;}
a{ color: #00b7ee;-webkit-transition: 0.4s;transition: 0.4s;}
a:visited {}
a:hover { color: #1e66b8;-webkit-transition: 0.4s;transition: 0.4s;}

body{
  font-family: 'Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic';
  font-size: 5vw;
  color: #222222;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  letter-spacing: normal;
  height: 100vh;
  width: 100%;
  background-color: #fff;
  position: relative;
  z-index: 0;
}

/*-----------------------------------------------*/
/*+++　Header　+++*/
.header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 50px;
	background-color: #f5afd6;
	box-shadow: 0 2px 6px rgba(0,0,0,.16);
 	z-index: 1000;
	overflow: hidden;
	font-size: 2rem;
}
.global-nav {
  position: fixed;
  left: -320px; /* これで隠れる */
  top: 0;
  width: 300px; /* スマホに収まるくらい */
  height: 100vh;
  padding-top: 40px;
  background-color: rgba(255,255,255,0.5);
  transition: all .6s;
  z-index: 200;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}
.hamburger {
  position: absolute;
  left: 5px;
  top: 5px;
  width: 60px; /* クリックしやすいようにちゃんと幅を指定する */
  height: 60px; /* クリックしやすいようにちゃんと高さを指定する */
  cursor: pointer;
  z-index: 300;
}
.global-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.global-nav__item {
  text-align: center;
  padding: 0 14px;
}
.global-nav__item a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #fff;
  font-size: 1.4rem;
}
.global-nav__item a:hover {
  background-color: #eee;
}
.hamburger__line {
  position: absolute;
  left: 11px;
  width: 25px;
  height: 2px;
  background-color: #fff;
  transition: all .6s;
}
.hamburger__line--1 {
  top: 14px;
}
.hamburger__line--2 {
  top: 20px;
}
.hamburger__line--3 {
  top: 26px;
}
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all .6s;
  cursor: pointer;
}
/* 表示された時用のCSS */
.nav-open .global-nav {
  left: 0;
}
.nav-open .black-bg {
  opacity: .8;
  visibility: visible;
}
.nav-open .hamburger__line--1 {
  transform: rotate(45deg);
  top: 20px;
}
.nav-open .hamburger__line--2 {
  width: 0;
  left: 50%;
}
.nav-open .hamburger__line--3 {
  transform: rotate(-45deg);
  top: 20px;
}
.icon-home{
  background: url(../img/global/home_on.svg) no-repeat left center;
  background-size: 10%;
}
.icon-bell{
  background: url(../img/global/bell.svg) no-repeat left center;
  background-size: 10%;
}
.icon-guide{
  background: url(../img/global/agreement_on.svg) no-repeat left center;
  background-size: 10%;
}
.icon-experiences{
  background: url(../img/global/guide_on.svg) no-repeat left center;
  background-size: 10%;
}
.icon-contact{
  background: url(../img/global/mail_on.svg) no-repeat left center;
  background-size: 10%;
}




/*-----------------------------------------------*/
/*+++　Footer　+++*/
#footer{
  position: relative;
  margin: 40px auto auto auto;
  padding: 20px;
  background-color: #f7f9fa;
}
#copyright{
  position: absolute;
  bottom: 0;
  right: 5px;
  font-size: .7rem;
}







