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

.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 {
  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: #004896;
  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;
}
.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.0666666667% 0 0;
  }
  .top::before {
    content: none;
  }
  .top_inner {
    padding: 6.4vw 6.4vw 0;
  }
  .top_ttl {
    font-size: 8vw;
  }
  .top_subttl {
    margin: 3.2vw 0 0;
    font-size: 3.7333333333vw;
  }
  .top_heading {
    padding: 48px 0 0;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    color: #000000;
  }
  .top_heading_blue {
    color: #004896;
  }
  .top_text {
    font-size: 4.2666666667vw;
  }
}

.contents {
  padding: 64px min(120px, 8.3333333333%);
}
.contents_box {
  position: relative;
  width: min(100%, 1440px);
  max-width: 920px;
  margin: 0 auto;
  padding: 24px 0 0;
}
.contents_box > p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
  color: #000000;
}
.contents_left {
  width: 220px;
  flex-shrink: 0;
  mix-blend-mode: difference;
}
.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_means {
  display: flex;
  justify-content: space-between;
}
.contents_division {
  width: 49%;
  text-align: center;
  padding: 24px;
  background-color: #E1E6EB;
  margin-top: 48px;
  margin-bottom: 24px;
}
.contents_division_ttl {
  color: #004896;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0px;
}
.contents_division_tel {
  display: block;
  padding: 8px 0 0 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #000000;
}
.contents_division_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: 30px;
  height: 30px;
}
.contents_division_tel-link {
  cursor: default;
}
.contents_division_time {
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0px;
  margin-top: 12px;
}
.contents_sec {
  position: relative;
  padding: 64px 0;
}
.contents_sec:nth-of-type(1) {
  padding: 0 0 64px;
}
.contents_sec:nth-of-type(2n) {
  background: #F4F4F4;
}
.contents_sec:nth-of-type(2n)::after {
  content: "";
  position: absolute;
  top: 0;
  left: var(--content-offset-left);
  width: calc(100vw - var(--scrollbar-width));
  height: 100%;
  background: #F4F4F4;
  z-index: -1;
}
.contents_sec_heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  color: #000000;
}
.contents_sec_heading_blue {
  color: #004896;
}
.contents_sec_text {
  padding: 40px 0 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
  color: #000000;
}
.contents_sec_ttl {
  margin: 54px 0 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #000000;
  word-break: keep-all;
  color: #004896;
}
@media (max-width: 767px) {
  .contents_sec_ttl {
    font-size: 6.4vw;
  }
}
.contents_sec_ttl_note {
  margin: 16px 0 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}
.contents_sec_subttl {
  margin: 16px 0 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  color: #004896;
}
.contents_sec_box {
  margin: 32px 0 0;
  display: flex;
  align-items: flex-start;
  gap: 5.2173913043%;
}
.contents_form {
  margin: 0 auto;
}
.contents_form_pan {
  margin: 64px auto 0;
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}
.contents_form_pan_item {
  position: relative;
  width: 180px;
  padding: 12px 0;
  background: #E1E6EB;
  color: #004896;
}
.contents_form_pan_item::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  left: 100%;
  width: 26px;
  height: 2px;
  background: #E1E6EB;
}
.contents_form_pan_item:nth-last-of-type(1)::after {
  content: none;
}
.contents_form_pan_item-blue {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 180px;
  padding: 12px 0;
  background: #004896;
  color: #ffffff;
}
.contents_form_pan_item-blue::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  left: 100%;
  width: 26px;
  height: 2px;
  background: #E1E6EB;
}
.contents_form_pan_item-lastBlue {
  position: relative;
  width: 180px;
  padding: 12px 0;
  background: #004896;
  color: #ffffff;
}
.contents_form_notice {
  margin: 48px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  color: #000000;
}
.contents_form_error {
  margin: 16px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  color: #E60019;
}
.contents_form_form {
  margin: 48px 0 0;
}
.contents_form_box {
  display: grid;
  grid-template-columns: 232px 1fr;
  grid-template-rows: repeat(1, 1fr);
  margin: 57px 0 0;
}
.contents_form_box:nth-of-type(1) {
  margin: 0;
}
.contents_form_box:nth-last-of-type(1) {
  padding: 0 0 40px;
  border-bottom: 2px solid #E1E6EB;
}
.contents_form_box_confirm:nth-of-type(1) {
  margin: 81px 0 0;
}
.contents_form_box.error .contents_form_input {
  border: 2px solid #E60019;
}
.contents_form_box.error .contents_form_textarea {
  border: 2px solid #E60019;
}
.contents_form_left {
  position: relative;
}
.contents_form_label {
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #000000;
}
.contents_form_label-must {
  position: absolute;
  top: 0;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  left: calc(100% + 16px);
  padding: 2px 4px;
  color: #ffffff;
  background: #E60019;
  word-break: keep-all;
}
.contents_form_label-optional {
  position: absolute;
  top: 0;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  left: calc(100% + 16px);
  padding: 2px 4px;
  color: #ffffff;
  background: #808080;
  word-break: keep-all;
}
.contents_form_input {
  width: 100%;
  padding: 10px 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  color: #000000;
  border-radius: 4px;
  border: 2px solid #E1E6EB;
  background: #F7F8FA;
}
.contents_form_input:hover {
  border: 2px solid #004896;
  background: #ffffff;
}
.contents_form_input:focus {
  border: 2px solid #004896;
  outline: none;
  background: #ffffff;
}
.contents_form_input:not(:-moz-placeholder) {
  border: 2px solid #E1E6EB;
  background: #ffffff;
}
.contents_form_input:not(:placeholder-shown) {
  border: 2px solid #E1E6EB;
  background: #ffffff;
}
.contents_form_input:-webkit-autofill {
  border: 2px solid #E1E6EB;
  box-shadow: inset 0 0 0 1000Px #ffffff;
}
.contents_form_input:autofill {
  border: 2px solid #E1E6EB;
  box-shadow: inset 0 0 0 1000Px #ffffff;
}
.contents_form_textarea {
  width: 100%;
  height: 200px;
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  color: #000000;
  border-radius: 4px;
  border: 2px solid #E1E6EB;
  background: #F7F8FA;
}
.contents_form_textarea:hover {
  border: 2px solid #004896;
  background: #ffffff;
}
.contents_form_textarea:focus {
  border: 2px solid #004896;
  outline: none;
  background: #ffffff;
}
.contents_form_textarea:not(:-moz-placeholder) {
  border: 2px solid #E1E6EB;
  background: #ffffff;
}
.contents_form_textarea:not(:placeholder-shown) {
  border: 2px solid #E1E6EB;
  background: #ffffff;
}
.contents_form_textarea:-webkit-autofill {
  border: 2px solid #004896;
  box-shadow: inset 0 0 0 1000Px #ffffff;
}
.contents_form_textarea:autofill {
  border: 2px solid #004896;
  box-shadow: inset 0 0 0 1000Px #ffffff;
}
.contents_form_btmText {
  padding: 48px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  color: #000000;
  text-align: center;
}
.contents_form_btmLink {
  color: #004896;
  text-decoration: underline;
}
.contents_form_btmInput {
  padding: 16px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  color: #000000;
  text-align: center;
}
.contents_form_btn {
  display: block;
  width: 320px;
  margin: 48px auto 0;
  padding: 23px 0;
  background: #E1E6EB;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
  text-align: center;
  border: none;
  border-radius: 50px;
  cursor: not-allowed;
}
.contents_form_btn.active {
  background: #004896;
  cursor: pointer;
}
.contents_form_btn_confirm {
  display: block;
  width: 320px;
  margin: 48px auto 0;
  padding: 23px 0;
  background: #004896;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
  text-align: center;
  border: none;
  border-radius: 50px;
  cursor: pointer;
}
.contents_form_btn_back {
  display: block;
  margin: 48px auto 0;
  background: transparent;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #004896;
  text-align: center;
  text-decoration: underline;
  border: none;
  cursor: pointer;
}
.contents_form_caution {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: #E60019;
}
.contents_form_caution-checkbox {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: #E60019;
  text-align: center;
}
.contents_form_comp_ttl {
  margin: 72px auto 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  color: #004896;
  text-align: center;
}
.contents_form_comp_text {
  margin: 48px auto 0;
  padding: 0 53px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  color: #000000;
  text-align: center;
}
.contents_form_comp_text_bottom {
  margin: 1em 0 0;
  padding: 0 53px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  color: #000000;
  text-align: center;
}
.contents_form_comp_btn {
  display: block;
  position: relative;
  width: min(260px, 100%);
  margin: 48px auto 0;
  padding: 23px 0;
  border-radius: 50px;
  background: #004896;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
  text-align: center;
}
.contents_form_comp_btn:hover {
  opacity: 0.8;
}
.contents_form_comp_btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 16px;
  width: 30px;
  height: 14px;
  border-bottom: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  transform: skew(135deg) translate(0, -50%);
}
@media (max-width: 1024px) {
  .contents {
    padding: 48px max(30px, 2.9296875%);
  }
  .contents_box {
    max-width: 100%;
    gap: 6.5217391304%;
    position: relative;
    padding: 0 0;
  }
}
@media (max-width: 767px) {
  .contents {
    padding: 48px 6.4vw 48px;
  }
  .contents_box > p {
    font-size: 4.2666666667vw;
    line-height: 1.6;
  }
  .contents_sec_ttl {
    margin-top: 48px;
  }
  .contents_means {
    display: block;
  }
  .contents_division {
    width: 100%;
    text-align: center;
    padding: 24px;
    background-color: #E1E6EB;
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .contents_division_ttl {
    color: #004896;
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0px;
  }
  .contents_division_tel {
    display: block;
    padding: 8px 0 0 0;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    color: #000000;
  }
  .contents_division_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: 30px;
    height: 30px;
  }
  .contents_division_time {
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0px;
    margin-top: 12px;
  }
  .contents_form_pan {
    margin: 32px auto 0;
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
  }
  .contents_form_pan_item {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 180px;
    padding: 12px 0;
    background: #E1E6EB;
    color: #004896;
  }
  .contents_form_pan_item::after {
    content: "";
    position: absolute;
    top: calc(50% - 2px);
    left: 100%;
    width: 26px;
    height: 2px;
    background: #E1E6EB;
  }
  .contents_form_pan_item:nth-last-of-type(1)::after {
    content: none;
  }
  .contents_form_pan_item-blue {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 180px;
    padding: 12px 0;
    background: #004896;
    color: #ffffff;
  }
  .contents_form_pan_item-blue::after {
    content: "";
    position: absolute;
    top: calc(50% - 2px);
    left: 100%;
    width: 26px;
    height: 2px;
    background: #E1E6EB;
  }
  .contents_form_pan_item-lastBlue {
    position: relative;
    width: 180px;
    padding: 12px 0;
    background: #004896;
    color: #ffffff;
  }
  .contents_form_notice {
    margin: 48px 0 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0;
    color: #000000;
  }
  .contents_form_form {
    margin: 48px 0 0;
  }
  .contents_form_box {
    display: block;
    margin: 57px 0 0;
  }
  .contents_form_box:nth-of-type(1) {
    margin: 0;
  }
  .contents_form_box:nth-last-of-type(1) {
    padding: 0 0 40px;
    border-bottom: 2px solid #E1E6EB;
  }
  .contents_form_box_confirm:nth-of-type(1) {
    margin: 81px 0 0;
  }
  .contents_form_left {
    position: relative;
    padding-bottom: 0.5em;
  }
  .contents_form_label {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    color: #000000;
  }
  .contents_form_label-must {
    position: absolute;
    top: 0;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0;
    left: calc(100% + 16px);
    padding: 2px 4px;
    color: #ffffff;
    background: #E60019;
    word-break: keep-all;
  }
  .contents_form_label-optional {
    position: absolute;
    top: 0;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0;
    left: calc(100% + 16px);
    padding: 2px 4px;
    color: #ffffff;
    background: #808080;
    word-break: keep-all;
  }
  .contents_form_input {
    width: 100%;
    padding: 10px 24px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0;
    color: #000000;
    border-radius: 4px;
    border: 2px solid #E1E6EB;
    background: #F7F8FA;
  }
  .contents_form_input:hover {
    border: 2px solid #004896;
    background: #ffffff;
  }
  .contents_form_input:focus {
    border: 2px solid #004896;
    outline: none;
    background: #ffffff;
  }
  .contents_form_input:not(:-moz-placeholder) {
    border: 2px solid #E1E6EB;
    background: #ffffff;
  }
  .contents_form_input:not(:placeholder-shown) {
    border: 2px solid #E1E6EB;
    background: #ffffff;
  }
  .contents_form_input:-webkit-autofill {
    border: 2px solid #E1E6EB;
    box-shadow: inset 0 0 0 1000Px #ffffff;
  }
  .contents_form_input:autofill {
    border: 2px solid #E1E6EB;
    box-shadow: inset 0 0 0 1000Px #ffffff;
  }
  .contents_form_textarea {
    width: 100%;
    height: 200px;
    padding: 20px 24px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0;
    color: #000000;
    border-radius: 4px;
    border: 2px solid #E1E6EB;
    background: #F7F8FA;
  }
  .contents_form_textarea:hover {
    border: 2px solid #004896;
    background: #ffffff;
  }
  .contents_form_textarea:focus {
    border: 2px solid #004896;
    outline: none;
    background: #ffffff;
  }
  .contents_form_textarea:not(:-moz-placeholder) {
    border: 2px solid #E1E6EB;
    background: #ffffff;
  }
  .contents_form_textarea:not(:placeholder-shown) {
    border: 2px solid #E1E6EB;
    background: #ffffff;
  }
  .contents_form_textarea:-webkit-autofill {
    border: 2px solid #004896;
    box-shadow: inset 0 0 0 1000Px #ffffff;
  }
  .contents_form_textarea:autofill {
    border: 2px solid #004896;
    box-shadow: inset 0 0 0 1000Px #ffffff;
  }
  .contents_form_btmText {
    padding: 48px 0 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0;
    color: #000000;
    text-align: center;
  }
  .contents_form_btmLink {
    color: #004896;
    text-decoration: underline;
  }
  .contents_form_btmInput {
    padding: 16px 0 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0;
    color: #000000;
    text-align: center;
  }
  .contents_form_btn {
    display: block;
    width: 320px;
    margin: 48px auto 0;
    padding: 23px 0;
    background: #E1E6EB;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    color: #ffffff;
    text-align: center;
    border: none;
    border-radius: 50px;
    cursor: not-allowed;
  }
  .contents_form_btn.active {
    background: #004896;
    cursor: pointer;
  }
  .contents_form_btn_confirm {
    display: block;
    width: 320px;
    margin: 48px auto 0;
    padding: 23px 0;
    background: #004896;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    color: #ffffff;
    text-align: center;
    border: none;
    border-radius: 50px;
    cursor: pointer;
  }
  .contents_form_btn_back {
    display: block;
    margin: 48px auto 0;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    color: #004896;
    text-align: center;
    border: none;
    cursor: pointer;
  }
  .contents_form_caution {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
    color: #E60019;
  }
  .contents_form_caution-checkbox {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
    color: #E60019;
    text-align: center;
  }
  .contents_form_comp_ttl {
    margin: 72px auto 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    color: #004896;
    text-align: center;
  }
  .contents_form_comp_text {
    margin: 48px auto 0;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0;
    color: #000000;
    text-align: center;
  }
  .contents_form_comp_text_bottom {
    margin: 1em 0 0;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0;
    color: #000000;
    text-align: center;
  }
  .contents_form_comp_btn {
    display: block;
    position: relative;
    width: min(260px, 100%);
    margin: 48px auto 0;
    padding: 23px 0;
    border-radius: 50px;
    background: #004896;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    color: #ffffff;
    text-align: center;
  }
  .contents_form_comp_btn:hover {
    opacity: 0.8;
  }
  .contents_form_comp_btn::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 16px;
    width: 30px;
    height: 14px;
    border-bottom: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    transform: skew(135deg) translate(0, -50%);
  }
}/*# sourceMappingURL=contact.css.map */