/* 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;
  }
}

.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;
  }
}

.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);
  }
}

.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;
  }
}

.top {
  position: relative;
  margin: 100px 0 0;
}
.top::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: min(580px, 38.1944444444%);
  height: min(795px, 54.1666666667vw);
  background: #E1E6EB;
  clip-path: polygon(100% 0%, 100% 100%, 0% 0%);
  z-index: -1;
}
.top_inner {
  position: relative;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 60px min(120px, 8.3333333333%) 0;
}
.top_ttl {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #000000;
}
.top_subttl {
  margin: 8px 0 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  color: #004896;
}
.top_heading {
  padding: 48px 0 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #000000;
  word-break: keep-all;
}
@media (max-width: 767px) {
  .top_heading {
    font-size: 6.4vw;
  }
}
.top_heading_blue {
  color: #004896;
}
.top_text {
  padding: 40px 0 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
  color: #000000;
  text-align: justify;
}
@media (max-width: 1024px) {
  .top_inner {
    padding-left: max(30px, 2.9296875%);
    padding-right: max(30px, 2.9296875%);
  }
}
@media (max-width: 767px) {
  .top {
    margin: 17.0666666667vw 0 0;
  }
  .top::before {
    content: none;
  }
  .top_inner {
    padding: 6.4vw 6.4vw 0;
  }
  .top_ttl {
    font-size: 7.7333333333vw;
  }
  .top_subttl {
    margin: 3.2vw 0 0;
    font-size: 3.7333333333vw;
  }
  .top_heading {
    position: relative;
    font-size: 6.4vw;
  }
  .top_heading::before {
    content: "";
    display: block;
    position: absolute;
    top: 4.2666666667vw;
    right: -6.4vw;
    width: 21.3333333333vw;
    height: 29.3333333333vw;
    background: #F7F8FA;
    clip-path: polygon(100% 0%, 100% 100%, 0% 0%);
    z-index: -1;
  }
  .top_text {
    padding-top: 24px;
    font-size: 4.2666666667vw;
    line-height: 1.6;
  }
}

.contents {
  padding: 64px min(120px, 8.3333333333%);
}
.contents_sec {
  max-width: 920px;
  margin: 0 auto;
}
.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_ttl {
  margin-bottom: 48px;
  color: #004896;
}
.contents_sec_subttl {
  margin-top: 48px;
  margin-bottom: 36px;
  position: relative;
  padding: 0 0 0 40px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #004896;
}
.contents_sec_subttl:before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  width: 24px;
  height: 2px;
  background: #004896;
}
@media (max-width: 767px) {
  .contents_sec_subttl {
    font-size: 5.3333333333vw;
    padding-left: 30px;
  }
  .contents_sec_subttl::before {
    width: 18px;
  }
}
.contents_sec_text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  color: #000000;
}
@media (max-width: 767px) {
  .contents_sec_text {
    font-size: 3.7333333333vw;
  }
}
.contents_sec_list {
  list-style: decimal inside;
}
@media (max-width: 1024px) {
  .contents {
    padding: 48px max(30px, 2.9296875%);
  }
  .contents_sec {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .contents {
    padding: 48px 6.4vw 48px;
  }
  .contents_sec:nth-of-type(1) {
    padding-bottom: 0;
  }
  .contents_sec_ttl {
    margin-bottom: 3.2vw;
  }
  .contents_sec_subttl {
    margin: 6.4vw 0 3.2vw;
  }
}/*# sourceMappingURL=style.css.map */