@charset "UTF-8";
/*
レイアウトの違いに関わらず全ページで読み込まれるCSS
（footer内で呼び出しています/headerは各ページ違うため）
*/
.nav {
  position: fixed;
  top: 15px;
  left: auto;
  z-index: 2000;
  width: 310px;
  height: 730px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
  box-shadow: 0px 43.123px 86.246px -20.699px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 766px) {
  .nav {
    right: 0;
    max-height: calc(100vh - 15px) !important;
  }
}
@media screen and (min-width: 767px) {
  .nav {
    top: 70px;
    max-height: calc(100vh - 130px);
  }
}
.nav.-visible {
  visibility: visible !important;
  opacity: 1;
}
.nav .nav-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
}
.nav .nav-close {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1140px;
  height: 40px;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .nav .nav-close {
    height: 40px;
  }
}
.nav .nav-close-button {
  position: absolute;
  right: 10px;
  width: 22px;
  height: 20px;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: none;
  appearance: none;
}
.nav .nav-close-button__line {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 2px;
  margin-bottom: 7px;
  background: #333;
  border-radius: 30px;
  transition: all 0.3s;
}
.nav .nav-close-button__line:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.nav .nav-close-button__line:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.nav .nav-content {
  overflow: auto;
  height: calc(100vh - 55px);
}
@media screen and (min-width: 767px) {
  .nav .nav-content {
    height: calc(100vh - 210px);
  }
}
.nav .nav-list {
  margin: 0;
}
.nav .nav-main .nav-group {
  border-top: 1px solid #FFE2D6;
}
.nav .nav-main .nav-item:not(:first-of-type) {
  border-top: 1px solid #FFE2D6;
}
.nav .nav-main .nav-item > a, .nav .nav-main .nav-item .nav-link-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 47px;
  padding-inline: 25px;
  font-size: 14px;
}
@media screen and (min-width: 767px) {
  .nav .nav-main .nav-item > a:hover, .nav .nav-main .nav-item .nav-link-trigger:hover {
    background-color: #FDF5EF;
  }
}
.nav .nav-main .nav-item > a span, .nav .nav-main .nav-item .nav-link-trigger span {
  margin-right: auto;
}
.nav .nav-main .nav-item .nav-link-trigger {
  border: 0;
  outline: 0;
  background: transparent;
}
.nav .nav-main .nav-item .nav-link-trigger svg:nth-of-type(2) {
  transform: rotate(90deg);
}
.nav .nav-main .nav-item.has-child.is-open .nav-link-trigger svg:nth-of-type(2) {
  transform: rotate(-90deg);
}
.nav .nav-category-title {
  display: flex;
  align-items: center;
  font-weight: bold;
  background: #FDF5EF;
  color: #6A6A6A;
  height: 43px;
  font-size: 12px;
  padding-inline: 25px;
  margin: 0;
}
.nav .sub-menu {
  background: #fdf5ef;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
.nav .sub-menu li {
  border-top: 1px solid #FFE2D6;
}
.nav .sub-menu li > a {
  display: flex;
  align-items: center;
  height: 45px;
  padding-inline: 43px;
  gap: 10px;
  font-size: 13px;
}
.nav .nav-footer {
  padding-top: 12px;
  border-top: 2px solid #FFE2D6;
}
.nav .nav-footer .nav-item a {
  display: flex;
  align-items: center;
  color: #6A6A6A;
  height: 40px;
  font-size: 13px;
  padding-inline: 25px;
  gap: 12px;
}
.nav .nav-line {
  display: block;
  width: 260px;
  margin-block: 8px;
  margin-inline: auto;
}

.-fadeOut .nav-inner {
  opacity: 0;
}

.home-header {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  box-sizing: border-box;
  height: 82px;
  padding: 0 30px;
}
@media screen and (min-width: 767px) {
  .home-header {
    left: 50%;
    transform: translateX(-50%);
    height: 85px;
  }
}
.home-header .header-toogle {
  position: absolute;
}
@media screen and (min-width: 1400px) {
  .home-header .header-toogle {
    top: 25px;
    left: calc(50% + 652px);
  }
}
.home-header .header-toogle__line {
  background-color: #333;
}

@media screen and (min-width: 767px) {
  body#pagetop .nav {
    top: 20px;
  }
}
