@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  background-color: #ECE5DB;
  color: #65564F;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-weight: 100;
  font-size: 1.6em;
  line-height: 3rem;
  text-align: center;
  background-image: url("../images/bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -10;
  transition: .7s;
}


.nav_wrapper {
  position: fixed;
  z-index: 5;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.nav_list1 {
  background-color: #ECE5DB;
  padding: 80px 60px;
  border-radius: 250px 250px 0 0;
  border: solid 1px #65564F;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc((100% - 1200px) / 4);
  z-index: 5;
}
.nav_logo1 {
  width: 130px;
  height: auto;
  margin-bottom: 40px;
}
.nav_list1 li {
  margin-bottom: 30px;
  list-style: none;
}
.nav_list1 li a {
  display: inline-block;
  font-family: "Klee";
  text-decoration: none;
  color: #65564F;
  font-size: 2rem;
}
@media(max-width:1200px) {
  .nav_wrapper {
    display: none;
  }
}
.all {
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 5px 0px 10px -5px #65564F, -5px 0px 10px -5px #65564F;
  
}
@media(min-width:600px) {
  .all {
    margin-top: 50px;
    border-radius: 30px 30px 0 0;
  }
  .header {
    border-radius: 30px 30px 0 0;
  }
}
a:hover {
  opacity: 0.5;
}
.none {
  display: none;
}
.header {
  padding: 30px;
  height: 50px;
  position: relative;
  background-color: #ECE5DB;
}
.header-logo {
  width: 90px;
  height: auto;
  position: absolute;
  display: block;
  margin-right: auto;
}
@media(min-width:500px){
  .header{
    height: 60px;
  }
  .header-logo{
    width: 120px;
  }
}
/* ここから下がハンバーガーメニューに関するCSS */
/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}
/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  position: absolute;
  top: 55px;
  right: 50px;
  z-index: 100; /* 重なり順を一番上にする */
  cursor: pointer;
}
/* ハンバーガーメニューのアイコン */
.drawer_open span, .drawer_open span:before, .drawer_open span:after {
  content: '';
  display: block;
  height: 1px;
  width: 20px;
  border-radius: 10px;
  background: #65564F;
  transition: 0.5s;
  position: absolute;
}
/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}
/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}
/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}
/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}
@media(min-width:500px){
  .drawer_open{
    right: 60px;
    top: 60px
  }
  .drawer_open span, .drawer_open span:before, .drawer_open span:after{
    width: 31px;
    height: 2px;
  }
  .drawer_open span:before {
  bottom: 10px;
}
.drawer_open span:after {
  top: 10px;
}
}
/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  bottom: 100%;
  left: 0%; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #ECDDCF;
  transition: .5s;
  text-align: center;
  padding-top: 20px;
}
.nav_logo2 {
  width: 50px;
  height: auto;
  margin-top: 60px;
}
/* メニュー黒ポチを消す */
.nav_list2 {
  list-style: none;
}
.nav_list2 li {
  margin-top: 40px;
}
.nav_item2 a {
  color: #65564F;
  text-decoration: none;
  font-size: 1.8rem;
  font-family: "Klee"
}
/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  bottom: 0; /* メニューを画面に入れる */
}
@media(min-width:500px){
  .nav_logo2 {
  width: 60px;
}
  .nav_item2 a {
  font-size: 2rem;
}
}
.footer {
  background-color: #65564F;
  padding: 50px 0 80px;
}
.footer-logo {
  width: 40px;
  height: auto;
}
.footer__site-map li {
  display: inline-block;
  margin-top: 50px;
  margin-bottom: 70px;
  width: 75px;
}
.footer__site-map li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.2rem;
}
.footer small {
  color: #fff;
  font-size: 1rem;
}
@media(min-width:500px){
  .footer-logo{
    width: 50px;
  }
  .footer__site-map li {
  width: 85px;
}
  .footer__site-map li a{
    font-size: 1.4rem;
  }
  .footer small{
    font-size: 1.2rem;
  }
}