@charset "UTF-8";
/* arguments inittial */
/* font style */
/* site style */
/* [ opacity ]
-------------------------------------------------*/
/* [ display style ]
-------------------------------------------------*/
/* [ background-image ]
-------------------------------------------------*/
/* [ writing-mode ]
-------------------------------------------------*/
/* [ illustrator & photoshop letter spacing ]
-------------------------------------------------*/
/* [ easy breakpoint ]
-------------------------------------------------*/
/* [ easy transform ]
-------------------------------------------------*/
header {
  width: 100%;
  position: fixed;
  z-index: 200;
  letter-spacing: 0;
  /*チェックボックス等は非表示に*/
  /*アイコンのスペース*/
  /*ハンバーガーアイコンをCSSだけで表現*/
  /*閉じる用の薄黒カバー*/
  /*中身*/
  /*チェックが入ったらもろもろ表示*/
}
@media print {
  header {
    display: none;
  }
}
@media (min-width: 768px) {
  header .btn {
    font-size: 1.5vw;
  }
}
@media screen and (min-width: 1040px) {
  header .btn {
    font-size: 16px;
  }
}
header .header-area {
  width: 100%;
  line-height: 0;
  position: relative;
  z-index: 200;
  background: #ffffff;
  width: 100%;
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  padding-right: 70px;
  height: 55px;
  gap: 5px;
}
@media (min-width: 768px) {
  header .header-area {
    padding-right: 70px;
    height: 70px;
  }
}
header .header-area .logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
@media (min-width: 768px) {
  header .header-area .logo {
    width: 45%;
    max-width: 500px;
  }
}
@media screen and (min-width: 1080px) {
  header .header-area .logo {
    width: 55%;
  }
}
header .header-area .logo img {
  height: 30px;
}
@media (min-width: 768px) {
  header .header-area .logo img {
    height: 50px;
  }
}
header .header-btn {
  display: none;
  justify-self: flex-end;
}
@media (min-width: 768px) {
  header .header-btn {
    display: flex;
    gap: 0;
    justify-content: flex-end;
    position: relative;
    height: 100%;
    align-items: center;
  }
  header .header-btn li {
    height: 100%;
    display: flex;
    align-items: center;
    color: #040000;
  }
  header .header-btn li .detail {
    background: #fff;
  }
  header .header-btn li .acc {
    background: #fff;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  header .header-btn li {
    font-size: 1.35vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1000px) {
  header .header-btn li {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  header .header-btn li .btn-header {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
  }
  header .header-btn li .btn-header:hover {
    opacity: 0.6;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  header .header-btn li .btn-header {
    min-width: 120px;
  }
}
@media (min-width: 768px) {
  header .header-btn li .default {
    margin-right: 10px;
  }
  header .header-btn li .hfull {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
  }
}
header .header-btn .new {
  position: relative;
}
header .header-btn .new :before {
  content: "";
  position: relative;
  z-index: 2;
  width: 28px;
  height: 28px;
  background: url("../img/common/icon-new-darkred.svg") no-repeat center center;
  background-size: contain;
}
header .menu {
  font-size: 16px;
}
header .nav-unshown {
  display: none;
}
header #nav-open {
  position: fixed;
  top: 0;
  right: 0px;
  display: flex;
  align-items: center;
  width: 55px;
  height: 55px;
  vertical-align: middle;
  z-index: 65535;
  cursor: pointer;
  font-size: 15px;
  font-weight: 400;
  color: #35314c;
}
@media (min-width: 768px) {
  header #nav-open {
    width: 70px;
    height: 70px;
    top: 0px;
  }
}
header #nav-open:after {
  content: "MENU";
  position: absolute;
  bottom: 8px;
  color: #000000;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
}
@media (min-width: 768px) {
  header #nav-open:after {
    bottom: 10px;
    font-size: 14px;
  }
}
header #nav-open span {
  margin-top: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 22px));
  width: 0;
  left: 13px;
}
@media (min-width: 768px) {
  header #nav-open span {
    left: 15px;
  }
}
header #nav-open span,
header #nav-open span:before,
header #nav-open span:after {
  position: absolute;
  z-index: 1660;
  height: 2px; /*線の太さ*/
  width: 30px; /*長さ*/
  border-radius: 15px;
  background: #000000;
  display: block;
  content: "";
  z-index: 200;
  transition: all 0.25s ease-in-out;
}
@media (min-width: 768px) {
  header #nav-open span,
  header #nav-open span:before,
  header #nav-open span:after {
    width: 40px; /*長さ*/
  }
}
header #nav-open span {
  bottom: 0;
}
header #nav-open span:before {
  bottom: 8px;
  transition: all 0.25s ease-in-out;
}
header #nav-open span:after {
  bottom: -8px;
  right: 0px;
  transition: all 0.25s ease-in-out;
}
header .close-text {
  display: none;
  position: relative;
  z-index: 151;
}
header .nav-active #nav-open span {
  background: transparent;
}
header .nav-active #nav-open span:before,
header .nav-active #nav-open span:after {
  bottom: 0;
}
header .nav-active #nav-open span:before {
  width: 30px;
  transform: rotate(225deg);
}
@media (min-width: 768px) {
  header .nav-active #nav-open span:before {
    width: 40px; /*長さ*/
  }
}
header .nav-active #nav-open span:after {
  width: 30px;
  right: auto;
  transform: rotate(-225deg);
}
@media (min-width: 768px) {
  header .nav-active #nav-open span:after {
    width: 40px; /*長さ*/
  }
}
header .nav-active .close-text {
  display: none;
  color: #323333;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  padding: 4px;
  margin-right: 20px;
  margin-top: -15px;
}
@media (min-width: 768px) {
  header .nav-active .close-text {
    color: #fff;
  }
}
header #nav-close {
  display: none; /*はじめは隠しておく*/
  position: fixed;
  z-index: 50;
  top: 0; /*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.5;
  transition: 0.3s ease-in-out;
}
header #nav-content {
  animation: mshow 0.6s both;
  overflow: hidden;
  position: fixed;
  top: 55px;
  right: 0;
  z-index: 98; /*最前面に*/
  width: 100%;
  max-width: 100%;
  text-align: left;
  transform: translate(0, calc(-100% - 80px));
  transition: 0.5s ease-in-out; /*滑らかに表示*/
  color: #fff;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 480px) {
  header #nav-content {
    max-width: 360px;
  }
}
@media (min-width: 768px) {
  header #nav-content {
    top: 80px;
    right: 0;
  }
}
header #nav-content .menu-category {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 0;
  box-sizing: border-box;
}
header #nav-content .menu-category-block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
}
header #nav-content .menu-category-title {
  text-align: center;
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  margin: 0;
}
header #nav-content .menu-category-title:first-of-type {
  border-top: 2px solid #fff;
}
header #nav-content .menu-category-title-link {
  color: #4D4D4D;
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  background-color: #F2F1ED;
  font-size: 16px;
  height: 50px;
  padding-left: 0;
  position: relative;
  overflow: hidden;
  margin: 0;
  line-height: 30px;
}
@media screen and (min-width: 768px) {
  header #nav-content .menu-category-title-link {
    justify-content: flex-start;
    padding-left: 57px;
  }
}
header #nav-content .menu-category-title-link span {
  z-index: 6;
}
header #nav-content .menu-category-title-link:after {
  content: "";
  width: 0%;
  height: 100%;
  background: #E2DDD3;
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}
header #nav-content .menu-category-title-link:not(.disable):not(.active):hover:after {
  right: auto;
  left: 0;
  width: 100%;
}
header #nav-content .menu-category-title-link.active {
  background-color: #D9D1BE;
}
header #nav-content .menu-category-title-link.disable {
  background-color: #e2eaec;
  color: #989898;
}
header #nav-content .menu-category-title .new :before {
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 30px;
  height: 30px;
  margin-left: -50px;
  margin-right: 15px;
  background: url("../img/common/icon-new.svg") no-repeat center center;
  background-size: cover;
}
header #nav-content .menu-category-hs {
  margin-top: 10px;
  background: #00CBFF;
  position: relative;
  width: 100%;
  padding: 15px 0;
  /*&:after {
      content: "";
      position: absolute;
      right: 15px;
      top: calc(50% - 10px);
      width: 15px;
      height: 20px;
      background: #84E6FF;
      clip-path: polygon(0 0, 0 100%, 100% 50%);
  }*/
}
header #nav-content .menu-category-hs-link {
  display: block;
  width: 100%;
  text-align: center;
  transition: all 0.5s;
  padding: 0 57px;
}
header #nav-content .menu-category-hs-link img {
  position: relative;
  z-index: 5;
}
header #nav-content .menu-category-hs-link:hover {
  opacity: 0.5;
}
header #nav-content .menu-category-banner {
  margin-top: 10px;
  background: #fff;
  position: relative;
  width: 100%;
  padding: 15px 0;
}
header #nav-content .menu-category-banner:after {
  content: "";
  position: absolute;
  right: 15px;
  top: calc(50% - 10px);
  width: 15px;
  height: 20px;
  background: #00487f;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
header #nav-content .menu-category-banner-link {
  display: block;
  width: 100%;
  text-align: center;
  transition: all 0.5s;
  padding: 0 57px;
}
header #nav-content .menu-category-banner-link img {
  position: relative;
  z-index: 5;
}
header #nav-content .menu-category-banner-link:hover {
  opacity: 0.5;
}
header #nav-content .menu-category-banner:last-of-type {
  padding-bottom: 20px;
}
header #nav-content .menu-category-banner:last-of-type:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  left: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgb(58, 162, 240) 0%, rgb(149, 228, 182) 100%);
}
@media print {
  header #nav-content {
    display: none;
  }
}
header #nav-input:checked ~ #nav-close {
  display: block; /*カバーを表示*/
  opacity: 0.5;
}
header #nav-input:checked ~ #nav-content {
  transform: translate(0, 0);
}

@keyframes mshow {
  0% {
    opacity: 0;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}/*# sourceMappingURL=header.css.map */