@charset "UTF-8";
.box-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: #FFF;
  padding: 20px 30px 20px;
}
@media screen and (max-width: 768px) {
  .box-header {
    padding: 15px 15px 20px;
  }
}
.box-header::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: -1;
  transition: 0.3s all linear;
  background: #FFF;
}
.box-header.is-scroll {
  padding-bottom: 20px;
  opacity: 1;
}
.box-header.is-scroll::after {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .box-header {
    padding: 15px 15px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
  }
}

.header-content {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}
@media (max-width: 990px) {
  .header-content {
    gap: 0px;
  }
}

.header-logo {
  margin-top: 12px;
  flex: none;
}
@media (max-width: 990px) {
  .header-logo {
    width: 100px;
    top: 12px;
  }
}
@media screen and (max-width: 768px) {
  .header-logo {
    width: 135px;
    top: 15px;
    left: 20px;
  }
}

@media screen and (max-width: 768px) {
  .header-nav {
    display: none;
  }
}

.header-nav-close {
  display: none;
  width: 100vw;
  height: 100vw;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.header-nav-close.is-active {
  display: block;
}

.header-nav-list {
  display: flex;
  gap: 45px;
  padding: 42px 50px 0;
  border-radius: 6px;
  font-weight: 400;
  font-family: "Albert Sans", sans-serif;
  font-size: 1.4rem;
  background: #fff;
  line-height: 1;
  box-shadow: 10px 10px 30px rgba(45, 41, 182, 0);
}
@media (max-width: 1260px) {
  .header-nav-list {
    padding: 42px 10px 0;
  }
}
@media (max-width: 990px) {
  .header-nav-list {
    padding: 42px 2px 0;
    gap: 1.5vw;
  }
}
.header-nav-list.is-page {
  background: none;
  box-shadow: none;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .header-nav-list {
    gap: 2vw;
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
.header-nav-list li:last-child {
  position: relative;
}

.header-nav-content {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.header-nav-list-item {
  font-weight: 500;
  height: fit-content;
}
@media (max-width: 990px) {
  .header-nav-list-item {
    font-size: 12px;
  }
}
.header-nav-list-item a.is-menu:hover {
  cursor: pointer;
}

.header-nav-list-link {
  display: flex;
  transition-property: color, opacity;
  font-weight: bold;
  position: relative;
  z-index: 9;
}
.header-nav-list-link:hover, .header-nav-list-link.is-active {
  color: #2d29b6;
}
.header-nav-list-link:hover.is-menu::after, .header-nav-list-link.is-active.is-menu::after {
  color: #2d29b6;
}
.header-nav-list-link.is-menu::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f13a";
  line-height: 1;
  margin-left: 2px;
  color: #bebede;
  transition: 0.3s all linear;
}

.header-nav-contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  border-radius: 6px;
  font-weight: 400;
  font-family: "Albert Sans", sans-serif;
  font-size: 1.4rem;
  color: #fff;
  background: #2d29b6;
  box-shadow: 10px 10px 30px rgba(45, 41, 182, 0.2);
  height: 56px;
}
@media (max-width: 1300px) {
  .header-nav-contact-btn {
    height: 56px;
    width: 90px;
  }
}
@media (max-width: 1260px) {
  .header-nav-contact-btn {
    width: 80px;
  }
}
@media (max-width: 990px) {
  .header-nav-contact-btn {
    width: 60px;
    font-size: 12px;
  }
}
.header-nav-contact-btn:hover, .header-nav-contact-btn.is-active {
  background: #333;
}
.header-nav-contact-btn:hover {
  cursor: pointer;
}

.header-sub-nav {
  display: block;
  padding: 80px 0;
  background: #fff;
  box-shadow: 10px 10px 30px rgba(45, 41, 182, 0.3);
  border-radius: 10px;
  position: absolute;
  top: 110px;
  left: 30px;
  right: 30px;
  pointer-events: none;
  opacity: 0;
  max-height: calc(100vh - 130px);
  overflow: auto;
}
.header-sub-nav.is-active {
  transition: 0.3s all linear;
  pointer-events: auto;
  opacity: 1;
}
.header-sub-nav .wrapper {
  max-width: 100%;
}
@media screen and (max-width: 1160px) {
  .header-sub-nav .wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.header-sub-nav-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
}
.header-sub-nav-content.is-outsidetitle {
  margin-top: 40px;
}
.header-sub-nav-content .item {
  position: relative;
}
.header-sub-nav-content .item::after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  border-right: 1px solid #F2F2F8;
  position: absolute;
  top: 0;
  right: -35px;
}
.header-sub-nav-content .item:last-of-type::after {
  display: none;
}

.header-sub-nav-heading {
  font-weight: 300;
  font-family: "Albert Sans", sans-serif;
  font-size: 6rem;
  color: #bebede;
  line-height: 1;
  border-bottom: 1px #F2F2F8 solid;
  padding-bottom: 27px;
  margin-bottom: 53px;
}

.header-sub-nav-title {
  padding: 18px 20px;
  border-radius: 4px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  background: #F2F2F8;
}

.header-sub-nav-list-item {
  padding: 26px 0;
  border-bottom: 1px #F2F2F8 solid;
  text-indent: -1.2em;
  padding-left: 2.2em;
}
.header-sub-nav-list-item span.caption {
  display: block;
  margin-left: 24px;
  color: #8b8ba7;
  font-size: 1.2rem;
  margin-top: 3px;
  text-indent: 0;
  text-align: left;
  margin-left: -20px;
}

.header-sub-nav-list-link:hover {
  color: #2d29b6;
}
.header-sub-nav-list-link::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f138";
  color: #2d29b6;
  margin-right: 10px;
}
.header-sub-nav-list-link .text-small {
  font-size: 0.875em;
}

.header-nav-sp {
  display: block;
  height: 100vh;
  padding: 97px 24px 0;
  background: #4d4d4d;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: scroll;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s all ease-in;
}
.header-nav-sp.is-open {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (min-width: 769px) {
  .header-nav-sp {
    display: none;
  }
}

.header-nav-sp-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: #2d29b6;
  border-radius: 5px;
  box-shadow: 5px 5px 15px rgba(45, 41, 182, 0.2);
  position: relative;
  z-index: 999;
  top: 12px;
}
@media screen and (min-width: 769px) {
  .header-nav-sp-btn {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .header-nav-sp-btn {
    /* バーガーメニュー押下前 */
    position: relative;
    top: 12px;
    left: 0px;
  }
}
.header-nav-sp-btn.is-open .inner::before, .header-nav-sp-btn.is-open .inner::after {
  top: 0;
  bottom: 0;
}
.header-nav-sp-btn.is-open .inner::before {
  transform: rotate(-45deg);
}
.header-nav-sp-btn.is-open .inner::after {
  transform: rotate(45deg);
}
.header-nav-sp-btn.is-open .inner + .header-nav-list_Language li:after {
  content: "";
  width: 0%;
  height: 1px;
  position: absolute;
  left: 0%;
  bottom: -2px;
  display: block;
  background-image: linear-gradient(90deg, #4d4d4d 0% 50%, #4d4d4d 50% 100%);
  transition: all 0.5s;
}
@media screen and (min-width: 769px) {
  .header-nav-sp-btn.is-open .inner + .header-nav-list_Language li:after {
    content: "";
    width: 0%;
    height: 1px;
    position: absolute;
    left: 0%;
    bottom: -2px;
    display: block;
    background-image: linear-gradient(90deg, #4d4d4d 0% 50%, #4d4d4d 50% 100%);
    transition: all 0.5s;
  }
}
.header-nav-sp-btn.is-open .inner + .header-nav-list_Language li:hover a {
  color: #FFF;
}
@media screen and (min-width: 769px) {
  .header-nav-sp-btn.is-open .inner + .header-nav-list_Language li:hover a {
    color: #fff;
  }
}
.header-nav-sp-btn.is-open .inner + .header-nav-list_Language li:hover:after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0%;
  bottom: -2px;
  display: block;
  background-image: linear-gradient(90deg, #FFF 0% 50%, #FFF 50% 100%);
}
@media screen and (min-width: 769px) {
  .header-nav-sp-btn.is-open .inner + .header-nav-list_Language li:hover:after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0%;
    bottom: -2px;
    display: block;
    background-image: linear-gradient(90deg, #fff 0% 50%, #fff 50% 100%);
  }
}
.header-nav-sp-btn.is-open .bar {
  display: none;
}
.header-nav-sp-btn .inner {
  width: 15px;
  height: 10px;
  position: relative;
}
.header-nav-sp-btn .inner::before, .header-nav-sp-btn .inner::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  border-bottom: 1px solid #fff;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  transition: 0.2s transform linear;
}
.header-nav-sp-btn .inner::before {
  top: -10px;
}
.header-nav-sp-btn .inner::after {
  bottom: -10px;
}
.header-nav-sp-btn .inner + .header-nav-list_Language {
  position: absolute;
  top: -22px;
  right: 2px;
}
.header-nav-sp-btn .inner + .header-nav-list_Language li a {
  font-size: 0.92em;
  color: #b3b3b3;
}
.header-nav-sp-btn .inner + .header-nav-list_Language li:after {
  content: "";
  width: 0%;
  height: 1px;
  position: absolute;
  left: 0%;
  bottom: -2px;
  display: block;
  background-image: linear-gradient(90deg, #fff 0% 50%, #fff 50% 100%);
  transition: all 0.5s;
}
.header-nav-sp-btn .inner + .header-nav-list_Language li:hover:after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0%;
  bottom: -2px;
  display: block;
  background-image: linear-gradient(90deg, #4d4d4d 0% 50%, #4d4d4d 50% 100%);
}
.header-nav-sp-btn .inner + .header-nav-list_Language li:hover a {
  color: #333;
}
.header-nav-sp-btn .bar::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  border-bottom: 1px solid #fff;
  position: absolute;
  top: -0.5px;
  bottom: 0;
  margin: auto;
}

@media (max-width: 1260px) {
  .header-logo {
    width: 120px;
  }
}
.header-logo .header-nav-list_0a0guage {
  display: none;
}
.header-logo img {
  width: 100%;
  height: auto;
}

.header-nav-list_Language {
  display: flex;
  margin-left: 0.2em;
}
@media (max-width: 1260px) {
  .header-nav-list_Language {
    margin-left: 0px;
  }
}
@media (max-width: 990px) {
  .header-nav-list_Language {
    width: 22px;
  }
}
@media screen and (max-width: 768px) {
  .header-nav-list_Language {
    width: auto;
    left: -16px;
  }
}
.header-nav-list_Language li {
  width: fit-content;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  position: relative;
  font-size: 13px;
  color: #999;
  transition: all 0.5s;
}
@media (max-width: 990px) {
  .header-nav-list_Language li {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .header-nav-list_Language li {
    font-size: 12px;
  }
}
.header-nav-list_Language li::after {
  content: "";
  width: 0%;
  height: 2px;
  position: absolute;
  left: 0%;
  bottom: -7px;
  display: block;
  background-image: linear-gradient(90deg, #f5f6f8 0% 50%, #f5f6f8 50% 100%);
  transition: all 0.5s;
}
.header-nav-list_Language li:hover {
  color: #333;
}
.header-nav-list_Language li:hover:after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0%;
  bottom: -7px;
  display: block;
  background-image: linear-gradient(90deg, #2d29b6 0% 50%, #2d29b6 50% 100%);
}
@media (max-width: 990px) {
  .header-nav-list_Language li a span {
    width: 22px;
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  .header-nav-list_Language li a span {
    width: auto;
    overflow: visible;
  }
}

@media screen and (min-width: 769px) {
  .header-logo_area {
    display: flex;
    position: relative;
    top: -70px;
    left: -10px;
  }
}
@media screen and (max-width: 768px) {
  .header-logo_area {
    left: -5px;
  }
}
@media screen and (min-width: 769px) {
  .header-logo_area img {
    width: 135px;
    height: auto;
  }
}

.header-seach {
  width: auto;
  text-align: right;
  position: absolute;
  right: -20px;
  top: -40px;
  width: 350px;
  height: 30px;
}
@media (max-width: 990px) {
  .header-seach {
    position: absolute;
    right: -20px;
    top: -40px;
  }
}
@media screen and (max-width: 768px) {
  .header-seach {
    width: auto;
    text-align: right;
    position: absolute;
    left: 0;
    width: 100%;
  }
}
.header-seach form.rs_seach {
  height: 30px;
}
.header-seach input[type=text] {
  display: block;
  padding: 0;
  margin: 0;
  width: 300px;
  padding: 3px 15px;
  border-radius: 4px 0 0 4px;
  border: 1px solid #ccc;
  font-size: 16px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .header-seach input[type=text] {
    display: block;
    /*padding: 0;*/
    margin: 0;
    width: 80%;
    height: 30px;
    padding: 4px 15px;
    border-radius: 4px 0 0 4px;
    border: 1px solid #ccc;
    font-size: 16px !important;
  }
}
.header-seach input[type=text]:focus {
  outline: none;
}
.header-seach input[type=submit] {
  background: #bebede;
  width: 30px;
  height: 27px;
  top: -27px;
  border-radius: 0 4px 4px 0;
  position: relative;
  left: -21px;
  background-image: url("/common/img/share/ico_seach.svg");
  background-repeat: no-repeat;
  background-size: 18px auto;
  background-position: center;
  transition: all 0.5s ease 0s;
  border: none;
}
@media screen and (max-width: 768px) {
  .header-seach input[type=submit] {
    background: #bebede;
    width: 30px;
    height: 30px;
    top: 0px;
    border-radius: 0 4px 4px 0;
    position: relative;
    left: -21px;
    background-image: url("/common/img/share/ico_seach.svg");
    background-repeat: no-repeat;
    background-size: 18px auto;
    background-position: center;
    transition: all 0.5s ease 0s;
  }
}
.header-seach input[type=submit]:hover {
  background: #2d29b6;
  background-image: url("/common/img/share/ico_seach.svg");
  background-repeat: no-repeat;
  background-size: 18px auto;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .header-seach input[type=submit]:hover {
    background: #2d29b6;
    background-image: url("/common/img/share/ico_seach.svg");
    background-repeat: no-repeat;
    background-size: 18px auto;
    background-position: center;
    cursor: pointer;
  }
}
@media screen and (max-width: 768px) {
  .header-seach .header-seach-check:checked + label.header-seach-label {
    background-image: url("/common/img/share/ico_close_blue.svg");
    background-size: 20px auto;
  }
}
@media screen and (max-width: 768px) {
  .header-seach .header-seach-check:checked + label.header-seach-label + form.rs_seach {
    display: block;
    width: calc(100% - 0px);
    margin: 100px auto auto;
    background: rgba(36, 34, 105, 0.7);
    display: flex;
    justify-content: center;
    padding: 26px 0 56px;
  }
}
@media screen and (max-width: 768px) {
  .header-seach .header-seach-check + label.header-seach-label {
    display: block;
    width: 50px;
    height: 50px;
    font-size: 0;
    border-radius: 6px;
    border: 1px solid #2d29b6;
    background: #FFF;
    position: absolute;
    top: 68px;
    right: 75px;
    background-image: url("/common/img/share/ico_seach_blue.svg");
    background-size: 20px auto;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease 0s;
  }
}
@media screen and (max-width: 768px) {
  .header-seach .header-seach-check + label.header-seach-label:hover {
    cursor: pointer;
  }
}
.header-seach .header-seach-check + label.header-seach-label + form.rs_seach {
  display: none;
}
@media screen and (max-width: 768px) {
  .header-seach .header-seach-check + label.header-seach-label + form.rs_seach {
    display: none;
  }
}

@media (max-width: 990px) {
  header a {
    font-size: 12px;
  }
}

/*# sourceMappingURL=enHeader.css.map */
