/* header footer style*/
.header,
.footer {
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
}
.header a:hover,
.footer a:hover {
  opacity: 1;
}
.header .--s_orange,
.footer .--s_orange {
  background: #F07332;
}
.header .--s_blue,
.footer .--s_blue {
  background: #156082;
}

.header {
  position: relative;
  background: #ffffff;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  z-index: 10000;
}
@media screen and (max-width: 750px) {
  .header {
    margin: 0 !important;
  }
}
.header_top {
  border-bottom: 1px solid #333333;
}
@media screen and (max-width: 750px) {
  .header_top {
    border: none;
  }
}
.header_top_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1460px;
  height: 100px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 750px) {
  .header_top_inner {
    max-width: 100%;
    padding: 0 15px;
    height: 60px;
  }
}
.header_top_link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 750px) {
  .header_top_link {
    display: none;
  }
}
.header_top_link_item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  width: 100px;
  height: 100px;
}
.header_logo {
  width: 232px;
}
@media screen and (max-width: 750px) {
  .header_logo {
    width: 140px;
  }
}
.header_menu_button {
  display: none;
  position: relative;
  width: 40px;
  height: 26px;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .header_menu_button {
    display: block;
  }
}
.header_menu_button_line {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  background: #095CA8;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header_menu_button_line:nth-child(1) {
  top: 0;
}
.header_menu_button_line:nth-child(2) {
  top: 0;
  bottom: 0;
}
.header_menu_button_line:nth-child(3) {
  bottom: 0;
}
.header_menu_button.is-active .header_menu_button_line:nth-child(1) {
  bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header_menu_button.is-active .header_menu_button_line:nth-child(2) {
  display: none;
}
.header_menu_button.is-active .header_menu_button_line:nth-child(3) {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (min-width: 751px) {
  .header_bottom_inner {
    width: 100%;
    max-width: 1060px;
    height: 100px;
    margin: 0 auto;
    padding: 0 30px;
  }
}
@media screen and (max-width: 750px) {
  .header_navigation {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    height: calc(100dvh - 60px);
    padding: 18px 15px 32px;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
  }
}
@media screen and (max-width: 750px) {
  .header_navigation.is-active {
    opacity: 1;
    visibility: visible;
  }
}
.header_navigation_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 750px) {
  .header_navigation_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.header_navigation_item {
  width: 33.3333333333%;
}
@media screen and (max-width: 750px) {
  .header_navigation_item {
    width: 100%;
  }
}
@media screen and (min-width: 751px) {
  .header_navigation_item:nth-child(even) > a {
    position: relative;
  }
  .header_navigation_item:nth-child(even) > a::before, .header_navigation_item:nth-child(even) > a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 1px;
    height: 32px;
    background: #333333;
  }
  .header_navigation_item:nth-child(even) > a::before {
    left: 0;
  }
  .header_navigation_item:nth-child(even) > a::after {
    right: 0;
  }
}
.header_navigation_item > a {
  font-weight: 500;
}
@media screen and (min-width: 751px) {
  .header_navigation_item > a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100px;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
}
@media screen and (max-width: 750px) {
  .header_navigation_item > a {
    display: block;
    font-size: 1rem;
    padding: 18px 0;
    border-bottom: 1px solid #333333;
    pointer-events: none;
  }
}
.header_navigation_item > a span {
  position: relative;
  padding-right: 26px;
}
@media screen and (max-width: 750px) {
  .header_navigation_item > a span {
    display: block;
    padding: 0;
  }
}
.header_navigation_item > a span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #333333;
  border-right: 2px solid #333333;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: border-color 0.3s, -webkit-transform 0.3s;
  transition: border-color 0.3s, -webkit-transform 0.3s;
  transition: border-color 0.3s, transform 0.3s;
  transition: border-color 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 750px) {
  .header_navigation_item > a span::after {
    border-width: 1px;
    right: 16px;
  }
}
@media screen and (min-width: 751px) {
  .header_navigation_item > a:hover {
    color: #095CA8 !important;
  }
  .header_navigation_item > a:hover span::after {
    border-color: #095CA8;
  }
}
@media screen and (max-width: 750px) {
  .header_navigation_item.is-open > a > span {
    color: #095CA8;
  }
}
@media screen and (max-width: 750px) {
  .header_navigation_item.is-open > a > span::after {
    top: 5px;
    -webkit-transform: rotate(225deg);
            transform: rotate(225deg);
    border-color: #095CA8;
  }
}
@media screen and (min-width: 751px) {
  .header_navigation_sub {
    position: absolute;
    top: 201px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
    max-width: 1000px;
    padding: 32px;
    background: #095CA8;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
  }
}
@media screen and (max-width: 750px) {
  .header_navigation_sub {
    overflow: hidden;
    -webkit-transition: max-height 0.3s ease;
    transition: max-height 0.3s ease;
    max-height: 0;
  }
}
@media screen and (min-width: 751px) {
  .header_navigation_sub_list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 16px;
  }
}
@media screen and (min-width: 751px) {
  .header_navigation_sub_item {
    width: calc((100% - 32px) / 2);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
}
@media screen and (max-width: 750px) {
  .header_navigation_sub_item {
    border-bottom: 1px solid #333333;
  }
}
.header_navigation_sub_link {
  display: block;
  position: relative;
  color: #ffffff !important;
  font-size: 1rem;
  font-weight: 500;
  padding-right: 16px;
}
@media screen and (max-width: 750px) {
  .header_navigation_sub_link {
    color: #333333 !important;
    padding: 18px 0;
  }
}
.header_navigation_sub_link::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 750px) {
  .header_navigation_sub_link::after {
    right: 16px;
    border-width: 1px;
    border-color: #333333;
  }
}
.header_navigation_bottom {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px 0;
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  .header_navigation_bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.header_navigation_bottom_button {
  color: #ffffff !important;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  padding: 15px 16px;
  width: 100%;
}
.header_navigation_bottom_button.--green {
  background: #71AF42;
}
.header_navigation_bottom_button.--blue {
  background: #095CA8;
}
@media screen and (min-width: 751px) {
  .header_navigation_item:hover > .header_navigation_sub {
    opacity: 1;
    visibility: visible;
  }
}

.footer {
  padding-top: 65px;
  background: #095CA8;
}
@media screen and (max-width: 750px) {
  .footer {
    padding-top: 40px;
  }
}
.footer_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 750px) {
  .footer_inner {
    padding: 0 15px;
  }
}
@media screen and (max-width: 1024px) {
  .footer_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 22px 0;
  }
}
.footer_logo {
  width: 320px;
}
@media screen and (max-width: 1024px) {
  .footer_logo {
    width: 234px;
  }
}
@media screen and (max-width: 750px) {
  .footer_navigation {
    width: 100%;
  }
}
.footer_navigation_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 40px;
}
@media screen and (max-width: 750px) {
  .footer_navigation_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .footer_navigation_item:not(:last-child) {
    border-bottom: 1px solid #ffffff;
  }
}
.footer_navigation_item a {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .footer_navigation_item a {
    display: block;
    padding: 19px 0;
  }
}
.footer_copy {
  color: #ffffff;
  font-size: 0.75rem;
  text-align: center;
  margin-top: 54px;
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 750px) {
  .footer_copy {
    font-size: 0.625rem;
    margin-top: 0;
    padding-top: 10px;
    padding-bottom: 70px;
    border-top: 1px solid #ffffff;
  }
}