@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;
}
section h2 {
  font-size: 2.4rem;
  letter-spacing: 0.4rem;
  font-weight: 600;
  font-family: "brandon-grotesque", sans-serif;
  font-style: normal;
}
a:hover {
  opacity: 0.5;
}
*, *:before, *:after {
  box-sizing: border-box;
}
/* navigation */
.open-button, .close-button {
  display: none;
}
.hamburger-menu {
  width: 50px;
  height: 50px;
  position: relative;
  border: none;
  background: transparent;
  appearance: none;
  padding: 0;
  cursor: pointer;
}
.hamburger-menu__bar {
  display: inline-block;
  width: 44%;
  height: 2px;
  background: #969fa4;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: .5s;
}
.hamburger-menu__bar:first-child {
  top: 16px;
}
.hamburger-menu__bar:nth-child(2) {
  top: 24px;
}
.hamburger-menu__bar:last-child {
  top: 32px;
}
.hamburger-menu--open .hamburger-menu__bar {
  top: 50%;
}
.hamburger-menu--open .hamburger-menu__bar:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.hamburger-menu--open .hamburger-menu__bar:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
  display: none;
}
.navigation {
  display: none;
  background: linear-gradient(343deg, #eaecdd 0%, #e4f5f8 59%, #ffe1d0 100%);
  position: absolute;
  top: 50px;
  width: 100%;
  z-index: 9999;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.navigation__list {
  text-align: left;
  list-style: none;
  padding: 20px 30px 40px;
  margin: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.navigation__list-item {
  border-bottom: solid 1px #474747;
}
.navigation__list-item:first-child {
  border-top: solid 1px #474747;
}
.navigation__link {
  color: #1e4055;
  font-weight: 700;
  text-decoration: none;
  display: block;
  padding: 15px 0 0;
  transition: .5s;
}
.navigation__link span {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.4rem;
  font-family: "brandon-grotesque", sans-serif;
  font-style: normal;
}
.navigation__link p {
  font-size: 1.4rem;
}
.header-nav-btn {
  display: flex;
  flex-direction: column;
  gap: 15px
}
.header-nav__en-btn {
  display: block;
  width: 220px;
  height: 65px;
  bottom: 20px;
  margin: 0 auto;
  box-shadow: 0 5px 13px rgba(0, 47, 74, 0.16);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  font-size: 1.8rem;
}
.header-nav__en-btn__link {
  position: relative;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  height: 80px;
  background-color: #d9877c;
}
.header-nav__en-btn__text {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.1rem;
  line-height: 0.7rem;
  padding-bottom: 8px;
  position: relative;
  bottom: 5px;
  font-family: "lato", sans-serif;
  font-style: normal;
}
.header-nav__log-btn {
  display: block;
  width: 220px;
  height: 65px;
  bottom: 15px;
  box-shadow: 0 5px 13px rgba(0, 47, 74, 0.16);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  font-size: 1.8rem;
  border: 2px solid #1F4D8F;
  margin: 0 auto;
}
.header-nav__log-btn__link {
  position: relative;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #1F4D8F;
  height: 80px;
  background-color: #fff;
}
.header-nav__log-btn__text {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.1rem;
  line-height: 0.7rem;
  padding-bottom: 8px;
  position: relative;
  bottom: 5px;
  font-family: "lato", sans-serif;
  font-style: normal;
}
@media(min-width:768px) {
  .navigation {
    display: none !important;
  }
}