body {
  font-family: 'DotGothic16', sans-serif;
  margin: 0;
  padding: 0;
}
html, body {
  height:100%;
}
#hamburger .btn-gNav{
  position: fixed;
  top: 15px;
  right: 30px;
  width: 10%;
  height: 30px;
  z-index: 9;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  color: black;
}
#hamburger .btn-gNav span{
  position: absolute;
  width: 100%;
  height: 3px;
  background: black;
  border-radius: 10px;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}
#hamburger .btn-gNav span:nth-child(1) {
  top:0;
}
#hamburger .btn-gNav span:nth-child(2) {
  top:15px;
}
#hamburger .btn-gNav span:nth-child(3) {
  top:30px;
}
#hamburger .btn-gNav.open span:nth-child(1){
  background: #fff;
  top: 15px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}
#hamburger .btn-gNav.open span:nth-child(2),#hamburger .btn-gNav.open span:nth-child(3){
  top: 15px;
  background :#fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}
#gNav{
  font-family: "Avenir Next";

  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: rgb(70 129 96 / 95%);
  font-size: 2rem;
  box-sizing: border-box;
  z-index: 3;
  padding-top: 86px;
  transition: all 0.4s;
  -webkit-transition: -webkit-transform all 0.4s;
}
#gNav.open{
  right: 0px;
}
#gNav .gNav-menu{
  font-size: 15px;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-left: 0;
}
#gNav .gNav-menu li{
  display: block;
  padding: 20px 30px;
  border-bottom: 1px solid #eff1f4;
  margin: 0 30px;
}
#gNav .gNav-menu li a{
  display: block;
  padding: 0px 5px;
  color: #fff;
  text-decoration: none;
}

@media screen and (min-width:768px){
  .btn-gNav{
    display: none;
  }
  #gNav{
    position: fixed;
    top: 0;
    right: 0;
    height: 70px;
    width: 100%;
    font-size: 1rem;
    display: block;
    padding-top: 0;
  }
  #gNav .gNav-menu{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 10%;
    position: fixed;
    top: 0;
    right: 0;
    padding-left: 50px;
  }
  #gNav .gNav-menu li{
    display: block;
    padding: 7px 30px 0 30px;
    border-bottom: none;
  }
  #gNav .gNav-menu li a{
    display: block;
    padding: 0 6px;
    color: #fff;
    text-decoration: none;
  }
}
.title{
  padding-top: 60px;
  padding-bottom: 40px;
}
.title h1{
  text-align: center;
}
.title p{
  text-align: center;
}
@media screen and (min-width: 768px){ /*PC*/
  .title{
    padding-top: 90px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width:768px) { /*スマホ*/
  .not_phone{
      display:none;
  }}

.title a{
  color: red;
  text-decoration: underline;
  font-weight: bolder;
}


/*=================================
ギャラリーのためのcss
===================================*/
.gallery{
  columns: 4;/*段組みの数*/
  padding:0 70px;/*ギャラリー左右に余白をつける*/
  margin:0;
}
.gallery li {
  margin-bottom: 5px;/*各画像下に余白をつける*/
  list-style:none;
}
/*ギャラリー内のイメージは横幅100%にする*/
.gallery img{
	width: 100%;
	height:auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/}
/*　横幅900px以下の段組み設定　*/
@media only screen and (max-width: 900px) {
	.gallery{
	columns:3;
  padding:0 20px;
	}
}
@media only screen and (max-width: 768px) {
	.gallery{
	columns: 2;
  padding:0 15px;
	}
}
h1{
  font-weight: 600;
  font-family: 'DotGothic16', sans-serif;
}
p{
  font-family: 'DotGothic16', sans-serif;
}




.footerFixed {
  position: relative;
  padding-bottom: 40px;
  box-sizing: border-box;
}
footer{
  position:absolute;
  bottom: 0;
  right: 0;
  left: 0;
}
footer p {
  color: black;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
}
@media screen and (min-width: 768px){ /*PC*/
  footer p {
    font-size: 1rem;
  }
  .footerFixed header{
    padding-left: 200px;
    padding-bottom: 10px;
    text-decoration: underline;
  }
  .footerFixed header a:hover{
    color: #D93223;
    opacity: 1;
  }
}
