@charset "utf-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333; /* RGB */
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
footer address {
  font-style: normal;
}
section h2 {
  font-size: 2.4rem;
}
a:hover {
  opacity: 0.5;
}
*, *:before, *:after {
  box-sizing: border-box;
}
/*header*/
.header {
  width: 100%;
  height: 100px;
  background-color: #362d2d;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 25px;
  box-sizing: border-box;
}
.header h1 a {
  font-size: 24px;
  color: #fff;
}
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.entry {
  font-size: 20px;
  color: #f3f3f3;
  text-decoration: underline
}
.header a {
  text-decoration: none;
  color: #f3f3f3;
}
.nav-menu {
  display: block;
  color: #f3f3f3;
  text-align: right;
}
.nav-menu ul li {
  display: inline-block;
  font-size: 16px;
  margin-left: 24px;
}
#menu-btn-check {
  display: none;
}
/*footer*/
.otoiawasesaki {
  background-color: #f3f3f3;
  padding: 8vw;
}
.otoiawasesaki h3 {
  font-size: 3vw;
  margin-bottom: 2.0vw;
}
.otoiawasesaki address {
  font-size: 2vw;
  line-height: normal;
  margin-bottom: 6vw;
}
.otoiawasesaki p {
  font-size: 2vw;
  line-height: normal;
}
.sns-icon img {
  width: 6vw;
  margin: 3vw;
}
.footer-logo {
  width: 100%;
  color: #f3f3f3;
  background-color: #362d2d;
  padding: 8vw;
}
.footer-logo img {
  width: 16vw;
}
.logo {
  margin: 8vw;
  font-size: 3vw;
}
.footer-logo small {
  font-size: 2vw;
  line-height: normal;
}
.footer-logo {
  position: relative;
}
#page-top {
  position: absolute;
  right: 5vw;
  bottom: 10vw;
  height: 10vw;
  text-decoration: none;
  font-weight: bold;
  transform: rotate(90deg);
  font-size: 90%;
  line-height: 1.5rem;
  color: #f3f3f3;
  padding: 0 0 0 35px;
  border-top: solid 1px;
}
#page-top::before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0px;
  width: 15px;
  border-top: solid 1px;
  transform: rotate(35deg);
  transform-origin: left top;
}
html {
  scroll-behavior: smooth;
}
@media(max-width:960px) {
  /*header*/
  .header {
    height: 60px;
    padding: 15px 10px;
  }
  .header h1, .entry {
    z-index: 9999;
  }
  .header h1 a, .entry a {
    font-size: 16px;
  }
  .nav-menu {
    display: none;
  }
  .hum-menu {
    position: fixed;
    right: 5px;
    display: flex;
    width: 40px;
    justify-content: center;
    align-items: center;
    z-index: 99;
    background-color: #362d2d;
  }
  .hum-menu span, .hum-menu span:before, .hum-menu span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #fff;
    position: absolute;
  }
  .hum-menu span:before {
    bottom: 8px;
  }
  .hum-menu span:after {
    top: 8px;
  }
  #menu-btn-check:checked ~ .hum-menu span {
    background-color: rgba(255, 255, 255, 0);
  }
  #menu-btn-check:checked ~ .hum-menu span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  #menu-btn-check:checked ~ .hum-menu span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  #menu-btn-check:checked ~ .menu-content {
    left: 0;
  }
  #nav-content {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 80%;
    height: 80%;
    background-color: #362d2d;
    opacity: 0.9;
    transform: translate(-110%);
    transition: 0.3s ease-in-out;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.50);
    padding: 40px 10px;
  }
  #nav-content ul li a {
    color: #f3f3f3;
    font-size: 18px;
  }
  #nav-content ul li {
    display: block;
    margin-top: 6vw;
  }
  #menu-btn-check:checked ~ #nav-content {
    transform: translateX(0%);
  }
  .otoiawasesaki h3 {
    font-size: 5vw;
  }
  .otoiawasesaki address {
    font-size: 4vw;
  }
  .otoiawasesaki p {
    font-size: 5vw;
  }
  .sns-icon img {
    width: 8vw;
  }
  .footer-logo img {
    width: 25vw;
  }
  .logo {
    font-size: 4vw;
  }
  .footer-logo small {
    font-size: 3vw;
  }
}