@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #333; /* RGB */
  background-image: url("../images/common/background_image.jpg");
  font-family: /*"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;*/ 
	  "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
section h2 {
  font-size: 2.4rem;
}
a:hover {
  opacity: 0.5;
}

img {
	max-width:100%;
}


.header {
  height: 50px;
  width: 100%;
  background-color: #ADA091;
}
.header-content-wrapper {
  position: relative;
}
.header-content-wrapper h1 {
  position: absolute;
  left: 36px;
  padding-top: 5px;
}
.header-content-wrapper img {
  height: 40px;
}
/*========= ナビゲーションのためのCSS ===============*/
#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:-120%;
    left:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#ADA091;
	opacity: 0.97;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #fff;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:5px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #FFF;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}






.header__navigation {
  display: none;
}
/* 850から変わる  */
@media (min-width:850px) {
  .header {
    min-height: 72px;
    width: 100%;
  }
  .header-content-wrapper {
    max-width: 1040px;
    margin: 0 auto;
    padding: 25px;
    box-sizing: border-box;
  }
  .header-content-wrapper h1 {
    font-size: 2rem;
    top: 10px;
  }
	
	/*ボタン閉じる*/
	.openbtn {
		display: none;
	}
	
  .header__navigation {
    display: block;
    text-align: right;
  }
  .header__navigation ul li {
    display: inline-block;
    margin-left: 40px;
    text-decoration: none;
    font-size: 2rem;
    color: #fff;
  }
}

/*　ロールアップボタンリンクの形状　*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#ADA091;
	border-radius: 5px;
	width: 60px;
	height: 60px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:1.0rem;
	transition:all 0.3s;
}

#page-top a:hover{
	background: #777;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}



/*　アクセスセクション　*/
.section-access {
  font-size: 1.6rem;
}
.section-access__line p {
  padding-top: 30px;
}
.linebtn {
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
  background: #4CC764;
  box-shadow: 0 3px #AAD9B4;
  position: relative;
  display: inline-block;
  top: -2px;
  padding: 10px 30px;
}
.linebtn:hover {
  box-shadow: 0 1px #AAD9B4;
  top: 1px;
}
.section-access__contact {
  padding: 30px;
}
.contactbtn {
  color: #000;
  font-size: 1.6rem;
  text-decoration: none;
  background: #D9C8B1;
  position: relative;
  display: inline-block;
  top: -2px;
  padding: 10px 30px;
}


/*　フッター　*/
.footer {
  height: 300px;
  padding: 30px;
  background-color: #ADA091;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  position: relative;
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer-content-wrapper {
  position: relative;
  display: flex;
  justify-content: space-around;
  padding-bottom: 20px;
}
.footer-content-wrapper__left {
  padding-top: 10px;
  display: inline-block;
}
.footer-content-wrapper__left img {
  height: 10vh;
}
.footer-content-wrapper__right {
  display: flex;
  text-align: left;
}
.footer__site-map {
  display: grid;
  column-gap: 2em;
  grid-template-columns: repeat(2, auto);
  line-height: 50px;
}
.footer small {
  color: #fff;
}
.footer__copyright {
  bottom: 0px;
  left: 0;
  width: 100%;
  text-align: center;
  position: absolute;
}
@media (min-width:850px) {
  .footer {
    height: 200px;
    padding: 20px;
    background-color: #ADA091;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    position: relative;
  }
  .footer-content-wrapper {
    max-width: 1040px;
    height: 100%;
    margin: 0 auto;
    display: flex;
	justify-content: flex-end;
	  align-items: center;
  }
  .footer-content-wrapper__left {
    position: absolute;
    left: 36px;
    height: 100%;
    padding: 20px;
  }
  .footer-content-wrapper__left img {
    height: 15vh;
  }
  .footer-content-wrapper__right {
    display: flex;
	
	align-items: center;
    height: 100%;
  }
  .footer__site-map {
    display: flex;
    line-height: 50px;
  }
}