@charset "UTF-8";
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
header .header-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 30px;
  height: 90px;
}
header .header-logo {
  max-width: 120px;
  width: 100%;
}
header .header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 65%;
          flex: 0 0 65%;
  margin-right: 80px;
}
header .header-nav-li {
  text-align: center;
  position: relative;
}
header .header-nav-li p {
  color: #28253d;
  font-size: 11px;
  padding-bottom: 5px;
  letter-spacing: 0.06em;
}
header .header-nav-li h3 {
  color: #28253d;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-family: "Noto Sans JP", sans-serif;
}
header .header-nav-li:not(:last-child):after {
  content: "";
  position: absolute;
  background-color: #28253d;
  width: 1px;
  height: 32px;
  top: 0;
  bottom: 0;
  right: -30px;
  margin: auto;
}
header .header-menu {
  cursor: pointer;
}
header .header-menu-img {
  max-width: 40px;
  height: 40px;
  width: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  top: 0;
  position: relative;
}
header .header-menu-img .bento {
  opacity: 1;
  position: absolute;
}
header .header-menu-img .close {
  opacity: 0;
}
header .header-menu-img.active {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
header .header-menu-img.active .bento {
  opacity: 0;
}
header .header-menu-img.active .close {
  opacity: 1;
}
header .header-menu-text {
  font-family: "Open Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
}
header .header-nav-link {
  position: relative;
}
header .header-nav-link.current::after {
  content: "";
  position: absolute;
  background-color: #88ca1f;
  width: 85px;
  height: 8px;
  top: -25px;
  left: -42px;
  right: 50px;
  margin: auto;
  border-radius: 0 0 50px 50px;
}
header.active {
  background-color: #28253d;
}
header.active .header-nav-li p {
  color: #fff;
}
header.active .header-nav-li h3 {
  color: #fff;
}
header.active .header-nav-li:not(:last-child):after {
  background-color: #fff;
}
header.active .header-menu-text {
  display: none;
}
header.active .header-logo {
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7463%) hue-rotate(16deg) brightness(106%) contrast(91%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7463%) hue-rotate(16deg) brightness(106%) contrast(91%);
}
@media (max-width: 1025px) {
  header .header-nav {
    gap: 30px;
    margin-right: 40px;
  }
  header .header-nav-li {
    text-align: center;
    position: relative;
  }
  header .header-nav-li p {
    font-size: 10px;
  }
  header .header-nav-li h3 {
    font-size: 13px;
  }
  header .header-nav-li:not(:last-child):after {
    top: 0;
    bottom: 0;
    right: -15px;
    margin: auto;
  }
}
@media (max-width: 767px) {
  header {
    border-bottom: 1px solid #28253d;
  }
  header .header-wrap {
    width: 90%;
    margin: 0 auto;
    padding: 0px;
    height: 70px;
  }
  header .header-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 20px;
  }
  header .header-text {
    opacity: 0;
  }
  header .header-menu-img {
    max-width: 32px;
    height: 32px;
    margin: 0 auto;
  }
  header .header-menu-img .bento {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  header .header-menu-text {
    font-size: 8px;
    line-height: 1;
    padding-top: 4px;
  }
  header.active {
    border-bottom: 1px solid #fff;
  }
  header.active .header-text {
    opacity: 1;
  }
  header.active .header-text p {
    color: #fff;
    font-size: 12px;
    border-bottom: 1px solid #fff;
  }
}

nav .nav-fixid {
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #28253d;
}
nav .nav-ul {
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
nav .nav-li {
  color: #fff;
  font-size: 14px;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
}
nav .nav-li:not(:last-child)::after {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 1px;
  height: 15px;
  top: 0;
  bottom: 0;
  right: -20px;
  margin: auto;
}
nav .nav-menu::-webkit-scrollbar {
  display: none;
}
nav .nav-menu {
  overflow-y: scroll;
  -ms-overflow-style: none;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background-color: #28253d;
  padding-top: 120px;
  padding-bottom: 100px;
  height: 100vh;
}
nav .nav-menu .nav-menu-wrap {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
nav .nav-menu .nav-menu-left p {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  padding-bottom: 2px;
}
nav .nav-menu .nav-menu-left p::before {
  content: "";
  background: url(../img/header/home.png) no-repeat;
  background-size: cover;
  display: block;
  width: 14px;
  height: 16px;
}
nav .nav-menu .nav-menu-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 30px;
}
nav .nav-menu .nav-menu-item-img {
  max-width: 234px;
  width: 100%;
  margin-bottom: 20px;
}
nav .nav-menu .nav-menu-item-li {
  color: #fff;
  font-size: 15px;
}
nav .nav-menu .nav-menu-item-li:not(:last-child) {
  margin-bottom: 15px;
}
nav .nav-menu .nav-menu-item-li.bold {
  font-weight: 600;
}
nav .nav-menu .nav-menu-item-li.del {
  font-weight: 600;
}
nav .nav-menu .nav-menu-item-li.del:not(:last-child) {
  margin-bottom: 30px;
}
nav .nav-menu .nav-menu-item-li.gaibu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
nav .nav-menu .nav-menu-item-li.gaibu::after {
  content: "";
  background: url(../img/header/gaibu.png) no-repeat;
  background-size: cover;
  display: block;
  width: 12px;
  height: 10px;
}
nav .nav-menu .nav-menu-item-text {
  color: #fff;
  font-size: 15px;
}
nav .nav-menu .nav-menu-item-tell {
  max-width: 290px;
  width: 100%;
  display: block;
  margin: 15px 0;
}
nav .nav-menu .nav-menu-item-contact {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  max-width: 305px;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 50px;
  text-align: center;
  margin-top: 25px;
}
nav .nav-menu .nav-menu-item-contact a {
  display: block;
  padding: 20px 0;
}
nav .nav-menu .nav-menu-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
}
nav .nav-menu .nav-menu-flex .nav-menu-content {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  gap: 0;
}
nav .nav-menu .nav-menu-flex .nav-menu-item {
  max-width: 234px;
  width: 100%;
}
@media (max-width: 1200px) {
  nav .nav-menu .nav-menu-wrap {
    width: 95%;
  }
  nav .nav-menu .nav-menu-content {
    gap: 15px;
  }
  nav .nav-menu .nav-menu-flex .nav-menu-content {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
@media (max-width: 830px) {
  nav .nav-ul.novelty {
    gap: 35px;
  }
  nav .nav-li.novelty {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  nav .nav-menu {
    padding-top: 70px;
    padding-bottom: 40px;
  }
  nav .nav-menu .nav-menu-list {
    padding-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
  }
  nav .nav-menu .nav-menu-list-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
    display: block;
  }
  nav .nav-menu .nav-menu-list-item p {
    font-size: 15px;
    color: #fff;
  }
  nav .nav-menu .nav-menu-list-img {
    max-width: 170px;
    width: 100%;
    margin-bottom: 10px;
  }
  nav .nav-menu .nav-menu-list-contact {
    max-width: 350px;
    width: 100%;
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 22px 0;
    margin: 20px 0 25px 0;
  }
  nav .nav-menu .nav-menu-list-contact a {
    display: block;
    color: #fff;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    padding-right: 10px;
  }
  nav .nav-menu .nav-menu-list-contact a::after {
    content: "▶";
    font-size: 8px;
    position: absolute;
    top: 5px;
    right: 20px;
  }
  nav .nav-menu .nav-menu-tab-content {
    display: none;
  }
  nav .nav-menu .nav-menu-tab-wrap {
    width: 90%;
    margin: 0 auto;
  }
  nav .nav-menu .nav-menu-tab-title {
    border-top: 1px solid #fff;
    padding: 15px 0;
    position: relative;
  }
  nav .nav-menu .nav-menu-tab-title.stamp {
    border-bottom: 1px solid #fff;
  }
  nav .nav-menu .nav-menu-tab-title p {
    font-size: 10px;
    line-height: 1.9;
    color: #fff;
  }
  nav .nav-menu .nav-menu-tab-title h3 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
  }
  nav .nav-menu .nav-menu-tab-title::after {
    content: "";
    position: absolute;
    background: url(../img/header/tab_close.png) no-repeat;
    background-size: cover;
    width: 6px;
    height: 12px;
    right: 25px;
    top: 0;
    bottom: 0;
    margin: auto;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  nav .nav-menu .nav-menu-tab-title.open.stamp {
    border-bottom: none;
  }
  nav .nav-menu .nav-menu-tab-title.open::after {
    background: url(../img/header/tab_open.png) no-repeat;
    background-size: cover;
    width: 22px;
    height: 22px;
    right: 20px;
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  nav .nav-menu .nav-menu-tab-title.current {
    position: relative;
  }
  nav .nav-menu .nav-menu-tab-title.current::before {
    content: "";
    position: absolute;
    background-color: #88ca1f;
    width: 4px;
    height: 38px;
    left: 0;
    border-radius: 0px 50px 50px 0;
  }
  nav .nav-menu .nav-menu-tab-content {
    padding: 20px 0;
    border-top: 1px solid #fff;
  }
  nav .nav-menu .nav-menu-tab-ul {
    padding: 20px 0;
  }
  nav .nav-menu .nav-menu-tab-ul.novelty {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  nav .nav-menu .nav-menu-item-li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  nav .nav-menu .nav-menu-item-content {
    padding-top: 25px;
  }
  nav .nav-menu .nav-menu-item-li.del {
    margin-bottom: 25px;
  }
  nav .nav-menu .nav-menu-item-li.use {
    font-size: 14px;
  }
  nav .nav-menu .nav-menu-tell {
    margin-top: 50px;
  }
  nav .nav-menu .nav-menu-item-tell {
    margin: 10px 0;
  }
  nav .nav-menu .nav-menu-item-text {
    font-size: 14px;
  }
  nav .nav-menu .nav-menu-item-contact {
    margin-top: 15px;
    max-width: 345px;
  }
}