@charset "UTF-8";
/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* 共通
--------------------------------------------------*/
/* ヘッダー(TOP)
--------------------------------------------------*/
body:has(.front-page) .wrapper {
  padding-top: 0;
}
@media screen and (max-width: 999px) {
  body:has(.front-page) .wrapper {
    padding-top: 60px;
  }
}
body:has(.front-page) #new-header {
  background-color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(238, 238, 238, 0);
}
body:has(.front-page) #new-header.header_bg_white {
  background-color: rgb(255, 255, 255);
  border-bottom: 1px solid rgb(238, 238, 238);
}

/* ヘッダー
--------------------------------------------------*/
#new-header {
  transition-duration: 0.4s;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  gap: clamp(20px, -40px + 5vw, 30px);
  align-items: center;
  width: 100%;
  height: 100px;
  padding: 0 clamp(20px, -40px + 5vw, 30px);
  background-color: #fff;
  border-bottom: 1px solid #eee;
  box-sizing: border-box;
}
@media screen and (max-width: 999px) {
  #new-header {
    height: 60px;
    padding: 0 0 0 20px;
    gap: 0;
  }
}
@media screen and (max-width: 999px) {
  #new-header {
    padding: 0 0 0 5vw;
  }
}
#new-header * {
  box-sizing: border-box;
}
#new-header * img {
  width: 100%;
  height: auto;
}
#new-header > .left {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, -50px + 5vw, 20px);
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 449px) {
  #new-header > .left {
    gap: 2.22vw;
  }
}
#new-header > .left .logo-50th {
  width: clamp(50px, 0px + 5vw, 70px);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 999px) {
  #new-header > .left .logo-50th {
    max-width: 60px;
    width: 8.93vw;
  }
}
#new-header > .left .logo {
  width: clamp(200px, -175px + 37.5vw, 350px);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 999px) {
  #new-header > .left .logo {
    max-width: 280px;
    width: 45vw;
  }
}
#new-header > .right {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 15px;
  align-items: flex-end;
  justify-content: flex-end;
  height: 100%;
}
@media screen and (max-width: 999px) {
  #new-header > .right {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}
#new-header > .right .list_nav_others {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 999px) {
  #new-header > .right .list_nav_others {
    order: 2;
    flex-direction: column;
    gap: 10px;
    padding: 0 20px;
  }
}
#new-header > .right .list_nav_others li,
#new-header > .right .list_nav_others a {
  font-size: clamp(12px, -12px + 2vw, 16px);
  font-weight: 400;
  line-height: 1.3;
  color: #333;
  letter-spacing: 0;
}
#new-header > .right .list_nav_others li {
  padding: 0 15px;
  border-right: 1px solid #aaa;
}
@media screen and (max-width: 999px) {
  #new-header > .right .list_nav_others li {
    padding: 0;
    border-right: none;
  }
}
#new-header > .right .list_nav_others li:first-child {
  padding-left: 0;
}
#new-header > .right .list_nav_others li:last-child {
  padding-right: 0;
  border-right: none;
}
@media screen and (max-width: 999px) {
  #new-header > .right .list_nav_others li.lang-item {
    display: none;
  }
}
#new-header > .right .list_nav_others li.lang-item a {
  position: relative;
  padding-left: 20px;
  color: #1D54A7;
}
#new-header > .right .list_nav_others li.lang-item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  display: block;
  width: 15px;
  height: 15px;
  background-image: url(../img/common/icon_lang.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
#new-header > .right #sp_menu {
  display: contents;
}
@media screen and (max-width: 999px) {
  #new-header > .right #sp_menu {
    position: fixed;
    left: 0;
    top: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    height: calc(100vh - 60px);
    padding: 20px 5vw 40px;
    background-color: #eee;
    overflow-y: scroll;
    transform: translateX(100%);
    transition-duration: 0.4s;
    visibility: hidden;
  }
}
@media screen and (max-width: 999px) {
  #new-header > .right #sp_menu.active {
    transform: translateX(0);
    visibility: visible;
  }
}
#new-header > .right .list_nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, -40px + 5vw, 30px);
}
@media screen and (max-width: 999px) {
  #new-header > .right .list_nav {
    gap: 0;
    order: 1;
  }
}
#new-header > .right .list_nav button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
#new-header > .right .list_nav li,
#new-header > .right .list_nav a,
#new-header > .right .list_nav button {
  font-family: inherit;
  font-size: clamp(14px, -10px + 2vw, 18px);
  font-weight: 500;
  color: #333;
  line-height: 1.3;
  letter-spacing: 0;
}
@media screen and (max-width: 999px) {
  #new-header > .right .list_nav li,
#new-header > .right .list_nav a,
#new-header > .right .list_nav button {
    font-size: 18px;
  }
}
#new-header > .right .list_nav > li {
  position: relative;
  padding-bottom: 23px;
}
@media screen and (max-width: 999px) {
  #new-header > .right .list_nav > li {
    width: 100%;
    padding: 20px;
    border-bottom: 1px solid #aaa;
  }
}
#new-header > .right .list_nav > li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 5px;
  background-color: #1D54A7;
  transform: scaleX(0);
  transition-duration: 0.4s;
}
@media screen and (max-width: 999px) {
  #new-header > .right .list_nav > li::before {
    display: none;
  }
}
#new-header > .right .list_nav > li.current::before {
  transform: scaleX(1);
}
#new-header > .right .list_nav > li:has(.parent) {
  padding-bottom: 0;
}
@media screen and (max-width: 999px) {
  #new-header > .right .list_nav > li > a {
    display: block;
    width: 100%;
  }
}
#new-header > .right .list_nav .wrap_parent.show .parent {
  text-decoration: underline;
}
#new-header > .right .list_nav .wrap_parent.show .parent::before {
  transform: scaleX(1);
}
#new-header > .right .list_nav .wrap_parent.show .nav_child {
  pointer-events: all;
  visibility: visible;
  opacity: 1;
}
#new-header > .right .list_nav .parent {
  position: relative;
  padding-bottom: 23px;
}
@media screen and (max-width: 999px) {
  #new-header > .right .list_nav .parent {
    position: initial;
    padding-bottom: 20px;
    width: 100%;
    text-align: left;
  }
}
#new-header > .right .list_nav .parent::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 5px;
  background-color: #1D54A7;
  transform: scaleX(0);
  transition-duration: 0.4s;
}
@media screen and (max-width: 999px) {
  #new-header > .right .list_nav .parent::before {
    display: none;
  }
}
#new-header > .right .list_nav .parent::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 12px;
  margin-left: 5px;
  background-image: url(../img/common/arrow_header.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition-duration: 0.4s;
  transform: rotate(0);
}
@media screen and (max-width: 999px) {
  #new-header > .right .list_nav .parent::after {
    position: absolute;
    right: 20px;
    top: 26px;
  }
}
#new-header > .right .list_nav .parent.current::before {
  transform: scaleX(1);
}
@media screen and (max-width: 999px) {
  #new-header > .right .list_nav .parent.active::after {
    transform: rotate(180deg);
  }
}
#new-header > .right .nav_child {
  position: fixed;
  left: 0;
  top: 99px;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 300px;
  padding: 40px 0;
  background-color: #eee;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition-duration: 0.4s;
}
@media screen and (max-width: 999px) {
  #new-header > .right .nav_child {
    position: relative;
    top: 0;
    min-height: 0;
    padding: 0 0 20px;
    visibility: visible;
    opacity: 1;
    pointer-events: all;
    display: none;
    transition-duration: initial;
  }
}
#new-header > .right .nav_child .content {
  width: 90%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 999px) {
  #new-header > .right .nav_child .content {
    width: calc(100% - 20px);
    margin-right: 0;
  }
}
#new-header > .right .nav_child .parent_name {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #aaa;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}
@media screen and (max-width: 999px) {
  #new-header > .right .nav_child .parent_name {
    display: none;
  }
}
#new-header > .right .nav_child .parent_name_en {
  display: inline-block;
  margin-left: 0.55em;
  font-size: 55.55%;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
}
#new-header > .right .nav_child .list_nav_child {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 15px;
}
@media screen and (max-width: 999px) {
  #new-header > .right .nav_child .list_nav_child {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
#new-header > .right .nav_child .list_nav_child li,
#new-header > .right .nav_child .list_nav_child a {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
}
#new-header > .right .nav_child .list_nav_child li {
  position: relative;
  padding-left: 15px;
}
#new-header > .right .nav_child .list_nav_child li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  display: block;
  width: 8px;
  height: 10px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7.917' height='10' viewBox='0 0 7.917 10'%3E%3Cpath id='arrow.svg' d='M7.917,5,0,10V0Z' fill='%23333' fill-rule='evenodd'/%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7.917' height='10' viewBox='0 0 7.917 10'%3E%3Cpath id='arrow.svg' d='M7.917,5,0,10V0Z' fill='%23333' fill-rule='evenodd'/%3E%3C/svg%3E%0A");
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #333;
}
#new-header .lang.dc {
  display: none;
}
@media screen and (max-width: 999px) {
  #new-header .lang.dc {
    display: block;
  }
}
@media screen and (max-width: 999px) {
  #new-header .lang.dc {
    margin-right: 3.33vw;
  }
}
#new-header #menu-button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition-duration: 0.4s;
  position: relative;
  cursor: pointer;
  display: none;
  width: 59px;
  height: 59px;
  border-radius: 0;
  z-index: 1;
  background-color: #1D54A7;
  border: none;
}
@media screen and (max-width: 999px) {
  #new-header #menu-button {
    display: block;
  }
}
#new-header #menu-button span {
  transition-duration: 0.4s;
  display: inline-block;
  position: absolute;
}
#new-header #menu-button span:nth-of-type(1), #new-header #menu-button span:nth-of-type(2), #new-header #menu-button span:nth-of-type(3), #new-header #menu-button span:nth-of-type(4) {
  left: 15px;
  height: 2px;
  background: #fff;
  width: 30px;
}
#new-header #menu-button span:nth-of-type(1) {
  top: 20px;
}
#new-header #menu-button span:nth-of-type(2) {
  top: 29px;
}
#new-header #menu-button span:nth-of-type(3) {
  top: 38px;
}
#new-header #menu-button span:nth-of-type(4) {
  top: 29px;
  background: transparent;
}
#new-header #menu-button.active span:nth-of-type(1) {
  background: transparent;
}
#new-header #menu-button.active span:nth-of-type(2) {
  transform: rotate(-45deg);
}
#new-header #menu-button.active span:nth-of-type(3) {
  background: transparent;
}
#new-header #menu-button.active span:nth-of-type(4) {
  background: #fff;
  transform: rotate(45deg);
}
/*# sourceMappingURL=header.css.map */