body {
  font-family: "hina-mincho", "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "Yuji Syuku", "serif";
  background-color: black;
  /* "YuMincho","Yu Mincho","Hiragino Mincho ProN","serif" */
}
.mainblur {
  filter: blur(8px); /*メニュー出た時に、背景ボケるよう、使う場合はJSとHTMLの変更必要*/
}
#g-nav {
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position: fixed;
  z-index: -999;
  opacity: 0; /*はじめは透過0*/
  /*ナビの位置と形状*/
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: rgba(0, 0, 0, 0.8); /*背景を少し透過させる*/
  /*以下動き*/
  transition: all 0.5s;
  padding: 5% 15%; /*メニューの湧く幅をせばめてる*/
  background-image: url("../img/header-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
#g-nav.panelactive {
  opacity: 1; /*ボタン押したときに付与される属性*/
  z-index: 998;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#g-nav-logo {
  width: 100%;
  margin: auto;
}
#g-nav-logo img {
  width: 300px;
  display: block;
  margin: auto;
}
#g-nav-list {
  width: 30%;
}
/*ナビゲーション*/
#g-nav-list ul {
  height: 100%;
  z-index: 998; /*はじめは非表示*/
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
}
#g-nav-list .panelactive ul {}
/*リストのレイアウト設定*/
#g-nav-list li {
  list-style: none;
  height: 25%;
  display: flex;
  align-items: center;
  letter-spacing: 2pt;
}
#g-nav-list li a {
  position: relative;
  width: auto;
  color: #fff;
  font-size: 15pt;
  border-bottom: 1px solid #6D6D6D;
  padding-bottom: 5px;
}
#g-nav-list a::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  width: 100%;
  height: 1.5px;
  background-color: #ffffff;
  content: '';
  transition: transform 0.5s ease;
}
#g-nav-list a:hover::after {
  transform: scaleX(1);
}
#g-nav-hr {
  width: 0px;
  height: auto;
  margin: auto;
}
#g-nav-tel {
  width: 40%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
#g-nav-tel-navi {
  padding-bottom: 20px;
}
#g-nav-tel-navi ul {
  display: flex;
}
#g-nav-tel-navi li {
  margin-right: 20px;
}
#g-nav-tel-navi li a {
  color: #fff;
  font-size: 9pt;
  letter-spacing: 2pt;
}
#g-nav-tel01 {
  padding-bottom: 25px;
  letter-spacing: 2pt;
}
#g-nav-tel h3 {
  font-size: 14pt;
  padding-bottom: 5px;
  letter-spacing: 2pt;
}
#g-nav-tel p {
  font-size: 9pt;
  padding-bottom: 5px;
  letter-spacing: 2pt;
}
#g-nav-tel02 p{
	padding-top:10px;
}
#g-nav-tel a {
  text-decoration: none;
}
#g-nav-tel a:hover {
  color: gray;
  transition: 0.6s;
}
#g-nav-btn {
  width: 100%;
  hegiht: 100%;
  display: flex;
  align-items: center;
}
#g-nav-btnin {
  width: 40%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 2px #e2b846;
  color: #e2b846;
  font-size: 15pt;
  line-height: 1;
  cursor: pointer;
  margin: 0 auto;
}
#g-nav-btnin:hover {
  color: #fff;
  transition: 0.6s;
  background-color: #e2b846;
}
#g-nav-bottom2 {
  width: 100%;
  text-align: center;
  color: white;
  padding-top: 40px;
}
/*MNUEボタンと変更CSS*/
/*適宜調整*/
.openbtn4 {
  position: fixed; /*ボタン内側の基点となるためrelativeを指定*/
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  width: 75px;
  height: 75px;
  right: 0;
  top: 0;
  z-index: 9999; /*ボタンを最前面に*/
}
/*ボタン内側*/
.openbtn4 span {
  display: inline-block;
  transition: all 0.5s; /*アニメーションの設定*/
  position: absolute;
  left: 20px;
  height: 1px;
  border-radius: 0px;
  background: #fff;
  width: 50%;
}
.openbtn4 span:nth-of-type(1) {
  top: 20px;
}
.openbtn4 span:nth-of-type(2) {
  top: 30px;
}
.openbtn4 span:nth-of-type(3) {
  top: 40px;
}
.openbtn4 span:nth-of-type(3)::after {
  content: "Menu"; /*3つ目の要素のafterにMenu表示を指定*/
  position: absolute;
  top: 15px;
  left: 4px;
  color: #fff;
  font-size: 0.6rem;
  text-transform: uppercase;
}
/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
.openbtn4.active span:nth-of-type(1) {
  top: 20px;
  left: 20px;
  transform: translateY(10px) rotate(-45deg);
  width: 50%;
}
.openbtn4.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn4.active span:nth-of-type(3) {
  top: 40px;
  left: 20px;
  transform: translateY(-10px) rotate(45deg);
  width: 50%;
}
.openbtn4.active span:nth-of-type(3)::after {
  content: "Close"; /*3つ目の要素のafterにClose表示を指定*/
  transform: translateY(0) rotate(-45deg);
  top: 15px;
  left: 25px;
}
footer {
  width: 100%;
  z-index: 900;
  display: flex;
  padding: 5% 15%;
  background-image: url("../img/header-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#footer-logo {
  width: 30%;
  display: flex;
  justify-content: center;
  margin: auto 0;
}
#footer-logo img {
	width:100%;
  max-width: 300px;
}
#footer-logo:hover img {
  opacity: 0.5;
  transition: 0.6s;
}
#footer-hr {
  width: 0;
  height: auto;
  margin: auto;
}
#footer-navi-box {
  width: 60%;
}
#footer-navi01 {
  line-height: 30px;
}
#footer-navi01 ul {
  display: flex;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
#footer-navi01 li {
  margin-right: 20px;
}
#footer-navi01 li a {
  position: relative;
  width: auto;
  color: #fff;
  font-size: 15pt;
  border-bottom: 1px solid #6D6D6D;
}
#footer-navi01 a::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  width: 100%;
  height: 1.5px;
  background-color: #ffffff;
  content: '';
  transition: transform 0.5s ease;
}
#footer-navi01 a:hover::after {
  transform: scaleX(1);
}
#footer-navi02 {
  width: 100%;
}
#footer-navi02 ul {
  display: flex;
}
#footer-navi02 li {
  margin-right: 20px;
}
#footer-navi02 li a {
  color: #fff;
  font-size: 9pt;
  letter-spacing: 2pt;
}
#footer-navi02 li a:hover {
  color: gray;
  transition: 0.6s;
}
#footer-bottom {
  font-size: 9pt;
  margin: 5% 0 0 0;
  color: #fff;
}
#footer-left {
  padding-bottom: 10px;
}
#footer-left p {
  font-size: 9pt;
  padding-bottom: 5px;
  letter-spacing: 2pt;
}
#footer-left a:hover {
  color: gray;
  transition: 0.6s;
}
#footer-right h3 {
  font-size: 13pt;
  padding-bottom: 5px;
  letter-spacing: 2pt;
}
#footer-right p {
  font-size: 9pt;
  padding-top: 10px;
  letter-spacing: 2pt;
}
#footer-right a:hover {
  color: gray;
  transition: 0.6s;
}
@media screen and (max-width:768px) {
  #g-nav {
    height: auto;
    padding: 15% 10%;
  }
  #g-nav-logo {}
  #g-nav-logo img {
    width: 200px;
  }
  #g-nav-list {
    width: 100%;
  }
  #g-nav li {
    height: 25%;
    justify-content: center;
  }
  #g-nav li a {
    font-size: 12pt;
  }
  #g-nav-tel {
    width: 100%;
    align-items: center;
  }
  #g-nav-tel-navi {}
  #g-nav-tel-navi ul {
    display: flex;
    justify-content: center;
  }
  #g-nav-tel-navi li {
    margin-right: 10px;
    padding-bottom: 20px;
  }
  #g-nav-tel-navi li a {
    color: #fff;
    font-size: 8pt;
    letter-spacing: 0pt;
  }
  #g-nav-btn {}
  #g-nav-tel h2 {}
  #g-nav-tel h3 {}
  #g-nav-tel p {
    font-size: 8pt;
  }
  /*下からフッターのブレイクポイント768*/
  footer {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 15% 10%;
  }
  #footer-logo {
    width: 100%;
    margin-bottom: 10%;
  }
  #footer-logo img {
    max-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center
  }
  #footer-navi01 ul {
    justify-content: center;
  }
  #footer-navi01 li {
    padding-bottom: 20px;
  }
  #footer-navi01 li a {
    font-size: 12pt;
  }
  #footer-navi02 ul {
    justify-content: center;
  }
  #footer-navi02 li {
    padding-bottom: 20px;
    margin-right: 10px;
  }
  #footer-navi02 li a {
    font-size: 8pt;
    letter-spacing: 0pt;
  }
  #footer-right p {
    font-size: 8pt;
    padding-bottom: 5px;
    letter-spacing: 2pt;
  }
  #footer-navi-box {
    width: 100%;
  }
  #footer-bottom {
    margin: 30px 0 0 0;
  }
  #footer-left h3 {
    font-size: 14pt;
  }
  #footer-left p {
    font-size: 8pt;
  }
}