@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt";
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: #242424;
  position: relative;
  overflow-x: hidden;
  background-color: #FFFFFF;
}
@media screen and (min-width: 1025px) {
  body {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 15px;
  }
}
body:has(.site-header #toggle-menu-btn:checked) {
  overflow-y: hidden;
}
body * {
  min-width: 0;
  min-height: 0;
}

img {
  max-width: 100%;
  height: auto;
}

img.imgauto {
  width: 100%;
}

img.fit_cover {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

body.lang-ja img.img_en {
  display: none;
}

body.lang-en_US img.img_ja {
  display: none;
}

picture {
  display: block;
  height: 100%;
}

h1, h2, h3, h4 {
  line-height: 1.1;
  font-weight: 500;
}

em, i {
  font-style: normal;
}

dl dt {
  font-weight: 500;
}

button:focus-visible {
  outline: none;
}

.inline_block {
  display: inline-block;
}

@media screen and (min-width: 520px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
._link_disable > a {
  pointer-events: none;
}

.inline_link {
  text-decoration: underline;
  color: #002845;
}
.inline_link.__white {
  color: #FFF;
  text-decoration-color: #FFF;
}

.color_white {
  color: #FFF;
}

.color_black {
  color: #242424;
}

.color_main {
  color: #002845;
}

.bg_main {
  background-color: #002845;
  color: #FFF;
}

.bg_gray {
  background-color: #D9DFE3;
}

.bg_dark {
  position: relative;
  color: #FFF;
}
.bg_dark::before {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  mix-blend-mode: multiply;
}
.bg_dark.__op30::before {
  background-color: rgba(0, 40, 69, 0.3);
}
.bg_dark.__op40::before {
  background-color: rgba(0, 40, 69, 0.4);
}

.__bold {
  font-weight: 700;
}

.thin_txt {
  font-weight: 300;
}
@media screen and (min-width: 1025px) {
  .thin_txt {
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) {
  .thin_txt {
    font-size: 12px;
  }
}

.first_letter::first-letter {
  text-transform: uppercase;
}

.font_en {
  font-family: "Jost", sans-serif;
}

.container {
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .container {
    width: 80%;
    max-width: 1366px;
    min-width: 960px;
  }
  .container.__wide {
    width: 90%;
    max-width: 1728px;
    min-width: 960px;
  }
}
@media screen and (max-width: 1366px) {
  .container {
    max-width: 1200px;
  }
  .container.__wide {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1024px) {
  .container {
    width: 90%;
  }
}
.container.__blend {
  z-index: auto;
}

.position_rel {
  position: relative;
}

a {
  transition: all ease 0.5s;
}

a.hover_zoom {
  display: block;
  overflow: hidden;
}
a.hover_zoom img {
  transition: all ease 0.5s;
}

@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.7;
  }
  a.hover_zoom:hover {
    opacity: 1;
  }
  a.hover_zoom:hover img {
    transform: scale(1.1);
  }
}
a.text_link {
  color: #002845;
  text-decoration: underline;
}

.__invisible {
  visibility: hidden;
  height: 0;
}

.__sp_only {
  display: none;
}

@media screen and (max-width: 1024px) {
  .__pc_only {
    display: none;
  }
  .__sp_only {
    display: block;
  }
}
.site-main {
  position: relative;
  z-index: 1;
}

.site-footer {
  position: relative;
  z-index: 1;
}

.link_button {
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .link_button {
    height: 60px;
    width: 400px;
    border-radius: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .link_button {
    height: 50px;
    width: 100%;
    max-width: 400px;
    margin-inline: auto;
    border-radius: 25px;
  }
}
.link_button .btn_txt {
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media (hover: hover) {
  .link_button:hover {
    opacity: 1;
  }
}
.link_button.btn_white {
  border: 1px solid #FFF;
}
.link_button.btn_white .btn_txt {
  color: #FFF;
}
.link_button.btn_white .btn_arw {
  border-top-color: #FFF;
  border-right-color: #FFF;
}
.link_button.btn_blue {
  background-color: #002845;
}
.link_button.btn_blue .btn_txt {
  color: #FFF;
}
.link_button.btn_blue .btn_arw {
  border-top-color: #FFF;
  border-right-color: #FFF;
}
.link_button.btn_blueline {
  background-color: #FFF;
  border: 1px solid #002845;
}
.link_button.btn_blueline .btn_arw {
  border-top-color: #002845;
  border-right-color: #002845;
}
@media (hover: hover) {
  .link_button.btn_white:hover {
    background-color: #FFF;
  }
  .link_button.btn_white:hover .btn_txt {
    color: #002845;
  }
  .link_button.btn_white:hover .btn_arw {
    border-top-color: #002845;
    border-right-color: #002845;
  }
  .link_button.btn_blue:hover {
    background-color: #FFF;
    border: 1px solid #002845;
  }
  .link_button.btn_blue:hover .btn_txt {
    color: #002845;
  }
  .link_button.btn_blue:hover .btn_arw {
    border-top-color: #002845;
    border-right-color: #002845;
  }
  .link_button.btn_blueline:hover {
    background-color: #002845;
  }
  .link_button.btn_blueline:hover .btn_txt {
    color: #FFF;
  }
  .link_button.btn_blueline:hover .btn_arw {
    border-top-color: #FFF;
    border-right-color: #FFF;
  }
  .link_button:hover .btn_circle {
    border-color: #002845;
  }
  .link_button:hover .btn_circle::before {
    border-top-color: #002845;
    border-right-color: #002845;
  }
}
.link_button.btn_center {
  margin-inline: auto;
}
.link_button .btn_arw {
  width: 8px;
  height: 8px;
  border-top: 1px solid #002845;
  border-right: 1px solid #002845;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  transform-origin: right top;
}
@media screen and (min-width: 1025px) {
  .link_button .btn_arw {
    right: 28px;
  }
}
@media screen and (max-width: 1024px) {
  .link_button .btn_arw {
    right: 20px;
  }
}
.link_button .btn_circle {
  border: 1px solid #FFF;
  border-radius: 50%;
  position: absolute;
}
.link_button .btn_circle::before {
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  transform: rotate(45deg);
  position: absolute;
  inset: 0;
  margin: auto;
  content: "";
}
@media screen and (min-width: 1025px) {
  .link_button .btn_circle {
    width: 60px;
    height: 60px;
    right: 25px;
    top: calc(50% - 30px);
  }
}
@media screen and (max-width: 1024px) {
  .link_button .btn_circle {
    width: 30px;
    height: 30px;
    right: 20px;
    top: calc(50% - 15px);
  }
}
.link_button .btn_icon img {
  display: block;
}
@media screen and (min-width: 1025px) {
  .link_button .btn_icon {
    width: 18px;
    margin-left: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .link_button .btn_icon {
    width: 14px;
    margin-left: 14px;
  }
}

.link_arw {
  position: relative;
}
.link_arw__inner {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  background-color: #FFF;
  border-radius: 50%;
}
.link_arw {
  width: 28px;
  height: 28px;
}
.link_arw::before {
  display: block;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  left: -1px;
  top: -1px;
  border-radius: 50%;
  content: "";
}
.link_arw__arw {
  display: block;
  position: absolute;
  border-right: 1px solid #002845;
  border-bottom: 1px solid #002845;
  content: "";
  transform: rotate(-45deg);
}
@media screen and (min-width: 1025px) {
  .link_arw__arw {
    width: 7px;
    height: 7px;
    top: calc(50% - 3.5px);
    left: calc(50% - 5px);
  }
}
@media screen and (max-width: 1024px) {
  .link_arw__arw {
    width: 6px;
    height: 6px;
    top: calc(50% - 3px);
    left: calc(50% - 4px);
  }
}

.link_view {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.link_view .link_txt {
  font-family: "Work Sans", sans-serif;
  color: #002845;
  font-weight: 700;
}
@media screen and (min-width: 1025px) {
  .link_view .link_txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .link_view .link_txt {
    font-size: 14px;
  }
}

.breadcrumb {
  white-space: nowrap;
  overflow: auto;
}
@media screen and (min-width: 1025px) {
  .breadcrumb {
    padding-top: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .breadcrumb {
    padding-top: 10px;
  }
}
.breadcrumb .bc_container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
}
.breadcrumb span {
  font-size: 12px;
}
.breadcrumb span[property=itemListElement] {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
}
.breadcrumb span[property=itemListElement] a {
  display: inline-block;
  position: relative;
}
.breadcrumb span[property=itemListElement] a:hover {
  opacity: 1;
}

.align_right {
  text-align: right;
}

.align_center {
  text-align: center;
}

.mb1em {
  margin-bottom: 1em;
}

@media screen and (min-width: 1025px) {
  .c-section {
    padding-top: 104px;
    padding-bottom: 147px;
  }
}
@media screen and (max-width: 1024px) {
  .c-section {
    padding-top: 60px;
    padding-bottom: 94px;
  }
}

.c-text {
  line-height: 2.25;
  margin-bottom: 1em;
}
.c-text span {
  display: inline-block;
}
.c-text.mb0 {
  margin-bottom: 0;
}

.nowrap {
  white-space: nowrap;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.mb20 {
  margin-bottom: 20px;
}

@media screen and (min-width: 1025px) {
  .mb30 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .mb30 {
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 1025px) {
  .mb50 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .mb50 {
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 1025px) {
  .mb80 {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .mb80 {
    margin-bottom: 40px;
  }
}

.pb50 {
  padding-bottom: 50px;
}

.pb80 {
  padding-bottom: 80px;
}

.c-table {
  table-layout: fixed;
  width: 100%;
}
.c-table th, .c-table td {
  vertical-align: middle;
}
.c-table th {
  font-weight: 900;
  color: #002845;
  padding-left: 1em;
}
.c-table td {
  font-weight: 500;
}
.c-table tr:nth-child(even) th, .c-table tr:nth-child(even) td {
  background-color: #D9DFE3;
}
@media screen and (min-width: 1025px) {
  .c-table th, .c-table td {
    font-size: 20px;
    padding-block: 0.75em;
  }
}
@media screen and (max-width: 1024px) {
  .c-table th, .c-table td {
    display: block;
    width: 100%;
    font-size: 15px;
  }
  .c-table th {
    padding-top: 0.75em;
  }
  .c-table td {
    padding-left: 30px;
    padding-right: 15px;
    padding-block: 0.75em;
  }
}

.site-header {
  position: fixed;
  width: 100%;
  max-width: 100vw;
  z-index: 1000;
  top: 0;
  left: 0;
}
.site-header:not(.header_mv) {
  background-color: rgba(0, 40, 69, 0.9);
}
.site-header.header_mv {
  background-color: transparent;
}
.site-header .header_container {
  display: flex;
  align-items: center;
  position: relative;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .site-header .header_container {
    justify-content: space-between;
    width: 90%;
    min-width: 960px;
    height: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .site-header .header_container {
    width: 90%;
    height: 50px;
  }
}
.site-header .site-branding {
  flex-shrink: 0;
}
@media screen and (min-width: 1025px) {
  .site-header .site-branding {
    flex-basis: 289px;
  }
}
@media screen and (max-width: 1024px) {
  .site-header .site-branding {
    flex-basis: 220px;
  }
}
.site-header .main-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 1.56vw;
       column-gap: 1.56vw;
  height: 100%;
  flex-grow: 1;
}
@media screen and (max-width: 1024px) {
  .site-header .main-navigation {
    display: none;
  }
}
.site-header .main-navigation .main_menu {
  display: flex;
  align-items: center;
  -moz-column-gap: 1.56vw;
       column-gap: 1.56vw;
  height: 100%;
  position: relative;
}
.site-header .main-navigation .main_menu > .menu-item {
  font-size: 15px;
  color: #FFF;
  line-height: 4;
}
.site-header .main-navigation .main_menu > .menu-item > a {
  position: relative;
  line-height: 2;
  display: inline-block;
}
.site-header .main-navigation .main_menu > .menu-item > a::before {
  display: block;
  width: 0;
  height: 2px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFF;
  transition: width ease 0.4s;
  content: "";
}
.site-header .menu-item {
  cursor: pointer;
}
.site-header .menu-item.menu_label > a {
  pointer-events: none;
}
.site-header .main-navigation .main_menu .sub-menu {
  position: absolute;
  top: 100%;
  left: -7.9vw;
  width: calc(100% + 7.9vw + 48px + 200px + 40px);
  padding-block: 64px;
  padding-left: 7.9vw;
  background-color: #FFF;
  border-bottom-left-radius: 20px;
  transition: all ease 0.4s;
  transform-origin: center top;
  transform: scaleY(0);
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 100px;
       column-gap: 100px;
  cursor: initial;
}
.site-header .main-navigation .main_menu .sub-menu__title {
  flex-shrink: 0;
  color: #002845;
  font-size: 32px;
  line-height: 1;
}
.site-header .main-navigation .main_menu .sub-menu .menu-item {
  white-space: nowrap;
  line-height: 2.4;
  position: relative;
  padding-left: 20px;
  font-size: 20px;
  color: #242424;
  cursor: pointer;
}
.site-header .main-navigation .main_menu .sub-menu .menu-item::before {
  display: block;
  width: 8px;
  height: 8px;
  background-color: #002845;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 20px;
  content: "";
}
@media (hover: hover) {
  .site-header .main_menu > .menu-item a:hover {
    opacity: 1;
  }
  .site-header .main_menu > .menu-item > .sub-menu .sub-menu .menu-item a:hover,
  .site-header .main_menu > .menu_contact a:hover {
    opacity: 0.7;
  }
  .site-header .main_menu > .menu-item:hover > a::before {
    width: 100%;
  }
  .site-header .main_menu > .menu-item.menu-item-has-children:hover > a::before {
    width: 0;
  }
  .site-header.header_mv .main_menu > .menu-item:hover > a::before {
    background-color: #FFF;
  }
}
.site-header .main_menu > .menu-item.menu-item-has-children:hover > .sub-menu {
  transform: scaleY(1);
}
.site-header .main_menu_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background-color: #33536A;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (min-width: 1025px) {
  .site-header .main_menu_btn {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .site-header .main_menu_btn {
    width: 50px;
    height: 50px;
  }
}
.site-header .main_menu_btn ._mobile_menu_btn {
  display: block;
  position: relative;
  width: 20px;
  height: 10px;
  cursor: pointer;
}
.site-header .main_menu_btn ._mobile_menu_btn ._menu_bar {
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  background-color: #FFF;
  border-radius: 0.5px;
  transition: all 0.5s;
  transform-origin: left;
}
.site-header .main_menu_btn ._mobile_menu_btn ._menu_bar._bar1 {
  top: 0%;
}
.site-header .main_menu_btn ._mobile_menu_btn ._menu_bar._bar2 {
  top: 100%;
}
.site-header .main_menu_btn:active {
  border: none;
}
.site-header #toggle-menu-btn {
  display: none;
}
.site-header #toggle-menu-btn:checked ~ .main_menu_btn ._mobile_menu_btn {
  height: 20px;
}
.site-header #toggle-menu-btn:checked ~ .main_menu_btn ._menu_bar {
  width: 141.4213562373%;
}
.site-header #toggle-menu-btn:checked ~ .main_menu_btn ._menu_bar._bar1 {
  transform: rotate(45deg);
}
.site-header #toggle-menu-btn:checked ~ .main_menu_btn ._menu_bar._bar2 {
  transform: rotate(-45deg);
}
@media screen and (min-width: 1025px) {
  .site-header .mobile_modal_window {
    display: none;
  }
}
.site-header .mobile_modal_window {
  display: block;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  z-index: -1;
  position: fixed;
  top: 0;
  left: 100%;
  transition: all ease 0.5s;
  padding-top: 50px;
  background-color: #002845;
}
.site-header .mobile_modal_window .modal_inner {
  height: 100%;
  overflow-y: auto;
  position: relative;
  z-index: 1;
  padding-bottom: 100px;
  padding-top: 50px;
}
.site-header .mobile_modal_window .modal_container {
  margin: 0 auto;
  width: 90%;
}
.site-header .mobile_modal_window .modal_nav .main_menu {
  margin-bottom: 38px;
}
.site-header .mobile_modal_window .modal_nav .main_menu .menu-item {
  line-height: 2;
  position: relative;
}
.site-header .mobile_modal_window .modal_nav .main_menu .menu-item a {
  display: block;
  width: 100%;
}
.site-header .mobile_modal_window .modal_nav .main_menu .menu-item {
  font-weight: 500;
  font-size: 15px;
  color: #FFF;
}
.site-header .mobile_modal_window .modal_nav .main_menu > .menu-item {
  padding-block: 1em;
  border-bottom: 1px solid #FFF;
}
.site-header .mobile_modal_window .modal_nav .main_menu .sub-menu {
  display: none;
  padding-left: 1em;
}
.site-header .mobile_modal_window .modal_nav .main_menu .sub-menu__title {
  display: none;
}
.site-header #toggle-menu-btn:checked ~ .mobile_modal_window {
  left: 0;
}

body.page-company .main-navigation .main_menu .menu_about > a::before,
body.page-quality .main-navigation .main_menu .menu_about > a::before,
body.page-environment .main-navigation .main_menu .menu_about > a::before,
body.page-bcm .main-navigation .main_menu .menu_about > a::before,
body.page-product .main-navigation .main_menu .menu_product > a::before,
body.page-prototype .main-navigation .main_menu .menu_product > a::before,
body.page-mass-production .main-navigation .main_menu .menu_product > a::before,
body.page-teg .main-navigation .main_menu .menu_product > a::before,
body.page-technology .main-navigation .main_menu .menu_technology > a::before,
body.page-wlcsp-pkg .main-navigation .main_menu .menu_technology > a::before,
body.page-bumping-service .main-navigation .main_menu .menu_technology > a::before,
body.page-contact .main-navigation .main_menu .menu_contact > a::before,
body.page-recruit .main-navigation .main_menu .menu_recruit > a::before,
body.post-type-archive-koukoku .main-navigation .main_menu .menu_about > a::before {
  width: 100%;
}

.home_link {
  display: block;
  width: 100%;
}
.home_link__txt {
  color: #FFF;
  font-size: 12px;
  line-height: 1;
  text-align: center;
}

.site-footer .footer_container {
  background-color: #FFF;
}
.site-footer .footer_nav {
  display: flex;
}
.site-footer .footer_nav__l1, .site-footer .footer_nav__l2 {
  display: block;
  line-height: 2;
}
.site-footer .footer_nav__l1 span, .site-footer .footer_nav__l2 span {
  display: inline-block;
  vertical-align: middle;
}
.site-footer .footer_nav__l1 {
  font-weight: 700;
  color: #002845;
}
.site-footer .footer_nav__l1.fs14 {
  font-size: 14px;
  line-height: 1.33;
}
.site-footer .footer_nav__l2 {
  font-size: 12px;
}
.site-footer .footer_nav .footer_nav__l1 + .footer_nav__l2 {
  margin-top: 0.5em;
}
.site-footer .footer_bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 43px;
}
.site-footer .footer_copyright,
.site-footer .footer_pp {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}
.site-footer .footer_top {
  display: flex;
}
.site-footer .footer_signature .home_link {
  width: 219px;
}
.site-footer .footer_address span {
  padding-right: 1em;
}
@media screen and (min-width: 1025px) {
  .site-footer .footer_container {
    padding: 90px 0 80px;
  }
  .site-footer .footer_signature {
    flex-shrink: 0;
  }
  .site-footer .footer_signature .home_link {
    margin-bottom: 38px;
  }
  .site-footer .footer_signature .footer_address {
    font-size: 14px;
  }
  .site-footer .footer_signature {
    margin-bottom: 50px;
  }
  .site-footer .footer_nav > div {
    flex: 1;
    border-left: 1px solid #242424;
    padding-left: 20px;
  }
  .site-footer .footer_bottom {
    position: relative;
  }
  .site-footer .footer_pp {
    position: absolute;
    right: 0;
    top: calc(50% - 0.5em);
  }
  .site-footer .footer_contact {
    flex-grow: 1;
  }
}
@media screen and (max-width: 1024px) {
  .site-footer .footer_container {
    padding: 22px 0 40px;
  }
  .site-footer .footer_signature {
    flex-basis: 100%;
  }
  .site-footer .footer_signature .home_link {
    margin-bottom: 17px;
  }
  .site-footer .footer_signature .footer_address {
    font-size: 12px;
  }
  .site-footer .footer_nav {
    flex-direction: column;
    flex-wrap: wrap;
    row-gap: 20px;
    -moz-column-gap: 10px;
         column-gap: 10px;
    height: 370px;
  }
  .site-footer .footer_nav > div {
    width: 50%;
  }
  .site-footer .footer_pp {
    display: block;
    margin-bottom: 40px;
  }
  .site-footer .footer_top {
    flex-wrap: wrap;
    row-gap: 20px;
    margin-bottom: 32px;
  }
  .site-footer .footer_contact {
    flex-basis: 100%;
  }
}

.header_lang {
  height: 40px;
  background-color: #33536A;
  border-radius: 20px;
}
@media screen and (min-width: 1025px) {
  .header_lang {
    flex-basis: 120px;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 1024px) {
  .header_lang {
    width: 120px;
    margin-left: auto;
  }
}
.header_lang input[type=radio] {
  display: none;
}
.header_lang__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.header_lang__label {
  flex-basis: 55px;
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
  color: #FFF;
  text-align: center;
}
.header_lang #lang_ja:checked ~ .header_lang__btn .header_lang__label[for=lang_ja],
.header_lang #lang_ja_sp:checked ~ .header_lang__btn .header_lang__label[for=lang_ja_sp],
.header_lang #lang_en:checked ~ .header_lang__btn .header_lang__label[for=lang_en],
.header_lang #lang_en_sp:checked ~ .header_lang__btn .header_lang__label[for=lang_en_sp] {
  background-color: #FFF;
  color: #002845;
  border-radius: 15px;
}

@media screen and (min-width: 1025px) {
  .top_h2 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .top_h2 {
    margin-bottom: 20px;
  }
}
.top_h2__ja, .top_h2__en {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.top_h2__ja {
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (min-width: 1025px) {
  .top_h2__ja {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .top_h2__ja {
    font-size: 14px;
  }
}
.top_h2__en {
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media screen and (min-width: 1025px) {
  .top_h2__en {
    font-size: clamp(60px, 4.7vw, 80px);
  }
}
@media screen and (max-width: 1024px) {
  .top_h2__en {
    font-size: 30px;
  }
}
@media screen and (min-width: 1025px) {
  .top_h2__border {
    display: block;
    height: 1px;
    background-color: #FFF;
    width: 70px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .top_h2__border {
    display: none;
  }
}

.top_section {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  .top_section {
    padding-block: 110px;
  }
}
@media screen and (max-width: 1024px) {
  .top_section {
    padding-block: 30px;
  }
}

.top_mv {
  position: relative;
  background-color: #002845;
}
.top_mv__img {
  position: absolute;
  width: 100%;
  z-index: 1;
  bottom: 0;
  left: 0;
}
.top_mv__container {
  position: relative;
  z-index: 2;
}
.top_mv__catch {
  color: #FFF;
}
.top_mv__catch__ja {
  font-weight: 700;
}
.top_mv__catch__en {
  font-weight: 600;
}
@media screen and (min-width: 1025px) {
  .top_mv {
    height: 924px;
    max-height: 100vh;
    padding-top: 129px;
  }
  .top_mv__container {
    padding-left: 5%;
  }
  .top_mv__catch__ja {
    font-size: 30px;
    margin-top: 30px;
  }
  .top_mv__catch__en {
    font-size: clamp(64px, 5.2vw, 100px);
    line-height: 1;
  }
  .top_mv__img {
    height: 649px;
  }
}
@media screen and (max-width: 1024px) {
  .top_mv {
    height: 700px;
    max-height: 100vh;
    padding-top: 78px;
  }
  .top_mv__container {
    padding-left: 5%;
  }
  .top_mv__catch__ja {
    font-size: 18px;
    margin-top: 10px;
  }
  .top_mv__catch__en {
    font-size: 31px;
    line-height: 1;
  }
  .top_mv__img {
    height: 576px;
  }
}

.top_mv__catch__en {
  display: block;
  white-space: pre;
  margin-bottom: 0.1em;
}
.top_mv__catch {
  /* あとからフワッと表示される文字 */
}
.top_mv__catch .fade {
  opacity: 0;
}
.top_mv__catch {
  /* 文字のスペース確保用ラッパー */
}
.top_mv__catch .char-wrapper {
  position: relative;
  display: inline-block;
}
.top_mv__catch {
  /* スペース確保用の透明な文字 */
}
.top_mv__catch .char-hidden {
  visibility: hidden;
}
.top_mv__catch {
  /* 実際にアニメーションして動く文字 */
}
.top_mv__catch .move {
  position: absolute;
  top: 0;
  left: 0;
  /* 色は継承させて白にする */
  visibility: hidden;
}
.top_mv__catch {
  /* 最後のサブキャッチコピー */
}
.top_mv__catch .sub-catch {
  opacity: 0; /* 初期状態は非表示 */
}

.top_news__inner {
  display: flex;
}
@media screen and (min-width: 1025px) {
  .top_news__inner {
    -moz-column-gap: 10%;
         column-gap: 10%;
  }
  .top_news__head {
    flex-shrink: 0;
  }
  .top_news__head .link_button {
    width: 280px;
  }
  .top_news__archive {
    flex-grow: 1;
  }
  .top_news .link_button.__sp {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .top_news__inner {
    flex-wrap: wrap;
    row-gap: 20px;
  }
  .top_news__head {
    flex-basis: 100%;
  }
  .top_news__archive {
    flex-basis: 100%;
  }
  .top_news .link_button.__pc {
    display: none;
  }
}

.news_article {
  border-bottom: 1px solid #FFF;
}
.news_article:last-child {
  border-bottom: none;
}
.news_article:first-child {
  padding-top: 0;
}
.news_article__wrap {
  display: flex;
  align-items: flex-start;
  height: 100%;
}
.news_article__date {
  flex-shrink: 0;
}
@media screen and (min-width: 1025px) {
  .news_article {
    padding-block: 40px;
  }
  .news_article__wrap {
    -moz-column-gap: 55px;
         column-gap: 55px;
  }
  .news_article__date {
    font-size: 14px;
  }
  .news_article__title {
    flex-grow: 1;
    font-size: 14px;
    line-height: inherit;
  }
}
@media screen and (max-width: 1024px) {
  .news_article {
    padding-block: 14px;
  }
  .news_article__wrap {
    flex-wrap: wrap;
    row-gap: 4px;
  }
  .news_article__date {
    flex-basis: 100%;
    font-size: 12px;
  }
  .news_article__title {
    flex-basis: 100%;
    line-height: 1.33;
    font-size: 12px;
  }
}

.top_h3__ja, .top_h3__en {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.top_h3__en {
  color: #002845;
  font-family: "Work Sans", sans-serif;
}
@media screen and (min-width: 1025px) {
  .top_h3__ja {
    font-size: clamp(18px, 1.71vw, 24px);
  }
  .top_h3__en {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .top_h3__ja {
    font-size: 20px;
  }
  .top_h3__en {
    font-size: 14px;
    margin-bottom: 5px;
  }
}

.top_concept__lead {
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
.top_concept__bg {
  position: relative;
  z-index: 1;
}
.top_concept__bg__img {
  height: 100%;
}
.top_concept__h2 {
  position: absolute;
  left: 0;
  bottom: 0;
  line-height: 1.16;
  mix-blend-mode: overlay;
  font-weight: 600;
  text-box: trim-both cap alphabetic;
}
@media screen and (min-width: 1025px) {
  .top_concept__container {
    padding-top: 119px;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
  }
  .top_concept__lead {
    width: -moz-fit-content;
    width: fit-content;
    padding-block: 40px;
    padding-inline: 30px;
    font-size: 50px;
    margin-bottom: 18px;
  }
  .top_concept__txt {
    width: -moz-fit-content;
    width: fit-content;
    padding-block: 30px;
    padding-inline: 30px;
    font-size: 18px;
  }
  .top_concept__h2 {
    font-size: 182px;
  }
  .top_concept__bg {
    height: 700px;
  }
  .top_concept__bg__img {
    width: calc(50% + 50vw);
  }
}
@media screen and (max-width: 1024px) {
  .top_concept {
    padding-top: 0;
  }
  .top_concept__container {
    padding-top: 20px;
    padding-bottom: 43px;
  }
  .top_concept__lead {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .top_concept__txt {
    font-size: 14px;
  }
  .top_concept__h2 {
    font-size: 19.7vw;
  }
  .top_concept__bg {
    width: 100vw;
    aspect-ratio: 375/160;
    margin-inline: calc(50% - 50vw);
  }
}

.top_about__container {
  display: flex;
}
.top_about__bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.top_about__list {
  display: flex;
}
.top_about__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
  position: relative;
  background-color: rgba(0, 6, 19, 0.7);
  color: #FFF;
}
.top_about__item__h3 {
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1025px) {
  .top_about__container {
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 57px;
  }
  .top_about__txt {
    flex-basis: 35%;
  }
  .top_about__img {
    flex-basis: 59%;
    flex-shrink: 0;
  }
  .top_about__list {
    justify-content: space-between;
  }
  .top_about__item {
    flex-basis: 32.3%;
    height: 160px;
  }
  .top_about__item__h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .top_about__item__txt {
    font-size: clamp(14px, 1.14vw, 16px);
  }
}
@media screen and (max-width: 1024px) {
  .top_about__container {
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 10px;
  }
  .top_about__txt {
    flex-basis: 100%;
    padding-bottom: 20px;
  }
  .top_about__img {
    flex-basis: 100%;
  }
  .top_about__list {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .top_about__item {
    flex-basis: 100%;
    padding-block: 20px;
  }
  .top_about__item__h3 {
    font-size: 18px;
    margin-bottom: 13px;
  }
  .top_about__item__txt {
    font-size: 12px;
  }
}

.top_action__content {
  display: flex;
}
.top_action__item {
  display: flex;
  position: relative;
}
.top_action__item__img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.top_action__item__h3, .top_action__item__arw {
  position: relative;
  z-index: 1;
}
.top_action__item__h3 span {
  display: block;
}
.top_action__item__h3 .__ja {
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
}
.top_action__item__h3 .__en {
  font-weight: 600;
}
.top_action__item__arw {
  position: absolute;
  border: 1px solid #FFF;
  border-radius: 50%;
  aspect-ratio: 1/1;
}
.top_action__item__arw::before {
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  inset: 0;
  margin: auto;
  transform: rotate(45deg);
  content: "";
}
@media screen and (min-width: 1025px) {
  .top_action__item {
    flex: 1;
    aspect-ratio: 640/500;
    min-height: 360px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .top_action__item__h3 span {
    text-align: center;
  }
  .top_action__item__h3 i {
    display: inline-block;
  }
  .top_action__item__h3 .__ja {
    font-size: 24px;
  }
  .top_action__item__arw {
    width: 60px;
    left: calc(50% - 30px);
    bottom: 5.67vw;
  }
}
@media screen and (max-width: 1024px) {
  .top_action__content {
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .top_action__item {
    flex-basis: 100%;
    height: 130px;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
  }
  .top_action__item__h3 i {
    display: block;
  }
  .top_action__item__h3 .__ja {
    font-size: 17px;
    line-height: 1.3;
  }
  .top_action__item__h3 .__en {
    font-size: 14px;
  }
  .top_action__item__arw {
    width: 30px;
    right: 20px;
    top: calc(50% - 15px);
  }
}

.top_reason__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-color: #002845;
  mix-blend-mode: multiply;
}
.top_reason__container {
  display: flex;
}
.top_reason__item {
  display: flex;
}
.top_reason__head {
  flex-shrink: 0;
  font-weight: 600;
  line-height: 1;
}
.top_reason__head span {
  display: block;
}
.top_reason__head .__reason__num {
  position: relative;
  text-align: right;
}
.top_reason__head .__reason__num::before {
  display: block;
  width: calc(100% - 1.5em);
  height: 1px;
  background-color: #FFF;
  position: absolute;
  left: 0;
  top: calc(50% - 0.5px);
  content: "";
}
.top_reason__h3 {
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
  white-space: nowrap;
}
@media screen and (min-width: 1025px) {
  .top_reason__container {
    align-items: center;
    -moz-column-gap: 4%;
         column-gap: 4%;
  }
  .top_reason__img {
    flex-basis: clamp(1px, 45.88vw, 780px);
    flex-shrink: 0;
  }
  .top_reason__list {
    flex-grow: 1;
  }
  .top_reason__item {
    -moz-column-gap: 40px;
         column-gap: 40px;
    margin-bottom: clamp(1px, 4.58vw, 78px);
  }
  .top_reason__item:last-child {
    margin-bottom: 0;
  }
  .top_reason__head {
    font-size: clamp(16px, 1.17vw, 20px);
  }
  .top_reason__body {
    flex-grow: 1;
  }
  .top_reason__h3 {
    font-size: clamp(18px, 1.59vw, 27px);
  }
}
@media screen and (max-width: 1024px) {
  .top_reason__container {
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .top_reason__img {
    flex-basis: 100%;
    flex-shrink: 0;
  }
  .top_reason__list {
    flex-basis: 100%;
  }
  .top_reason__item {
    flex-wrap: wrap;
    row-gap: 10px;
    margin-bottom: 20px;
  }
  .top_reason__item:last-child {
    margin-bottom: 0;
  }
  .top_reason__head {
    flex-basis: 100%;
    font-size: 15px;
  }
  .top_reason__body {
    flex-basis: 100%;
  }
  .top_reason__h3 {
    font-size: 18px;
  }
}

.top_business__bg {
  position: absolute;
  z-index: 1;
}
.top_business__slide {
  align-self: stretch;
}
.top_business__slide a {
  display: flex;
  height: 100%;
}
.top_business__slide__body {
  background-color: rgba(0, 6, 19, 0.7);
}
.top_business__slide__h3 {
  position: relative;
}
.top_business__slide__h3 span {
  display: block;
}
.top_business__slide__h3 .__en {
  font-weight: 600;
}
.top_business__slide__h3 .__ja {
  font-weight: 700;
}
.top_business__slider .splide__arrow {
  background-color: #FFF;
  aspect-ratio: 1/1;
  height: auto;
  opacity: 1;
}
.top_business__slider .splide__arrow svg {
  fill: #002845;
}
@media screen and (min-width: 1025px) {
  .top_business__slider .splide__arrow {
    top: 50%;
    width: clamp(40px, 4vw, 60px);
  }
}
@media screen and (max-width: 1024px) {
  .top_business__slider .splide__arrow {
    top: 0;
    width: clamp(30px, 4vw, 40px);
  }
}
.top_business__slider .splide__arrow--prev {
  left: 0;
}
@media screen and (min-width: 1025px) {
  .top_business__slider .splide__arrow--prev {
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 1024px) {
  .top_business__slider .splide__arrow--prev {
    transform: translate(-50%, calc(60vw - 50%));
  }
}
.top_business__slider .splide__arrow--next {
  right: 0;
}
@media screen and (min-width: 1025px) {
  .top_business__slider .splide__arrow--next {
    transform: translate(50%, -50%);
  }
}
@media screen and (max-width: 1024px) {
  .top_business__slider .splide__arrow--next {
    transform: translate(50%, calc(60vw - 50%));
  }
}
@media screen and (min-width: 1025px) {
  .top_business {
    padding-bottom: 140px;
  }
  .top_business__bg {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }
  .top_business__slider {
    margin-bottom: 32px;
  }
  .top_business__slide__img {
    flex-basis: 61%;
    flex-shrink: 0;
  }
  .top_business__slide__body {
    flex-grow: 1;
    padding-inline: 6%;
    padding-block: 104px;
  }
  .top_business__slide__h3 {
    margin-bottom: 80px;
  }
  .top_business__slide__h3 .__en {
    font-size: 20px;
  }
  .top_business__slide__h3 .__ja {
    font-size: 30px;
  }
  .top_business__slide__h3::after {
    display: block;
    width: 30px;
    height: 1px;
    background-color: #FFF;
    position: absolute;
    left: 0;
    bottom: -41px;
    content: "";
  }
}
@media screen and (max-width: 1024px) {
  .top_business {
    padding-bottom: 48px;
  }
  .top_business__bg {
    width: 100vw;
    height: auto;
    left: calc(50% - 50vw);
    top: 0;
  }
  .top_business__container {
    position: relative;
  }
  .top_business__slider {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
  }
  .top_business__slide a {
    flex-direction: column;
  }
  .top_business__slide__img {
    aspect-ratio: 3/2;
  }
  .top_business__slide__body {
    flex-grow: 1;
    padding-inline: 20px;
    padding-block: 20px;
  }
  .top_business__slide__h3 {
    margin-bottom: 15px;
  }
  .top_business__slide__h3 .__en {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .top_business__slide__h3 .__ja {
    font-size: 18px;
  }
}

.top_product {
  padding-top: 0;
}

.top_recruit__lead {
  font-weight: 700;
}
.top_recruit__btns {
  display: flex;
}
@media screen and (min-width: 1025px) {
  .top_recruit__container {
    width: 50%;
    padding-right: 16px;
  }
  .top_recruit__lead {
    font-size: clamp(26px, 2.14vw, 30px);
    margin-bottom: 35px;
  }
  .top_recruit__img {
    width: 50%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
  }
  .top_recruit__btns {
    margin-top: 50px;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .top_recruit__btns .link_button {
    flex-basis: 280px;
  }
}
@media screen and (max-width: 1024px) {
  .top_recruit {
    padding-bottom: 0;
  }
  .top_recruit__container {
    padding-bottom: 20px;
  }
  .top_recruit__lead {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .top_recruit__img {
    width: 100%;
  }
  .top_recruit__btns {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 10px;
  }
  .top_recruit__btns .link_button {
    flex-basis: 100%;
    max-width: 400px;
  }
}

.page_header {
  position: relative;
  border-bottom: 1px solid #FFF;
}
.page_header__bg {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.page_header__bg::before {
  display: block;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 40, 69, 0) 0%, rgb(0, 40, 69) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
}
.page_header__container {
  display: flex;
  align-items: center;
  height: 100%;
}
@media screen and (min-width: 1025px) {
  .page_header {
    height: 400px;
  }
  .page_header__bg {
    height: 56.25vw;
    max-height: 100vh;
  }
  .page_header__bg::before {
    height: 20vw;
  }
}
@media screen and (max-width: 1024px) {
  .page_header {
    height: 220px;
    padding-top: 50px;
  }
  .page_header__bg {
    height: 56.25vw;
    max-height: 100vh;
  }
  .page_header__bg::before {
    height: 20vw;
  }
}

.page_h1 span {
  display: block;
}
.page_h1__en {
  font-weight: 600;
  text-transform: uppercase;
}
@media screen and (min-width: 1025px) {
  .page_h1__en {
    font-size: 70px;
  }
  .page_h1__ja {
    font-size: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .page_h1__en {
    font-size: 36px;
  }
  .page_h1__ja {
    font-size: 18px;
  }
}

.page_h2 {
  position: relative;
  letter-spacing: 0.1em;
}
.page_h2__ja {
  display: block;
  font-weight: 700;
}
.page_h2__en {
  display: block;
  font-weight: 600;
}
.page_h2.__blue {
  color: #002845;
}
.page_h2::before {
  display: block;
  height: 1px;
  position: absolute;
  left: 0;
  content: "";
}
.page_h2.__white::before {
  background-color: #FFF;
}
.page_h2.__blue::before {
  background-color: #002845;
}
@media screen and (min-width: 1025px) {
  .page_h2 {
    margin-bottom: 80px;
  }
  .page_h2__ja {
    font-size: 20px;
  }
  .page_h2__en {
    font-size: 60px;
  }
  .page_h2::before {
    width: 70px;
    bottom: -40px;
  }
}
@media screen and (max-width: 1024px) {
  .page_h2 {
    margin-bottom: 40px;
  }
  .page_h2__ja {
    font-size: 14px;
  }
  .page_h2__en {
    font-size: 28px;
  }
  .page_h2::before {
    width: 40px;
    bottom: -20px;
  }
}

.page_h3 {
  position: relative;
  padding-left: 20px;
  font-weight: 700;
}
.page_h3::after {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFF;
  content: "";
}
.page_h3.__white {
  background-color: #FFF;
  color: #002845;
}
.page_h3.__white::after {
  background-color: #002845;
}
@media screen and (min-width: 1025px) {
  .page_h3 {
    padding-block: 23px;
    padding-inline: 39px;
    margin-block: 45px;
    font-size: 24px;
    line-height: 1;
  }
  .page_h3::after {
    width: 3px;
    height: 46px;
    left: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .page_h3 {
    padding-block: 12px;
    padding-inline: 20px;
    margin-block: 22px;
    font-size: 20px;
    line-height: 1.2;
  }
  .page_h3::after {
    height: calc(100% - 24px);
    width: 2px;
    left: 8px;
  }
}

.page_lead {
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
}
@media screen and (min-width: 1025px) {
  .page_lead {
    font-size: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .page_lead {
    font-size: 18px;
  }
}

.page_col {
  display: flex;
}
.page_col__body .c-text {
  font-weight: 700;
}
@media screen and (min-width: 1025px) {
  .page_col {
    align-items: flex-start;
    -moz-column-gap: 2.7%;
         column-gap: 2.7%;
  }
  .page_col__body {
    flex-grow: 1;
  }
  .page_col__pic {
    flex-basis: 40%;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 1024px) {
  .page_col {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 20px;
  }
  .page_col__body {
    flex-basis: 100%;
  }
  .page_col__pic {
    flex-basis: 100%;
  }
}

.page_grid {
  display: grid;
}
@media screen and (min-width: 1025px) {
  .page_grid.__3col {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 2.5%;
         column-gap: 2.5%;
  }
  .page_grid.__4col {
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 2.5%;
         column-gap: 2.5%;
  }
  .page_grid.__2col {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 5%;
         column-gap: 5%;
  }
}
@media screen and (max-width: 1024px) {
  .page_grid {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
  }
  .page_grid.__4col {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 2.5%;
         column-gap: 2.5%;
  }
}
@media screen and (max-width: 520px) {
  .page_grid.__4col {
    grid-template-columns: repeat(1, 1fr);
  }
}

.page_dark_grid {
  display: grid;
}
.page_dark_grid__item {
  text-align: center;
}
.page_dark_grid__item h3, .page_dark_grid__item h4 {
  font-weight: 700;
  margin-bottom: 1em;
}
@media screen and (min-width: 1025px) {
  .page_dark_grid.__4col {
    grid-template-columns: repeat(4, 1fr);
  }
  .page_dark_grid__item {
    padding-block: 60px;
  }
  .page_dark_grid__item h3, .page_dark_grid__item h4 {
    font-size: clamp(20px, 1.64vw, 28px);
  }
}
@media screen and (max-width: 1024px) {
  .page_dark_grid.__4col {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
  .page_dark_grid__item {
    padding-block: 30px;
  }
  .page_dark_grid__item h3, .page_dark_grid__item h4 {
    font-size: 20px;
  }
}
@media screen and (max-width: 520px) {
  .page_dark_grid.__4col {
    grid-template-columns: repeat(1, 1fr);
  }
}

/**/
.page_anchor_nav {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 1025px) {
  .page_anchor_nav {
    -moz-column-gap: 6px;
         column-gap: 6px;
    row-gap: 6px;
    margin-bottom: 105px;
  }
}
@media screen and (max-width: 1024px) {
  .page_anchor_nav {
    -moz-column-gap: 5px;
         column-gap: 5px;
    row-gap: 6px;
    margin-bottom: 50px;
  }
}

.page_anchor_link {
  position: relative;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
}
.page_anchor_link::before {
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #002845;
  border-bottom: 1px solid #002845;
  transform: rotate(45deg);
  position: absolute;
  right: 9%;
  top: calc(50% - 4px);
  content: "";
}
@media screen and (min-width: 1025px) {
  .page_anchor_link {
    flex-basis: 24.6%;
    padding-block: 21px;
  }
}
@media screen and (max-width: 1024px) {
  .page_anchor_link {
    flex-basis: 47.5%;
    padding-block: 10px;
    padding-inline: 10px;
  }
  .page_anchor_link span {
    display: inline-block;
    line-height: 1;
  }
}

.page_section {
  position: relative;
}
.page_section.__2nd {
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  .page_section {
    padding-block: 110px;
  }
  .page_section.__1st {
    min-height: min(56.25vw - 440px, 100vh - 440px);
  }
}
@media screen and (max-width: 1024px) {
  .page_section {
    padding-block: 55px;
  }
  .page_section.__1st {
    min-height: min(56.25vw - 220px, 100vh - 220px);
  }
}
.page_section.pb0 {
  padding-bottom: 0;
}

.page_dl {
  display: flex;
  border-top: 1px solid #99A9B5;
}
.page_dl dt {
  background-color: #E5E9EC;
  color: #002845;
  font-weight: 900;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.page_dl dd {
  flex-grow: 1;
  background-color: #FFF;
  color: #242424;
}
.page_dl dt, .page_dl dd {
  padding-inline: 1em;
  padding-block: 1.2em;
}
@media screen and (max-width: 1024px) {
  .page_dl {
    flex-wrap: wrap;
  }
  .page_dl dt, .page_dl dd {
    flex-basis: 100%;
  }
}

.page_datalist .page_dl {
  border-top: 1px solid;
}
.page_datalist .page_dl:last-child {
  border-bottom: 1px solid;
}
.page_datalist .page_dl dt {
  flex-shrink: 0;
}
@media screen and (min-width: 1025px) {
  .page_datalist .page_dl dt {
    width: 225px;
  }
}
@media screen and (max-width: 1024px) {
  .page_datalist .page_dl dt {
    width: 200px;
  }
}

.page_ul li {
  position: relative;
  padding-left: 1em;
  line-height: 1.8;
}
.page_ul li:not(.__no_marker)::before {
  display: block;
  width: 8px;
  height: 8px;
  background-color: #FFF;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: calc(0.9em - 4px);
  content: "";
}

.page_ul.__blue li {
  color: #242424;
}
.page_ul.__blue li::before {
  background-color: #002845;
}

.page_ul.__flex {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 1025px) {
  .page_ul.__flex {
    -moz-column-gap: 45px;
         column-gap: 45px;
  }
}
@media screen and (max-width: 1024px) {
  .page_ul.__flex {
    -moz-column-gap: 25px;
         column-gap: 25px;
  }
}

.page_ol {
  list-style: decimal;
  list-style-position: inside;
}
.page_ol li {
  padding-left: 1em;
  text-indent: -1em;
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.wp-pagenavi .page, .wp-pagenavi .current, .wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
  line-height: 2;
  padding: 0 0.5em;
}
.wp-pagenavi .current {
  border: 1px solid #FFF;
}

.news_archive__list {
  margin-bottom: 50px;
}
@media screen and (min-width: 1025px) {
  .news_archive {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .news_archive {
    margin-bottom: 40px;
  }
}

.single_h1 {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  line-height: 1.33;
  margin-bottom: 2em;
}

.single_news__date {
  margin-bottom: 10px;
}
.single_news__catlist {
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  margin-bottom: 1em;
}
.single_news__cat {
  font-weight: 500;
  font-size: 14px;
  line-height: 2.2;
  color: #FFF;
  background-color: #002845;
  border-radius: 1.1em;
  padding-inline: 1em;
}

@media screen and (min-width: 1025px) {
  .single_news_content {
    padding-block: 50px;
    padding-inline: 5%;
  }
}
@media screen and (max-width: 1024px) {
  .single_news_content {
    padding-block: 30px;
    padding-inline: 2.5%;
  }
}
.single_news_content h2 {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.33;
  position: relative;
  margin-bottom: 2em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #002845;
  color: #002845;
}
.single_news_content h3 {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.33;
  position: relative;
  margin-bottom: 1em;
  padding-left: 14px;
  color: #002845;
}
.single_news_content h3::before {
  display: block;
  width: 5px;
  height: 2.1em;
  position: absolute;
  left: 0;
  top: -0.3em;
  background-color: #002845;
  border-radius: 5px;
  content: "";
}
.single_news_content h4 {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.33;
}
.single_news_content p, .single_news_content ul, .single_news_content ol {
  margin-bottom: 1em;
}
.single_news_content p + h2, .single_news_content figure + h2, .single_news_content ul + h2, .single_news_content ol + h2, .single_news_content div + h2,
.single_news_content p + h3, .single_news_content figure + h3, .single_news_content ul + h3, .single_news_content ol + h3, .single_news_content div + h3 {
  margin-top: 1.5em;
}
@media screen and (min-width: 1025px) {
  .single_news_content figure + p, .single_news_content figure + ul, .single_news_content figure + ol, .single_news_content figure + div {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .single_news_content figure + p, .single_news_content figure + ul, .single_news_content figure + ol, .single_news_content figure + div {
    margin-top: 20px;
  }
}

.single_nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.single_nav .link_button {
  width: 220px;
}
.single_nav .single_nav_next a, .single_nav .single_nav_prev a {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.single_nav .single_nav_prev .link_arw {
  transform: rotate(180deg);
}
@media screen and (max-width: 1024px) {
  .single_nav {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 20px;
  }
  .single_nav .single_nav_prev {
    order: 1;
    flex-basis: 50%;
  }
  .single_nav .single_nav_next {
    order: 2;
    flex-basis: 50%;
  }
  .single_nav .single_nav_next a {
    justify-content: flex-end;
  }
  .single_nav .link_button {
    order: 3;
    flex-basis: 220px;
  }
}

.page_pp__container h3 {
  margin-bottom: 0.5em;
  line-height: 1.22;
}
@media screen and (min-width: 1025px) {
  .page_pp__container h3 {
    font-size: 28px;
  }
}
@media screen and (max-width: 1024px) {
  .page_pp__container h3 {
    font-size: 20px;
  }
}
.page_pp__container .c-text + h3 {
  margin-top: 1em;
}
.page_pp__container ul {
  list-style: disc inside;
}

.page_border {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.recruit_message {
  display: flex;
}
@media screen and (min-width: 1025px) {
  .recruit_message {
    justify-content: space-between;
    align-items: flex-start;
  }
  .recruit_message__body {
    flex-basis: 54%;
  }
  .recruit_message__img {
    flex-basis: 40%;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 1024px) {
  .recruit_message {
    flex-wrap: wrap;
    row-gap: 16px;
    justify-content: center;
  }
  .recruit_message__body {
    flex-basis: 100%;
  }
  .recruit_message__img {
    flex-basis: 100%;
  }
}

.recruit_features__bg {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.recruit_features__list {
  display: flex;
}
.recruit_features__title {
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #002845;
  margin-bottom: 1em;
}
@media screen and (min-width: 1025px) {
  .recruit_features {
    padding-bottom: 110px;
  }
  .recruit_features__bg {
    height: 47.5vw;
  }
  .recruit_features__list {
    -moz-column-gap: 2.5%;
         column-gap: 2.5%;
  }
  .recruit_features__item {
    flex: 1;
  }
  .recruit_features__img {
    margin-bottom: 30px;
  }
  .recruit_features__title {
    font-size: 22px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit_features {
    padding-bottom: 55px;
  }
  .recruit_features__bg {
    height: 100vw;
  }
  .recruit_features__list {
    flex-wrap: wrap;
    row-gap: 40px;
  }
  .recruit_features__item {
    flex-basis: 100%;
  }
  .recruit_features__img {
    margin-bottom: 10px;
  }
  .recruit_features__title {
    font-size: 18px;
  }
}

.recruit_job__item {
  display: flex;
  margin-bottom: 16px;
}
.recruit_job__item:last-child {
  margin-bottom: 0;
}
.recruit_job__body {
  background-color: #FFF;
}
.recruit_job__title {
  display: flex;
  align-items: flex-start;
  font-weight: 700;
  border-bottom: 1px solid #002845;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
.recruit_job__title .__title__sub {
  font-weight: 600;
  padding-right: 1em;
}
.recruit_job__content {
  background-color: #E5E9EC;
}
.recruit_job__content__title {
  font-weight: 700;
  margin-bottom: 1em;
}
.recruit_job__content__list {
  display: flex;
  flex-wrap: wrap;
}
.recruit_job__content__item {
  position: relative;
  padding-left: 1em;
  line-height: 1.6;
}
.recruit_job__content__item::before {
  display: block;
  width: 8px;
  height: 8px;
  background-color: #002845;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: calc(0.8em - 4px);
  content: "";
}
@media screen and (min-width: 1025px) {
  .recruit_job__img {
    flex-basis: 42%;
    flex-shrink: 0;
  }
  .recruit_job__body {
    flex-grow: 1;
    padding-block: 50px;
    padding-inline: 40px;
  }
  .recruit_job__title {
    font-size: 30px;
  }
  .recruit_job__title .__title__sub {
    font-size: 20px;
  }
  .recruit_job__content {
    padding-block: 35px;
    padding-inline: 20px;
  }
  .recruit_job__content__title {
    font-size: 18px;
  }
  .recruit_job__content__item {
    min-width: 50%;
  }
}
@media screen and (max-width: 1024px) {
  .recruit_job__item {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .recruit_job__img {
    flex-basis: 100%;
    aspect-ratio: 4/3;
  }
  .recruit_job__body {
    flex-basis: 100%;
    padding-block: 20px;
    padding-inline: 20px;
  }
  .recruit_job__title {
    font-size: 20px;
  }
  .recruit_job__title .__title__sub {
    font-size: 14px;
  }
  .recruit_job__content {
    padding-block: 14px;
    padding-inline: 14px;
  }
  .recruit_job__content__title {
    font-size: 16px;
  }
}

.interview_article {
  display: flex;
  width: 100%;
  align-self: stretch;
}
.interview_article__ttl {
  position: relative;
  padding-bottom: 2em;
  line-height: 1.33;
}
.interview_article__ttl::before {
  display: block;
  width: 30px;
  height: 1px;
  background-color: #FFF;
  position: absolute;
  left: 0;
  bottom: 1em;
  content: "";
}
@media screen and (min-width: 1025px) {
  .interview_article__img {
    flex-basis: 61%;
    flex-shrink: 0;
  }
  .interview_article__body {
    flex-grow: 1;
    padding-block: 60px;
    padding-inline: 4.6%;
  }
  .interview_article__ttl {
    font-size: 28px;
  }
}
@media screen and (max-width: 1024px) {
  .interview_article {
    flex-direction: column;
  }
  .interview_article__img {
    aspect-ratio: 3/2;
  }
  .interview_article__body {
    flex-grow: 1;
    padding-block: 20px;
    padding-inline: 20px;
  }
  .interview_article__ttl {
    font-size: 20px;
  }
}

.recruit_interview__slider .splide__arrow {
  background-color: #FFF;
  aspect-ratio: 1/1;
  height: auto;
  opacity: 1;
}
.recruit_interview__slider .splide__arrow svg {
  fill: #002845;
}
@media screen and (min-width: 1025px) {
  .recruit_interview__slider .splide__arrow {
    top: 50%;
    width: clamp(40px, 4vw, 60px);
  }
}
@media screen and (max-width: 1024px) {
  .recruit_interview__slider .splide__arrow {
    top: 0;
    width: clamp(30px, 4vw, 40px);
  }
}
.recruit_interview__slider .splide__arrow--prev {
  left: 0;
}
@media screen and (min-width: 1025px) {
  .recruit_interview__slider .splide__arrow--prev {
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 1024px) {
  .recruit_interview__slider .splide__arrow--prev {
    transform: translate(-50%, 30vw);
  }
}
.recruit_interview__slider .splide__arrow--next {
  right: 0;
}
@media screen and (min-width: 1025px) {
  .recruit_interview__slider .splide__arrow--next {
    transform: translate(50%, -50%);
  }
}
@media screen and (max-width: 1024px) {
  .recruit_interview__slider .splide__arrow--next {
    transform: translate(50%, 30vw);
  }
}
@media screen and (min-width: 1025px) {
  .recruit_interview__slider .splide__pagination {
    bottom: -40px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit_interview__slider .splide__pagination {
    bottom: -20px;
  }
}
.recruit_interview__slider .splide__pagination__page {
  background-color: rgba(0, 40, 69, 0.2);
  border-radius: 0;
}
.recruit_interview__slider .splide__pagination__page.is-active {
  background-color: #002845;
  transform: scale(1);
}
@media screen and (min-width: 1025px) {
  .recruit_interview__slider .splide__pagination__page {
    width: 70px;
    height: 3px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit_interview__slider .splide__pagination__page {
    width: 30px;
    height: 2px;
  }
}

.recruit_col {
  display: flex;
}
@media screen and (min-width: 1025px) {
  .recruit_col__item {
    flex: 1;
  }
  .recruit_col__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit_col {
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .recruit_col__item {
    flex-basis: 100%;
  }
  .recruit_col__title {
    font-size: 20px;
  }
}

@media screen and (min-width: 1025px) {
  .recruit_education {
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit_education {
    padding-bottom: 50px;
  }
}
.recruit_education .recruit_col__item .recruit_col__title {
  margin-bottom: 1em;
}
@media screen and (min-width: 1025px) {
  .recruit_education .recruit_col__item {
    padding-block: 90px;
    padding-inline: 4%;
  }
}
@media screen and (max-width: 1024px) {
  .recruit_education .recruit_col__item {
    padding-block: 30px;
    padding-inline: 20px;
  }
}

.recruit_benefits__col {
  display: flex;
}
.recruit_benefits__col .recruit_col__title {
  margin-bottom: 0.5em;
}
.recruit_benefits__col .recruit_col__list__item {
  position: relative;
  padding-left: 1em;
}
.recruit_benefits__col .recruit_col__list__item::before {
  display: block;
  width: 8px;
  height: 8px;
  background-color: #FFF;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: calc(50% - 4px);
  content: "";
}
@media screen and (min-width: 769px) {
  .recruit_benefits__col {
    padding-block: 60px;
    padding-inline: 2.8%;
    align-items: center;
  }
  .recruit_benefits__col__body {
    flex-basis: 50%;
    min-width: 322px;
  }
  .recruit_benefits__col__img {
    flex-basis: 50%;
    max-width: 138px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .recruit_benefits__col {
    flex-wrap: wrap;
    row-gap: 10px;
    padding-block: 30px;
    padding-inline: 20px;
  }
  .recruit_benefits__col__body {
    flex-basis: 100%;
  }
  .recruit_benefits__col__img {
    flex-basis: 50%;
    max-width: 138px;
    margin-inline: auto;
  }
}

.recruit_mynav {
  display: flex;
  background-color: #0EA0E8;
}
.recruit_mynav .c-text {
  font-weight: 700;
  line-height: 2;
  padding-right: 1em;
}
.recruit_mynav__btn {
  display: flex;
}
@media screen and (min-width: 1025px) {
  .recruit_mynav {
    padding-block: 68px;
    padding-inline: 40px;
    align-items: center;
  }
  .recruit_mynav .c-text {
    flex-basis: 50%;
    font-size: 20px;
  }
  .recruit_mynav .c-text i.__sp {
    display: none;
  }
  .recruit_mynav__btn {
    flex-basis: 50%;
    min-width: 305px;
    justify-content: center;
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
  .recruit_mynav__btn a {
    flex-basis: 300px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit_mynav {
    padding-block: 30px;
    padding-inline: 20px;
    flex-wrap: wrap;
    row-gap: 16px;
  }
  .recruit_mynav .c-text {
    flex-basis: 100%;
    font-size: 16px;
  }
  .recruit_mynav .c-text i.__pc {
    display: none;
  }
  .recruit_mynav__btn {
    flex-basis: 100%;
    flex-wrap: wrap;
    row-gap: 10px;
    justify-content: center;
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
  .recruit_mynav__btn a {
    flex-basis: 300px;
  }
}

@media screen and (min-width: 1025px) {
  .recruit_graduate {
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit_graduate {
    padding-bottom: 50px;
  }
}

.recruit_dl {
  display: flex;
  border-top: 1px solid #99A9B5;
}
.recruit_dl:last-child {
  border-bottom: 1px solid #99A9B5;
}
.recruit_dl dt {
  background-color: #E5E9EC;
}
.recruit_dl dd {
  background-color: #FFF;
}
.recruit_dl__ttl {
  font-weight: 700;
}
@media screen and (min-width: 1025px) {
  .recruit_dl dt, .recruit_dl dd {
    padding-block: 30px;
    padding-inline: 30px;
  }
  .recruit_dl dt {
    flex-basis: 165px;
    flex-shrink: 0;
  }
  .recruit_dl dd {
    flex-grow: 1;
  }
  .recruit_dl__ttl {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit_dl {
    flex-wrap: wrap;
  }
  .recruit_dl dt, .recruit_dl dd {
    padding-block: 20px;
    padding-inline: 16px;
  }
  .recruit_dl dt {
    flex-basis: 100%;
  }
  .recruit_dl dd {
    flex-basis: 100%;
  }
  .recruit_dl__ttl {
    font-size: 16px;
  }
}

.recruit_dl__jobs .recruit_dl__job__name {
  font-weight: 700;
  margin-bottom: 1em;
}
.recruit_dl__jobs .recruit_dl__job:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1025px) {
  .recruit_dl__jobs .recruit_dl__job {
    margin-bottom: 50px;
  }
  .recruit_dl__jobs .recruit_dl__job__name {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit_dl__jobs .recruit_dl__job {
    margin-bottom: 30px;
  }
  .recruit_dl__jobs .recruit_dl__job__name {
    font-size: 16px;
  }
}

.recruit_btns {
  display: flex;
}
@media screen and (min-width: 1025px) {
  .recruit_btns {
    justify-content: space-between;
    margin-top: 63px;
  }
  .recruit_btns .link_button {
    flex-basis: 49%;
    height: 120px;
    border-radius: 60px;
  }
  .recruit_btns .link_button .btn_txt {
    font-size: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit_btns {
    flex-wrap: wrap;
    row-gap: 10px;
    justify-content: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
    margin-top: 40px;
  }
  .recruit_btns .link_button {
    flex-basis: 100%;
    max-width: 400px;
    height: 60px;
    border-radius: 30px;
  }
  .recruit_btns .link_button .btn_txt {
    font-size: 18px;
  }
}

.proto_pillars__item {
  background-color: #FFF;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .proto_pillars__item {
    padding-block: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .proto_pillars__item {
    padding-block: 25px;
  }
}
.proto_pillars__h3 {
  color: #002845;
  font-weight: 700;
  margin-bottom: 1em;
}
@media screen and (min-width: 1025px) {
  .proto_pillars__h3 {
    font-size: 28px;
  }
}
@media screen and (max-width: 1024px) {
  .proto_pillars__h3 {
    font-size: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .proto_pillars__img {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .proto_pillars__img {
    margin-top: 20px;
  }
}

.proto_flow__head {
  display: flex;
  align-items: flex-start;
}
.proto_flow__head__sub {
  flex-shrink: 0;
  font-weight: 600;
  line-height: 1.33;
}
.proto_flow__head__sub span {
  display: block;
}
.proto_flow__head__sub .__sub__num {
  position: relative;
  text-align: right;
}
.proto_flow__head__sub .__sub__num::before {
  display: block;
  width: calc(100% - 1.5em);
  height: 1px;
  background-color: #FFF;
  position: absolute;
  left: 0;
  top: calc(50% - 0.5px);
  content: "";
}
.proto_flow__h3 {
  margin-bottom: 0.5em;
}
.proto_flow__body {
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.proto_flow__body__ttl {
  margin-bottom: 1em;
  line-height: 1;
}
.proto_flow__item__arw {
  width: 60px;
  position: absolute;
  top: 100%;
  left: calc(50% - 30px);
}
.proto_flow__item__arw svg {
  fill: rgba(255, 255, 255, 0.4);
}
@media screen and (min-width: 1025px) {
  .proto_flow {
    margin-bottom: 68px;
  }
  .proto_flow__item {
    padding-inline: 30px;
    padding-block: 30px;
    min-height: 340px;
  }
  .proto_flow__head {
    width: 55%;
    -moz-column-gap: 30px;
         column-gap: 30px;
    flex-wrap: wrap;
    row-gap: 16px;
    margin-bottom: 40px;
  }
  .proto_flow__head .link_button {
    flex-basis: 190px;
    margin-left: auto;
  }
  .proto_flow__head__sub {
    flex-basis: 60px;
    font-size: 20px;
  }
  .proto_flow__head__main {
    flex-basis: calc(100% - 90px);
  }
  .proto_flow__head:has(.link_button) .proto_flow__head__main {
    flex-grow: 1;
    flex-basis: fit-content;
  }
  .proto_flow__h3 {
    font-size: 28px;
  }
  .proto_flow__body {
    width: 54%;
    padding-block: 25px;
    padding-inline: 25px;
  }
  .proto_flow__body__ttl {
    font-size: 22px;
  }
  .proto_flow__item__img {
    position: absolute;
    width: 40%;
    right: 30px;
    bottom: 30px;
  }
  .proto_flow__item:has(.proto_flow__item__arw) {
    margin-bottom: 56px;
  }
  .proto_flow__bottom {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .proto_flow {
    margin-bottom: 34px;
  }
  .proto_flow__item {
    padding-inline: 16px;
    padding-block: 16px;
  }
  .proto_flow__head {
    width: 100%;
    -moz-column-gap: 30px;
         column-gap: 30px;
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 10px;
    margin-bottom: 20px;
  }
  .proto_flow__head .link_button {
    flex-basis: 190px;
  }
  .proto_flow__head__sub {
    font-size: 16px;
  }
  .proto_flow__head__main {
    flex-grow: 1;
  }
  .proto_flow__h3 {
    font-size: 20px;
  }
  .proto_flow__body {
    padding-block: 16px;
    padding-inline: 16px;
    margin-bottom: 20px;
  }
  .proto_flow__body__ttl {
    font-size: 16px;
  }
  .proto_flow__item__img {
    width: 100%;
    position: relative;
  }
  .proto_flow__item:has(.proto_flow__item__arw) {
    margin-bottom: 56px;
  }
  .proto_flow__bottom {
    font-size: 16px;
  }
}

.mass_flow__h3 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 1em;
}
.mass_flow__head {
  display: flex;
  align-items: flex-start;
}
.mass_flow__head__sub {
  flex-shrink: 0;
  font-weight: 600;
  line-height: 1.33;
}
.mass_flow__head__sub span {
  display: block;
}
.mass_flow__head__sub .__sub__num {
  position: relative;
  text-align: right;
}
.mass_flow__head__sub .__sub__num::before {
  display: block;
  width: calc(100% - 1.5em);
  height: 1px;
  background-color: #FFF;
  position: absolute;
  left: 0;
  top: calc(50% - 0.5px);
  content: "";
}
.mass_flow__h4 {
  margin-bottom: 0.5em;
}
.mass_flow__body {
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.mass_flow__body__ttl {
  margin-bottom: 1em;
  line-height: 1;
}
.mass_flow__body__grid {
  display: grid;
}
.mass_flow__item__arw {
  width: 60px;
  position: absolute;
  top: 100%;
  left: calc(50% - 30px);
}
.mass_flow__item__arw svg {
  fill: #FFF;
}
.mass_flow__middle {
  position: relative;
}
.mass_flow__middle__lead {
  font-weight: 700;
  text-align: center;
  margin-bottom: 1em;
}
.mass_flow__bottom {
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .mass_flow {
    margin-bottom: 68px;
  }
  .mass_flow__h3 {
    font-size: 30px;
  }
  .mass_flow__item {
    padding-inline: 30px;
    padding-block: 30px;
  }
  .mass_flow__head {
    -moz-column-gap: 30px;
         column-gap: 30px;
    flex-wrap: wrap;
    row-gap: 16px;
  }
  .mass_flow__head__sub {
    flex-basis: 60px;
    font-size: 20px;
  }
  .mass_flow__head__main {
    flex-grow: 1;
  }
  .mass_flow__h4 {
    font-size: 28px;
  }
  .mass_flow__body {
    padding-block: 25px;
    padding-inline: 25px;
    margin-top: 40px;
  }
  .mass_flow__body__ttl {
    font-size: 22px;
  }
  .mass_flow__body__grid {
    grid-template-columns: 150px 400px 200px;
  }
  .mass_flow__item:has(.mass_flow__item__arw) {
    margin-bottom: 56px;
  }
  .mass_flow__middle {
    padding-block: 40px;
    margin-bottom: 80px;
  }
  .mass_flow__middle__lead {
    font-size: 20px;
  }
  .mass_flow__bottom {
    font-size: 20px;
    margin-top: 54px;
  }
}
@media screen and (max-width: 1024px) {
  .mass_flow {
    margin-bottom: 34px;
  }
  .mass_flow__item {
    padding-inline: 16px;
    padding-block: 16px;
  }
  .mass_flow__head {
    width: 100%;
    -moz-column-gap: 30px;
         column-gap: 30px;
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 10px;
    margin-bottom: 20px;
  }
  .mass_flow__head__sub {
    font-size: 16px;
  }
  .mass_flow__head__main {
    flex-grow: 1;
  }
  .mass_flow__h3 {
    font-size: 22px;
  }
  .mass_flow__h4 {
    font-size: 20px;
  }
  .mass_flow__body {
    padding-block: 16px;
    padding-inline: 16px;
    margin-top: 20px;
  }
  .mass_flow__body__ttl {
    font-size: 16px;
  }
  .mass_flow__item:has(.mass_flow__item__arw) {
    margin-bottom: 56px;
  }
  .mass_flow__middle {
    padding-block: 40px;
    margin-bottom: 40px;
  }
  .mass_flow__middle__lead {
    font-size: 18px;
  }
  .mass_flow__bottom {
    font-size: 16px;
    margin-top: 25px;
  }
}

.mass_merit__img {
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .mass_merit__img {
    max-width: 900px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .mass_merit__img {
    max-width: 700px;
    margin-top: 30px;
  }
}

.teg_recommend {
  background-color: #FFF;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .teg_recommend {
    width: 900px;
    padding-block: 40px;
    padding-inline: 4%;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .teg_recommend {
    max-width: 900px;
    padding-block: 25px;
    padding-inline: 2.5%;
    margin-bottom: 40px;
  }
}

.teg_summary {
  border: 1px solid #FFF;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .teg_summary {
    width: 900px;
    padding-block: 40px;
    padding-inline: 4%;
  }
}
@media screen and (max-width: 1024px) {
  .teg_summary {
    max-width: 900px;
    padding-block: 25px;
    padding-inline: 2.5%;
  }
}

.product_item {
  display: flex;
  margin-bottom: 16px;
}
.product_item:last-child {
  margin-bottom: 0;
}
.product_item__body {
  background-color: #FFF;
}
.product_item__h3 {
  font-weight: 700;
  border-bottom: 1px solid #002845;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
.product_item__content {
  background-color: #E5E9EC;
}
.product_item__content__ttl {
  font-weight: 700;
  margin-bottom: 1em;
}
.product_item__note {
  font-size: 0.75rem;
  margin-top: 1em;
}
@media screen and (min-width: 1025px) {
  .product_item__img {
    flex-basis: 42%;
    flex-shrink: 0;
  }
  .product_item__body {
    flex-grow: 1;
    padding-block: 50px;
    padding-inline: 40px;
  }
  .product_item__h3 {
    font-size: 30px;
  }
  .product_item__content {
    padding-block: 35px;
    padding-inline: 20px;
    margin-bottom: 40px;
  }
  .product_item__content__ttl {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .product_item {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .product_item__img {
    flex-basis: 100%;
    aspect-ratio: 4/3;
  }
  .product_item__body {
    flex-basis: 100%;
    padding-block: 20px;
    padding-inline: 20px;
  }
  .product_item__h3 {
    font-size: 20px;
  }
  .product_item__h3 .__title__sub {
    font-size: 14px;
  }
  .product_item__content {
    padding-block: 14px;
    padding-inline: 14px;
    margin-bottom: 20px;
  }
  .product_item__content__ttl {
    font-size: 16px;
  }
}

@media screen and (min-width: 1025px) {
  .company_table .page_dl dt {
    flex-basis: 160px;
  }
}
.company_purpose {
  background-color: #FFF;
  text-align: center;
}
.company_purpose__h3 {
  color: #002845;
  font-weight: 700;
  margin-bottom: 1em;
}
@media screen and (min-width: 1025px) {
  .company_purpose {
    padding-block: 50px;
    padding-inline: 20px;
  }
  .company_purpose__h3 {
    font-size: 28px;
  }
}
@media screen and (max-width: 1024px) {
  .company_purpose {
    padding-block: 25px;
    padding-inline: 16px;
  }
  .company_purpose__h3 {
    font-size: 20px;
  }
}

@media screen and (min-width: 1025px) {
  .company_history .page_dl dt {
    flex-basis: 160px;
  }
}

.company_access__map {
  margin-inline: auto;
  margin-bottom: 20px;
}
.company_access__map iframe {
  width: 100%;
  height: 100%;
}
.company_access .page_dl {
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .company_access__map {
    max-width: 900px;
    height: 450px;
  }
  .company_access .page_dl {
    max-width: 900px;
  }
}
@media screen and (max-width: 1024px) {
  .company_access__map {
    height: 90vw;
    max-width: 600px;
    max-height: 450px;
  }
  .company_access .page_dl {
    max-width: 600px;
  }
}

@media screen and (min-width: 1025px) {
  .company_message .page_col__pic {
    height: 524px;
  }
  .company_message .page_col__pic img {
    -o-object-position: top;
       object-position: top;
  }
}

.quality_table {
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .quality_table .page_dl dt {
    flex-basis: 200px;
  }
}

.koukoku_archive {
  padding-inline: 1.5em;
}
@media screen and (min-width: 1025px) {
  .koukoku_archive {
    padding-block: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .koukoku_archive {
    padding-block: 30px;
  }
}

.koukoku_article {
  padding-block: 1em;
  padding-inline: 1em;
  border-bottom: 1px solid #002845;
}
.koukoku_article:first-child {
  border-top: 1px solid #002845;
}
.koukoku_article h2 span {
  display: inline-block;
  vertical-align: middle;
}
.koukoku_article__icon {
  width: 18px;
  margin-right: 18px;
}

.tech_service {
  background-color: #FFF;
}
.tech_service__h3 {
  font-weight: 700;
  line-height: 1.2;
  color: #002845;
  margin-bottom: 1em;
}
.tech_service__lead {
  color: #002845;
  margin-bottom: 1em;
}
@media screen and (min-width: 1025px) {
  .tech_service {
    padding-block: 50px;
    padding-inline: 4%;
  }
  .tech_service__h3 {
    font-size: 22px;
    min-height: 2.4em;
  }
  .tech_service__lead {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .tech_service {
    padding-block: 30px;
    padding-inline: 2.5%;
  }
  .tech_service__h3 {
    font-size: 18px;
  }
  .tech_service__lead {
    font-size: 16px;
  }
}

@media screen and (min-width: 1025px) {
  .tech_manual {
    padding-block: 50px;
    padding-inline: 5%;
  }
}
@media screen and (max-width: 1024px) {
  .tech_manual {
    padding-block: 30px;
    padding-inline: 2.5%;
  }
}
.tech_manual__item {
  padding-block: 1em;
  border-bottom: 1px solid #002845;
}
.tech_manual__item:first-child {
  padding-top: 0;
}
.tech_manual__link {
  display: flex;
  align-items: center;
  -moz-column-gap: 1em;
       column-gap: 1em;
}
.tech_manual__title {
  text-decoration: underline;
}
.tech_manual__icon {
  flex-basis: 18px;
}
.tech_manual__icon img {
  display: block;
}

.anchor_nav {
  display: flex;
}
.anchor_nav .link_button .btn_arw {
  transform: rotate(135deg) translateY(-4px);
}
@media screen and (min-width: 1025px) {
  .anchor_nav {
    -moz-column-gap: 2%;
         column-gap: 2%;
  }
}
@media screen and (max-width: 1024px) {
  .anchor_nav {
    flex-wrap: wrap;
    row-gap: 10px;
    -moz-column-gap: 2%;
         column-gap: 2%;
  }
  .anchor_nav .link_button {
    max-width: 160px;
  }
}

.page_table {
  table-layout: fixed;
  width: 100%;
}
.page_table th, .page_table td {
  padding-block: 0.5em;
  padding-inline: 1em;
  border: 1px solid #002845;
}
.page_table th {
  font-weight: 500;
  background-color: #99A9B5;
  color: #002845;
}
.page_table td {
  background-color: #FFF;
}

.tech_spec_table td {
  text-align: center;
}
.tech_spec_table td:first-child {
  text-align: left;
}
.tech_spec_table .col1 {
  width: 50%;
}
.tech_spec_table .col2, .tech_spec_table .co3 {
  width: 25%;
}
@media screen and (min-width: 1025px) {
  .tech_spec_table {
    max-width: 1000px;
  }
}

.tech_rel_table th {
  text-align: center;
}
.tech_rel_table td {
  text-align: center;
}
.tech_rel_table td:first-child {
  text-align: left;
}
.tech_rel_table .col1 {
  width: 20%;
}
.tech_rel_table .col2 {
  width: 30%;
}
.tech_rel_table .col3, .tech_rel_table .col4 {
  width: 15%;
}
.tech_rel_table .col5 {
  width: 20%;
}
@media screen and (min-width: 1025px) {
  .tech_rel_table {
    max-width: 1000px;
  }
}

@media screen and (max-width: 1024px) {
  .tech_spec_table, .tech_rel_table {
    overflow-x: auto;
    padding-bottom: 20px;
  }
  .tech_spec_table .page_table, .tech_rel_table .page_table {
    width: 880px;
  }
}

.tech_pillar__img {
  max-width: 1000px;
  margin-inline: auto;
}

@media screen and (min-width: 1025px) {
  .contactform {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .contactform {
    padding-bottom: 40px;
  }
}

.page_imgs {
  display: flex;
  -moz-column-gap: 5%;
       column-gap: 5%;
}
.page_imgs img {
  flex-basis: var(--img-width);
}

.contact_lead {
  text-align: center;
  margin-bottom: 50px;
}

.contact_caution, .contact_note {
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  background-color: #FFF;
  margin-bottom: 50px;
  position: relative;
}
.contact_caution a, .contact_note a {
  font-weight: 700;
  text-align: center;
  display: block;
  color: #002845;
}
.contact_caution a:hover, .contact_note a:hover {
  opacity: 1;
}
.contact_caution p, .contact_note p {
  font-size: 16px;
  line-height: 2;
  color: #242424;
}
.contact_caution .expand_target, .contact_note .expand_target {
  display: none;
  margin-top: 20px;
}
.contact_caution .expand_btn, .contact_note .expand_btn {
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  background-color: #002845;
  border-radius: 50%;
}
.contact_caution .expand_btn::before, .contact_note .expand_btn::before {
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  inset: 0;
  border-right: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  margin: auto;
  transition: all ease 0.4s;
  content: "";
}
.contact_caution:not(.is-open) .expand_btn::before, .contact_note:not(.is-open) .expand_btn::before {
  transform: translateY(-2px) rotate(45deg);
}
.contact_caution.is-open .expand_btn::before, .contact_note.is-open .expand_btn::before {
  transform: translateY(2px) rotate(-135deg);
}
@media screen and (min-width: 1025px) {
  .contact_caution, .contact_note {
    width: 900px;
    padding: 50px 5%;
  }
  .contact_caution a, .contact_note a {
    font-size: 24px;
  }
  .contact_caution .expand_btn, .contact_note .expand_btn {
    right: 5%;
    top: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .contact_caution, .contact_note {
    width: 100%;
    max-width: 900px;
    padding: 32px 16px;
  }
  .contact_caution a, .contact_note a {
    font-size: 20px;
  }
  .contact_caution .expand_btn, .contact_note .expand_btn {
    right: 16px;
    top: 32px;
  }
}

.contact_confirm {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  .contact_confirm {
    width: 900px;
  }
}
@media screen and (max-width: 1024px) {
  .contact_confirm {
    width: 100%;
    max-width: 900px;
  }
}

.contact_tel {
  text-align: center;
}
.contact_tel_phone {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.contact_tel_phone .phone_icon svg {
  width: 100%;
}
.contact_tel_phone .phone_num {
  font-weight: 700;
  line-height: 1;
  padding-bottom: 0.2em;
}
@media screen and (min-width: 1025px) {
  .contact_tel {
    margin-bottom: 70px;
  }
  .contact_tel .phone_icon {
    width: 30px;
  }
  .contact_tel .phone_num {
    font-size: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .contact_tel {
    margin-bottom: 40px;
  }
  .contact_tel .phone_icon {
    width: 22px;
  }
  .contact_tel .phone_num {
    font-size: 24px;
  }
}

.contactform_table {
  table-layout: fixed;
  margin: 0 auto;
}
.contactform_table th {
  font-weight: 500;
  position: relative;
}
.contactform_table .th_wrap {
  display: flex;
  width: 100%;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .contactform_table .th_wrap {
    justify-content: space-between;
  }
}
@media screen and (max-width: 1024px) {
  .contactform_table .th_wrap {
    -moz-column-gap: 1em;
         column-gap: 1em;
  }
}
.contactform_table td {
  vertical-align: middle;
}
.contactform_table .td__dob {
  display: flex;
  align-items: center;
  -moz-column-gap: 1em;
       column-gap: 1em;
}
.contactform_table .td__dob > p {
  display: flex;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
  align-items: center;
  padding-bottom: 0.5px;
}
.contactform_table .td__gender .wpcf7-checkbox {
  display: flex;
  align-items: center;
  -moz-column-gap: 1em;
       column-gap: 1em;
}
.contactform_table .td__address__zip {
  display: flex;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
  align-items: center;
  margin-bottom: 10px;
}
.contactform_table .td__address__zip span[data-name=your-zip] {
  width: 140px;
}
.contactform_table .td__address__txt .wpcf7-form-control-wrap {
  width: 100%;
}
.contactform_table.confirm .td__address .td__address__zip {
  margin-bottom: 0;
}
@media screen and (min-width: 1025px) {
  .contactform_table {
    width: 900px;
    margin-bottom: 50px;
  }
  .contactform_table th {
    width: 240px;
    padding: 1.5em 1em;
    border-bottom: 1px solid;
  }
  .contactform_table td {
    padding: 1.5em 0;
    border-bottom: 1px solid;
  }
  .contactform_table .td__dob > p .wpcf7-form-control-wrap {
    width: 6em;
  }
  .contactform_table.confirm .td__dob > p {
    flex-basis: fit-content;
  }
}
@media screen and (max-width: 1024px) {
  .contactform_table {
    width: 100%;
    max-width: 900px;
    margin-bottom: 30px;
  }
  .contactform_table th, .contactform_table td {
    display: block;
    width: 100%;
  }
  .contactform_table th {
    padding: 0.5em;
  }
  .contactform_table td {
    padding: 0.5em 0.5em 2em 1em;
    border-bottom: 1px solid;
  }
  .contactform_table .td__dob > p .wpcf7-form-control-wrap[data-name=your-dob-year] {
    width: 6em;
  }
  .contactform_table .td__dob > p .wpcf7-form-control-wrap[data-name=your-dob-month], .contactform_table .td__dob > p .wpcf7-form-control-wrap[data-name=your-dob-day] {
    width: 4em;
  }
}
.contactform_table input[type=text], .contactform_table input[type=tel], .contactform_table input[type=email], .contactform_table textarea, .contactform_table select {
  width: 100%;
  border: 1px solid;
  padding: 0.5em 1em;
  background-color: #F4F4F4;
}
.contactform_table input[type=text].postal_code {
  width: 100px;
  margin-left: 0.5em;
  margin-bottom: 0.5em;
}
.contactform_table textarea {
  resize: none;
}
.contactform_table input[type=radio], .contactform_table input[type=checkbox], .contactform_table select {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.contactform_table .wpcf7-form-control.wpcf7-radio {
  display: flex;
  align-items: center;
  -moz-column-gap: 1em;
       column-gap: 1em;
  flex-wrap: wrap;
  row-gap: 0.5em;
}
.contactform_table .wpcf7-form-control.wpcf7-radio label {
  cursor: pointer;
}
.contactform_table .wpcf7-form-control.wpcf7-radio label input[type=radio], .contactform_table .wpcf7-form-control.wpcf7-radio label .wpcf7-list-item-label {
  vertical-align: middle;
}
.contactform_table .wpcf7-list-item {
  margin-left: 0;
}
.contactform_table .form_note {
  margin-top: 20px;
  padding: 0 0.5em;
  line-height: 1.33;
  font-size: 14px;
}
.contactform_table .form_required {
  flex-shrink: 0;
}

.form_required {
  display: inline-block;
  padding: 0 5px;
  border-radius: 4px;
  background-color: #002845;
  color: #FFF;
  font-size: 12px;
  line-height: 20px;
}

.form_accept {
  margin-left: auto;
  margin-right: auto;
  border: 1px solid;
}
.form_accept_head {
  margin-bottom: 1.5em;
  padding: 0 1em;
  line-height: 2;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #002845;
}
.form_accept_check {
  position: relative;
  text-align: center;
}
.form_accept_check input[type=checkbox] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.form_accept_check span[data-name=acceptance] {
  display: inline-block;
  width: -moz-max-content;
  width: max-content;
  margin-left: 1em;
  margin-right: 0.5em;
}
.form_accept_check label {
  display: inline-block;
}
.form_accept .wpcf7-list-item {
  margin-left: 0;
}
@media screen and (min-width: 1025px) {
  .form_accept {
    width: 900px;
    padding: 50px 36px;
  }
}
@media screen and (max-width: 1024px) {
  .form_accept {
    width: 100%;
    max-width: 900px;
    padding: 20px;
  }
}

.wpcf7-form-control-wrap {
  position: relative;
  display: inline-block;
}
.wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  position: absolute;
  left: 0;
  top: calc(100% - 5px);
  white-space: nowrap;
}
.wpcf7-form-control-wrap:has(textarea) {
  width: 100%;
}

.contactform_btns {
  display: flex;
  justify-content: center;
  -moz-column-gap: 5%;
       column-gap: 5%;
  position: relative;
}
.contactform_btns .wpcf7-spinner {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (min-width: 1025px) {
  .contactform_btns {
    margin-block: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .contactform_btns {
    margin-block: 50px;
  }
}

.wpcf7 .wpcf7-form .wpcf7-submit,
.wpcf7 .wpcf7-form .wpcf7-previous {
  border-radius: 2em;
  font-weight: 700;
  font-size: 18px;
  line-height: 3em;
  padding: 0 2em;
  text-align: center;
  border: 2px solid #002845;
  color: #002845;
  transition: all ease 0.3s;
  width: 160px;
}
.wpcf7 .wpcf7-form .wpcf7-submit:disabled,
.wpcf7 .wpcf7-form .wpcf7-previous:disabled {
  opacity: 0.5;
}
@media (hover: hover) {
  .wpcf7 .wpcf7-form .wpcf7-submit._confirm:hover, .wpcf7 .wpcf7-form .wpcf7-submit._send:hover, .wpcf7 .wpcf7-form .wpcf7-submit._back:hover,
  .wpcf7 .wpcf7-form .wpcf7-previous._confirm:hover,
  .wpcf7 .wpcf7-form .wpcf7-previous._send:hover,
  .wpcf7 .wpcf7-form .wpcf7-previous._back:hover {
    background-color: #FFF;
    color: #002845;
  }
}
.wpcf7 .wpcf7-form .wpcf7-submit._confirm, .wpcf7 .wpcf7-form .wpcf7-submit._send,
.wpcf7 .wpcf7-form .wpcf7-previous._confirm,
.wpcf7 .wpcf7-form .wpcf7-previous._send {
  background-color: #002845;
  color: #FFF;
}
.wpcf7 .wpcf7-form .wpcf7-submit._back,
.wpcf7 .wpcf7-form .wpcf7-previous._back {
  color: #002845;
}

.wpcf7 form .wpcf7-response-output {
  display: none;
}

.complete_message {
  margin-left: auto;
  margin-right: auto;
}
.complete_message .c-text {
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .complete_message {
    width: 900px;
    margin-bottom: 50px;
  }
  .complete_message .link_button {
    margin-top: 90px;
  }
}
@media screen and (max-width: 1024px) {
  .complete_message {
    width: 100%;
    max-width: 900px;
    margin-bottom: 30px;
  }
  .complete_message .link_button {
    margin-top: 50px;
  }
}/*# sourceMappingURL=style.css.map */