/* Josh's Custom CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

#root, #__next {
  isolation: isolate;
}

html {
  box-sizing: border-box;
}

body {
  font-family: "Figtree", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

* {
  padding: 0;
}

ol, ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.header {
  width: 100%;
  height: 100px;
  padding: 0 min(60px, 3.4090909091%);
  position: fixed;
  top: 0;
  background: #ffffff;
  z-index: 9999;
}
.header.active {
  width: calc(100% - var(--scrollbar-width));
}
.header_inner {
  margin: 0 auto;
  width: min(100%, 1760px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}
.header_ttl {
  width: 298px;
}
.header_list {
  display: flex;
  gap: 24px;
  align-items: center;
}
.header_item01 {
  display: flex;
  gap: 32px;
  background: #E1E6EB;
  padding: 10px 24px;
  border-radius: 30px;
}
.header_item01_shorui {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
.header_item01_shorui::before {
  content: "";
  display: inline-block;
  background: url("/assets/img/common/Icons_download_black.svg") no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
}
.header_item01_shorui::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: calc(100% + 16px);
  transform: translate(0, -50%);
  background: #000000;
  width: 2px;
  height: 20px;
}
.header_item01_login {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
.header_item01_login::before {
  content: "";
  display: inline-block;
  background: url("/assets/img/common/Icons_login_black.svg") no-repeat;
  width: 20px;
  height: 20px;
}
.header_item02 a {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 10px 44px 10px 16px;
  background: #004896;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
  border-radius: 30px;
}
.header_item02 a::before {
  content: "";
  display: inline-block;
  background: url("/assets/img/common/Icons_mail_white.svg") no-repeat;
  width: 20px;
  height: 20px;
}
.header_item03 {
  display: block;
  position: relative;
  margin: 0 0 0 8px;
  width: 50px;
  flex-shrink: 0;
  text-align: center;
  z-index: 999999999;
  cursor: pointer;
}
.header_item03_bar:nth-of-type(1) {
  display: block;
  width: 100%;
  height: 2px;
  background: #004896;
  animation: header-menu-bar01-close 0.75s forwards;
}
.header_item03_bar:nth-of-type(2) {
  display: block;
  margin: 6px 0;
  width: 100%;
  height: 2px;
  background: #004896;
  transition: all 0.25s 0.25s;
  opacity: 1;
}
.header_item03_bar:nth-of-type(3) {
  display: block;
  width: 100%;
  height: 2px;
  background: #004896;
  animation: header-menu-bar03-close 0.75s forwards;
}
.header_item03_text {
  margin: 9px 0 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #004896;
}
.header_item03.active .header_item03_bar:nth-of-type(1) {
  animation: header-menu-bar01 0.75s forwards;
  background: #ffffff;
}
.header_item03.active .header_item03_bar:nth-of-type(2) {
  opacity: 0;
  background: #ffffff;
}
.header_item03.active .header_item03_bar:nth-of-type(3) {
  animation: header-menu-bar03 0.75s forwards;
  background: #ffffff;
}
.header_item03.active .header_item03_text {
  margin: 16px 0 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
}
@media (min-width: 768px) {
  .header_item01 a {
    transition: 0.2s;
  }
  .header_item01 a:hover {
    color: #004896;
  }
  .header .header_item01_shorui:hover::before {
    background-image: url("/assets/img/common/Icons_download_blue.svg");
  }
  .header .header_item01_login:hover::before {
    background-image: url("/assets/img/common/Icons_login_blue.svg");
  }
  .header_item02 a {
    transition: 0.2s;
  }
  .header_item02 a:hover {
    background: #003671;
  }
  .header_item03 {
    transition: 0.2s;
  }
  .header_item03:hover {
    opacity: 0.5;
  }
}
@media (max-width: 1024px) {
  .header {
    width: 100%;
    padding: 0 max(30px, 3.90625%);
  }
  .header_list {
    gap: 32px;
  }
  .header_item01 {
    display: none;
  }
  .header_item02 a {
    flex-direction: column;
    gap: 9px;
    padding: 0;
    background: transparent;
    color: #004896;
    border-radius: 0;
  }
  .header_item02 a::before {
    display: block;
    background: url("/assets/img/common/Icons_mail_blue.svg") no-repeat;
    background-size: cover;
    width: 27.5px;
    height: 22px;
  }
  .header_item02 a:hover {
    background: transparent;
    opacity: 0.5;
  }
}
@media (max-width: 767px) {
  .header {
    width: 100%;
    height: 17.0666666667vw;
    padding: 0 6.4vw;
  }
  .header_inner {
    padding: 4.8vw 0;
  }
  .header_ttl {
    width: 52vw;
  }
  .header_list {
    gap: 3.7333333333vw;
  }
  .header_item02 a {
    gap: 1.6vw;
    font-size: 2.4vw;
    font-style: normal;
    font-weight: 500;
  }
  .header_item02 a::before {
    width: 4.2666666667vw;
    height: 3.4666666667vw;
  }
  .header_item03 {
    margin: 0;
    width: 9.6vw;
  }
  .header_item03_bar:nth-of-type(1) {
    animation: header-menu-bar01-close-sp 0.75s forwards;
  }
  .header_item03_bar:nth-of-type(2) {
    margin: 3px 0;
  }
  .header_item03_bar:nth-of-type(3) {
    animation: header-menu-bar03-close-sp 0.75s forwards;
  }
  .header_item03_text {
    margin: 6px 0 0;
    gap: 1.6vw;
    font-size: 2.4vw;
    font-style: normal;
    font-weight: 500;
  }
  .header_item03.active .header_item03_bar:nth-of-type(1) {
    animation: header-menu-bar01-sp 0.75s forwards;
    background: #ffffff;
  }
  .header_item03.active .header_item03_bar:nth-of-type(2) {
    opacity: 0;
    background: #ffffff;
  }
  .header_item03.active .header_item03_bar:nth-of-type(3) {
    animation: header-menu-bar03-sp 0.75s forwards;
    background: #ffffff;
  }
  .header_item03.active .header_item03_text {
    color: #ffffff;
    font-size: 2.4vw;
  }
}

@keyframes header-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(8px) rotate(0);
  }
  100% {
    transform: translateY(8px) rotate(30deg);
  }
}
@keyframes header-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-8px) rotate(0);
  }
  100% {
    transform: translateY(-8px) rotate(-30deg);
  }
}
@keyframes header-menu-bar01-close {
  0% {
    transform: translateY(8px) rotate(30deg);
  }
  50% {
    transform: translateY(8px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes header-menu-bar03-close {
  0% {
    transform: translateY(-8px) rotate(-30deg);
  }
  50% {
    transform: translateY(-8px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes header-menu-bar01-sp {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(5px) rotate(0);
  }
  100% {
    transform: translateY(5px) rotate(30deg);
  }
}
@keyframes header-menu-bar03-sp {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-5px) rotate(0);
  }
  100% {
    transform: translateY(-5px) rotate(-30deg);
  }
}
@keyframes header-menu-bar01-close-sp {
  0% {
    transform: translateY(5px) rotate(30deg);
  }
  50% {
    transform: translateY(5px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes header-menu-bar03-close-sp {
  0% {
    transform: translateY(-5px) rotate(-30deg);
  }
  50% {
    transform: translateY(-5px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.contents_sec_heading {
  font-size: 32px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #000000;
  word-break: keep-all;
}
@media (max-width: 767px) {
  .contents_sec_heading {
    font-size: 6.4vw;
  }
}
.contents_sec_ttl {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #000000;
  word-break: keep-all;
}
@media (max-width: 767px) {
  .contents_sec_ttl {
    font-size: 6.4vw;
  }
}
.contents_sec_subttl {
  margin: 8px 0 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
  color: #004896;
}
@media (max-width: 767px) {
  .contents_sec_subttl {
    font-size: 3.7333333333vw;
  }
}
@media (max-width: 767px) {
  .contents_sec_subttl {
    margin-top: 4px;
  }
}

.contents_box {
  position: relative;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 48px min(120px, 8.3333333333%);
}
.contents_sec {
  position: relative;
  padding: 64px 0;
}
.contents_sec:nth-of-type(1) {
  padding: 24px 0 64px;
}
@media (max-width: 1024px) {
  .contents_box {
    gap: 30px;
    padding: 48px max(30px, 2.9296875%);
  }
  .contents_sec:nth-of-type(1) {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .contents_box {
    padding-left: 6.4vw;
    padding-right: 6.4vw;
  }
  .contents_sec {
    padding-top: 8.5333333333vw;
    padding-bottom: 8.5333333333vw;
  }
  .contents_sec:nth-of-type(1) {
    padding-bottom: 8.5333333333vw;
  }
}

.header_nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: var(--scrollbar-width);
  width: 100%;
  height: 100%;
  background: #004896;
  z-index: 99999;
}
.header_nav.active {
  display: block;
  overflow-y: scroll;
}
.header_nav_inner {
  width: 100%;
}
.header_nav_wrap {
  display: flex;
  min-height: 100dvh;
  height: auto;
}
.header_nav_wrap_left {
  height: 100%;
  width: min(810px, 56.25%);
  padding: 30px min(60px, 3.4090909091%);
}
.header_nav_wrap_left_inner {
  display: flex;
  justify-content: space-between;
  gap: 64px;
}
.header_nav_wrap_left_logo img {
  width: 298px;
}
.header_nav_wrap_left_left {
  grid-row-start: 2;
  width: 100%;
  padding: 0 0 0 min(60px, 16.6666666667%);
  box-sizing: content-box;
}
.header_nav_wrap_left_right {
  grid-row-start: 2;
  width: 100%;
}
.header_nav_wrap_left_ttl {
  margin: 24px 0 0 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: #ffffff;
}
.header_nav_wrap_left_text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: #ffffff;
}
.header_nav_wrap_left_list {
  margin: 60px 0 0 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}
.header_nav_wrap_left_item {
  display: inline-block;
  padding: 8px 16px;
  background: #ffffff;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #004896;
}
.header_nav_wrap_right {
  width: 43.75%;
}
.header_nav_list_ttl_wrap {
  color: #ffffff;
  background: url(/assets/img/common/arrowbg.svg) right bottom no-repeat;
  padding-bottom: 16px;
  margin-bottom: 20px;
  display: block;
}
.header_nav_list_subttl {
  margin: 40px 0 0 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
.header_nav_list_ttl {
  position: relative;
  margin: 8px 0 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
.header_nav_list_text {
  display: block;
  margin: 16px 0 0 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #ffffff;
}
.header_nav_contact {
  position: relative;
  background: url("/assets/img/contact_bg.webp") no-repeat;
  background-size: cover;
  background-position: top center;
  height: 100%;
  padding: 0 0 30px;
}
.header_nav_contact_inner {
  padding: 100px 120px 16px min(48px, 7.9207920792%);
}
.header_nav_contact_ttl {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #ffffff;
  word-break: keep-all;
}
@media (max-width: 767px) {
  .header_nav_contact_ttl {
    font-size: 6.4vw;
  }
}
.header_nav_contact_subttl {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
  color: #004896;
}
@media (max-width: 767px) {
  .header_nav_contact_subttl {
    font-size: 3.7333333333vw;
  }
}
.header_nav_contact_subttl {
  color: #ffffff;
}
.header_nav_contact_text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0;
  color: #ffffff;
}
.header_nav_contact_list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  flex-wrap: wrap;
  gap: 2px;
  padding: min(60px, 6.5789473684%) 0 0 0;
}
.header_nav_contact_item {
  padding: min(24px, 15.0943396226%) min(24px, 6%);
  background: rgba(255, 255, 255, 0.9);
}
.header_nav_contact_item_text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  color: #004896;
}
.header_nav_contact_item_subtext {
  font-size: 12px;
  margin-top: 8px;
}
.header_nav_contact_item_tel {
  display: block;
  padding: min(24px, 11.320754717%) 0 0 0;
  font-size: clamp(20px, 2.7777777778vw, 40px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #000000;
  cursor: default;
}
.header_nav_contact_item_tel::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("/assets/img/common/Icons_phone_blue.svg") no-repeat;
  background-size: cover;
  margin: 0 6px 0 0;
  width: 1em;
  height: 1em;
}
.header_nav_contact_item_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  width: 300px;
  margin: 24px auto 0;
  padding: 14px 16px 14px 100px;
  background: #004896;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
  border-radius: 30px;
}
.header_nav_contact_item_btn:hover {
  opacity: 0.8;
}
.header_nav_contact_item_btn::after {
  content: "";
  display: inline-block;
  background: url("/assets/img/common/Icons_mail_white.svg") no-repeat;
  background-size: cover;
  width: 32px;
  height: 32px;
}
@media (min-width: 768px) {
  .header_nav_list_ttl_wrap {
    transition: 0.2s;
  }
  .header_nav_list_ttl_wrap:hover {
    color: #C2CAD2;
  }
  .header_nav_list_text {
    transition: 0.2s;
  }
  .header_nav_list_text:hover {
    color: #C2CAD2;
  }
}
@media (max-width: 1024px) {
  .header_nav_wrap {
    display: block;
  }
  .header_nav_wrap_left {
    gap: 30px;
    margin: 0 auto;
    padding: 30px max(30px, 3.90625%) 30px;
    width: auto;
  }
  .header_nav_wrap_left_inner {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .header_nav_wrap_left_left {
    padding-left: 0;
  }
  .header_nav_wrap_right {
    width: 100%;
  }
  .header_nav_list_ttl_wrap {
    max-width: 300px;
    margin-bottom: 0;
  }
  .header_nav_contact {
    width: 100%;
    height: 100%;
  }
  .header_nav_contact_inner {
    padding: 60px max(30px, 3.90625%);
  }
  .header_nav_contact_ttl, .header_nav_contact_subttl {
    text-align: center;
  }
  .header_nav_contact_list {
    flex-direction: row;
    margin: 40px 0 0;
    padding: 0;
  }
  .header_nav_contact_item {
    width: calc(50% - 2px);
    max-width: unset;
  }
  .header_nav_contact_item:nth-of-type(3) {
    width: calc(100% - 2px);
  }
  .header_nav_contact_item:nth-of-type(3) br {
    display: none;
  }
}
@media (max-width: 767px) {
  .header_nav_wrap_left {
    height: 100%;
    width: 100vw;
    margin: 0;
    padding: 4.8vw 6.4vw;
  }
  .header_nav_wrap_left_inner {
    gap: 7.2vw;
  }
  .header_nav_wrap_left_logo img {
    width: 52vw;
  }
  .header_nav_wrap_left_left {
    padding: 0;
  }
  .header_nav_wrap_left_list {
    margin: 60px 0 0 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .header_nav_wrap_left_item {
    display: inline-block;
    padding: 8px 16px;
    background: #ffffff;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    color: #004896;
  }
  .header_nav_wrap_right {
    width: 100%;
  }
  .header_nav_list_ttl_wrap {
    color: #ffffff;
  }
  .header_nav_list_subttl {
    margin: 6.4vw 0 0 0;
    font-size: 2.6666666667vw;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
  }
  .header_nav_list_ttl {
    margin: 2.1333333333vw 0 0;
    font-size: 3.7333333333vw;
    font-weight: 700;
    line-height: 1;
  }
  .header_nav_list_text {
    margin: 0;
    padding: 4.2666666667vw 0 0 0;
    font-size: 3.2vw;
    font-weight: 500;
    line-height: 1.4;
  }
  .header_nav_contact {
    padding: 0 0;
  }
  .header_nav_contact_inner {
    padding: 6.4vw 6.4vw 14.4vw;
  }
  .header_nav_contact_text {
    display: none;
  }
  .header_nav_contact_list {
    display: block;
    margin: 0;
    padding: 6.4vw 0 0;
  }
  .header_nav_contact_item {
    width: 100%;
    margin: 0.2666666667vw 0 0;
    padding: 4.2666666667vw;
  }
  .header_nav_contact_item:nth-of-type(1) {
    margin: 0;
  }
  .header_nav_contact_item:nth-of-type(3) {
    width: 100%;
  }
  .header_nav_contact_item_text {
    font-size: 3.7333333333vw;
    font-weight: 700;
    line-height: 1;
  }
  .header_nav_contact_item_subtext {
    display: none;
  }
  .header_nav_contact_item_tel {
    padding: 4.2666666667vw;
    font-size: 6.4vw;
  }
  .header_nav_contact_item_tel::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    background: url("/assets/img/common/Icons_phone_blue.svg") no-repeat;
    background-size: cover;
    margin: 0 2.1333333333vw 0 0;
    width: 1em;
    height: 1em;
  }
  .header_nav_contact_item_btn {
    display: block;
    position: relative;
    width: 69.3333333333vw;
    max-width: none;
    height: auto;
    margin: 3.2vw auto 0;
    padding: 5.0666666667vw 4.2666666667vw;
    font-size: 4.2666666667vw;
    border-radius: 100px;
  }
  .header_nav_contact_item_btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 4.2666666667vw;
    transform: translate(0, -50%);
    width: 5.3333333333vw;
    height: 4.2666666667vw;
  }
}

.top_pan {
  display: flex;
  gap: 72px;
  padding: 52px 0 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  color: #004896;
}
@media (max-width: 767px) {
  .top_pan {
    padding-top: 40px;
  }
}
.top_pan_item {
  position: relative;
}
.top_pan_item:not(:last-of-type)::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: calc(100% + 24px);
  width: 24px;
  height: 2px;
  background: #E1E6EB;
}
.top_pan_item:nth-last-of-type(1) {
  color: #666666;
}
@media (min-width: 768px) {
  .top_pan_item {
    transition: 0.2s;
    border-bottom: solid 1px transparent;
  }
  .top_pan_item:not(:last-of-type):hover {
    border-bottom-color: #004896;
  }
}
@media (max-width: 767px) {
  .top_pan {
    gap: 12.8vw;
    margin: 4.2666666667vw 0 0;
    padding: 6.4vw 0 0;
    font-size: 2.9333333333vw;
    font-weight: 400;
  }
  .top_pan_item {
    position: relative;
  }
  .top_pan_item:not(:last-of-type)::after {
    left: calc(100% + 4.2666666667vw);
    width: 4.2666666667vw;
  }
}

.contents_left_ttl {
  padding: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #004896;
  border-bottom: 1px solid #004896;
}
.contents_sticky {
  display: block;
  position: sticky;
  top: 120px;
}
.contents_sticky_list {
  margin: 16px 0 24px;
}
.contents_sticky_item {
  position: relative;
  margin: 16px 0 0;
  padding: 0 0 0 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: #808080;
  cursor: pointer;
}
.contents_sticky_item.active, .contents_sticky_item:hover {
  color: #004896;
}
.contents_sticky_item::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translate(0, -50%);
  width: 16px;
  height: 2px;
  background: #E1E6EB;
}
.contents_sticky_item-none {
  padding: 0;
}
.contents_sticky_item-none::after {
  content: none;
}
@media (min-width: 768px) {
  .contents_sticky_item-none a {
    transition: 0.2s;
  }
  .contents_sticky_item-none a:hover {
    color: #004896;
  }
}

.contents_swiper_container {
  position: relative;
  width: 47.2826086957%;
  flex-shrink: 0;
}
.contents_swiper_container .contents_swiper {
  width: 100%;
}
.contents_swiper_container .contents_swiper-slide {
  width: 100%;
}
.contents_swiper_container .contents_swiper_figcap {
  margin: 6px 0 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #000000;
  text-align: center;
}
.contents_swiper_container .contents_swiper-button-prev {
  top: auto;
  bottom: 12px;
  left: calc(50% - 60px);
  right: auto;
  width: 10px;
  height: 17px;
  color: #004896;
  z-index: 9999;
}
.contents_swiper_container .contents_swiper-button-next {
  top: auto;
  bottom: 12px;
  left: calc(50% + 46px);
  right: auto;
  width: 10px;
  height: 17px;
  color: #004896;
  z-index: 9999;
}
.contents_swiper_container .contents_swiper-pagination {
  position: relative;
  margin: 36px auto 0;
  left: auto;
  width: auto;
}
.contents_swiper_container .swiper-pagination-bullet {
  background: #E1E6EB;
  opacity: 1;
}
.contents_swiper_container .swiper-pagination-bullet-active {
  background: #004896;
}
.contents_swiper_container .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.contents_swiper_container .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
}
@media (max-width: 767px) {
  .contents_swiper_container {
    width: 100%;
  }
  .contents_swiper_container .contents_swiper {
    width: 100%;
  }
  .contents_swiper_container .contents_swiper-slide {
    width: 100%;
    padding: 0 0 16vw;
  }
  .contents_swiper_container .contents_swiper_figcap {
    margin: 1.6vw 0 0;
    font-size: 3.2vw;
  }
  .contents_swiper_container .contents_swiper-button-prev {
    top: auto;
    bottom: 5.3333333333vw;
    left: calc(50% - 16vw);
    width: 2.6666666667vw;
    height: 4.5333333333vw;
  }
  .contents_swiper_container .contents_swiper-button-next {
    bottom: 5.3333333333vw;
    left: calc(50% + 12.2666666667vw);
    width: 2.6666666667vw;
    height: 4.5333333333vw;
  }
  .contents_swiper_container .contents_swiper-pagination {
    position: absolute;
    top: auto;
    bottom: 4.8vw;
    left: 50%;
    transform: translate(-50%, 0);
    margin: 0 auto 0;
  }
}

.contents_slider {
  position: relative;
  width: calc(100vw + var(--content-offset-left) - var(--scrollbar-width));
}
.contents_slider::after {
  content: "";
  position: absolute;
  top: 0;
  left: var(--content-offset-left);
  width: calc(100vw - var(--scrollbar-width));
  height: 100%;
  background: #004896;
  z-index: -1;
}
.contents_slider::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 460px;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  clip-path: polygon(100% 0%, 100% 100%, 0% 0%);
}
.contents_slider_inner {
  position: relative;
  width: 100%;
  padding: 64px 0;
}
.contents_slider_container {
  position: relative;
}
.contents_slider-wrapper {
  transition-timing-function: linear;
}
.contents_slider-slide {
  width: auto;
}
.contents_slider-slide_item {
  height: 354px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.contents_slider-slide_item-img {
  height: 320px;
  width: auto;
}
.contents_slider-slide_item-text {
  margin: auto 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
  text-align: center;
}
.contents_slider-scrollbar.swiper-scrollbar {
  top: calc(100% + 40px);
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.2);
}
.contents_slider-scrollbar.swiper-scrollbar .swiper-scrollbar-drag {
  background-color: #ffffff;
}
.contents_slider_box {
  position: relative;
}
.contents_slider_box_btn {
  display: inline-block;
  position: relative;
  margin: 88px 0 0;
  padding: 23px 62px;
  border-radius: 30px;
  background: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #004896;
  z-index: 9;
}
.contents_slider_box_btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  width: 30px;
  height: 14px;
  border-bottom: 1px solid #004896;
  border-right: 1px solid #004896;
  transform: skew(45deg) translate(0, -50%);
}
@media (max-width: 767px) {
  .contents_slider {
    position: relative;
    left: -6.4vw;
    width: 100vw;
    background: #004896;
  }
  .contents_slider::after {
    content: none;
  }
  .contents_slider::before {
    width: 53.3333333333vw;
    height: 73.0666666667vw;
  }
  .contents_slider_inner {
    padding: 17.0666666667vw 0;
  }
  .contents_slider-wrapper {
    transition-timing-function: linear;
  }
  .contents_slider-slide_item {
    height: 48vw;
  }
  .contents_slider-slide_item-img {
    height: 42.6666666667vw;
  }
  .contents_slider-slide_item-text {
    font-size: 3.2vw;
    margin-top: 2.1333333333vw;
  }
  .contents_slider-scrollbar.swiper-scrollbar {
    width: 87.2vw;
    top: calc(100% + 10.6666666667vw);
  }
  .contents_slider_box {
    position: relative;
  }
  .contents_slider_box_btn {
    display: block;
    position: relative;
    width: 69.3333333333vw;
    margin: 21.3333333333vw auto 0;
    padding: 6.1333333333vw 4.2666666667vw;
    border-radius: 50px;
    font-size: 4.2666666667vw;
    text-align: center;
  }
  .contents_slider_box_btn::after {
    top: calc(50% - 1.0666666667vw);
    right: 4.2666666667vw;
    width: 8vw;
    height: 3.7333333333vw;
  }
}

.contents_links_list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 64px 0 0;
}
.contents_links_item {
  width: calc(50% - 20px);
  display: flex;
}
.contents_links_item a {
  display: flex;
  flex-direction: column;
}
.contents_links_item_box {
  padding: 24px 30px 24px 16px;
  background: #004896;
  position: relative;
  height: 100%;
  margin: auto 0 0;
}
.contents_links_item_box::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translate(0, -50%) rotate(45deg);
  display: block;
  width: 14px;
  height: 14px;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
.contents_links_item_text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
}
.contents_links_item_subtext {
  margin: 12px 0 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
}
@media (max-width: 767px) {
  .contents_links {
    padding: 8.5333333333vw 0;
  }
  .contents_links_list {
    display: block;
    margin: 0;
  }
  .contents_links_item {
    display: block;
    width: 100%;
    margin: 4.2666666667vw 0 0 0;
  }
  .contents_links_item:nth-of-type(1) {
    margin: 0;
  }
  .contents_links_item a {
    display: block;
  }
  .contents_links_item_img {
    display: none;
  }
  .contents_links_item_box {
    padding: 6.4vw 4.2666666667vw;
  }
  .contents_links_item_box::after {
    content: "";
    position: absolute;
    top: calc(50% - 1.3333333333vw);
    right: 4.2666666667vw;
    transform: rotate(45deg);
    width: 2.1333333333vw;
    height: 2.1333333333vw;
  }
  .contents_links_item_text {
    font-size: 4.2666666667vw;
  }
  .contents_links_item_subtext {
    margin: 3.2vw 0 0;
    font-size: 3.2vw;
  }
}

.btn_to_top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background-color: #004896;
  z-index: 999;
}
.btn_to_top_btn {
  display: block;
  padding: 48px 0 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
  text-align: center;
}
.btn_to_top_btn::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  width: 24px;
  height: 24px;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transform: translate(-50%, 0) rotate(-45deg);
}
@media (min-width: 768px) {
  .btn_to_top {
    transition: background-color 0.2s;
  }
  .btn_to_top:hover {
    background-color: #003671;
  }
}
@media (min-width: 1680px) {
  .btn_to_top {
    left: calc(50% + 720px);
    right: auto;
  }
}
@media (max-width: 767px) {
  .btn_to_top {
    position: fixed;
    width: 11.7333333333vw;
    height: 11.7333333333vw;
    bottom: 0;
    right: 0;
  }
  .btn_to_top_btn {
    display: block;
    padding: 6.9333333333vw 0 1.3333333333vw;
    font-size: 2.4vw;
    font-weight: 500;
  }
  .btn_to_top_btn::before {
    content: "";
    position: absolute;
    top: 3.2vw;
    left: 50%;
    width: 3.4666666667vw;
    height: 3.4666666667vw;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    transform: translate(-50%, 0) rotate(-45deg);
  }
}

.contact {
  position: relative;
  background: url("/assets/img/contact_bg.webp") no-repeat;
  background-size: cover;
  background-position: top center;
}
.contact_inner {
  position: relative;
  width: min(100%, 1640px);
  margin: 0 auto;
  padding: 80px min(120px, 8.3333333333%) 64px;
}
.contact_topBox {
  display: flex;
  align-items: center;
  gap: 80px;
}
.contact_topBox_left {
  flex-shrink: 0;
}
.contact_ttl {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #000000;
  word-break: keep-all;
}
@media (max-width: 767px) {
  .contact_ttl {
    font-size: 6.4vw;
  }
}
.contact_ttl {
  color: #ffffff;
}
.contact_subttl {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
  color: #004896;
}
@media (max-width: 767px) {
  .contact_subttl {
    font-size: 3.7333333333vw;
  }
}
.contact_subttl {
  color: #ffffff;
}
.contact_text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
  color: #ffffff;
}
.contact_box {
  margin: 60px 0 0;
}
.contact_list {
  display: flex;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 2px;
}
.contact_item {
  padding: 40px 16px;
  width: calc((100% - 4px) / 3);
  background: rgba(255, 255, 255, 0.9);
}
.contact_item_text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  color: #004896;
}
.contact_item_subtext {
  font-size: 12px;
  margin-top: 8px;
}
.contact_item_tel {
  display: block;
  padding: 30px 0 0 0;
  font-size: clamp(20px, 2.7777777778vw, 40px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #000000;
  cursor: default;
}
.contact_item_tel::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("/assets/img/common/Icons_phone_blue.svg") no-repeat;
  background-size: cover;
  margin: 0 6px 0 0;
  width: 1em;
  height: 1em;
}
.contact_item_btn {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 300px;
  margin: 24px auto 0;
  padding: 12px 16px;
  background: #004896;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
  border-radius: 30px;
  height: 60px;
}
.contact_item_btn_text {
  flex: 1;
}
.contact_item_btn:hover {
  opacity: 0.8;
}
.contact_item_btn::after {
  content: "";
  display: inline-block;
  background: url("/assets/img/common/Icons_mail_white.svg") no-repeat;
  background-size: cover;
  width: 32px;
  height: 32px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .contact_inner {
    padding: 64px max(30px, 3.90625%);
  }
  .contact_text_br {
    display: none;
  }
}
@media (max-width: 768px) {
  .contact_topBox {
    gap: 3.906%;
  }
  .contact_topBox_left {
    flex-shrink: 0;
  }
  .contact_box {
    margin: 60px 0 0;
  }
  .contact_item {
    aspect-ratio: unset;
    width: calc(50% - 2px);
    padding: 32px 16px;
  }
  .contact_item:nth-of-type(3) {
    width: calc(100% - 2px);
  }
  .contact_item_tel {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .contact {
    padding: 0 0;
    background-position: top left;
  }
  .contact_inner {
    padding: 8.5333333333vw 6.4vw 8.5333333333vw;
  }
  .contact_topBox {
    display: block;
  }
  .contact_box {
    margin: 0;
  }
  .contact_ttl, .contact_subttl {
    text-align: center;
  }
  .contact_text {
    display: none;
  }
  .contact_list {
    display: block;
    margin: 0;
    padding: 6.4vw 0 0;
  }
  .contact_item {
    width: 100%;
    margin: 0.2666666667vw 0 0;
    padding: 4.2666666667vw;
  }
  .contact_item:nth-of-type(1) {
    margin: 0;
  }
  .contact_item:nth-of-type(3) {
    width: 100%;
  }
  .contact_item_text {
    font-size: 3.2vw;
    font-weight: 500;
    line-height: 1;
  }
  .contact_item_subtext {
    display: none;
  }
  .contact_item_tel {
    padding: 4.2666666667vw;
    font-size: 6.4vw;
  }
  .contact_item_tel::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    background: url("/assets/img/common/Icons_phone_blue.svg") no-repeat;
    background-size: cover;
    margin: 0 2.1333333333vw 0 0;
    width: 1em;
    height: 1em;
  }
  .contact_item_btn {
    display: block;
    position: relative;
    width: 69.3333333333vw;
    max-width: none;
    height: auto;
    margin: 3.2vw auto 0;
    padding: 5.0666666667vw 4.2666666667vw;
    font-size: 4.2666666667vw;
    border-radius: 100px;
  }
  .contact_item_btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 4.2666666667vw;
    transform: translate(0, -50%);
    width: 5.3333333333vw;
    height: 4.2666666667vw;
  }
}

.nav {
  background: #004896;
}
.nav_inner {
  width: min(100%, 1640px);
  margin: 0 auto;
  padding: 64px min(120px, 8.3333333333%) 64px;
}
.nav_wrap {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.nav_wrap_left_logo {
  width: 298px;
  margin: 0 0 40px;
}
.nav_wrap_left_ttl {
  margin: 24px 0 0 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #ffffff;
}
.nav_wrap_left_text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: #ffffff;
}
.nav_wrap_left_list {
  margin: 40px 0 0 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}
.nav_wrap_left_item {
  display: inline-block;
  padding: 8px 16px;
  background: #ffffff;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #004896;
}
.nav_wrap_right {
  display: flex;
  gap: 60px;
  margin: -40px 0 0 0;
}
.nav_wrap_right_right {
  width: 240px;
}
.nav_wrap_right_left {
  width: 240px;
}
.nav_list_ttl_wrap {
  color: #ffffff;
  background: url(/assets/img/common/arrowbg.svg) right bottom no-repeat;
  padding-bottom: 16px;
  margin-bottom: 20px;
  display: block;
}
.nav_list_subttl {
  margin: 40px 0 0 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
.nav_list_ttl {
  position: relative;
  margin: 8px 0 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
.nav_list_text {
  display: block;
  margin: 16px 0 0 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #ffffff;
}
@media (min-width: 768px) {
  .nav_list_ttl_wrap {
    transition: 0.2s;
  }
  .nav_list_ttl_wrap:hover {
    color: #C2CAD2;
  }
  .nav_list_text {
    transition: 0.2s;
  }
  .nav_list_text:hover {
    color: #C2CAD2;
  }
}
@media (max-width: 1024px) {
  .nav_inner {
    padding: 64px max(30px, 3.90625%) 64px;
  }
  .nav_wrap {
    gap: 30px;
  }
  .nav_wrap_left_logo {
    width: 298px;
    margin: 0;
  }
  .nav_wrap_left_text {
    font-weight: 400;
  }
  .nav_wrap_right {
    gap: 30px;
  }
  .nav_wrap_right_right {
    width: 175px;
  }
  .nav_wrap_right_left {
    width: 175px;
  }
  .nav_list_ttl::after {
    width: 164px;
    height: 54px;
  }
}
@media (max-width: 767px) {
  .nav_inner {
    padding: 6.4vw;
  }
  .nav_wrap {
    flex-wrap: wrap;
    gap: 6.4vw;
  }
  .nav_wrap_left_logo {
    width: 52vw;
    margin: 0;
  }
  .nav_wrap_left_ttl {
    margin: 4.2666666667vw 0 0 0;
    font-size: 3.7333333333vw;
  }
  .nav_wrap_left_ttl:nth-of-type(1) {
    margin: 6.4vw 0 0 0;
  }
  .nav_wrap_left_text {
    margin: 2.1333333333vw 0 0 0;
    font-size: 3.2vw;
    font-weight: 400;
  }
  .nav_wrap_left_list {
    margin: 4.2666666667vw 0 0 0;
    gap: 2.1333333333vw;
  }
  .nav_wrap_left_item {
    padding: 2.1333333333vw 4.2666666667vw;
    border-radius: 14px;
    font-size: 3.2vw;
    font-weight: 500;
  }
  .nav_wrap_right {
    gap: 7.2vw;
    margin: 0;
  }
  .nav_wrap_right_right {
    width: 40vw;
  }
  .nav_wrap_right_left {
    width: 40vw;
  }
  .nav_list_subttl {
    margin: 6.4vw 0 0 0;
    font-size: 2.6666666667vw;
  }
  .nav_list_ttl {
    margin: 2.1333333333vw 0 0;
    font-size: 3.7333333333vw;
  }
  .nav_list_text {
    margin: 4.2666666667vw 0 0 0;
    font-size: 3.2vw;
    font-weight: 500;
  }
}

.copyright {
  background: #4D4D4D;
}
.copyright_inner {
  width: min(100%, 1640px);
  margin: 0 auto;
  padding: 30px min(120px, 8.3333333333%);
  display: flex;
  justify-content: space-between;
}
.copyright_privacy {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  color: #ffffff;
}
.copyright_copy {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  color: #ffffff;
}
@media (min-width: 768px) {
  .copyright_privacy:hover {
    text-decoration: underline;
  }
}
@media (max-width: 1024px) {
  .copyright_inner {
    padding: 24px max(30px, 3.90625%);
  }
}
@media (max-width: 767px) {
  .copyright_inner {
    padding: 3.7333333333vw 4.2666666667vw;
  }
  .copyright_privacy {
    font-size: 3.2vw;
    line-height: 1.2;
  }
  .copyright_copy {
    font-size: 3.2vw;
    line-height: 1.2;
  }
}

.header {
  background-color: rgba(255, 255, 255, 0.2);
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  z-index: 10;
  padding: 0;
}
.header.active {
  width: calc(100% - var(--scrollbar-width));
}
.header_inner {
  padding: 0 0 0 min(60px, 3.4090909091%);
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media (max-width: 767px) {
  .header_inner {
    padding-left: 6.4vw;
  }
}
.header_ttl {
  padding: 30px 0;
  width: auto;
  display: flex;
  align-items: center;
}
.header_ttl a img {
  margin-right: 24px;
}
.header_ttl p {
  writing-mode: horizontal-tb;
  white-space: nowrap;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .header_ttl {
    padding: 4.8vw 0;
    width: 52vw;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .header_ttl a img {
    margin-right: 0;
  }
  .header_ttl p {
    font-size: 11px;
  }
}
.header_list {
  gap: 0;
  display: flex;
  align-items: stretch;
}
.header_info {
  height: 100%;
}
.header_info a {
  background-color: #ffffff;
  color: #004896;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  align-content: center;
  padding-left: 64px;
  padding-right: 64px;
  height: 100%;
}
@media (min-width: 768px) {
  .header_info a {
    transition: 0.2s;
  }
  .header_info a:hover {
    background-color: #F4F4F4;
  }
}
@media (max-width: 767px) {
  .header_info a {
    padding-left: 16px;
    padding-right: 16px;
    font-size: 11px;
  }
}
.header_item03 {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  padding: 35px 25px;
  margin: 0;
  width: auto;
  background-color: #004896;
}
.header_item03_bar:nth-of-type(1) {
  width: 50px;
  background: #ffffff;
  animation: header-menu-bar01-close-recruit 0.75s forwards;
}
.header_item03_bar:nth-of-type(2) {
  width: 50px;
  background: #ffffff;
}
.header_item03_bar:nth-of-type(3) {
  width: 50px;
  background: #ffffff;
  animation: header-menu-bar03-close-recruit 0.75s forwards;
}
.header_item03.active .header_item03_bar:nth-of-type(1) {
  animation: header-menu-bar01-recruit 0.75s forwards;
}
.header_item03.active .header_item03_bar:nth-of-type(3) {
  animation: header-menu-bar03-recruit 0.75s forwards;
}
@media (min-width: 768px) {
  .header_item03:hover {
    background-color: #003671;
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .header_item03 {
    height: 100%;
    padding: 0 16px;
    justify-content: center;
  }
  .header_item03_bar:nth-of-type(1), .header_item03_bar:nth-of-type(2), .header_item03_bar:nth-of-type(3) {
    width: 24px;
    height: 1px;
  }
  .header_item03_bar:nth-of-type(1) {
    animation: header-menu-bar01-close-sp-recruit 0.75s forwards;
  }
  .header_item03_bar:nth-of-type(2) {
    margin: 6px 0;
  }
  .header_item03_bar:nth-of-type(3) {
    animation: header-menu-bar03-close-sp-recruit 0.75s forwards;
  }
  .header_item03.active .header_item03_bar:nth-of-type(1) {
    animation: header-menu-bar01-sp-recruit 0.75s forwards;
  }
  .header_item03.active .header_item03_bar:nth-of-type(3) {
    animation: header-menu-bar03-sp-recruit 0.75s forwards;
  }
}
@media (max-width: 767px) {
  .header {
    height: auto;
  }
}

@keyframes header-menu-bar01-recruit {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(14px) rotate(0);
  }
  100% {
    transform: translateY(14px) rotate(30deg);
  }
}
@keyframes header-menu-bar03-recruit {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-14px) rotate(0);
  }
  100% {
    transform: translateY(-14px) rotate(-30deg);
  }
}
@keyframes header-menu-bar01-close-recruit {
  0% {
    transform: translateY(14px) rotate(30deg);
  }
  50% {
    transform: translateY(14px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes header-menu-bar03-close-recruit {
  0% {
    transform: translateY(-14px) rotate(-30deg);
  }
  50% {
    transform: translateY(-14px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes header-menu-bar01-sp-recruit {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(7px) rotate(0);
  }
  100% {
    transform: translateY(7px) rotate(30deg);
  }
}
@keyframes header-menu-bar03-sp-recruit {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-7px) rotate(0);
  }
  100% {
    transform: translateY(-7px) rotate(-30deg);
  }
}
@keyframes header-menu-bar01-close-sp-recruit {
  0% {
    transform: translateY(7px) rotate(30deg);
  }
  50% {
    transform: translateY(7px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes header-menu-bar03-close-sp-recruit {
  0% {
    transform: translateY(-7px) rotate(-30deg);
  }
  50% {
    transform: translateY(-7px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@media (max-width: 767px) {
  .disp-pc {
    display: none;
  }
}

.top {
  position: relative;
  top: -100px;
}
.top_inner {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  padding: 0 min(120px, 8.3333333333%);
  background: url("../img/mv.webp") no-repeat;
  background-size: cover;
  background-position: center center;
}
.top_ttl {
  padding: 50px 0 0;
  font-size: 5vw;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #ffffff;
}
@media (max-width: 768px) {
  .top {
    aspect-ratio: 1440/1000;
  }
  .top_inner {
    height: 100%;
  }
}
@media (max-width: 767px) {
  .top {
    aspect-ratio: unset;
  }
  .top_inner {
    width: 100%;
    height: 90vh;
    background-position: top right 20%;
  }
  .top_ttl {
    width: 100%;
    padding: 0;
    padding-bottom: 15vh;
    text-align: center;
    font-size: 8.6666666667vw;
  }
}

.contents {
  margin-top: -100px;
}
.contents_bottom {
  margin-top: 0;
}
.contents_box {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 60px;
  position: relative;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 48px min(120px, 8.3333333333%) 0;
}
.contents_box_message {
  position: relative;
  margin: 0 auto;
  padding: 80px min(120px, 8.3333333333%) 64px;
  background: url("../img/bg.webp") no-repeat;
}
.contents_ttl {
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  font-size: 60px;
  padding-bottom: 16px;
}
.contents_ttl_sub {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  padding-bottom: 48px;
}
.contents_text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  color: #ffffff;
  text-align: center;
}
.contents_left {
  width: 220px;
  flex-shrink: 0;
  mix-blend-mode: multiply;
  padding-bottom: 64px;
}
@media (max-width: 768px) {
  .contents_left {
    display: none;
  }
}
.contents_left_ttl {
  padding: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #004896;
  border-bottom: 1px solid #004896;
}
.contents_right {
  flex: 1;
  min-width: 0;
}
.contents_sec {
  position: relative;
}
.contents_sec_heading {
  color: #004896;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  font-size: 60px;
  padding-bottom: 16px;
}
.contents_sec_text {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: #004896;
  text-align: center;
  padding-bottom: 48px;
}
.contents_sec_ttl {
  display: none;
  margin: 58px 0 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #000000;
  word-break: keep-all;
}
.contents_sec_box {
  display: flex;
  gap: 48px;
}
@media (max-width: 767px) {
  .contents_sec_box {
    flex-direction: column;
  }
}
.contents_sec_box_right {
  flex: 1;
}
.contents_sec_box_img {
  width: min(45%, 400px);
  flex-shrink: 0;
}
.contents_sec_box_img_sp {
  display: none;
}
.contents_sec_box_text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  color: #004896;
}
.contents_sec_box_btn {
  position: relative;
  display: inline-block;
  width: min(260px, 81.9672131148%);
  margin: 48px 0 0;
  padding: min(23px, 8.8461538462%) 0;
  border-radius: 100px;
  background: #004896;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
  text-align: center;
}
.contents_sec_box_btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  width: 30px;
  height: 14px;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transform: skew(45deg) translate(0, -50%);
}
@media (min-width: 768px) {
  .contents_sec_box_btn {
    transition: background-color 0.2s;
  }
  .contents_sec_box_btn:hover {
    background-color: #003671;
  }
}
.contents_sec_box_labels {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin: 48px 0 0;
}
.contents_sec_box_labels_term {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #000000;
}
.contents_sec_box_labels_desc {
  padding: 8px;
  background: #E1E6EB;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #000000;
}
.contents_sec_img {
  width: 43.4782608696%;
}
.contents_sec_img_sp {
  display: none;
}
.contents_wrap {
  padding: 80px 0 64px;
}
.contents_wrap_data {
  background-color: #E6EDF5;
  position: relative;
  padding: 64px 0;
}
.contents_wrap_data:nth-of-type(1) {
  padding: 0 0 64px;
}
.contents_wrap_data:nth-of-type(2n) {
  background: #E6EDF5;
}
.contents_wrap_data:nth-of-type(2n)::after {
  content: "";
  position: absolute;
  top: 0;
  left: var(--content-offset-left);
  width: calc(100vw - var(--scrollbar-width));
  height: 100%;
  background: #E6EDF5;
  z-index: -1;
}
.contents_wrap_recruit {
  background-color: #E6EDF5;
  position: relative;
  padding: 64px 0;
}
.contents_wrap_recruit:nth-of-type(1) {
  padding: 0 0 64px;
}
.contents_wrap_recruit:nth-of-type(2n) {
  background: #E6EDF5;
}
.contents_wrap_recruit:nth-of-type(2n)::after {
  content: "";
  position: absolute;
  top: 0;
  left: var(--content-offset-left);
  width: calc(100vw - var(--scrollbar-width));
  height: 100%;
  background: #E6EDF5;
  z-index: -1;
}
.contents .grid_container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 15px;
  grid-auto-rows: auto;
}
.contents .grid_item {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #004896;
  padding: 24px;
}
.contents .grid_item.col-3 {
  grid-column: span 4;
  aspect-ratio: 1/1;
}
.contents .grid_item.col-wide {
  grid-column: span 6;
  aspect-ratio: 229/150;
}
.contents .grid_item.col-narrow {
  grid-column: span 3;
  aspect-ratio: 11/15;
}
.contents .grid_item img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.contents .grid_ttl {
  font-weight: 700;
  text-align: center;
}
@media (max-width: 767px) {
  .contents .grid_item {
    padding: 8px;
  }
  .contents .grid_item.col-3, .contents .grid_item.col-narrow {
    grid-column: span 6;
    aspect-ratio: 1/1;
    text-align: center;
  }
  .contents .grid_item.col-3 img, .contents .grid_item.col-narrow img {
    width: auto;
    height: 100%;
  }
  .contents .grid_item.col-wide {
    grid-column: span 12;
  }
  .contents .grid_item:nth-child(1) {
    order: 1;
  }
  .contents .grid_item:nth-child(2) {
    order: 2;
  }
  .contents .grid_item:nth-child(4) {
    order: 3;
  }
  .contents .grid_item:nth-child(5) {
    order: 4;
  }
  .contents .grid_item:nth-child(6) {
    order: 5;
  }
  .contents .grid_item:nth-child(3) {
    order: 6;
  }
  .contents .grid_item:nth-child(7) {
    order: 7;
  }
  .contents .grid_item:nth-child(8) {
    order: 8;
  }
  .contents .grid_item:nth-child(9) {
    order: 9;
  }
  .contents .grid_ttl {
    font-size: 13px;
  }
}
.contents_benefits {
  display: flex;
  gap: 40px;
  justify-content: center;
}
.contents_benefits_list {
  max-width: 440px;
  width: 100%;
}
.contents_benefits_list_item {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  padding: 16px;
  border-bottom: 1px solid #004896;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contents_benefits_list_item::before {
  content: "";
  display: inline-block;
  background: url("../../../assets/img/common/Icons_circle_blue.svg") no-repeat;
  background-size: cover;
  width: 24px;
  height: 24px;
}
@media (max-width: 767px) {
  .contents_benefits {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }
  .contents_benefits_list_item {
    font-size: 14px;
  }
  .contents_benefits_list_item::before {
    width: 18px;
    height: 18px;
  }
}
.contents_recruit:nth-of-type(1) {
  padding-bottom: 64px;
}
.contents_recruit_title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  color: #004896;
  text-align: center;
}
.contents_recruit_subtitle {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #004896;
  text-align: center;
  padding-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.contents_recruit_subtitle::before {
  content: "";
  display: inline-block;
  background: url("../../../assets/img/common/Icons_beginner.svg") no-repeat;
  background-size: cover;
  width: 13px;
  height: 20px;
}
.contents_recruit_table {
  border-top: 1px solid #004896;
  margin: 32px 0 0;
}
.contents_recruit_table_row {
  display: flex;
  gap: 0;
  justify-content: center;
}
.contents_recruit_table_ttl {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #ffffff;
  background-color: #004896;
  padding: 32px 16px;
  border-bottom: 1px solid #ffffff;
  width: 200px;
  display: flex;
  align-items: center;
}
.contents_recruit_table_data {
  color: #000000;
  background-color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  padding: 32px 16px;
  border-bottom: 1px solid #004896;
  width: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .contents_recruit:nth-of-type(1) {
    padding-bottom: 32px;
  }
  .contents_recruit_title {
    font-size: 24px;
  }
  .contents_recruit_subtitle {
    font-size: 14px;
  }
  .contents_recruit_table {
    margin: 24px 0 p;
  }
  .contents_recruit_table_ttl {
    padding: 16px 8px;
    font-size: 14px;
  }
  .contents_recruit_table_data {
    padding: 16px 8px;
    font-size: 14px;
  }
}
.contents_sticky {
  background-color: #004896;
}
.contents_sticky_list {
  padding: 24px;
}
.contents_sticky_item {
  color: #ffffff;
}
.contents_sticky_item.active, .contents_sticky_item:hover {
  color: #468FDE;
}
@media (max-width: 1024px) {
  .contents_box {
    gap: 30px;
    padding: 48px max(30px, 2.9296875%) 0;
  }
  .contents_sec_box {
    display: flex;
    gap: 32px;
  }
  .contents_sec_box_btn {
    width: min(260px, 100%);
  }
}
@media (max-width: 767px) {
  .contents_wrap {
    padding: 40px 0;
  }
  .contents_box {
    padding-top: 0;
  }
  .contents_box_message {
    padding: 40px 6.4vw;
  }
  .contents_sec_heading, .contents_ttl {
    font-size: 40px;
    padding-bottom: 8px;
  }
  .contents_sec_text, .contents_ttl_sub {
    font-size: 11px;
    padding-bottom: 32px;
  }
  .contents_text {
    font-size: 14px;
    text-align: left;
  }
  .contents_sec_box_img {
    width: 100%;
  }
  .contents_sec_box_text {
    font-size: 14px;
  }
}

.contact {
  background: url("../img/bg.webp") no-repeat;
}
.contact_ttl {
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  font-size: 60px;
  padding-bottom: 16px;
}
.contact_ttl_sub {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  padding-bottom: 48px;
}
.contact_caption {
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  line-height: 1.8;
  font-size: 18px;
  padding-bottom: 16px;
}
.contact_caption_sub {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
  text-align: center;
  padding-bottom: 48px;
}
.contact_box {
  margin: 0;
}
.contact_list {
  gap: 40px;
}
.contact_item_tel {
  color: #004896;
  padding-top: 24px;
}
.contact_item_tel::before {
  content: none !important;
  display: none !important;
}
.contact_item_subtext {
  color: #004896;
}
.contact_item_btn::after {
  content: none !important;
  display: none !important;
}
.contact_item_text_tel {
  color: #004896;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  font-size: 20px;
  display: flex;
  justify-content: center;
  gap: 16px;
  width: 100%;
}
.contact_item_text_tel::before {
  content: "";
  display: inline-block;
  background: url("../../../assets/img/common/Icons_phone_blue.svg") no-repeat;
  background-size: contain;
  width: 26px;
  height: 26px;
}
.contact_item_text_mail {
  color: #004896;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  font-size: 20px;
  display: flex;
  justify-content: center;
  gap: 16px;
  width: 100%;
}
.contact_item_text_mail::before {
  content: "";
  display: inline-block;
  background: url("../../../assets/img/common/Icons_mail_blue.svg") no-repeat;
  background-size: contain;
  width: 26px;
  height: 21px;
}
@media (max-width: 768px) {
  .contact_list {
    gap: 32px;
  }
  .contact_item {
    width: calc(50% - 16px);
  }
}
@media (max-width: 767px) {
  .contact_inner {
    padding-top: 48px;
  }
  .contact_ttl {
    font-size: 40px;
  }
  .contact_subttl {
    font-size: 11px;
  }
  .contact_caption_sub {
    padding-bottom: 0;
  }
  .contact_list {
    display: block;
  }
  .contact_list li + li {
    margin-top: 16px;
  }
  .contact_item {
    padding-top: 24px;
    padding-bottom: 24px;
    width: 100%;
  }
}

.nav {
  background-color: #4D4D4D;
}
.nav_wrap {
  all: unset;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav_wrap_left_list {
  all: unset;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 40px 0 0 0;
}
.nav_wrap_left_item {
  color: #666666;
}
@media (max-width: 767px) {
  .nav_wrap {
    gap: 6.4vw;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav_wrap_left:nth-of-type(2) .nav_wrap_left_ttl {
    margin-top: 0;
  }
  .nav_wrap_left_list {
    flex-direction: column;
    align-items: flex-start;
  }
}

.testing {
  background: #004896;
  position: relative;
}
.testing_inner {
  width: 100%;
  margin: 80px auto 0;
  padding: 120px 0;
}
.testing_box {
  position: relative;
  width: min(100%, 1640px);
  margin: 0 auto;
  padding: 0 min(120px, 8.3333333333%) 60px;
}
.testing_box_btn {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 120px;
  padding: 23px 62px;
  border-radius: 30px;
  background: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #004896;
  z-index: 9;
}
.testing_box_btn:hover {
  opacity: 0.8;
}
.testing_box_btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  width: 30px;
  height: 14px;
  border-bottom: 1px solid #004896;
  border-right: 1px solid #004896;
  transform: skew(45deg) translate(0, -50%);
}
.testing_ttl {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  color: #ffffff;
}
.testing_subttl {
  margin: 16px 0 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
}
.testing_text {
  margin: 40px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0;
  color: #ffffff;
}
.testing_swiper {
  width: 100%;
}
.testing_swiper_container {
  position: relative;
  padding-bottom: 40px;
}
.testing_swiper-wrapper {
  gap: 8px;
  transition-timing-function: linear;
}
.testing_swiper-slide {
  width: auto;
}
.testing_swiper-slide_item {
  height: 354px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.testing_swiper-slide_item-img {
  height: 320px;
  width: auto;
}
.testing_swiper-slide_item-text {
  margin: auto 0 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
}
.testing_swiper-scrollbar.swiper-scrollbar {
  top: auto;
  bottom: 32px;
  left: 50%;
  transform: translate(-50%, 0);
  width: min(100% - 240px, 1640px);
  height: 4px;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 0;
}
.testing_swiper-scrollbar.swiper-scrollbar .swiper-scrollbar-drag {
  background-color: #ffffff;
}
@media (max-width: 1024px) {
  .testing::after {
    width: 230px;
    height: 315px;
  }
  .testing_inner {
    padding: 120px 0 218px;
  }
  .testing_box {
    position: inherit;
    padding: 0 max(30px, 3.90625%) 60px;
  }
  .testing_box_btn {
    top: auto;
    bottom: 80px;
    left: 50%;
    right: auto;
    transform: translate(-50%, 0);
    padding: 19px 56px;
  }
}

.btn_to_top {
  z-index: 9;
}/*# sourceMappingURL=style.css.map */