@charset "utf-8";
/* CSS Document */
html, body {
  min-width: 750px;
  max-width: 2000px;
  width: 100%;
  height: 100%;
  text-align: center;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 33px;
  color: #404040;
}
h1 {
  display: none;
}
h2 {
  font-size: 50px;
  margin-bottom: 80px;
}
h3 {
  font-size: 30px;
  text-align: left;
  margin: 0px 50px 20px;
}
li, p, dt, dd {
  font-size: 25px;
}
@media screen and (min-width:751px) {
  h3 {
    font-size: 40px;
    text-align: left;
    margin: 0px 50px 20px;
  }
  li, p, dt, dd {
    font-size: 30px;
  }
}
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: #ffffff;
  /*動き*/
  transition: all 0.6s;
}
/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}
/*ナビゲーションの縦スクロール*/
#g-nav.panelactive {
  /*ナビの数が増えた場合縦スクロール*/
  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: left;
}
#g-nav li::before {
  content: "-";
  width: 20px;
  /*  margin-top: 10px;*/
  padding-top: 10px;
}
#g-nav li a {
  color: #404040;
  text-decoration: none;
  padding: 10px;
  display: block;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.hum-reserve {
  box-sizing: border-box;
  position: fixed;
  bottom: 0;
  font-size: 50px;
  width: 100%;
  height: 175px;
  background: #ffe74d;
}
.hum-reserve a {
  text-decoration: none;
  display: block;
  margin-top: 20px;
  padding-bottom: 20px;
  ;
  color: #404040;
  cursor: pointer;
  line-height: 1.3;
}
/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 25px;
  right: -20px;
  cursor: pointer;
  width: 100px;
  height: 30px;
}
/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #808080;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 30px;
}
.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) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
/*--/btn--*/
.reserve-btn {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 100;
}
.reserve-btn a {
  display: block;
  color: #404040;
  background: #ffe74d;
  text-decoration: none;
  font-size: 50px;
  cursor: pointer;
  box-sizing: border-box;
}
/*--/reserve-btn--*/
@media screen and (min-width:751px) {
  .reserve-btn {
    width: 20%;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 100;
  }
  .reserve-btn span {
    display: none;
  }
  .reserve-btn a {
    display: block;
    padding-top: 30px;
    padding-bottom: 30px;
    color: #404040;
    background: #ffe74d;
    text-decoration: none;
    font-size: 40px;
    cursor: pointer;
    box-sizing: border-box;
  }
}
/*--/m-btn--*/
.guide-hero {
  width: 100%;
  height: auto;
}
.guide-hero img {
  width: 100%;
}
.breadcrumbs {
  text-align: left;
  margin-left: 10px;
  margin-bottom: 80px;
}
.List-Item {
  display: inline;
  font-size: 14px;
}
.List-Item::after {
  padding: 0 10px;
}
.List02 .List-Item::after {
  content: '/';
}
.List-Item:last-child::after {
  content: '';
}
.List-Item-Link {
  display: inline-block;
  text-decoration: none;
  color: #404040;
}
/*--/Breadcrumbs--*/
.guide-read {
  padding-bottom: 80px;
}
.read {
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
  ;
  display: inline-block;
  text-align: left;
  line-height: 1.5;
  font-size: 20px;
  margin-bottom: 40px;
}
.read-img {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.read-img p {
  width: 33%;
  height: auto;
  margin-left: 20px;
  margin-right: 20px;
}
.read-img p:first-child {
  margin-right: 20px;
}
.read-img p:last-child {
  margin-left: 20px;
}
.read-img img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}
/*--/guide-read--*/
@media screen and (min-width:751px) {
  .read {
    font-size: 25px;
  }
}
.border {
  position: relative;
}
.border::before {
  content: "";
  display: block;
  margin: auto;
  width: 95%;
  height: 3px;
  background-color: #707070;
  position: absolute;
  left: 0px;
  right: 0px;
}
/*--/border--*/



