@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #5F5757;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-weight: 200;
  font-size: 1.6em;
  line-height: 2.4rem;
}
section h2 {
  font-size: 2.4rem;
}
a:hover {
  opacity: 0.5;
}
*, *:before, *:after {
  box-sizing: border-box;
}
.overflow {
  overflow: hidden
}
.header {
  height: 60px;
  width: 100%;
  position: relative;
}
.header h1 {
  text-align: left;
  height: 100%;
  padding: 20px 0 0 20px;
}
.header h1 img {
  height: 100%;
}
.pc-menu {
  display: none;
}
#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 #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background-size: cover;
}
#g-nav-list {
  position: relative;
}
#g-nav-list div {
  position: absolute;
  top: -150px;
  height: 60%;
  opacity: 0.7;
}
#g-nav-list div img {
  width: 100%;
  object-fit: contain;
}
/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
  width: 100px;
}
#g-nav li a {
  text-decoration: none;
  padding: 10px 10px 0px;
  margin-bottom: 20px;
  border-bottom: solid 1px #B19F82;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}
#g-nav li img {
  width: 100%;
}
/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 60px;
  height: 50px;
}
/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #B19F82;
  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%;
}
@media(min-width:1160px) {
  .pc-menu {
    display: block;
    position: fixed;
    top: 50px;
    right: 0;
  }
  .pc-menu ul li {
    height: 40px;
    margin-bottom: 10px;
  }
  .pc-menu ul li img {
    height: 100%;
  }
  .openbtn {
    display: none;
  }
  /*.openbtn {
    top: 30px;
    right: 30px;
    width: 80px;
  }
  .openbtn span:nth-of-type(2) {
    top: 25px;
  }
  .openbtn span:nth-of-type(3) {
    top: 35px;
  }*/
}
.top-design {
  position: absolute;
  top: 30px;
  right: -30px;
  width: 60%;
  z-index: -1;
}
@media(min-width:960px) {
  .top-design {
    top: 0px;
    right: -100px;
    width: 45%;
  }
  .header {
    height: 100px;
  }
  .header h1 {
    padding: 30px 0 0 50px;
  }
}
.content-wrapper {
  margin: 100px 30px;
}
.content-wrapper h2 img {
  height: 60px;
}
/*トップに戻るボタン*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #B19F82;
  width: 70px;
  height: 50px;
  color: #fff;
  font-family: "Times New Roman", Times, "serif";
  text-align: center;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s;
  font-weight: 400;
}
#page-top a:hover {
  opacity: 0.5;
}
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  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);
  }
}
.footer {
  text-align: center;
  margin-bottom: 20px;
}
.footer small {
  font-size: 1.2rem;
}
a {
  text-decoration: none;
  color: #5F5757
}
ul li {
  list-style: none;
}
@media(min-width:1160px) {
  .content-wrapper h2 {
    height: 100px;
  }
  .content-wrapper h2 img {
    height: 100%;
  }
}