:root {
  --fontNotoSans: "Noto Sans JP", sans-serif;
  --colorPrimary: #2C73AB;
  --colorSecondary: #65A1DD;
  --colorTertiary: #002A58;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: min(calc(100vw * 10 / 1160), 10px);
  font-weight: 400;
  font-family: var(--fontNotoSans);
  line-height: 1.5;
  letter-spacing: .1em;
}
body {
  background: #F1F1F1;
  overflow-x: hidden;
}
section {
  position: relative;
}
img {
  display: block;
  width: 100%;
}
ol, ul {
  list-style: none;
    font-size: 1.6rem;
    line-height: 1.5;
}
a {
  color: inherit;
  text-decoration: none;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.zoom-guide {
  display: none;
}

@media screen and (max-width: 768px) {
  .zoom-guide {
    display: block;
    text-align: center;
    background: #f0f0f0;
    font-size: 13px;
    padding: 5px 0;
    margin-bottom: 5px;
    color: #333;
    border-radius: 4px;
  }
  
  .zoom-link {
    text-decoration: none;
    display: block;
  }
}

@media screen and (min-width: 769px) {
  .zoom-link {
    pointer-events: none;
    cursor: default;
  }
}

.c_text_box {
  text-align: center;
}

.sec_recruit .qa_box a,
.txt_content a {
  color: #13598E;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

@media (min-width: 769px) {
  .sec_recruit .qa_box a:hover,
  .txt_content a:hover {
    opacity: 0.6;
    text-decoration: underline;
  }
}

.sec_company a {
  color: #13598E;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

@media (min-width: 769px) {
  .sec_company a:hover {
    opacity: 0.6;
    text-decoration: underline;
  }
}

@media (max-width: 767px) {
  html {
    font-size: min(calc(100vw * 10 / 390), 10px);
  }
  body:has( #header.menu_open) {
    overflow: hidden;
  }
}

.pc_br {
  display: none;
}

@media (min-width: 768px) {
  .pc_br {
    display: inline;
  }
}

.sp_br {
    display: none;
}

@media (min-width: 768px) {
  .sp { display: none; }
}
@media (max-width: 767px) {
  .pc { display: none; }
  .sp_br {
        display: inline;}
}

#header {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100vw;
  z-index: 100;
}
#header .inner {
  width: min(100%, 116rem);
  margin: auto;
  padding: 0 2rem;
}
#header .row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 3rem;
}
#header .site_logo {
  width: 18.5rem;
}
#header .nav {
  background: #fff;
  display: flex;
  align-items: center;
  border-radius: 1rem;
  box-shadow: 0 0 5px #ccc;
}
#header .nav .link {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 0 4rem;
}
#header .nav .link > li {
  position: relative;
}
#header .nav .link > li > a {
  display: flex;
  align-items: center;
  position: relative;
  height: 4.5rem;
  padding-left: 1.5rem;
  font-size: 1.4rem;
  font-weight: 500;
}
#header .nav .link > li > a::before {
  content: '';
  background: var(--colorSecondary);
  position: absolute;
  inset: 50% auto auto 0;
  translate: 0 -50%;
  width: .5rem;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}
#header .nav .link .sub {
  background: #BCDDFF;
  position: absolute;
  inset: 100% auto auto 50%;
  translate: -50% 0;
  padding: 1rem 2rem 1rem 1.5rem;
  border-radius: 0 0 1rem 1rem;
}
#header .nav .link .sub li + li {
  padding-top: .5rem;
}
#header .nav .link .sub a {
  position: relative;
  padding-left: 2rem;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2;
  white-space: nowrap;
  transition: all 0.3s ease;
  color: #13598E;
}
#header .nav .link .sub a:hover {
    opacity: 0.6;
    text-decoration: underline;
}

#header .nav .link .sub a::before {
  content: '';
  background: url(../img/ico_arrow_blue.svg) no-repeat center / cover;
  position: absolute;
  inset: .2rem auto auto 0;
  width: 1.5rem;
  aspect-ratio: 1 / 1;
}
#header .nav .contact a {
  background: var(--colorSecondary);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 4.5rem;
  padding: 0 2.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  transition: background .2s;
}
#header .nav .contact a::after {
  content: '';
  background: url(../img/ico_mail_white.svg) no-repeat center / cover;
  display: inline-block;
  margin-left: 1rem;
  width: 2.4rem;
  aspect-ratio: 1 / 1;
  vertical-align: text-bottom;
}
#header .gotop {
  background: var(--colorSecondary);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: fixed;
  inset: auto 4rem 4rem auto;
  width: 6rem;
  aspect-ratio: 1 / 1;
  padding-top: .5rem;
  border-radius: 50%;
  transition: background .2s;
  z-index: 5;
}
#header .gotop::before {
  content: '';
  background: url(../img/ico_gotop.svg) no-repeat center / cover;
  display: inline-block;
  width: 3rem;
  aspect-ratio: 1 / 1;
}
#header .gotop::after {
  content: 'TOP';
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

@media (min-width: 768px) {
  #header {
    transition: none; 
    pointer-events: none;
  }
  #header .inner {
    transition: transform 0.4s ease-in-out;
    transform: translateY(0);
    pointer-events: auto;
    background: transparent;
  }
  #header.hide .inner {
    transform: translateY(-100%);
  }
  #header .gotop {
    pointer-events: auto;
    transition: background .2s, opacity .3s;
    transform: translateY(0) !important; 
  }
  #header .nav .contact a:hover { background: var(--colorPrimary); }
  #header .nav .link .sub a:hover { text-decoration: underline; }
  #header .nav .link :is(.sub_btn, .sub) { display: none; }
  #toggleBtn { display: none; }
  #header .gotop:hover { background: var(--colorPrimary); }
}

@media (max-width: 767px) {
  #header { height: 7rem; }
  #header .row { align-items: center; padding-top: 1rem; }
  #header .site_logo { position: relative; width: 13.2rem; z-index: 20; }
  #header .nav { background: none; flex-direction: column; align-items: inherit; gap: 6rem; border-radius: 0; box-shadow: none; }
  #header .nav .link li:has(> .sub_btn) { display: flex; flex-wrap: wrap; }
  #header .nav .link { flex-direction: column; align-items: inherit; gap: 0; padding: 0; }
  #header .nav .link > li + li { border-top: 1px solid var(--colorPrimary); }
  #header .nav .link > li > a { color: var(--colorTertiary); display: block; height: auto; padding: 1.8rem 1.5rem 1.8rem 1.5rem; transition: background .2s; }
  #header .nav .link > li > a:has(+ .sub_btn) { width: calc(100% - 6rem); }
  #header .nav .link > li > a:has(+ .sub_btn.show) { background: var(--colorSecondary); color: #fff; }
  #header .nav .link > li > a::after { content: ''; background: url(../img/ico_arrow_blue.svg) no-repeat center / cover; position: absolute; inset: 50% 1.5rem auto auto; translate: 0 -50%; width: 3rem; aspect-ratio: 1 / 1; }
  #header .nav .link > li > a:has(+ .sub_btn)::after { display: none; }
  #header .nav .link > li > a::before { display: none; }
  #header .nav .link .sub_btn { background: url(../img/ico_plus_blue.svg) no-repeat center / 3rem; display: inline-block; width: 6rem; transition: background-color .2s; }
  #header .nav .link .sub_btn.show { background-image: url(../img/ico_minus_white.svg); background-color: var(--colorSecondary); }
  #header .nav .link .sub { display: none; background: none; position: initial; translate: none; padding: 0; width: 100%; border-top: 1px solid var(--colorPrimary); }
  #header .nav .link .sub li + li { padding-top: 0; border-top: 1px solid var(--colorPrimary); }
  #header .nav .link .sub a { color: #2A73AA; display: block; padding: 1.8rem 1.5rem 1.8rem 1.5rem; font-size: 1.4rem; line-height: 1.5; }
  #header .nav .link .sub a::before { display: none; }
  #header .nav .link .sub a::after { content: ''; background: url(../img/ico_arrow_blue.svg) no-repeat center / cover; position: absolute; inset: 50% 1.5rem auto auto; translate: 0 -50%; width: 3rem; aspect-ratio: 1 / 1; }
  #header .nav .contact a { width: 23rem; margin: auto; padding: 1.8rem 0; text-align: center; border-radius: 10rem; height: auto; }
  #header .nav .contact a::after { position: absolute; inset: 50% 2rem auto auto; translate: 0 -50%; }
  #toggleMenu { background: url(../img/menu_bg.png) no-repeat center bottom / 100%, linear-gradient(to top, #BCDDFF, #FFF) bottom / 100% 20.7rem no-repeat, linear-gradient(to bottom, #BCDDFF, #FFF) top / 100% 12.5rem no-repeat; background-color: #FFF; position: fixed; inset: 0 auto auto 0; width: 100vw; height: 100vh; padding: 12.5rem 2rem 8rem; opacity: 0; overflow: scroll; visibility: hidden; transition: opacity .2s, visibility .2s; z-index: 10; }
  #header.menu_open #toggleMenu { opacity: 1; visibility: visible; }
  #toggleBtn { background: var(--colorPrimary); display: flex; flex-direction: column; justify-content: center; align-items: center; gap: .5rem; position: relative; width: 6rem; aspect-ratio: 1 / 1; border-radius: 50%; transition: background .2s; z-index: 20; }
  #toggleBtn span, #toggleBtn::before, #toggleBtn::after { background: #fff; width: 2rem; height: .3rem; border-radius: 1rem; }
  #toggleBtn::before, #toggleBtn::after { content: ''; transition: rotate .2s; }
  #header.menu_open #toggleBtn { background: var(--colorSecondary); }
  #header.menu_open #toggleBtn span { display: none; }
  #header.menu_open #toggleBtn::before { position: absolute; rotate: 45deg; }
  #header.menu_open #toggleBtn::after { position: absolute; rotate: -45deg; }
  #header .gotop { inset: auto 1rem 2rem auto; }
}

#footer {
  background: var(--colorTertiary);
  color: #fff;
  padding: 6rem 0 3rem;
  border-radius: 5rem 5rem 0 0;
}
#footer .inner {
  width: min(100%, 116rem);
  margin: auto;
  padding: 0 2rem;
}
#footer .row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 5.2rem;
}
#footer .site_logo {
  width: 16rem;
}
#footer .nav {
  display: flex;
  gap: 5.5rem;
}
#footer .nav .link .ttl {
  padding-bottom: 2rem;
  font-size: 1.6rem;
  font-weight: 700;
}
#footer .nav .link .ttl a {
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  width: 100%;
}
#footer .nav .link .ttl a:hover {
    opacity: 0.6;
    text-decoration: underline;
}

#footer .nav .link ul li + li {
  padding-top: 1rem;
}

#footer .nav .link ol, ul {
  line-height: 1.2;
}

#footer .nav .link ul a {
  display: inline-block;
  position: relative;
  padding-left: 1.8rem;
  font-size: 1.4rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
#footer .nav .link ul a:hover {
    opacity: 0.6;
    text-decoration: underline;
}

#footer .nav .link ul a::before {
  content: '';
  background: url(../img/f_link.svg) no-repeat center / cover;
  position: absolute;
  inset: .4rem auto auto 0;
  width: .8rem;
  aspect-ratio: 8 / 12;
}
#footer .other .img {
  margin-bottom: 2rem;
  width: 16rem;
}
#footer .other .link li + li {
  padding-top: 1rem;
}
#footer .other .link a {
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
#footer .other .link a:hover {
    opacity: 0.6;
    text-decoration: underline;
}

#footer .copy {
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 767px) {
  #footer { border-radius: 0; }
  #footer .row { flex-direction: column; padding-bottom: 5.7rem; }
  #footer .site_logo { width: 13.2rem; padding-bottom: 4rem; }
  #footer .nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem 1rem; padding-bottom: 3rem; }
  #footer .nav .link .ttl { padding-bottom: 1.5rem; }
  #footer .other { display: flex; flex-direction: row-reverse; justify-content: space-between; }
  #footer .other .img { width: calc(50% - .5rem); margin-bottom: 0; }
}

.l_inner {
  width: min(100%, 116rem);
  margin: auto;
  padding: 0 2rem;
}

.l_contact {
  padding-top: 12rem;
}

@media (max-width: 767px) {
  .l_contact {
    padding-top: 6rem;
}
}

.l_contact .box {
  background: #BCDDFF;
  width: min(100%, 92rem);
  margin: 0 auto;
  padding: 4rem 2rem;
  border-radius: 5rem;
}
.l_contact .ttl {
  padding-bottom: 2rem;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
}
.l_contact .ttl span {
  color: var(--colorPrimary);
  display: block;
  font-size: 4.8rem;
  font-weight: 700;
}
.l_contact .txt {
  padding-bottom: 3rem;
  font-size: 1.6rem;
  text-align: center;
}
.l_contact .btn a {
  background: var(--colorSecondary);
  color: #fff;
  display: block;
  position: relative;
  width: 30rem;
  margin: auto;
  padding: 1.8rem 0;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  border-radius: 30rem;
  transition: background .2s;
}
.l_contact .btn a::after {
  content: '';
  background: url(../img/ico_mail_white.svg) no-repeat center / cover;
  position: absolute;
  inset: 50% 2.5rem auto auto;
  translate: 0 -50%;
  width: 3rem;
  aspect-ratio: 1 / 1;
}
@media (min-width: 768px) {
  .l_contact .btn a:hover { background: var(--colorPrimary); }
}
@media (max-width: 767px) {
  .l_contact .box { width: calc(100% - 10rem); padding: 3rem 3rem 3.7rem; }
  .l_contact .ttl { padding-bottom: 3.2rem; font-size: 1.4rem; }
  .l_contact .ttl span { font-size: 3.2rem; }
  .l_contact .txt { padding-bottom: 2rem; text-align: left; }
  .l_contact .btn a { width: 100%; }
  .l_contact .btn a::after { inset: 50% 2rem auto auto; width: 2.4rem; }
}

.l_links {
  width: min(100%, 116rem);
  margin: auto;
  padding: 0 2rem;
  line-height: 1.2;
}
.l_links .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 767px) {
  .l_links .row { grid-template-columns: repeat(1, 1fr); }
}

.l_card{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.l_card a{
  display: block;
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
}
.l_card a span{
  color: #fff;
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
.l_card a::before{
  content: '';
  background: var(--colorTertiary);
  position: absolute;
  inset: 0;
  opacity: .6;
  transition: opacity .2s;
}
.l_card a::after{
  content: '';
  background: url(../img/ico_arrow_white.svg) no-repeat center / cover;
  position: absolute;
  inset: 50% 2rem auto auto;
  translate: 0 -50%;
  width: 3rem;
  aspect-ratio: 1 / 1;
}
@media (min-width: 768px){
  .l_card a:hover::before{
    opacity: 0;
  }
}
@media (max-width: 767px){
  .l_card{
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}

.c_btn {
  display: grid;
  grid-template-columns: repeat(3, 360px); 
  grid-auto-rows: 1fr; 
  gap: 20px;
  justify-content: center; 
}
.c_btn a {
  background: var(--colorSecondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; 
  height: 100%;
  box-sizing: border-box;
  position: relative;
  padding: 1.5rem 5rem 1.5rem 2.0rem;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  border-radius: 30rem;
  transition: background .2s;
}
.c_btn a::after {
  content: '';
  background: url(../img/ico_arrow_white.svg) no-repeat center / cover;
  position: absolute;
  inset: 50% 2rem auto auto;
  translate: 0 -50%;
  width: 3rem;
  aspect-ratio: 1 / 1;
}

@media (min-width: 768px) {
  .c_btn a:hover { background: var(--colorPrimary); }
}
@media (max-width: 1160px) {
  .c_btn { grid-template-columns: repeat(auto-fit, 360px); }
}
@media (max-width: 768px) {
  .c_btn { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .c_btn a { padding: 1.5rem 4rem; border-radius: 2rem; }
  .c_btn a::after { inset: 50% 1.5rem auto auto; }
}

.c_btn_recruit a {
  background: url(../img/top/top_intro_btn_bg.png) no-repeat left bottom / 20rem;
  background-color: var(--colorSecondary);
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 50.4rem;
  padding: 2.7rem 12rem 3rem 0;
  font-size: 1.4rem;
  font-weight: 500;
  border-radius: 2rem;
  transition: background-color .2s;
}
.c_btn_recruit a span {
  display: block;
  padding-bottom: .5rem;
  font-size: 3.2rem;
  font-weight: 700;
}
.c_btn_recruit a::after {
  content: '';
  background: url(../img/ico_arrow_white.svg) no-repeat center / cover;
  position: absolute;
  inset: 50% 2rem auto auto;
  translate: 0 -50%;
  width: 4rem;
  aspect-ratio: 1 / 1;
}
@media (min-width: 768px) {
  .c_btn_recruit a:hover { background-color: var(--colorPrimary); }
}
@media (max-width: 767px) {
  .c_btn_recruit a { background-size: 16rem; width: min(100%, 35rem); padding: 1.8rem 4rem 2rem 0; font-size: 1.2rem; }
  .c_btn_recruit a span { font-size: 2.8rem; }
  .c_btn_recruit a::after { inset: 50% 1rem auto auto; width: 2.4rem; }
}

.c_page_ttl { font-size: 2rem; font-weight: 500; text-align: center; }
.c_page_ttl span { color: var(--colorPrimary); display: block; padding-bottom: 1rem; font-size: 8rem; font-weight: 700; line-height: 1; }
@media (max-width: 767px) {
  .c_page_ttl { padding-bottom: 2.2rem; font-size: 1.6rem; text-align: left; }
  .c_page_ttl span { font-size: 4.8rem; }
}

.c_text { font-size: 1.6rem; line-height: 1.5; }

.c_list li { padding-left: 2.2rem; text-indent: -2.2rem; font-size: 1.6rem; line-height: 1.5; }
.c_list li::before { content: '・'; margin-right: .6rem; }
.c_list li::marker {
  color: var(--colorPrimary);
}

.c_table table { width: 100%; border-spacing: 0; }
.c_table table :is(th) { padding: 2rem 0; font-size: 2.0rem; }
.c_table table :is(td) { padding: 2rem 0; font-size: 1.6rem; }
.c_table table th { color: var(--colorPrimary); width: 22.6%; font-weight: 500; text-align: left; }
.c_table table td { width: 77.4%; }
.c_table table td .tdindent-01 {
    margin-left: 1rem;
}

.c_table table td .tdindent-017{
    margin-left: 1.7rem;
}


.c_table table td .tdindent-02 {
    margin-left: 2.7rem;
}

.c_table table td .tdindent-04 {
    margin-left: 6.1rem;
}

.c_table table td .tdindent-05 {
    margin-left: 7.8rem;
}

.c_table table td .tdindent-06 {
    margin-left: 9.5rem;
}

.a_table {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.a_table table {
  width: 100%;
  min-width: 600px;
  border-spacing: 0;
  border-collapse: collapse;
}

.a_table table :is(th, td) {
  padding: 2rem 1rem;
  font-size: 1.6rem;
  border-bottom: 1px solid #E8E8E8;
}

.a_table table th {
  color: var(--colorPrimary);
  font-weight: 700;
  font-size: 1.8rem;
  white-space: nowrap;
}

.s_table table { width: 100%; border-spacing: 0; }
.s_table table :is(th, td) { padding: 2rem 0; font-size: 1.6rem; border-bottom: 1px solid #E8E8E8; }
.s_table table th { color: var(--colorPrimary); width: 30%; font-weight: 500; text-align: left; font-size: 1.8rem; }
.s_table table td { width: 70%; }




@media (min-width: 768px) {
  .c_table table tr + tr :is(th, td) { border-top: 1px solid #E8E8E8; }
}
@media (max-width: 767px) {
  .c_table table tr { display: flex; flex-direction: column; }
  .c_table table tr + tr { padding-top: 2rem; }
  .c_table table :is(th, td) { padding: 1rem 0; }
  .c_table table th { width: 100%; }
  .c_table table td { width: 100%; border-top: 1px solid #E8E8E8; }

  .a_table table {
    min-width: 500px;
  }
  .a_table table tr { display: flex; }
  .a_table table tr + tr { padding-top: 2rem; }
  .a_table table :is(th, td) {
    padding: 1.2rem 0.8rem;
  }
  .a_table table th { width: 100%; }
  .a_table table td { width: 100%; }

  .s_table table tr { display: flex; flex-direction: column; }
  .s_table table tr + tr { padding-top: 2rem; }
  .s_table table :is(th, td) { padding: 1rem 0; }
  .s_table table th { width: 100%; }
  .s_table table td { width: 100%; border-top: 1px solid #E8E8E8; }
}

main {
  background: url(../img/main_bg.png) no-repeat center top / contain;
  padding-bottom: 9rem;
}
@media (max-width: 767px) {
  main { background: url(../img/main_bg_sp.png) no-repeat center top / 100%, linear-gradient(to bottom, #BCDDFF, #F1F1F1) top / 100% 39rem no-repeat; padding-bottom: 3rem; }
}

.top_intro {
  padding-top: 10.5rem;
  overflow: hidden;
}
.top_intro .row {
  display: flex;
  align-items: flex-start;
}
.top_intro .txt_content {
  padding-top: 6.7rem;
}
.top_intro .txt_content .catch {
  color: var(--colorPrimary);
  padding-bottom: 5.9rem;
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}
.top_intro .txt_content .catch span {
  color: #000;
  display: block;
  position: relative;
  margin-top: 2.2rem;
  padding-left: 2.4rem;
  font-size: 3.2rem;
}
.top_intro .txt_content .catch span::before {
  content: '';
  background: url(../img/ico_rod.svg) no-repeat center / cover;
  position: absolute;
  inset: 50% auto auto 0;
  translate: 0 -50%;
  width: .9rem;
  aspect-ratio: 9 / 50;
}

.top_intro .txt_content .btn a {
  background: url(../img/top/top_intro_btn_bg.png) no-repeat left bottom / 20rem;
  background-color: var(--colorSecondary);
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 50.4rem;
  padding: 2.7rem 12rem 3rem 0;
  font-size: 1.4rem;
  font-weight: 500;
  border-radius: 2rem;
  transition: background-color .2s;
}
.top_intro .txt_content .btn a span { display: block; padding-bottom: .5rem; font-size: 3.2rem; font-weight: 700; padding-right: 0.5rem; }
.top_intro .txt_content .btn a::after { content: ''; background: url(../img/ico_arrow_white.svg) no-repeat center / cover; position: absolute; inset: 50% 2rem auto auto; translate: 0 -50%; width: 4rem; aspect-ratio: 1 / 1; }

.top_intro .img_content .illust {
  position: relative;
  width: 75rem;
}
.top_intro .img_content .illust::after {
  content: '';
  background: url(../img/top/top_intro_illust.png) no-repeat center / cover;
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  aspect-ratio: 1050 / 1125;
  z-index: 1;
}
.top_intro .img_content .mask {
  mask: url(../img/top/top_intro_mask.png) no-repeat 0 0 / 100%;
}
@media (min-width: 768px) {
  .top_intro .txt_content .btn a:hover { background-color: var(--colorPrimary); text-decoration: none; }
}
@media (max-width: 767px) {
  .top_intro .row { flex-direction: column-reverse; align-items: inherit; }
  .top_intro .txt_content { padding-top: 0; }
  .top_intro .txt_content .catch { padding-bottom: 3.2rem; font-size: 3.6rem; }
  .top_intro .txt_content .catch span { margin-top: 1.5rem; padding-left: 1.3rem; font-size: 2rem; }
  .top_intro .txt_content .catch span::before { width: .5rem; }
  .top_intro .txt_content .btn a { background-size: 16rem; width: 100%; padding: 1.8rem 6.4rem 2rem 0; font-size: 1.2rem; }
  .top_intro .txt_content .btn a span { font-size: 2.8rem; }
  .top_intro .txt_content .btn a::after { inset: 50% 1rem auto auto; width: 2.4rem; }
  .top_intro .img_content .illust { width: 30.2rem; margin: 0 -2rem 0 auto; }
}

.top_lead { padding-bottom: 15.2rem; }
.top_lead .row { display: flex; justify-content: flex-end; align-items: center; gap: 5.3rem; }
.top_lead .catch { background: url(../img/top/top_lead_bg.png) no-repeat center / cover; color: #fff; display: flex; justify-content: center; align-items: center; position: relative; width: 55rem; aspect-ratio: 715 / 812; font-size: 4.8rem; font-weight: 700; text-align: center; }
.top_lead .catch::before { content: ''; background: url(../img/top/top_lead01.png) no-repeat center / cover; position: absolute; inset: -4.7rem -5.8rem auto auto; width: 20rem; aspect-ratio: 1 / 1; }
.top_lead .catch::after { content: ''; background: url(../img/top/top_lead02.png) no-repeat center / cover; position: absolute; inset: auto auto -3.9rem -12.5rem; width: 25rem; aspect-ratio: 1 / 1; }
.top_lead .txt { position: relative; padding-left: 2.4rem; font-size: 2rem; font-weight: 500; line-height: 1.5; }
.top_lead .txt::before { content: ''; background: url(../img/ico_rod.svg) no-repeat top / 100% auto, url(../img/ico_rod.svg) no-repeat bottom / 100% auto, linear-gradient(#BCDDFF,#BCDDFF); background-size: 100% auto, 100% auto, 100% calc(100% - 2rem); background-position: top, bottom, left 1rem; background-repeat: no-repeat; position: absolute; inset: 0 auto 0 0; width: .9rem; }
@media (max-width: 767px) {
  .top_lead { padding: 7rem 0 12rem; overflow: hidden; }
  .top_lead .row { flex-direction: column; }
  .top_lead .catch { width: calc(100% - 4rem); font-size: 2.9rem; }
  .top_lead .catch::before { width: 12.4rem; inset: -1rem -3rem auto auto; }
  .top_lead .catch::after { width: 15.5rem; inset: auto auto -2rem -7.5rem; }
}

.top_about .ttl { padding-bottom: 9rem; font-size: 2rem; font-weight: 500; text-align: center; }
.top_about .ttl span { color: var(--colorPrimary); display: block; padding-bottom: 1rem; font-size: 8rem; font-weight: 700; line-height: 1; }
.top_about .link { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.top_about .link a { display: block; position: relative; border-radius: 2rem; overflow: hidden; }
.top_about .link a span { color: #fff; position: absolute; inset: 50% auto auto 50%; translate: -50% -50%; font-size: 2rem; font-weight: 700; text-align: center; }
.top_about .link a::before { content: ''; background: var(--colorTertiary); position: absolute; inset: 0; opacity: .6; transition: opacity .2s; }
.top_about .link a::after { content: ''; background: url(../img/ico_arrow_white.svg) no-repeat center / cover; position: absolute; inset: 50% 2rem auto auto; translate: 0 -50%; width: 3rem; aspect-ratio: 1 / 1; }
@media (min-width: 768px) {
  .top_about .link a:hover::before { opacity: 0; }
}
@media (max-width: 767px) {
  .top_about .ttl { padding-bottom: 3.8rem; font-size: 1.6rem; text-align: left; }
  .top_about .ttl span { font-size: 4.8rem; }
  .top_about .link { grid-template-columns: repeat(1, 1fr); gap: 1rem; }
}

.low_head { position: relative; padding: 10rem 0 15rem; }
.low_head .breadcrumbs { padding-bottom: 4rem; }
.low_head .breadcrumbs ul { display: flex; justify-content: flex-end; padding-bottom: 2px; }
.low_head .breadcrumbs ul li { white-space: nowrap; }
.low_head .breadcrumbs ul li + li::before { content: ''; background: url(../img/ico_breadcrumbs.svg) no-repeat center / cover; display: inline-block; width: 1.8rem; margin: 0 .6rem; aspect-ratio: 1 / 1; vertical-align: sub; }
.low_head .breadcrumbs ul a { color: #13598E;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  width: 100%;
 }
 @media (min-width: 769px) {
  .low_head .breadcrumbs ul a:hover {
    opacity: 0.6;
    text-decoration: underline;
  }
}

.low_head .page_ttl { font-size: 2rem; font-weight: 500; text-align: center; }
.low_head .page_ttl span { color: var(--colorPrimary); display: block; padding-bottom: 1rem; font-size: 8rem; font-weight: 700; line-height: 1; }
.low_head .img { position: absolute; inset: auto -8rem -13rem auto; width: 48.6rem; }

@media (max-width: 767px) {
.low_head { padding: 8.5rem 0 3rem; overflow: hidden; }
.low_head .breadcrumbs { padding-bottom: 2.5rem; }

.low_head .breadcrumbs ul {
    display: block;
    padding: 0;
    margin: 0;
    line-height: 1.8;
    text-align: left;
  }

.low_head .breadcrumbs ul li {
    display: inline;
    white-space: normal;
    font-size: 1.4rem;
  }
.low_head .breadcrumbs ul li a {
    display: inline;
    width: auto;
    padding: 0;
    vertical-align: baseline;
  }

  .low_head .breadcrumbs ul li + li::before {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0.4rem;
  }

.low_head .page_ttl { padding-bottom: 2.2rem; font-size: 1.6rem; text-align: left; }
  .low_head .page_ttl span { font-size: 4.8rem; }
  .low_head .img { position: initial; width: calc(100% + 4rem); margin-right: -4rem; }
}

.low_body { position: relative; }
.low_body .l_inner { width: min(100%, 96rem); }
.low_body h1 { color: var(--colorSecondary); display: table; margin: 0 auto 6.3rem; font-size: 3.6rem; font-weight: 700; border-bottom: .3rem solid #BCDDFF; }
.low_body h1 + .lead { padding-bottom: 4rem; font-size: 1.6rem; line-height: 2; text-align: center; }
.low_body h2 { color: var(--colorPrimary); padding-bottom: 1rem; font-size: 2.8rem; font-weight: 700; }
.low_body h3 { display: table; position: relative; padding: 0 2rem; font-size: 2rem; font-weight: 500; color: #13598E; }
.low_body h3::before, .low_body h3::after { content: ''; background: #BCDDFF; position: absolute; translate: 0 -50%; width: 1.2rem; aspect-ratio: 1 / 1; border-radius: 50%; }
.low_body h3::before { inset: 50% auto auto 0; }
.low_body h3::after { inset: 50% 0 auto auto; }
.low_body h4 { color: var(--colorPrimary); font-size: 1.6rem; font-weight: 500; }

@media (max-width: 767px) {
  .low_body h1 { margin: 0 auto 4rem 0; font-size: 2.8rem; }
  .low_body h1 + .lead { text-align: left; }
  .low_body h2 { font-size: 2rem;}
}

.sec_services { padding-bottom: 6rem; }
.sec_services .img img { border-radius: 2rem; }
@media (max-width: 767px) {
  .sec_services { padding-bottom: 2rem; }
}

.sec_services_it_platform { padding-bottom: 10rem; }
.sec_services_it_platform .services_list { padding-top: 4rem; }
.sec_services_it_platform .services_list .item { display: flex; align-items: center; gap: 6rem; padding-bottom: 4rem; }
.sec_services_it_platform .services_list .item + .item { padding-top: 6rem; }
.sec_services_it_platform .services_list .img_content { position: relative; width: 32rem; }
.sec_services_it_platform .services_list .img_content .num { background: url(../img/services_it_platform_bg.svg) no-repeat center / cover; color: #13598E; display: flex; flex-direction: column; justify-content: center; align-items: center; position: absolute; inset: -3rem -2rem auto auto; width: 10.5rem; aspect-ratio: 105 / 121; padding-top: .5rem; font-size: 4rem; font-weight: 700; line-height: 1; }
.sec_services_it_platform .services_list .img_content .num::before { content: 'SERVICES'; display: block; font-size: 1.6rem; }
.sec_services_it_platform .services_list .img_content img { border-radius: 1rem; }
.sec_services_it_platform .services_list .txt_content { flex: 1; }

.sec_services_it_platform .services_list .img_content .num_mission { background: url(../img/services_it_platform_bg.svg) no-repeat center / cover; color: #13598E; display: flex; flex-direction: column; justify-content: center; align-items: center; position: absolute; inset: -3rem -2rem auto auto; width: 10.5rem; aspect-ratio: 105 / 121; padding-top: .5rem; font-size: 4rem; font-weight: 700; line-height: 1; }
.sec_services_it_platform .services_list .img_content .num_mission::before { content: 'Mission'; display: block; font-size: 1.6rem; }

.sec_services_it_platform .services_list .img_content .num_vision { background: url(../img/services_it_platform_bg.svg) no-repeat center / cover; color: #13598E; display: flex; flex-direction: column; justify-content: center; align-items: center; position: absolute; inset: -3rem -2rem auto auto; width: 10.5rem; aspect-ratio: 105 / 121; padding-top: .5rem; font-size: 4rem; font-weight: 700; line-height: 1; }
.sec_services_it_platform .services_list .img_content .num_vision::before { content: 'Vision'; display: block; font-size: 1.6rem; }

.sec_services_it_platform .services_list .img_content .num_value { background: url(../img/services_it_platform_bg.svg) no-repeat center / cover; color: #13598E; display: flex; flex-direction: column; justify-content: center; align-items: center; position: absolute; inset: -3rem -2rem auto auto; width: 10.5rem; aspect-ratio: 105 / 121; padding-top: .5rem; font-size: 4rem; font-weight: 700; line-height: 1; }
.sec_services_it_platform .services_list .img_content .num_value::before { content: 'Value'; display: block; font-size: 1.6rem; }

.sec_services_it_platform .services_list .img_content .num_top_message { background: url(../img/services_it_platform_bg.svg) no-repeat center / cover; color: #13598E; display: flex; flex-direction: column; justify-content: center; align-items: center; position: absolute; inset: -3rem -2rem auto auto; width: 10.5rem; aspect-ratio: 105 / 121; padding-top: .5rem; font-size: 4rem; font-weight: 700; line-height: 1; }
.sec_services_it_platform .services_list .img_content .num_top_message::before { content: 'Message'; display: block; font-size: 1.6rem; }

.sec_services_it_platform .services_list .img_content .num_recruit { background: url(../img/services_it_platform_bg.svg) no-repeat center / cover; color: #13598E; display: flex; flex-direction: column; justify-content: center; align-items: center; position: absolute; inset: -3rem -2rem auto auto; width: 10.5rem; aspect-ratio: 105 / 121; padding-top: .5rem; font-size: 4rem; font-weight: 700; line-height: 1; }
.sec_services_it_platform .services_list .img_content .num_recruit::before { content: 'Recruit'; display: block; font-size: 1.6rem; }

@media (min-width: 768px) {
  .sec_services_it_platform .services_list .item:nth-child(even) { flex-direction: row-reverse; }
  .sec_services_it_platform .services_list .item:nth-child(even) .num { inset: -3rem auto auto -2rem; }
}
@media (max-width: 767px) {
  .sec_services_it_platform { padding-bottom: 2rem; }
  .sec_services_it_platform .services_list .item { flex-direction: column; align-items: normal; gap: 2rem; }
  .sec_services_it_platform .services_list .img_content { width: 100%; }
  .sec_services_it_platform .services_list .img_content .num,.sec_services_it_platform .services_list .img_content .num_mission,.sec_services_it_platform .services_list .img_content .num_vision,.sec_services_it_platform .services_list .img_content .num_value,.sec_services_it_platform .services_list .img_content .num_top_message,.sec_services_it_platform .services_list .img_content .num_recruit {
        inset: 0 auto auto 50%;
        translate: -50% -50%;
  }
}

.sec_recruit_job { padding-bottom: 10rem; }
.sec_recruit_job .services_list { padding-top: 4rem; }

.sec_recruit_job .services_list .item + .item { 
  padding-top: 8rem; 
  border-top: 1px solid #eee; 
}

.sec_recruit_job .services_list .flex_content {
  display: flex;
  align-items: flex-start;
  gap: 6rem;
  margin-bottom: 3rem;
}

.sec_recruit_job .services_list .img_content {
  position: relative;
  width: 32rem;
  flex-shrink: 0;
}
.sec_recruit_job .services_list .img_content img {
  border-radius: 1rem;
  width: 100%;
  height: auto;
  display: block;
}

.sec_recruit_job .services_list .txt_content {
  flex: 1;
}

.sec_recruit_job .services_list h2 {
  padding-top: 7rem;
}

.sec_recruit_job .services_list h3 {
  font-size: 2.0rem;
  margin-bottom: 1.0rem;
  color: #13598E;
}

.sec_recruit_job .services_list .c_list,.sec_recruit_job .services_list .c_text {
  margin-bottom: 4.0rem;
}

.sec_recruit_job .services_list .img_content [class^="num"] {
  background: url(../img/services_it_platform_bg.svg) no-repeat center / cover;
  color: #13598E;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: -3rem -2rem auto auto;
  width: 10.5rem;
  aspect-ratio: 105 / 121;
  padding-top: .5rem;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

.sec_recruit_job .services_list .img_content .num::before { content: 'SERVICES'; font-size: 1.6rem; }
.sec_recruit_job .services_list .img_content .num_mission::before { content: 'Mission'; font-size: 1.6rem; }
.sec_recruit_job .services_list .img_content .num_vision::before { content: 'Vision'; font-size: 1.6rem; }
.sec_recruit_job .services_list .img_content .num_value::before { content: 'Value'; font-size: 1.6rem; }
.sec_recruit_job .services_list .img_content .num_top_message::before { content: 'Message'; font-size: 1.6rem; }
.sec_recruit_job .services_list .img_content .num_recruit::before { content: 'Recruit'; font-size: 1.6rem; }


@media (min-width: 768px) {
  .sec_recruit_job .services_list .item2 .flex_content,
  .sec_recruit_job .services_list .item:nth-child(even) .flex_content {
    flex-direction: row-reverse;
  }

  .sec_recruit_job .services_list .item2 [class^="num"],
  .sec_recruit_job .services_list .item:nth-child(even) [class^="num"] {
    inset: -3rem auto auto -2rem;
  }
}

@media (max-width: 767px) {
  .sec_recruit_job { padding-bottom: 2rem; }
  .sec_recruit_job .services_list h2 { padding-top: 0; }
  .sec_recruit_job .services_list .item { padding-bottom: 4rem; }
  .sec_recruit_job .services_list .item + .item { padding-top: 4rem; }
  .sec_recruit_job .services_list .flex_content {
    flex-direction: column;
    align-items: normal;
    gap: 2rem;
    margin-bottom: 0;
  }
  .sec_recruit_job .services_list .img_content {
    width: 100%;
  }
  .sec_recruit_job .services_list .img_content [class^="num"] {
    inset: 0 auto auto 50%;
    transform: translate(-50%, -50%);
  }
}

.mt6 { padding-top: 6rem!important; }
.mt4 { padding-top: 4rem!important; }
.mt3 { padding-top: 3rem!important; }
.mt2 { padding-top: 2rem!important; }
.mt1 { padding-top: 1rem!important; }

.mb6 { padding-bottom: 6rem!important; }
.mb4 { padding-bottom: 4rem!important; }
.mb3 { padding-bottom: 3rem!important; }
.mb2 { padding-bottom: 2rem!important; }
.mb1 { padding-bottom: 1rem!important; }
.mb0 { padding-bottom: 0!important; }

.sec_company { padding-bottom: 8.3rem; }
.sec_company .img img { border-radius: 2rem; }
.sec_company p { padding-bottom: 4rem; }
.sec_company ol {
  list-style-type: decimal;
  margin-left: 2rem;
}
.sec_company ul {
  list-style-type: disc;
  margin-left: 2rem;
  line-height: 1.5;
}

.sec_company ul li::marker {
  color: var(--colorPrimary);
}

.sec_company ul li ul{
    list-style-type: none;
    margin-left: 0;
    padding-bottom: 0;
    line-height: 1.5;
}

.sec_company ol li ul {
    padding-bottom: 2rem;
}

.sec_company ol ul li::marker {
  color: var(--colorPrimary);
}

@media (max-width: 767px) {
.sec_company { padding-bottom: 4rem; }
}

.sec_company .txt_content { padding-bottom: 4rem; }

.txt_content_c {  display: flex;
  justify-content: center;
  align-items: center;
}

.txt_content_r  {
  text-align: right;
  font-size: 1.6rem;
  line-height: 1.5;
}

.txt_l  {
  font-size: 2.0rem;
    line-height: 1.5;
}

.info_content { 
  border-radius: 3rem;
  border: 1px solid #ccc;
  padding: 4rem 4rem 2rem;
}

.info_content p {
    padding-bottom: 2rem;
}

.f_color_r  {
  color: #FF0000;
}

.sec_recruit { padding-bottom: 4rem; }
.sec_recruit h2{
  border-radius: 1.3rem;
color: #FFFFFF;
  background-color: #13598E;
  padding-left: 2rem;
    padding-top: 1rem;
      margin-bottom: 2rem;
}


.sec_recruit .img img { border-radius: 2rem; }
.sec_recruit p { padding-bottom: 4rem; }
.sec_recruit ol {
  list-style-type: decimal;
  margin-left: 2rem;
  padding-bottom: 4rem; 
}
.sec_recruit ol li{
  padding-bottom: 2rem;
  line-height: 1.5;
}
.sec_recruit ol li ul li{
  padding-bottom: 0; 
}
.sec_recruit ul {
  list-style-type: disc;
  margin-left: 2rem;
}



.sec_recruit ul li::marker {
  color: var(--colorPrimary);
}

.sec_recruit .txt_content  {
padding-bottom: 4rem; 
margin: 0 2rem;
}





@media (max-width: 767px) {
.sec_recruit { padding-bottom: 2rem;}
}

.l_links2 {
  width: min(100%, 116rem);
  margin: auto;
  padding-bottom: 4rem;
  line-height: 1.2;
}

.l_links2 .row {
  display: flex;
  justify-content: center; 
  width: 100%;
}

.c_btn2 {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 360px;
}

.c_btn2 a {
  background: var(--colorSecondary);
  color: #fff;
  display: block;
  position: relative;
  width: 30rem;
  margin: auto;
  padding: 1.8rem 0;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  border-radius: 30rem;
  transition: background .2s;
}

.c_btn2 a::after {
  content: '';
  background: url(../img/ico_arrow_white.svg) no-repeat center / cover;
  position: absolute;
  inset: 50% 2.5rem auto auto;
  translate: 0 -50%;
  width: 3rem;
  aspect-ratio: 1 / 1;
}

@media (min-width: 768px) {
  .c_btn2 a:hover { 
    background: var(--colorPrimary); 
    text-decoration: none;
  }
}

@media (max-width: 768px) {
  .l_links2 .row {
    padding: 0;
  }
  .c_btn2 {
    max-width: 100%;
  }
  .c_btn2 a {
    padding: 1.5rem 4rem;
    border-radius: 2rem;
  }
  .c_btn2 a::after {
    inset: 50% 1.5rem auto auto;
  }
}

.step_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  background-color: #DDEEFF;
  padding: 20px 20px;
  border-radius: 20px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 6rem; 
}

.step_box dl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  background-color: #fff;
  padding: 20px 10px;
  border-radius: 15px;
  position: relative;
  margin: 0;
}

.step_box dl:not(:last-child)::after {
  content: '▶';
  position: absolute;
  right: -37px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 40px;
  color: #2C73AB;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.step_box dt {
  color: #2C73AB;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.step_box dt br + span,
.step_box dt {
}

.step_box dt {
  font-size: 4rem;
}
.step_box dt::first-line {
  font-size: 2.4rem;
}

.step_box dd {
  color: #2C73AB;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 10px 0 0 0;
  text-align: center;
}

@media (max-width: 768px) {
  .step_box {
    flex-direction: column;
    gap: 40px;
    padding: 20px 15px;
  }

  .step_box dl {
    width: 100%;
    flex: none;
    flex-direction: row;
    justify-content: center;
    padding: 15px 20px;
    gap: 10px;
  }

  .step_box dt br {
    display: none;
  }

  .step_box dt,
  .step_box dt::first-line,
  .step_box dd {
    font-size: 2rem;
  }

  .step_box dt {
    min-width: auto;
    text-align: center;
  }

  .step_box dd {
    margin: 0;
    flex: none;
  }

  .step_box dl:not(:last-child)::after {
    right: auto;
    bottom: -40px;
    top: auto;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    font-size: 24px;
  }
}

.qa_box {
  background-color: #F3F7FB;
  border: 1px solid #13598E;
  border-radius: 15px;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 2rem; 
}

.qa_box dt {
  display: flex;
  color: #13598E;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 15px;
}

.qa_box dd {
  display: block;
  position: relative;
  padding-left: 2.0em;
  color: #333;
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 0;
}

.qa_box dt::before {
  content: "Q";
  margin-right: 0.5em;
  margin-top: -0.2rem;
  flex-shrink: 0;
}

.qa_box dd::before {
  content: "A";
  position: absolute;
  left: 0;
  top: -0.4rem;
  font-weight: 700;
  color: #13598E;
  font-size: 2.4rem;
  line-height: 1.2;
}

.qa_box dd a {
  display: inline-block;
  color: #13598E;
  text-decoration: underline;
  word-break: break-all;
}

@media (max-width: 768px) {
  .qa_box {
    padding: 20px;
    border-radius: 10px;
  }

  .qa_box dt {
    font-size: 1.6rem;
    margin-bottom: 10px;
    line-height: 1.4;
  }

  .qa_box dd {
    font-size: 1.6rem;
    line-height: 1.5;
    padding-left: 1.3em;
  }

  .qa_box dt::before,
  .qa_box dd::before {
    margin-right: 0.5em;
    font-size: 1.6rem;
  }
  .qa_box dd::before {
    content: "A";
    margin-top: 0;
    left: 0.1rem;
    top: 0.5rem;
}
}

.interview_box {
  background-color: #F3F7FB;
  border: 1px solid #13598E;
  border-radius: 15px;
  padding: 30px;
  width: 100%;
  box-sizing: border-box;
  color: #333;
  line-height: 1.5;
  font-size: 1.6rem;
  margin-bottom: 4rem;
}

.interview_img {
  position: relative;
  width: 1120px;
  max-width: calc(100vw - 4rem);
  margin-left: 50%;
  transform: translateX(-50%);
  height: 300px;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  background-image: url('../img/recruit/recruit_interview01.jpg'); 
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.interview_img .text01 {
  background-color: #13598E;
  color: #FFFFFF;
  font-size: 2.8rem;
  padding: 0.5rem 2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.interview_img .text02 {
  background-color: #FFFFFF;
  color: #13598E;
  font-size: 3.6rem;
  padding: 0 0.1rem;
  font-weight: 700;
  line-height: 1.2;
  margin-left: 2rem;
  margin-bottom: 5px;
}

.interview_img02 {
  position: relative;
  width: 1120px;
  max-width: calc(100vw - 4rem);
  margin-left: 50%;
  transform: translateX(-50%);
  height: 300px;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  background-image: url('../img/recruit/recruit_interview02.jpg'); 
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.interview_img02 .text01 {
  background-color: #13598E;
  color: #FFFFFF;
  font-size: 2.8rem;
  padding: 0.5rem 2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.interview_img02 .text02 {
  background-color: #FFFFFF;
  color: #13598E;
  font-size: 3.6rem;
  padding: 0 0.1rem;
  font-weight: 700;
  line-height: 1.2;
  margin-left: 2rem;
  margin-bottom: 5px;
}

.interview_img03 {
  position: relative;
  width: 1120px;
  max-width: calc(100vw - 4rem);
  margin-left: 50%;
  transform: translateX(-50%);
  height: 300px;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  background-image: url('../img/recruit/recruit_interview03.jpg'); 
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.interview_img03 .text01 {
  background-color: #13598E;
  color: #FFFFFF;
  font-size: 2.8rem;
  padding: 0.5rem 2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.interview_img03 .text02 {
  background-color: #FFFFFF;
  color: #13598E;
  font-size: 3.6rem;
  padding: 0 0.1rem;
  font-weight: 700;
  line-height: 1.2;
  margin-left: 2rem;
  margin-bottom: 5px;
}

.interview_section h2 {
  color: #13598E;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-weight: 700;
}

.interview_section h2 .q_label {
  font-size: 1.6rem;
  align-self: flex-start;
  margin-top: 5px;
  color: #FFFFFF;
}

.interview_section h2 .q_number {
  font-size: 3.6rem;
  line-height: 1;
  color: #FFFFFF;
}

.interview_section h2 .q_text {
  font-size: 2rem;
  line-height: 1.4;
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .interview_img,.interview_img02,.interview_img03 {
    height: auto; padding-bottom: 1rem; }
  .interview_img .text01,.interview_img .text02,.interview_img02 .text01,.interview_img02 .text02,.interview_img03 .text01,.interview_img03 .text02 { font-size: 1.6rem; }
  
  .interview_section h2 { flex-wrap: wrap; }
  .interview_section h2 .q_number { font-size: 1.8rem; padding-top: 0.5rem; }
  .interview_section h2 .q_text { font-size: 1.6rem; width: 100%; margin-right: 1rem; }
}

.nav_links {
  width: 100%;
  max-width: 920px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
  box-sizing: border-box;
}

.nav_links ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav_links li a {
  color: #13598E;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.nav_links li a::after {
  content: "↓";
  margin-left: 0.5rem;
  font-weight: bold;
}

@media (min-width: 769px) {
  .nav_links li a:hover {
    opacity: 0.6;
    text-decoration: underline;
  }
}

@media (max-width: 768px) {
  .nav_links {
    padding: 0;
  }

  .nav_links ul {
    flex-direction: column;
    align-items: stretch;
    white-space: normal;
    gap: 0;
  }

  .nav_links li {
    border-top: 1px solid #13598E;
    width: 100%;
  }

  .nav_links li:last-child {
    border-bottom: 1px solid #13598E;
  }

  .nav_links li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    width: 100%;
    box-sizing: border-box;
    font-size: 1.6rem;
  }

  .nav_links li a::after {
    margin-left: 0;
  }
}

.recruit_top_img {
  position: relative;
  width: 1120px;
  max-width: calc(100vw - 4rem);
  margin-left: 50%;
  transform: translateX(-50%);
  height: 600px;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  background-image: url('../img/recruit/recruit_top01.jpg'); 
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.recruit_top_img .text01 {
  background-color: #13598E;
  color: #FFFFFF;
  font-size: 3.6rem;
  padding: 0.5rem 2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.recruit_top_img .text02 {
  background-color: #FFFFFF;
  color: #13598E;
  font-size: 3.6rem;
  padding: 0 0.1rem;
  font-weight: 700;
  line-height: 1.5;
  margin-left: 2rem;
  margin-bottom: 34rem;
}

.recruit_top_img .text03,.recruit_top_img .text04 {
  display: none;
}

.recruit_bottom_img {
  position: relative;
  width: 1120px;
  max-width: calc(100vw - 4rem);
  margin-left: 50%;
  transform: translateX(-50%);
  height: 600px;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  background-image: url('../img/recruit/recruit_bottom01.jpg'); 
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.recruit_bottom_img .text01 {
  background-color: #FFFFFF;
  color: #13598E;
  font-size: 3.6rem;
  padding: 0.5rem 2rem;
  margin-bottom: 36rem;
  font-weight: 700;
}

@media (max-width: 767px) {
  .recruit_top_img .text02 {
    display: none;
  }

  .recruit_top_img .text03,
  .recruit_top_img .text04 {
    display: block;
    font-size: 2.6rem;
    background-color: #FFFFFF;
    color: #13598E;
    font-weight: 700;
    padding: 0.5rem 1rem;
    margin-left: 2rem;
  }

  .recruit_top_img .text03 {
    margin-bottom: 5px;
  }
  
  .recruit_top_img .text04 {
    margin-bottom: 10rem;
  }

  .recruit_top_img .text01,
  .recruit_bottom_img .text01 {
    font-size: 2.8rem;
  }
}

.u_text_center {
  display: table !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}