@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #4c4948; /* （文字の色）RGB */
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 1.4em;
  line-height: 2.2rem;
  text-align: left;
}
h1 {
  font-size: 3.0rem;
  line-height: 3.8rem;
}
section h2 {
  font-size: 2.2rem;
}
section h3 {
  font-size: 1.4rem;
  font-weight: 400;
}
@media(min-width:767px) {
  body {
    font-size: 1.8rem;
    line-height: 2.7rem;
  }
  h1 {
    font-size: 4.6rem;
    line-height: 5.5rem;
  }
  section h2 {
    font-size: 3.0rem;
  }
  section h3 {
    font-size: 1.8rem;
  }
}
a:hover {
  opacity: 0.5; /*aタグの上にマウスを乗せた時に、不透明どが0.5*/
}
.none {
  display: none;
}
.pc-hide {
  display: none;
}
.sp-hide {
  display: block;
}
@media(max-width:767px) {
  .sp-hide {
    display: none;
  }
  .pc-hide {
    display: block;
  }
}
/*全ての要素、全ての要素の前、後（この2つは擬似要素）*/
*, *:before, *:after {
  box-sizing: border-box; /*要素+パディング+ボーダーの太さでwidthの幅となる。これを設定しておくとレイアウトが崩れにくい*/
}
/*header*/
.header {
  height: 50px;
}
.header_sign {
  height: 21px;
  width: auto;
  margin: 15px 0 0 10px;
}
@media(min-width:767px) {
  .header {
    height: 165px;
  }
  .header_sign {
    height: 72px;
    width: auto;
    margin: 46px 0 0 10px;
  }
}
.main {
  margin: 0 7%;
}
/*ボタンに関する挙動*/
/*ナビゲーション*/
#g-nav {
  position: fixed;
  z-index: -1;
  opacity: 0; /*はじめは透過0*/
  /*ナビの位置と形状*/
  top: 0;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: #cce7de;
  /*動き*/
  transition: all 0.3s;
}
/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
  opacity: 1;
  z-index: 999;
}
/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
/*ナビゲーション*/
#g-nav ul {
  display: none;
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#g-nav.panelactive ul {
  display: block;
}
/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
}
#g-nav li a {
  color: #4c4948;
  text-decoration: none;
  padding: 10px;
  display: block;
  letter-spacing: 0.1em;
  font-weight: bold;
}
/*ボタン*/
.openbtn {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 10px;
  right: 2px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  margin-right: 5px;
}
/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 3px;
  height: 1px;
  border-radius: 2px;
  background-color: #666;
  font-size: 1.0rem;
  width: 25px;
}
.openbtn span:nth-of-type(1) {
  top: 5px;
}
.openbtn span:nth-of-type(2) {
  top: 11px;
}
.openbtn span:nth-of-type(3) {
  top: 17px;
}
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 5px;
  transform: translateY(6px) rotate(-45deg);
  width: 80%;
}
.openbtn.active span:nth-of-type(2) {
  top: 30px;
  left: 5px;
  transform: translateY(-6px) rotate(45deg);
}
.openbtn.active span:nth-of-type(3) {
  opacity: 0;
}
@media(min-width:767px) {
  .openbtn {
    position: fixed;
    top: 30px;
    right: 5px;
    width: 50px;
    height: 50px;
    margin-right: 5px;
  }
  /*×に変化*/
  .openbtn span {
    left: 14px;
    height: 2px;
  }
  .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) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  .openbtn.active span:nth-of-type(3) {
    opacity: 0;
  }
}
/*ボタンに関する挙動おわり*/
/*footer*/
.footer {
  background-color: #cce7de;
  padding: 4% 5%;
}
.footer__sign {
  width: 60%;
  margin: 0 auto;
  padding: 0 20px 10px;
}
.footer__sign img {
  width: 100%;
}
.footer a {
  color: #4c4948;
  text-decoration: none;
}
.site-map__links li {
  display: inline;
  font-size: 1.4rem;
  margin: 5px 10px;
}
nav ul {
  text-align: center;
}
.footer__copyright {
  font-size: 0.9rem;
  color: #4c4948;
  text-align: center;
}
@media(min-width:767px) {
  .footer {
    padding-top: 60px;
	  padding-bottom: 30px;
  }
  .footer__wrapper {
    display: flex;
  }
  .footer__sign {
    width: 30%;
  }
  .site-map {
    flex-grow: 2;
  }
  .site-map__links li {
    font-size: 2.2rem;
  }
  .footer__copyright {
    font-size: 1.4rem;
  }
}