@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333; /* RGB */
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif, sirenia, sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.2rem;
  text-align: center;
}
section h2 {
  font-size: 2.4rem;
}
.link_hover:hover {
  opacity: 0.5;
}
*, *:before, *:after {
  box-sizing: border-box;
}
.none {
  display: none;
}
/*header*/
.header {
  height: 50px;
  background-color: #dbcfc3;
  position: relative;
  color: #543807;
}
.header h1 img {
  position: absolute;
  left: 20px;
  top: 15px;
  width: 35px;
}
.header__navigation {
  display: none;
}
.open-button, .close-button {
  display: none;
}
@media(max-width:1160px) {
  .open-button {
    display: block;
    position: absolute;
    right: 15px;
    top: 15px;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
  .open-button span, .open-button span:before, .open-button span:after {
    position: absolute;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #543807;
    display: block;
    content: "";
  }
  .open-button span:before {
    bottom: -8px;
  }
  .open-button span:after {
    bottom: -16px;
  }
  .close-button {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    color: #543807;
    font-size: 20px;
    padding: 20px;
  }
  .header nav {
    /*一旦消しておく*/
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #feefe6;
    width: 70%;
    height: 100%;
    padding-top: 67px;
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.4);
  }
  .header nav ul li {
    border-bottom: solid 1px #fff;
    padding: 20px 0;
  }
  .header nav ul li:first-child {
    border-top: solid 1px #fff;
  }
  .header nav ul li a {
    font-weight: 600;
    line-height: 2.0;
    vertical-align: middle;
    text-decoration: none;
    color: #543807;
  }
  .link link-hover {
    border-bottom: solid 1px #543807;
  }
  .dropDown {
    display: block;
  }
  .dropDown__item:last-child {
    border: none;
  }
  .header p {
    margin-top: 20px;
    padding-top: 20px;
  }
}
@media(min-width:1160px) {
  .header {
    height: 90px;
  }
  .header-content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
  }
  .header h1 img {
    width: 70px;
    position: absolute;
    top: 20px;
  }
  .header nav {
    display: block;
    text-align: right;
  }
  .header-list {
    display: flex;
    justify-content: flex-end;
  }
  .header nav li a {
    display: block;
    padding: 26px 30px 0;
    color: #543807;
    text-decoration: none;
    font-size: 2.2rem;
    height: 90px;
  }
  .header summary { /*manuのdropdown*/
    padding: 26px 30px 0;
    font-size: 2.2rem;
  }
  .header-dropdown {
    display: block;
    position: absolute;
    margin-top: 20px;
    padding: 0 10px;
    text-align: left;
    background-color: #dbcfc3;
    z-index: 10;
  }
}
/*footer*/
.footer {
  background-color: rgba(224, 201, 188, 0.7);
  width: 100%;
  min-height: 230px;
  padding: 30px 0;
  position: relative;
}
.footer a {
  color: #543807;
  text-decoration: none;
}
.site-map {
  display: flex;
  text-align: left;
  max-width: 375px;
  margin: 0 auto;
}
.site-map ul {
  margin: 0 auto;
}
.site-map ul li a {
  line-height: 25px;
}
.footer-rogo img {
  width: 150px;
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 10px;
}
.footer__copyright {
  position: absolute;
  bottom: 10px;
  left: 0px;
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
}
@media (min-width: 1160px) {
  .footer {
    padding-top: 35px;
  }
  .footer-content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
  }
  .site-map {
    justify-content: center;
    max-width: 1140px;
  }
  .site-map ul {
    display: flex;
    margin: 0;
  }
  .site-map ul li {
    margin-left: 30px;
  }
}
/* return to top */
#scroll-top {
  background-color: rgba(211, 227, 214, 0.7);
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 15px;
  border-radius: 50px 0px;
}
#scroll-top a {
  text-decoration: none;
  color: #543807;
  font-size: 1.4rem;
}
@media (min-width: 1160px) {
  #scroll-top {
    padding: 20px;
  }
}

