@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #333; /* RGB */
  font-family: 'Toppan Bunkyu Mincho', "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "メイリオ", sans-serif;
  font-weight: normal;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
section h2 {
  font-size: 2.4rem;
}
section h3 {
  font-size: 2.0rem;
}
a:hover {
  opacity: 0.5;
}
a {
  color: #333;
}
*, *:before, *:after {
  box-sizing: border-box;
}
.none {
  display: none;
}
/* loader */
.loader {
  width: 2.2em;
  height: 2.2em;
  display: block;
  position: relative;
  animation: spinRing 1950ms linear infinite;
}
.loader::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: auto;
  width: auto;
  border: 4.5px solid #f0cc9a;
  border-radius: 50%;
  clip-path: polygon(50% 50%, 50% 0%, 100% 0%, 100% 80%);
  animation: spinRingInner 1950ms cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
}
@keyframes spinRing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spinRingInner {
  0% {
    transform: rotate(-180deg);
  }
  50% {
    transform: rotate(-160deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
/* return to top */
#scroll-top {
  background-color: #ffeed6;
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 15px;
  border-radius: 50%;
}
#scroll-top a {
  text-decoration: none;
  color: #624006;
  font-size: 1.4rem;
}
@media (min-width: 1160px) {
  #scroll-top {
    padding: 20px;
  }
}
/*main*/
.main {
  background-color: rgba(219, 205, 195, 0.2);
}
/*header*/
.header {
  height: 30px;
  background-color: #ffeed6;
  position: relative;
  color: #fd2217;
}
.header__logo {
  width: 15px;
  left: 10px;
  top: 5px;
  position: absolute;
}
.header__navigation {
  display: none;
}
@media (max-width: 480px) {
  .header-button {
    display: none;
  }
  /*ハンバーガーアイコン*/
  #nav-drawer {
    padding: 2px 24px 0 0;
    text-align: right;
    position: relative;
  }
  #nav-open {
    display: inline-block;
    vertical-align: middle;
    width: 23px;
    height: 20px;
  }
  #nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 3px;
    width: 23px;
    background-color: #7F5A29;
    display: block;
    content: "";
  }
  #nav-open span:before {
    bottom: -8px;
  }
  #nav-open span:after {
    bottom: -16px;
  }
  #nav-close {
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
  }
  #nav-content {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 70%;
    height: 100%;
    background-color: #ffeed6;
    text-align: left;
    padding: 15px 0 0 24px;
    transform: translateX(-105%);
    transition: 0.3s ease-in-out;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.20)
  }
  .nav-drawer__title {
    display: block;
    margin-right: 40px;
    text-align: right;
  }
  .nav-drawer__title img {
    width: 30px;
  }
  .nav-drawer__link-top {
    display: block;
  }
  #nav-content ul li {
    margin-top: 36px;
  }
  #nav-content ul li a {
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 600;
    color: #7F5A29;
  }
  #nav-input:checked ~ #nav-close {
    display: block;
  }
  #nav-input:checked ~ #nav-content {
    transform: translateX(0%);
  }
}
@media(min-width:480px) {
  .header {
    margin: 0 auto;
    padding: 20px;
    min-height: 50px;
  }
  .header__logo {
    width: 30px;
    margin: 0 30px;
  }
  .header-button {
    width: 150px;
  }
  .header__navigation {
    max-height: 1040px;
    display: flex;
    text-align: right;
    margin: 0 auto;
    position: absolute;
    right: 50px;
  }
  .header__navigation ul li {
    display: inline-block;
    margin-left: 30px;
  }
  .header__navigation ul li a {
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 600;
    color: #7F5A29;
  }
}
/*footer*/
.footer {
  background-color: #ffeed6;
  padding-top: 50px;
  padding-bottom: 10px;
  text-align: center;
}
.footer ul {
  list-style: none;
}
.footer ul li {
  padding-bottom: 20px;
  color: #7F5A29;
}
.footer a {
  text-decoration: none;
}
.footer small {
  font-size: 1.1rem;
  color: #333;
}
@media(min-width:720px) {
  .footer ul {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 500px;
    margin: 0 auto;
    padding-bottom: 30px;
  }
}