@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #000; /* RGB */
  background-color: #f0f2ec;
  font-family: fot-tsukuaoldmin-pr6n, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
section h2 {
  font-size: 2.4rem;
}
a:hover {
  opacity: 0.5;
}
.none {
  display: none;
}
/* drawer-menu */
/*========= ぼかしのためのCSS ===============*/
.mainblur {
  filter: blur(8px);
}
/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position: fixed;
  z-index: -1;
  opacity: 0; /*はじめは透過0*/
  /*ナビの位置と形状*/
  top: 0;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: rgba(127, 127, 127, 0.8); /*背景を少し透過させる*/
  /*動き*/
  transition: all 2.0s;
}
/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
  opacity: 1;
  z-index: 999;
}
/*ナビゲーション*/
#g-nav ul {
  display: none; /*はじめは非表示*/
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 60px;
  right: 24px;
  margin-top: 15px;
}
#g-nav.panelactive ul {
  display: block;
}
/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: right;
}
#g-nav li a {
  color: #EEEEEE;
  text-decoration: none;
  padding: 13px 0;
  display: block;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
}
/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 999; /*ボタンを最前面に*/
  top: 8px;
  right: 24px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  height: 1px;
  right: 0;
  background-color: #000000;
  width: 50%;
}
.openbtn1 span:nth-of-type(1) {
  top: 15px;
}
.openbtn1 span:nth-of-type(2) {
  top: 23px;
}
.openbtn1 span:nth-of-type(3) {
  top: 31px;
}
.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 35px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 35px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
/* drawer-menu for PC */
@media (min-width: 960px) {
  /*========= ぼかしのためのCSS ===============*/
  .mainblur {
    filter: blur(8px);
  }
  /*========= ナビゲーションのためのCSS ===============*/
  #g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    opacity: 0; /*はじめは透過0*/
    /*ナビの位置と形状*/
    top: 0;
    width: 100%;
    height: 100vh; /*ナビの高さ*/
    background: rgba(127, 127, 127, 0.8); /*背景を少し透過させる*/
    /*動き*/
    transition: all 2.0s;
  }
  /*アクティブクラスがついたら透過なしにして最前面へ*/
  #g-nav.panelactive {
    opacity: 1;
    z-index: 999;
  }
  /*ナビゲーション*/
  #g-nav ul {
    display: none; /*はじめは非表示*/
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 60px;
    right: 170px;
    margin-top: 40px;
  }
  #g-nav.panelactive ul {
    display: block;
  }
  /*リストのレイアウト設定*/
  #g-nav li {
    list-style: none;
    text-align: right;
  }
  #g-nav li a {
    color: #EEEEEE;
    text-decoration: none;
    padding: 25px 0;
    display: block;
    font-weight: 600;
    font-size: 2.0rem;
    letter-spacing: 0.2em;
  }
  /*========= ボタンのためのCSS ===============*/
  .openbtn1 {
    position: fixed;
    z-index: 999; /*ボタンを最前面に*/
    top: 15px;
    right: 150px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  /*×に変化*/
  .openbtn1 span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    height: 1px;
    right: 0;
    background-color: #000000;
    width: 50%;
  }
  .openbtn1 span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn1 span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn1 span:nth-of-type(3) {
    top: 31px;
  }
  .openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 30px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn1.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn1.active span:nth-of-type(3) {
    top: 30px;
    left: 30px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
}
/* return to top */
#scroll-top {
  background-color: #BCBCBC;
  opacity: 0.4;
  bottom: 10px;
  padding: 5px 10px;
  border-radius: 5px;
  position: fixed;
  right: 35px;
}
#scroll-top a {
  text-decoration: none;
  color: #000;
}
@media (min-width: 960px) {
  #scroll-top {
    background-color: #BCBCBC;
    opacity: 0.4;
    bottom: 20px;
    ;
    padding: 5px 10px;
    border-radius: 5px;
    position: fixed;
    right: 170px;
  }
  #scroll-top a {
    text-decoration: none;
    color: #000;
  }
}
/* header */
.header {
  padding: 0 24px;
  height: 50px;
  margin-bottom: 70px;
}
.header img {
  position: absolute;
  height: 40px;
  width: auto;
  top: 7px;
  left: 24px;
}
.header__site-map {
  display: none;
}
@media (min-width: 960px) {
  .header {
    padding: 0 100px;
    height: 50px;
    margin-bottom: 150px;
  }
  .header img {
    position: absolute;
    height: 55px;
    width: auto;
    top: 10px;
    left: 150px;
  }
  .header__site-map {
    display: none;
  }
}
/* footer */
.footer {
  padding: 0 24px;
  border-top: ridge 1px;
  height: 150px;
}
.footer__site-map {
  margin-bottom: 30px;
}
.footer a {
  text-decoration: none;
  color: #000;
}
.footer a:hover {
  color: #494949;
}
.footer p {
  margin: 20px 0 0 auto;
  writing-mode: vertical-lr;
  text-align: start;
  line-height: 35px;
  letter-spacing: 2px;
  font-size: 1.3rem;
  font-weight: lighter;
}
.footer small a {
  font-size: 1.0rem;
  display: flex;
  text-align: left;
  writing-mode: vertical-lr;
  padding-bottom: 10px;
}
@media (min-width: 960px) {
  .footer {
    padding: 0 100px;
    border-top: ridge 1px;
    height: 200px;
  }
  .footer__site-map {
    margin-bottom: 100px;
  }
  .footer a {
    text-decoration: none;
    color: #000;
  }
  .footer a:hover {
    color: #494949;
  }
  .footer p {
    margin: 50px 50px 0 auto;
    writing-mode: vertical-lr;
    text-align: start;
    line-height: 60px;
    letter-spacing: 3px;
    font-size: 1.5rem;
  }
  .footer small a {
    font-size: 1.2rem;
    display: flex;
    text-align: left;
    writing-mode: vertical-lr;
    padding: 0 0 20px 50px;
  }
}