@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;
  background: #fff;
  padding: 5px;
  /*アイコンのスペース*/
  /*ハンバーガーアイコンをCSSだけで表現*/
  /*閉じる用の薄黒カバー*/
  /*中身*/
  /*チェックが入ったらもろもろ表示*/
}
@media (min-width: 768px) {
  header {
    padding: 10px 15px;
  }
}
header .nav-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  header .nav-wrap {
    flex-direction: row;
  }
}
header .logo {
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 50px;
  padding-bottom: 5px;
}
@media (min-width: 768px) {
  header .logo {
    width: 25%;
    justify-content: flex-start;
    align-items: center;
    border: none;
  }
}
header .logo-img {
  padding: 15px;
  width: 75%;
}
@media (min-width: 768px) {
  header .logo-img {
    width: 100%;
    margin: 0 auto;
    max-width: 300px;
  }
}
header .menu {
  font-size: 16px;
  width: 100%;
}
@media (min-width: 768px) {
  header .menu {
    width: 75%;
  }
}
header #nav-open {
  position: fixed;
  top: 0;
  right: 0px;
  display: flex;
  align-items: center;
  width: 60px;
  height: 60px;
  vertical-align: middle;
  z-index: 65535;
  cursor: pointer;
  font-size: 15px;
  font-weight: 400;
  color: #35314c;
}
@media (min-width: 768px) {
  header #nav-open {
    display: none;
  }
}
header #nav-open:after {
  content: "";
  position: absolute;
  bottom: 12px;
  color: #3a3732;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
}
@media (min-width: 768px) {
  header #nav-open:after {
    bottom: 15px;
    font-size: 14px;
  }
}
header #nav-open span {
  margin-top: 30px;
  position: absolute;
  top: 0;
  width: 0;
  left: 15px;
}
@media (min-width: 768px) {
  header #nav-open span {
    left: 20px;
  }
}
header #nav-open span,
header #nav-open span:before,
header #nav-open span:after {
  position: absolute;
  z-index: 1660;
  height: 3px; /*線の太さ*/
  width: 30px; /*長さ*/
  border-radius: 15px;
  background: #515151;
  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;
  background: transparent;
}
header #nav-open span:before {
  bottom: 7px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
header #nav-open span:after {
  bottom: -7px;
  right: 0px;
  -webkit-transition: all 0.25s ease-in-out;
  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;
  background: #232323;
  box-shadow: none;
}
header .nav-active #nav-open span:before {
  width: 30px;
  -webkit-transform: rotate(225deg);
  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;
  -webkit-transform: rotate(-225deg);
  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-input {
  display: none;
}
header #nav-close {
  overflow: hidden;
  position: fixed;
  z-index: 50;
  top: 0; /*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 80px;
  opacity: 1;
}
header #nav-content {
  position: fixed;
  top: 5px;
  left: 0;
  z-index: 98; /*最前面に*/
  width: 100%;
  max-width: 100%;
  text-align: left;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  padding-top: 61px;
  transition: all 0.3s ease-in-out;
  transform: translateX(100%);
  background: #fff;
}
@media (min-width: 768px) {
  header #nav-content {
    background: none;
    top: 0;
    padding: 0;
    overflow: visible;
    justify-content: flex-end;
    display: flex;
    flex-direction: row;
    width: 100%;
    transform: translateX(0);
    transition: none;
    position: relative;
  }
}
header #nav-content .menu-category {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex-wrap: wrap;
  box-sizing: border-box;
  justify-content: center;
  gap: 1px;
}
@media (min-width: 768px) {
  header #nav-content .menu-category {
    padding: 0;
    width: auto;
    max-width: none;
    flex-direction: column-reverse;
    gap: 15px;
  }
}
header #nav-content .menu-category .mainmenu {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 768px) {
  header #nav-content .menu-category .mainmenu {
    gap: 4vw;
    justify-content: flex-start;
    flex-direction: row;
  }
}
@media screen and (min-width: 1200px) {
  header #nav-content .menu-category .mainmenu {
    gap: 50px;
  }
}
header #nav-content .menu-category .secondmenu {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 15px;
  padding: 15px 0;
}
@media (min-width: 768px) {
  header #nav-content .menu-category .secondmenu {
    padding: 0;
    gap: 15px;
    justify-content: flex-end;
    flex-direction: row;
  }
}
header #nav-content .menu-category-block {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
header #nav-content .menu-category-title {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  height: 60px;
  width: 100%;
  padding: 0 30px;
  border-bottom: 1px solid #dcdcdc;
  position: relative;
}
@media (min-width: 768px) {
  header #nav-content .menu-category-title {
    padding: 0;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border: none;
    height: 100%;
  }
}
header #nav-content .menu-category-title-link {
  font-size: 16px;
  flex-grow: 1;
  padding: 20px 0;
  color: #4b5057;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  header #nav-content .menu-category-title-link {
    padding: 0;
    flex-grow: unset;
    font-size: min(14px,1.5vw);
  }
}
@media screen and (min-width: 1200px) {
  header #nav-content .menu-category-title-link {
    font-size: 18px;
  }
}
header #nav-content .menu-category-title-link:hover {
  color: var(--text-base-hover-color);
}
header #nav-content .menu-category-title-arrow {
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
}
header #nav-content .menu-category-title-arrow:before, header #nav-content .menu-category-title-arrow:after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 7px;
  width: 15px;
  height: 2px;
  background: #333;
  transition: all 0.3s ease;
}
header #nav-content .menu-category-title-arrow:after {
  transform: rotate(90deg);
}
header #nav-content .menu-category-title-arrow.active:after {
  transform: rotate(0);
}
@media (min-width: 768px) {
  header #nav-content .menu-category-title-arrow {
    display: none;
  }
}
header #nav-content .menu-category .arrow {
  padding: 10px;
  padding-right: 20px;
  width: 100%;
  font-weight: bold;
  letter-spacing: 0.05em;
  font-size: 16px;
  min-width: 200px;
}
@media (min-width: 768px) {
  header #nav-content .menu-category .arrow {
    min-width: min(165px,15vw);
    font-size: min(14px,1.5vw);
  }
}
header #nav-content .menu-category .arrow.document {
  color: #f0544d;
  border: 2px solid #f0544d;
}
header #nav-content .menu-category .arrow.document:after {
  background-color: #f0544d;
  width: 13px;
  height: 13px;
}
header #nav-content .menu-category .arrow.document:hover {
  color: rgba(240, 84, 77, 0.6);
}
header #nav-content .menu-category .arrow.contact {
  background: linear-gradient(to right, #d9332c, #f0544d 70%);
  color: #fff;
}
header #nav-content .menu-category .arrow.contact:after {
  width: 13px;
  height: 13px;
  background-color: #fff;
  background-image: url("../img/common/arrow-orange.svg");
}
header #nav-content .menu-category .arrow.contact:hover {
  background: rgba(240, 84, 77, 0.6);
}
@media print {
  header #nav-content {
    display: none;
  }
}
header #nav-input:checked ~ #nav-close {
  opacity: 0.95;
  transform: translate(0, 0);
  border-bottom-left-radius: 0;
}
header #nav-input:checked ~ #nav-content {
  transform: translate(0, 0);
}

@keyframes mshow {
  0% {
    opacity: 0;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeinelement {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideinelement {
  0% {
    opacity: 0;
    transform: translateY(15%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeinlogo {
  0% {
    opacity: 0;
    top: 0;
    left: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeinlogopc {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  top: 0;
  left: 0;
  display: none;
}/*# sourceMappingURL=header.css.map */