@charset "UTF-8";

* {
  box-sizing: border-box;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
}
.header__mainmenu {
  width: 100%;
  height: 96px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.06);
  background-color: rgba(255, 255, 255, 255);
}
.header__mainmenu--sub {
  position: inherit;
  top: inherit;
  left: inherit;
  display: none;
  z-index: 200;
}
@media screen and (max-width: 1024px) {
  .header__mainmenu {
    height: 56px;
    opacity: 1;
  }
  .header__mainmenu--sub {
    display: flex;
  }
}
.header__logo-area {
  padding-left: 40px;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .header__logo-area {
    flex: 1;
    padding-left: 23px;
  }
}
.header__logo-link {
  transition: opacity 0.3s ease-out;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.header__logo-img {
  width: 128px;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .header__logo-img {
    width: 100px;
  }
}
.header__conts-area {
  width: 100%;
  margin-left: 20px;
  display: flex;
  justify-content: flex-end;
  height: 100%;
  background-color: transparent;
}
@media screen and (max-width: 1024px) {
  .header__conts-area {
    width: 100%;
    height: 100vh;
    margin: 0;
    position: absolute;
    z-index: 200;
    left: 0;
    top: 0;
    display: block;
    transform: translateX(100%);
    transition: all 0.25s ease-out;
    background-color: #FFF;
  }
}
.header__conts-area--show {
  transform: translateX(0);
}
.header__sub-conts {
  display: flex;
  align-items: center;
  margin-left: 25px;
  padding-left: 14px;
  position: relative;
}
.header__sub-conts:before {
  content: "";
  width: 1px;
  height: 40px;
  background-color: #A6A6A6;
  position: absolute;
  top: 27px;
  left: -5px;
}
@media screen and (max-width: 1200px) {
  .header__sub-conts {
    flex-flow: column;
    justify-content: center;
  }
}
@media screen and (max-width: 1024px) {
  .header__sub-conts {
    padding: 0;
    margin: 0;
    justify-content: center;
    padding-top: 24px;
    padding-bottom: 24px;
    flex-flow: inherit;
  }
  .header__sub-conts:before {
    display: none;
  }
}
.header__navi-area {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .header__navi-area {
    overflow-y: auto;
    height: 100vh;
    display: inherit;
    padding: 88px 23px 32px 23px;
  }
  @supports (-webkit-touch-callout: none) {
    .header__navi-area body {
      height: -webkit-fill-available;
    }
  }
}
.header__navi {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .header__navi {
    height: auto;
    padding-bottom: 40px;
    border-bottom: 2px solid #F2F2F2;
  }
}
.header__navi-list {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .header__navi-list {
    display: block;
  }
}
.header__form-button-link {
  font-family: "IBM Plex Sans", "Noto Sans JP", sans-serif;
  font-weight: 900;
  padding: 5px 16px !important;
  box-shadow: 4px 4px 10px rgba(51, 51, 51, 0.2);
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 8px;
  margin-left: 16px;
  text-align: center;
  transition: color 0.3s ease-out, box-shadow 0.3s ease-out, background-color 0.3s ease-out;
}
@media screen and (max-width: 1200px) {
  .header__form-button-link {
    margin-left: 0;
    margin-bottom: 5px;
    width: 110px;
  }
  .header__form-button-link:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1024px) {
  .header__form-button-link {
    padding: 14px 16px !important;
    margin-left: 24px;
    margin-bottom: 0;
    text-align: center;
    width: 152px;
  }
}
.header__form-button-link:hover {
  color: #191919;
  box-shadow: 4px 4px 10px rgba(51, 51, 51, 0.4);
  background-color: #FFCD9B;
}
.header__form-button-link:first-child {
  margin-left: 0;
}
.header__form-button-link--form-link {
  padding: 3px 14px !important;
  border: 2px solid #A6A6A6;
  color: #A6A6A6;
  background-color: #FFF;
}
.header__form-button-link--form-link:hover {
  border: 2px solid #FFCD9B;
}
@media screen and (max-width: 1024px) {
  .header__form-button-link--form-link {
    padding: 12px 16px !important;
    text-align: center;
  }
}
.header__form-button-link--login-link {
  background-color: #A6A6A6;
  opacity: 1;
  color: #FFF;
}
.header__download {
  height: 100%;
}
.header__download-link {
  font-family: "IBM Plex Sans", "Noto Sans JP", sans-serif;
  font-weight: 900;
  width: 264px;
  margin-left: 24px;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eb6000;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
  transition: background-color 0.3s ease-out;
}
@media screen and (max-width: 1200px) {
  .header__download-link {
    width: 180px;
  }
}
@media screen and (max-width: 1024px) {
  .header__download-link {
    width: 120px;
    font-size: 0.75rem;
    margin-left: 5px;
  }
}
.header__download-link:hover {
  opacity: 1;
  background-color: #C85000;
}
.header__menu {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__menu {
    padding: 0 22px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
  }
}
.header__menu-button {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1;
}
.header__menu-button--close span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}
.header__menu-button--close span:nth-child(2) {
  display: none;
}
.header__menu-button--close span:nth-child(3) {
  top: 15px;
  bottom: inherit;
  transform: rotate(-45deg);
}
.header__menu-bar {
  width: 32px;
  height: 2px;
  background-color: #808080;
  display: block;
  position: absolute;
}
.header__menu-bar:nth-child(1) {
  top: 6px;
}
.header__menu-bar:nth-child(2) {
  top: 15px;
}
.header__menu-bar:nth-child(3) {
  bottom: 6px;
}
.header__submenu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 88px;
  background-color: rgba(255, 255, 255, 255);
}
.header__nav-sublist {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__nav-sublist {
    display: block;
  }
}
.header__nav-item {
  font-family: "IBM Plex Sans", "Noto Sans JP", sans-serif;
  font-weight: 900;
  height: inherit;
  font-size: 0.75rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  position: relative;
  background-color: transparent;
}
@media screen and (max-width: 1024px) {
  .header__nav-item {
    font-size: 0.875rem;
    margin: 40px 0;
    padding-left: 4rem;
  }
  .header__nav-item:first-child {
    margin-top: 0;
  }
  .header__nav-item:last-child {
    margin-bottom: 0;
  }
  .header__nav-item--has-child {
    display: flex;
  }
}
.header__nav-item:hover {
  color: #004B8C;
}
@media screen and (max-width: 1024px) {
  .header__nav-item:hover {
    color: inherit;
  }
}
.header__nav-item--mainmenu {
  padding: 0 10px;
}
@media screen and (min-width: 1025px) {
  .header__nav-item--submenu {
    height: 40px;
    padding-left: 3.5rem;
    padding-right: 3.5rem;
    border-right: 1px solid #a6a6a6;
  }
  .header__nav-item--submenu:last-child {
    border-right: none;
  }
}
@media screen and (max-width: 1024px) {
  .header__nav-item--submenu {
    padding-left: 2.25rem;
  }
}
@media screen and (max-width: 1024px) {
  .header__nav-item {
    font-size: 0.875rem;
    margin: 40px 0;
  }
  .header__nav-item:first-child {
    margin-top: 0;
  }
  .header__nav-item:last-child {
    margin-bottom: 0;
  }
  .header__nav-item--mainmenu {
    padding-left: 4rem;
    padding-right: 0;
  }
  .header__nav-item--has-child {
    display: flex;
  }
}
.header__nav-item:hover {
  color: #004B8C;
}
@media screen and (max-width: 1024px) {
  .header__nav-item:hover {
    color: inherit;
  }
}
.header__nav-item-link {
  height: inherit;
  display: flex;
  align-items: center;
  color: #191919;
}
.header__nav-item-link:hover {
  color: #004B8C;
}
@media screen and (max-width: 1024px) {
  .header__nav-item-link:hover {
    color: inherit;
  }
}
@media screen and (max-width: 1024px) {
  .header__nav-item-link--show-children {
    color: #004B8C;
  }
}
.header__nav-item-sub-link {
  height: inherit;
  position: relative;
}
.header__nav-item-sub-link-text {
  display: block;
  padding-right: 15px;
  position: relative;
  color: #191919;
}
@media screen and (min-width: 1025px) {
  .header__nav-item-sub-link-text:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform-origin: 6px -3px;
    transform: rotate(45deg);
    transition: 0.2s ease-in;
    width: 4px;
    height: 4px;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: #191919;
  }
}
@media screen and (max-width: 1024px) {
  .header__nav-item-sub-link-text {
    margin-bottom: 40px;
  }
}
.header__nav-item-sub-link-text:hover {
  cursor: pointer;
  color: #004B8C;
}
@media screen and (max-width: 1024px) {
  .header__nav-item-sub-link-text:hover {
    color: inherit;
  }
}
.header__nav-item-sub-link-text:hover:after {
  border-color: #004B8C;
}

/*# sourceMappingURL=header.css.map */
