@charset "UTF-8";
/* CSS Document */
/*リセットCSS*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-family: "M PLUS 1p", sans-serif; }

/*color設定*/
a {
  text-decoration: none;
  color: unset;
  transition-duration: .5s; }
  a:hover {
    color: #0D8CFF; }

/* font設定 */
body {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #00236F; }

/*clearfix*/
.clear-fix::after {
  content: "";
  display: block;
  clear: both; }

.wrap {
  overflow: hidden; }

/*hide-contents*/
.pc-hide {
  display: none; }

.sp-hide {
  display: block; }

@media screen and (max-width: 1000px) {
  .pc-hide {
    display: block; }

  .sp-hide {
    display: none; } }
img {
  max-width: 100%;
  height: auto; }

.container {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto; }

@media (min-width: 576px) {
  .container {
    max-width: 540px; } }
@media (min-width: 768px) {
  .container {
    max-width: 720px; } }
@media (min-width: 1080px) {
  .container {
    max-width: 1000px; } }
@media (min-width: 1200px) {
  .container {
    max-width: 1080px; } }
.text-left {
  text-align: left !important; }

.text-right {
  text-align: right !important; }

.text-center {
  text-align: center !important; }

@media screen and (max-width: 960px) {
  	/*============
  nav
  =============*/
  nav {
    display: block;
    position: fixed;
    top: 0;
    left: -100vw;
    width: 300px;
    background: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all .5s;
    z-index: 3;
    opacity: 0;
    width: 100vw;
    background-color: rgba(0, 35, 111, 0.8); }

  .open nav {
    left: 0;
    opacity: 1; }

  nav .inner {
    padding: 25px; }

  nav .inner ul {
    list-style: none;
    margin: 0;
    padding: 0; }

  nav .inner ul li {
    position: relative;
    margin: 0;
    border-bottom: 1px solid #fff; }

  nav .inner ul li a {
    display: block;
    color: #333;
    font-size: 14px;
    padding: 1em 0;
    text-decoration: none;
    transition-duration: 0.2s;
    box-sizing: border-box;
    font-weight: 500;
    position: relative; }
    nav .inner ul li a::before {
      content: url("../img/svg/arrow-right-light.svg");
      position: absolute;
      right: 0; }

  nav .inner ul li a:hover {
    background: #e4e4e4; }

  /*============
  .toggle_btn
  =============*/
  .toggle_btn {
    display: block;
    position: fixed;
    top: 10px;
    right: 10px;
    width: 55px;
    height: 55px;
    transition: all .5s;
    cursor: pointer;
    z-index: 3;
    background-color: #00236F;
    border-radius: 5px; }
    .toggle_btn::after {
      content: 'MENU';
      color: #fff;
      font-size: 10px;
      font-weight: 500;
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%); }

  .toggle_btn span {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 27px;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
    transition: all .5s; }

  .toggle_btn span:nth-child(1) {
    top: 13px; }

  .toggle_btn span:nth-child(2) {
    top: 21px; }

  .toggle_btn span:nth-child(3) {
    bottom: 24px; }

  .open .toggle_btn::after {
    content: 'CLOSE'; }

  .open .toggle_btn span {
    background-color: #fff; }

  .open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) translateX(-50%) rotate(-335deg);
    transform: translateY(10px) translateX(-50%) rotate(-335deg);
    top: 9px; }

  .open .toggle_btn span:nth-child(2) {
    opacity: 0; }

  .open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-10px) translateX(-50%) rotate(335deg);
    transform: translateY(-10px) translateX(-50%) rotate(335deg); }

  /*============
  #mask
  =============*/
  #mask {
    display: none;
    transition: all .5s; }

  .open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .8;
    z-index: 2;
    cursor: pointer; }

  /*============
  main
  =============*/
  main {
    padding: 0; }

  main h1 {
    font-weight: 400;
    text-align: center; }

  /*============
  body
  =============*/
  body {
    font-weight: 400; } }
@media screen and (min-width: 961px) {
  .toggle_btn, #mask {
    display: none; } }
/*contents*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  padding: 5px 0;
  transition-duration: .5s; }
  header #navArea {
    display: flex;
    align-items: center;
    width: 1000px;
    margin: 0 auto;
    justify-content: space-between; }
    header #navArea nav ul {
      display: flex;
      align-items: center; }
      header #navArea nav ul li {
        margin-right: 30px; }
        header #navArea nav ul li a {
          color: #fff;
          text-decoration: none; }
        header #navArea nav ul li.recruit_btn {
          margin-right: 15px; }
          header #navArea nav ul li.recruit_btn a {
            background-color: #FE4E4D;
            display: flex;
            width: 152px;
            height: 46px;
            justify-content: center;
            align-items: center;
            border-radius: 50px;
            border: 1px solid transparent;
            transition-duration: .5s; }
            header #navArea nav ul li.recruit_btn a:hover {
              background-color: #fff;
              color: #FE4E4D;
              border-color: #FE4E4D; }
        header #navArea nav ul li.contact_btn a {
          background-color: #00236F;
          display: flex;
          width: 152px;
          height: 46px;
          justify-content: center;
          align-items: center;
          border-radius: 50px;
          border: 1px solid transparent;
          transition-duration: .5s; }
          header #navArea nav ul li.contact_btn a:hover {
            background-color: #fff;
            color: #00236F;
            border-color: #00236F; }

header.fixed {
  background-color: #fff;
  box-shadow: 0 0 10px #ccc; }

header.fixed #navArea nav ul li a {
  color: #00236F;
  transition-duration: .5s; }
  header.fixed #navArea nav ul li a:hover {
    color: #0D8CFF; }

header.fixed #navArea nav ul li.recruit_btn a, header.fixed #navArea nav ul li.contact_btn a {
  color: #fff; }

header.fixed #navArea nav ul li.recruit_btn a:hover {
  color: #FE4E4D; }

header.fixed #navArea nav ul li.contact_btn a:hover {
  color: #00236F; }

#mainvisual {
  position: relative;
  height: 100vh;
  overflow: hidden; }
  #mainvisual .maincopy {
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center; }

.slick-track {
  height: 100vh; }

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

/* スクロールダウンの位置 */
.scroll {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  color: #fff; }

/* 線のアニメーション部分 */
.scroll::before {
  animation: scroll 2s infinite;
  background-color: #fff;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px; }

/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0; }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0; }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%; }
  100% {
    transform: scale(1, 1);
    transform-origin: 0 100%; } }
.career_link {
  position: absolute;
  right: -3px;
  bottom: 40px;
  box-shadow: 0 4px 20px;
  max-width: 450px; }
  .career_link::after {
    content: url("../img/svg/wanted_mv.svg");
    position: absolute;
    left: -50px;
    top: 30px; }
  .career_link a {
    transition-duration: .5s; }
    .career_link a:hover {
      opacity: .8; }

.maincopy svg {
  transform: translateX(-5%);
  transition-duration: 500ms;
  opacity: 0;
  margin-bottom: 20px; }

.maincopy.mv-active svg {
  transform: translateX(0);
  opacity: 1;
  filter: drop-shadow(0px 0px 2px #42b2f8); }

.maincopy g {
  will-change: transform;
  transform-box: fill-box; }

.maincopy path {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  will-change: clip-path;
  transform-box: fill-box; }

.maincopy.mv-active path {
  clip-path: polygon(0 0, 108% 0, 100% 100%, 0 100%);
  transition: clip-path 960ms cubic-bezier(0.23, 1, 0.32, 1); }

.maincopy.mv-active g:last-child {
  --slider-row-delay: 0ms;
  transition-delay: 0ms; }

.maincopy.mv-active path:nth-child(1) {
  transition-delay: calc(0ms + 0ms); }

.maincopy.mv-active path:nth-child(2) {
  transition-delay: calc(0ms + 30ms); }

.maincopy.mv-active path:nth-child(3) {
  transition-delay: calc(0ms + 60ms); }

.maincopy.mv-active path:nth-child(4) {
  transition-delay: calc(0ms + 90ms); }

.maincopy.mv-active path:nth-child(5) {
  transition-delay: calc(0ms + 120ms); }

.maincopy.mv-active path:nth-child(6) {
  transition-delay: calc(0ms + 150ms); }

.maincopy.mv-active path:nth-child(7) {
  transition-delay: calc(0ms + 180ms); }

.maincopy.mv-active path:nth-child(8) {
  transition-delay: calc(0ms + 210ms); }

.maincopy.mv-active path:nth-child(9) {
  transition-delay: calc(0ms + 240ms); }

.maincopy.mv-active path:nth-child(10) {
  transition-delay: calc(0ms + 270ms); }

.maincopy.mv-active path:nth-child(11) {
  transition-delay: calc(0ms + 300ms); }

.maincopy.mv-active path:nth-child(12) {
  transition-delay: calc(0ms + 330ms); }

.maincopy.mv-active path:nth-child(13) {
  transition-delay: calc(0ms + 360ms); }

.maincopy.mv-active path:nth-child(14) {
  transition-delay: calc(0ms + 390ms); }

.maincopy.mv-active path:nth-child(15) {
  transition-delay: calc(0ms + 420ms); }

.maincopy.mv-active path:nth-child(16) {
  transition-delay: calc(0ms + 450ms); }

.maincopy.mv-active path:nth-child(17) {
  transition-delay: calc(0ms + 480ms); }

.title svg {
  transform: translateX(-5%);
  transition-duration: 500ms;
  opacity: 0;
  margin-bottom: 20px; }

.title.visible svg {
  transform: translateX(0);
  opacity: 1; }

.title g {
  will-change: transform;
  transform-box: fill-box; }

.title path {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  will-change: clip-path;
  transform-box: fill-box; }

.title.visible path {
  clip-path: polygon(0 0, 108% 0, 100% 100%, 0 100%);
  transition: clip-path 960ms cubic-bezier(0.23, 1, 0.32, 1); }

.title.visible g:last-child {
  --slider-row-delay: 0ms;
  transition-delay: 0ms; }

.title.visible path:nth-child(1) {
  transition-delay: calc(0ms + 0ms); }

.title.visible path:nth-child(2) {
  transition-delay: calc(0ms + 30ms); }

.title.visible path:nth-child(3) {
  transition-delay: calc(0ms + 60ms); }

.title.visible path:nth-child(4) {
  transition-delay: calc(0ms + 90ms); }

.title.visible path:nth-child(5) {
  transition-delay: calc(0ms + 120ms); }

.title.visible path:nth-child(6) {
  transition-delay: calc(0ms + 150ms); }

.title.visible path:nth-child(7) {
  transition-delay: calc(0ms + 180ms); }

.title.visible path:nth-child(8) {
  transition-delay: calc(0ms + 210ms); }

.title.visible path:nth-child(9) {
  transition-delay: calc(0ms + 240ms); }

.title.visible path:nth-child(10) {
  transition-delay: calc(0ms + 270ms); }

#news {
  overflow: hidden;
  position: relative;
  padding: 90px 0 50px; }
  #news .title {
    display: flex;
    width: 860px;
    margin: 0 auto;
    justify-content: space-between; }
    #news .title h2 {
      text-align: center;
      font-weight: 500;
      color: #00236F; }
      #news .title h2 span {
        display: block;
        font-weight: normal; }
    #news .title .more_btn {
      display: flex;
      align-items: center; }
      #news .title .more_btn a {
        color: #00236F;
        text-decoration: none;
        font-weight: 500;
        display: flex;
        align-items: center; }
        #news .title .more_btn a::before {
          content: url("../img/svg/arrrow_blue.svg");
          margin-right: 1rem;
          transition-duration: .5s; }
        #news .title .more_btn a:hover::before {
          content: url("../img/svg/arrow_red.svg");
          transform: scale(1.1); }
  #news .content {
    margin: 50px auto;
    border-bottom: 1px solid #C3D8EB; }
    #news .content article {
      display: flex;
      border-top: 1px solid #C3D8EB;
      padding: 2rem 0; }
      #news .content article .date {
        color: #1A69B0;
        margin-right: 3rem;
        font-weight: 500; }
      #news .content article .post_title a {
        display: flex;
        align-items: center;
        text-decoration: none; }
        #news .content article .post_title a::after {
          content: url("../img/svg/external_link_icon.svg");
          margin-left: .5rem; }
  #news .schedule {
    background-color: #00236F;
    color: #fff;
    width: calc(100vw - 90px);
    margin: 0 auto;
    border-radius: 15px;
    padding: 80px 0;
    margin-bottom: 30px; }
    #news .schedule .container {
      display: flex;
      max-width: 980px; }
      #news .schedule .container .left_box, #news .schedule .container .right_box {
        width: 45%;
        margin: 0 auto 0 0; }
      #news .schedule .container .right_box {
        margin: 0 0 0 auto; }
    #news .schedule h3 {
      font-size: 26px;
      font-weight: 600;
      margin-bottom: 40px;
      display: flex; }
      #news .schedule h3::before {
        content: url("../img/svg/calender.svg");
        margin-right: .5rem; }
    #news .schedule .right_box h3::before {
      content: url("../img/svg/ship.svg"); }
    #news .schedule article {
      display: flex;
      border-bottom: 1px solid;
      padding-bottom: 10px; }
      #news .schedule article .date {
        margin-right: 2rem; }
  #news .simulate {
    background-color: #FE4E4D;
    color: #fff;
    width: calc(100vw - 90px);
    margin: 0 auto;
    border-radius: 15px;
    padding: 80px 0;
    transition-duration: .5s; }
    #news .simulate .container {
      max-width: 980px;
      position: relative; }
      #news .simulate .container .more_btn {
        display: flex;
        align-items: center;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%); }
        #news .simulate .container .more_btn::before {
          content: url("../img/svg/arrow_red.svg");
          margin-right: 1rem;
          transition-duration: .5s; }
    #news .simulate h3 {
      font-size: 26px;
      font-weight: bold;
      margin-bottom: 40px;
      display: flex; }
      #news .simulate h3::before {
        content: url("../img/svg/yen.svg");
        margin-right: .5rem; }
    #news .simulate:hover {
      opacity: .9; }
    #news .simulate:hover .container .more_btn::before {
      transform: scale(1.1); }

.bg_text {
  position: absolute;
  top: 30px;
  display: flex;
  height: 200px;
  width: 200vw;
  gap: 50px;
  z-index: -1;
  opacity: 40%; }
  .bg_text ul {
    display: flex;
    animation: infinity-scroll-left 80s infinite linear 0.5s both;
    gap: 50px; }

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-100%); } }
#about {
  background: url("../img/top/about_bg.webp") no-repeat center top transparent;
  position: relative;
  background-size: cover;
  padding: 150px 0 280px; }
  #about .mask {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; }
    #about .mask::before {
      content: '';
      display: block;
      width: 100%;
      height: 100%;
      background-image: linear-gradient(90deg, #00236f, #0096c3 50%, #2ecfff);
      mix-blend-mode: multiply; }
  #about .container {
    position: relative;
    color: #fff;
    max-width: 860px; }
    #about .container .fl_box {
      display: flex; }
      #about .container .fl_box .left_box, #about .container .fl_box .right_box {
        width: 50%;
        max-width: 490px;
        position: relative; }
        #about .container .fl_box .left_box .more_btn, #about .container .fl_box .right_box .more_btn {
          display: flex;
          align-items: center; }
          #about .container .fl_box .left_box .more_btn a, #about .container .fl_box .right_box .more_btn a {
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            display: flex;
            align-items: center; }
            #about .container .fl_box .left_box .more_btn a::before, #about .container .fl_box .right_box .more_btn a::before {
              content: url("../img/svg/arrrow_blue.svg");
              margin-right: 1rem;
              transition-duration: .5s; }
            #about .container .fl_box .left_box .more_btn a:hover::before, #about .container .fl_box .right_box .more_btn a:hover::before {
              content: url("../img/svg/arrow_red.svg");
              transform: scale(1.1); }
        #about .container .fl_box .left_box p, #about .container .fl_box .right_box p {
          line-height: 2;
          font-size: 18px;
          margin-bottom: 2rem; }
      #about .container .fl_box .left_box::after {
        content: '';
        width: 310px;
        height: 370px;
        background: url("../img/top/about_img01.webp") no-repeat center center transparent;
        border-radius: 20px;
        position: absolute;
        top: 100%;
        left: -60px;
        z-index: 60;
        background-size: cover; }
      #about .container .fl_box .right_box::after {
        content: '';
        width: 256px;
        height: 306px;
        background: url("../img/top/about_img03.webp") no-repeat center center transparent;
        border-radius: 20px;
        position: absolute;
        background-size: cover;
        right: 0;
        top: calc(100% + 50px); }
    #about .container h3 {
      text-align: center;
      display: inline-block;
      margin-bottom: 30px; }
      #about .container h3 span {
        display: block; }
  #about::after {
    content: '';
    width: 220px;
    height: 260px;
    background: url("../img/top/about_img02.webp") no-repeat center center transparent;
    border-radius: 20px;
    position: absolute;
    bottom: -220px;
    right: calc(50% + 20px);
    background-size: cover; }

#business {
  position: relative;
  padding-top: 280px;
  height: 1030px; }
  #business .bg_text {
    height: 150px;
    top: 120px;
    background-color: #fff; }
  #business .fl_box {
    display: flex;
    width: 700px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: space-between; }
    #business .fl_box .box {
      width: 203px;
      background-color: #fff;
      border-top: 8px solid #00236F;
      margin-bottom: 30px;
      box-shadow: 0 0 20px #1A69B0;
      transition-duration: .5s; }
      #business .fl_box .box:hover {
        transform: scale(1.07); }
      #business .fl_box .box a {
        color: #00236F;
        text-decoration: none; }
      #business .fl_box .box .icon {
        background-color: #CEE8FF;
        position: relative;
        height: 90px;
        display: flex;
        justify-content: center;
        align-items: center; }
        #business .fl_box .box .icon::before {
          content: '';
          display: block;
          width: 100%;
          height: 34px;
          position: absolute;
          left: 0;
          top: 100%;
          background: url("../img/svg/wave2.svg") no-repeat center center transparent; }
        #business .fl_box .box .icon::after {
          content: '';
          position: absolute;
          display: block;
          width: 100%;
          height: 25px;
          left: 0;
          top: 100%;
          background: url("../img/svg/wave1.svg") no-repeat center center transparent;
          mix-blend-mode: multiply; }
      #business .fl_box .box h4 {
        height: 100px;
        font-weight: bold;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 20px; }
  #business .mask {
    position: absolute;
    width: 100%;
    height: 1030px; }
    #business .mask::before {
      content: '';
      display: block;
      width: 100%;
      height: 100%;
      background-image: linear-gradient(90deg, #00236f, #0096c3 50%, #2ecfff);
      mix-blend-mode: multiply; }
  #business .bg_parallax {
    width: 1110px;
    margin: 0 auto;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    height: 1030px;
    overflow: hidden; }
    #business .bg_parallax ul {
      display: flex;
      justify-content: space-between; }
      #business .bg_parallax ul li {
        position: absolute; }
        #business .bg_parallax ul li img {
          width: 297px; }
        #business .bg_parallax ul li:nth-child(2) {
          left: 50%;
          transform: translateX(-50%); }
        #business .bg_parallax ul li:nth-child(3) {
          right: 0; }
  #business .container {
    position: relative; }
  #business .title {
    margin-top: 100px; }
  #business h2 {
    text-align: center;
    font-weight: bold;
    color: #fff;
    margin-bottom: 2rem; }
    #business h2 span {
      display: block;
      font-weight: normal;
      margin-bottom: 1rem; }
  #business .lead {
    font-size: 18px;
    color: #fff;
    text-align: center;
    font-weight: 500; }
  #business .more_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px auto; }
    #business .more_btn a {
      color: #fff;
      text-decoration: none;
      font-weight: bold;
      display: flex;
      align-items: center; }
      #business .more_btn a::before {
        content: url("../img/svg/arrrow_blue.svg");
        margin-right: 1rem;
        transition-duration: .5s; }
      #business .more_btn a:hover::before {
        content: url("../img/svg/arrow_red.svg");
        transform: scale(1.1); }

#career {
  padding: 40px 0 50px; }
  #career .fl_box {
    display: flex; }
  #career .left_box {
    background: url("../img/svg/map_blue.svg") no-repeat center top transparent;
    padding-top: 60px;
    margin: 0 auto;
    width: 420px; }
    #career .left_box .lead {
      text-align: center;
      font-size: 18px;
      font-weight: bold;
      color: #00236F;
      line-height: 2; }
      #career .left_box .lead span {
        color: #0D8CFF;
        display: block; }
    #career .left_box .inner ul li {
      font-weight: bold;
      border-bottom: 1px solid #C3D8EB;
      padding: 1rem 0;
      display: flex;
      align-items: center;
      letter-spacing: 2px; }
      #career .left_box .inner ul li span {
        color: #0D8CFF; }
      #career .left_box .inner ul li::before {
        content: url("../img/svg/chk.svg");
        margin-right: 1rem; }
    #career .left_box .more_btn {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 50px auto; }
      #career .left_box .more_btn a {
        text-decoration: none;
        font-weight: bold;
        display: flex;
        align-items: center; }
        #career .left_box .more_btn a::before {
          content: url("../img/svg/arrrow_blue.svg");
          margin-right: 1rem;
          transition-duration: .5s; }
        #career .left_box .more_btn a:hover::before {
          content: url("../img/svg/arrow_red.svg");
          transform: scale(1.1); }
  #career .right_box {
    position: relative;
    width: calc(50vw + 50px);
    padding-top: 50px;
    height: 624px;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; }
    #career .right_box img {
      max-width: unset;
      width: 80vw; }
    #career .right_box::after {
      content: url("../img/svg/wanted.svg");
      position: absolute;
      display: block;
      top: 0;
      left: 50px; }
  #career h2 {
    text-align: center;
    font-weight: bold;
    margin-bottom: 2rem; }
    #career h2 span {
      display: block;
      font-weight: normal;
      margin-bottom: 1rem; }
  #career .img_area {
    display: flex;
    gap: 20px;
    margin: 30px 30px 0; }
    #career .img_area div {
      height: 330px;
      overflow: hidden;
      display: flex;
      align-items: center; }

#faq {
  background-color: #ACD8FF;
  padding: 55px 0 40px; }
  #faq .title {
    text-align: center; }
    #faq .title svg {
      margin-bottom: 0; }
  #faq h2 {
    text-align: center;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #4E91CE;
    display: inline-block;
    position: relative; }
    #faq h2 span {
      display: block;
      font-weight: normal;
      margin-bottom: 1rem; }
    #faq h2::before {
      content: url("../img/svg/fukidashi01.svg");
      position: absolute;
      top: -10px;
      right: calc(100% + 60px); }
    #faq h2::after {
      content: url("../img/svg/fukidashi02.svg");
      position: absolute;
      top: -10px;
      left: calc(100% + 60px); }
  #faq .lead {
    text-align: center;
    font-weight: bold;
    color: #00236F;
    line-height: 2;
    margin-bottom: 2rem; }
  #faq .btn_bl a {
    background-color: #0D8CFF;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    width: 246px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 50px;
    transition-duration: .5s;
    border: 1px solid transparent;
    margin: 0 auto; }
    #faq .btn_bl a::after {
      content: url("../img/svg/arrow-right-light.svg");
      position: absolute;
      right: 1rem; }
    #faq .btn_bl a:hover {
      background-color: #fff;
      color: #0D8CFF;
      border-color: #0D8CFF; }
      #faq .btn_bl a:hover::after {
        content: url("../img/svg/arrow-right-light_bl.svg"); }

#contact {
  position: relative;
  padding: 60px 0 70px; }
  #contact .bg_text {
    height: 150px;
    top: 20px;
    background-color: #fff; }
  #contact h2 {
    text-align: center;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #00236F; }
    #contact h2 span {
      display: block;
      font-weight: normal; }
  #contact .fl_box {
    display: flex; }
    #contact .fl_box .left_box .more_btn {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 50px auto 0; }
      #contact .fl_box .left_box .more_btn a {
        color: #1A69B0;
        text-decoration: none;
        font-weight: bold;
        display: flex;
        align-items: center; }
        #contact .fl_box .left_box .more_btn a::before {
          content: url("../img/svg/arrrow_blue.svg");
          margin-right: 1rem;
          transition-duration: .5s; }
        #contact .fl_box .left_box .more_btn a:hover::before {
          content: url("../img/svg/arrow_red.svg");
          transform: scale(1.1); }
    #contact .fl_box .right_box {
      width: 50%;
      margin-left: auto; }
      #contact .fl_box .right_box p {
        max-width: 490px;
        line-height: 2;
        margin-bottom: 1rem;
        font-size: 18px;
        font-weight: 500;
        color: #00236F; }
        #contact .fl_box .right_box p a {
          color: #0D8CFF;
          text-decoration: none;
          position: relative; }
          #contact .fl_box .right_box p a::after {
            content: '';
            width: 100%;
            height: 1px;
            background-color: #0D8CFF;
            position: absolute;
            bottom: -5px;
            left: 0; }

.footer_img {
  height: 330px;
  overflow: hidden; }
  .footer_img .img_wrap {
    height: 100vh;
    width: 100vw;
    background: url("../img/top/footer_section.webp") no-repeat center top transparent fixed;
    background-size: cover; }

footer {
  background-color: #00236F;
  color: #fff;
  padding: 30px 0 30px; }
  footer .copyright {
    text-align: center;
    margin-top: 50px; }
  footer .fl_box {
    display: flex; }
  footer .center {
    text-align: center;
    margin: 0 auto; }
    footer .center p {
      margin-bottom: 40px; }
  footer .logo {
    width: 94px;
    margin-bottom: 10px; }
  footer .inner {
    width: 860px;
    margin: 0 auto; }
    footer .inner .left_box {
      width: 50%; }
      footer .inner .left_box h3 {
        font-size: 18px;
        font-family: "Shin Go Medium";
        font-weight: bold;
        margin-bottom: 20px; }
      footer .inner .left_box address {
        line-height: 1.5; }
      footer .inner .left_box p {
        line-height: 1.5; }
    footer .inner .right_box {
      width: 50%;
      display: flex;
      padding-top: 30px; }
      footer .inner .right_box .foot_nav {
        margin-right: 50px; }
        footer .inner .right_box .foot_nav li {
          width: 130px;
          line-height: 2; }
          footer .inner .right_box .foot_nav li a {
            color: #fff;
            text-decoration: none;
            position: relative;
            width: 100%;
            display: inline-block;
            transition-duration: .5s;
            overflow: hidden; }
            footer .inner .right_box .foot_nav li a::after {
              content: url("../img/svg/arrow-right-light.svg");
              position: absolute;
              right: 5px;
              transition-duration: .5s; }
            footer .inner .right_box .foot_nav li a::before {
              content: '';
              width: 100%;
              height: 1px;
              background-color: #fff;
              position: absolute;
              left: -100%;
              bottom: 0;
              transition-duration: .5s; }
            footer .inner .right_box .foot_nav li a:hover::after {
              right: 0; }
            footer .inner .right_box .foot_nav li a:hover::before {
              left: 0; }
        footer .inner .right_box .foot_nav--right li {
          width: 190px; }
  footer .btns {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 80px auto 0; }
    footer .btns li.recruit_btn {
      margin-right: 15px; }
      footer .btns li.recruit_btn a {
        text-decoration: none;
        background-color: #FE4E4D;
        display: flex;
        width: 152px;
        height: 46px;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        color: #fff;
        transition-duration: .5s; }
        footer .btns li.recruit_btn a:hover {
          background-color: #fff;
          color: #FE4E4D; }
    footer .btns li.contact_btn a {
      text-decoration: none;
      background-color: #00236F;
      display: flex;
      width: 152px;
      height: 46px;
      justify-content: center;
      align-items: center;
      border-radius: 50px;
      border: 1px solid #fff;
      color: #fff;
      transition-duration: .5s; }
      footer .btns li.contact_btn a:hover {
        background-color: #fff;
        color: #00236F; }

.pagetop {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 500; }
  .pagetop .text {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    font-size: 12px;
    text-align: center;
    justify-content: center;
    align-items: center; }
    .pagetop .text::before {
      content: url("../img/svg/toTop.svg");
      width: 100%;
      display: block;
      transition-duration: .5s; }
    .pagetop .text:hover::before {
      transform: scale(1.1); }

.sub_page header #navArea nav ul li:not(.recruit_btn, .contact_btn) a {
  color: #00236F; }
.sub_page .title_box {
  display: flex;
  min-height: 240px; }
  .sub_page .title_box h2 {
    color: #00236F !important; }
    .sub_page .title_box h2 span {
      margin-bottom: 0 !important; }
.sub_page .sub_foot {
  margin-top: 50px; }
.sub_page #business, .sub_page #charges, .sub_page #news {
  margin-top: 70px;
  padding-top: 60px;
  height: unset; }
  .sub_page #business .bg_text, .sub_page #charges .bg_text, .sub_page #news .bg_text {
    top: 170px; }
  .sub_page #business .title, .sub_page #charges .title, .sub_page #news .title {
    margin-top: 0; }
  .sub_page #business .lead_box, .sub_page #charges .lead_box, .sub_page #news .lead_box {
    width: 50%;
    margin-left: auto;
    padding-top: 95px; }
    .sub_page #business .lead_box p, .sub_page #charges .lead_box p, .sub_page #news .lead_box p {
      font-size: 20px;
      font-weight: 500;
      line-height: 2;
      margin-bottom: 40px;
      letter-spacing: 4px; }
  .sub_page #business .container-fluid.fl_box, .sub_page #charges .container-fluid.fl_box, .sub_page #news .container-fluid.fl_box {
    display: flex;
    width: 100vw;
    align-items: center; }
    .sub_page #business .container-fluid.fl_box .img_box, .sub_page #charges .container-fluid.fl_box .img_box, .sub_page #news .container-fluid.fl_box .img_box {
      width: 50vw;
      height: 524px;
      overflow: hidden;
      display: flex;
      align-items: center; }
    .sub_page #business .container-fluid.fl_box .text_box, .sub_page #charges .container-fluid.fl_box .text_box, .sub_page #news .container-fluid.fl_box .text_box {
      width: 445px; }
      .sub_page #business .container-fluid.fl_box .text_box h3, .sub_page #charges .container-fluid.fl_box .text_box h3, .sub_page #news .container-fluid.fl_box .text_box h3 {
        position: relative;
        font-size: 36px;
        font-weight: bold;
        margin-bottom: 40px;
        display: flex; }
        .sub_page #business .container-fluid.fl_box .text_box h3::before, .sub_page #charges .container-fluid.fl_box .text_box h3::before, .sub_page #news .container-fluid.fl_box .text_box h3::before {
          content: url("../img/common/icon_h3.svg");
          margin-right: 1rem; }
      .sub_page #business .container-fluid.fl_box .text_box ul li, .sub_page #charges .container-fluid.fl_box .text_box ul li, .sub_page #news .container-fluid.fl_box .text_box ul li {
        border-bottom: 2px dashed #C3D8EB;
        line-height: 1.3;
        padding: 1rem 0; }
    .sub_page #business .container-fluid.fl_box.right_text .text_box, .sub_page #charges .container-fluid.fl_box.right_text .text_box, .sub_page #news .container-fluid.fl_box.right_text .text_box {
      margin-right: auto;
      padding-left: 50px; }
    .sub_page #business .container-fluid.fl_box.left_text .text_box, .sub_page #charges .container-fluid.fl_box.left_text .text_box, .sub_page #news .container-fluid.fl_box.left_text .text_box {
      margin-left: auto;
      padding-right: 50px; }
  .sub_page #business .sub_mv, .sub_page #charges .sub_mv, .sub_page #news .sub_mv {
    margin-bottom: 50px; }
    .sub_page #business .sub_mv img, .sub_page #charges .sub_mv img, .sub_page #news .sub_mv img {
      width: 100%; }
  .sub_page #business .sub_foot img, .sub_page #charges .sub_foot img, .sub_page #news .sub_foot img {
    width: 100%; }
.sub_page #business .container.contents {
  width: 860px;
  margin: 0 auto; }
  .sub_page #business .container.contents h3 {
    position: relative;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    display: flex; }
    .sub_page #business .container.contents h3::before {
      content: url("../img/common/icon_h3.svg");
      margin-right: 1rem; }
  .sub_page #business .container.contents dl {
    display: flex; }
    .sub_page #business .container.contents dl dt, .sub_page #business .container.contents dl dd {
      display: flex;
      line-height: 1.5;
      box-sizing: border-box; }
    .sub_page #business .container.contents dl dt {
      border-bottom: 2px solid #0D8CFF;
      width: 236px;
      min-height: 77px;
      background: url("../img/svg/dt_dot.svg") repeat center center transparent;
      padding: 2rem 1.5rem; }
    .sub_page #business .container.contents dl dd {
      border-bottom: 2px solid #C3D8EB;
      width: 626px;
      padding: 2rem 2rem; }
      .sub_page #business .container.contents dl dd br {
        line-height: 1.2; }
    .sub_page #business .container.contents dl.first-child dt {
      border-top: 2px solid #0D8CFF; }
    .sub_page #business .container.contents dl.first-child dd {
      border-top: 2px solid #C3D8EB; }
.sub_page #footBnr {
  padding: 70px 0; }
  .sub_page #footBnr .title svg {
    margin-bottom: 0; }
  .sub_page #footBnr .fl_box {
    display: flex;
    justify-content: space-between; }
    .sub_page #footBnr .fl_box a {
      width: 520px;
      height: 273px;
      background: url("../img/common/btn_bg.webp") no-repeat center center transparent;
      display: inline-block;
      justify-content: center;
      align-items: center;
      padding: 45px 55px;
      box-sizing: border-box;
      border-radius: 20px;
      color: #fff;
      line-height: 2;
      position: relative;
      background-size: cover; }
      .sub_page #footBnr .fl_box a span.title {
        display: inline-block;
        position: relative;
        line-height: 1.3;
        margin-bottom: 30px; }
        .sub_page #footBnr .fl_box a span.title h3 {
          text-align: center;
          color: #fff; }
        .sub_page #footBnr .fl_box a span.title::after {
          content: url("../img/svg/arrow_wh.svg");
          position: absolute;
          left: calc(100% + 65px);
          top: 50%;
          transform: translateY(-50%);
          transition-duration: .5s; }
      .sub_page #footBnr .fl_box a p {
        color: #fff;
        line-height: 1.8; }
      .sub_page #footBnr .fl_box a:hover span.title::after {
        transform: translateY(-50%) scale(1.3); }
.sub_page .accordion_inner {
  display: none;
  padding: 20px 20px;
  box-sizing: border-box; }
.sub_page .accordion_title {
  font-size: 22px;
  font-weight: 500;
  color: #0D8CFF;
  padding: 16px 0;
  position: relative;
  display: flex;
  align-items: center; }
  .sub_page .accordion_title::after {
    content: '+';
    background-color: #E5F3FF;
    height: 54.5px;
    width: 54.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1A69B0;
    transition-duration: .5s;
    margin-left: auto;
    border-radius: 50px;
    font-weight: 400; }
  .sub_page .accordion_title.open::after {
    content: '-';
    background-color: #4D91CE;
    color: #fff; }

.faq_page .title_box {
  min-height: 240px; }
.faq_page .accordion_inner {
  background: url("../img/svg/dt_dot.svg") repeat center center transparent;
  padding: 20px 40px; }
.faq_page .accordion_title {
  border-bottom: 2px dashed #1A69B0; }
  .faq_page .accordion_title::before {
    content: 'Q.';
    color: #00236F;
    margin-right: .5rem; }
.faq_page .ac_inner_wraper {
  line-height: 2;
  position: relative;
  display: flex; }
  .faq_page .ac_inner_wraper::before {
    content: 'A.';
    color: #0D8CFF;
    margin-right: .5rem; }
  .faq_page .ac_inner_wraper .txt_a_ac a {
    text-decoration: underline; }
.faq_page .table_wrapper table th, .faq_page .table_wrapper table td {
  border: 2px solid #00236F;
  padding: 20px 15px; }
.faq_page .table_wrapper table thead {
  background-color: #4D91CE;
  color: #fff; }
.faq_page .table_wrapper table tbody tr {
  background-color: #FFFFF2; }
  .faq_page .table_wrapper table tbody tr:nth-of-type(odd) {
    background-color: #FFFFD9; }
  .faq_page .table_wrapper table tbody tr td:last-child {
    white-space: nowrap; }

.sub_page.charges_page #business .container.contents {
  width: 1080px; }
  .sub_page.charges_page #business .container.contents .box_bg {
    background-color: #E5F1FC;
    border-radius: 20px;
    padding: 60px 100px;
    box-sizing: border-box;
    margin-top: 30px; }
    .sub_page.charges_page #business .container.contents .box_bg #csvForm .fl_box {
      flex-wrap: wrap;
      gap: 40px;
      width: 100%; }
      .sub_page.charges_page #business .container.contents .box_bg #csvForm .fl_box .left, .sub_page.charges_page #business .container.contents .box_bg #csvForm .fl_box .right {
        width: 45%; }
        .sub_page.charges_page #business .container.contents .box_bg #csvForm .fl_box .left h4, .sub_page.charges_page #business .container.contents .box_bg #csvForm .fl_box .right h4 {
          font-size: 22px;
          font-weight: 600;
          margin-bottom: 10px; }
        .sub_page.charges_page #business .container.contents .box_bg #csvForm .fl_box .left input, .sub_page.charges_page #business .container.contents .box_bg #csvForm .fl_box .left select, .sub_page.charges_page #business .container.contents .box_bg #csvForm .fl_box .right input, .sub_page.charges_page #business .container.contents .box_bg #csvForm .fl_box .right select {
          font-size: 16px;
          width: 100%;
          max-width: 409px;
          color: #00236F;
          padding: 1rem 2rem;
          box-sizing: border-box;
          border-radius: 5px;
          background-color: #fff;
          border: 2px solid #00236F;
          font-weight: 600; }
        .sub_page.charges_page #business .container.contents .box_bg #csvForm .fl_box .left select:disabled, .sub_page.charges_page #business .container.contents .box_bg #csvForm .fl_box .right select:disabled {
          color: #00236F; }
          .sub_page.charges_page #business .container.contents .box_bg #csvForm .fl_box .left select:disabled:first-child, .sub_page.charges_page #business .container.contents .box_bg #csvForm .fl_box .right select:disabled:first-child {
            color: #909090; }
        .sub_page.charges_page #business .container.contents .box_bg #csvForm .fl_box .left select, .sub_page.charges_page #business .container.contents .box_bg #csvForm .fl_box .right select {
          -webkit-appearance: none;
          appearance: none;
          background: url("../img/svg/arrow_select.svg") no-repeat right 12px center #fff; }
    .sub_page.charges_page #business .container.contents .box_bg #csvForm .negotiable {
      margin: 2rem 0 0;
      font-size: 20px;
      font-weight: 500; }
      .sub_page.charges_page #business .container.contents .box_bg #csvForm .negotiable input {
        transform: scale(1.5); }
    .sub_page.charges_page #business .container.contents .box_bg #box_bl {
      background-color: #0079E6;
      color: #fff;
      display: flex;
      align-items: center;
      height: 140px;
      border-radius: 10px;
      margin: 30px auto;
      padding: 0 45px;
      justify-content: space-between; }
      .sub_page.charges_page #business .container.contents .box_bg #box_bl h4 {
        font-size: 22px;
        font-weight: 600; }
      .sub_page.charges_page #business .container.contents .box_bg #box_bl .price {
        display: flex;
        gap: 1rem;
        align-items: center; }
      .sub_page.charges_page #business .container.contents .box_bg #box_bl #result {
        border: 2px solid #00236F;
        border-radius: 5px;
        width: 409px;
        background-color: #fff;
        height: 78px;
        color: #FF7B7B;
        font-size: 26px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding-right: 2em;
        box-sizing: border-box; }
  .sub_page.charges_page #business .container.contents .box_wh {
    background-color: #fff;
    border-radius: 10px;
    padding: 50px 60px;
    box-sizing: border-box;
    margin-top: 50px; }
    .sub_page.charges_page #business .container.contents .box_wh ul li {
      border-bottom: 2px dashed #C3D8EB;
      padding: 10px 0;
      line-height: 1.5; }
      .sub_page.charges_page #business .container.contents .box_wh ul li:last-child {
        border-bottom: none; }
      .sub_page.charges_page #business .container.contents .box_wh ul li strong {
        color: #FE4E4D; }
      .sub_page.charges_page #business .container.contents .box_wh ul li .tel {
        color: #0D8CFF;
        font-size: 26px;
        font-weight: 600; }
      .sub_page.charges_page #business .container.contents .box_wh ul li .link_external {
        display: flex;
        align-items: center;
        width: 350px;
        border: 2px solid;
        border-radius: 5px;
        padding: 1rem 2rem;
        box-sizing: border-box;
        justify-content: space-between; }
        .sub_page.charges_page #business .container.contents .box_wh ul li .link_external::after {
          content: url("../img/svg/arrow-right.svg"); }
  .sub_page.charges_page #business .container.contents .caution {
    position: relative; }
    .sub_page.charges_page #business .container.contents .caution::before {
      content: 'ご注意事項';
      background-color: #FE4E4D;
      color: #fff;
      width: 194px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: -18px;
      left: 50%;
      transform: translateX(-50%); }

.career_page .sub_mv {
  position: relative; }
  .career_page .sub_mv .copy {
    position: absolute;
    top: 20%;
    left: calc(50% - 540px); }
.career_page .container .entry_btn {
  margin: 40px auto 60px; }
  .career_page .container .entry_btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 90px;
    color: #fff;
    background-image: linear-gradient(90deg, #00236f, #2ecfff);
    border-radius: 5px;
    font-size: 24px;
    font-weight: 600; }
    .career_page .container .entry_btn a::after {
      content: url("../img/career/btn_arrow.svg");
      position: absolute;
      right: 50px;
      top: 50%;
      transform: translateY(-50%); }
    .career_page .container .entry_btn a:hover {
      opacity: .7; }
.career_page .sub_mid {
  max-width: 98%;
  margin: 0 auto;
  position: relative; }
  .career_page .sub_mid::before {
    content: url("../img/career/mid_bubble.svg");
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(calc(-50% + 418px)); }
.career_page #section {
  padding: 100px 0 150px; }
  .career_page #section .container {
    width: 860px;
    margin: 0 auto; }
    .career_page #section .container h3 {
      position: relative;
      font-size: 36px;
      font-weight: bold;
      margin-bottom: 40px;
      display: flex; }
      .career_page #section .container h3::before {
        content: url("../img/common/icon_h3.svg");
        margin-right: 1rem; }
    .career_page #section .container .lead {
      margin-bottom: 2rem; }
    .career_page #section .container .accordion_container {
      background-color: #fff;
      border: 1px solid #00236F;
      margin: 30px auto; }
    .career_page #section .container .accordion_title {
      color: #00236F;
      padding: 10px 50px; }
    .career_page #section .container .accordion_inner {
      padding: 20px 50px; }
    .career_page #section .container dl {
      display: flex; }
      .career_page #section .container dl dt, .career_page #section .container dl dd {
        display: flex;
        line-height: 1.5;
        box-sizing: border-box; }
      .career_page #section .container dl dt {
        border-bottom: 2px solid #0D8CFF;
        width: 236px;
        min-height: 77px;
        background: url("../img/svg/dt_dot.svg") repeat center center transparent;
        padding: 2rem 1.5rem; }
      .career_page #section .container dl dd {
        border-bottom: 2px solid #C3D8EB;
        width: 526px;
        padding: 2rem 2rem; }
        .career_page #section .container dl dd br {
          line-height: 1.2; }
.career_page #schedule .container {
  width: 860px; }
.career_page #schedule .title_area {
  height: 273px;
  width: 100%;
  background-image: linear-gradient(90deg, #00236f, #2ecfff);
  margin-bottom: 80px; }
  .career_page #schedule .title_area .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 1080px !important; }
    .career_page #schedule .title_area .container::before {
      content: url("../img/career/clock.svg");
      position: absolute;
      left: 30px; }
    .career_page #schedule .title_area .container::after {
      content: url("../img/career/schedule_title_img.webp");
      position: absolute;
      right: 0; }
  .career_page #schedule .title_area h2 {
    font-size: 46px;
    text-align: center;
    font-weight: 600;
    color: #fff;
    position: relative; }
    .career_page #schedule .title_area h2::before {
      content: url("../img/career/schedule_title.svg");
      display: block;
      margin-bottom: 10px; }
.career_page #schedule .schedule_inner .fl_box {
  display: flex;
  margin-bottom: 180px;
  align-items: flex-start; }
  .career_page #schedule .schedule_inner .fl_box .img_area {
    width: 50%;
    box-sizing: border-box;
    position: relative; }
    .career_page #schedule .schedule_inner .fl_box .img_area .caption {
      width: 511px;
      height: 90px;
      font-size: 20px;
      font-weight: 500;
      display: flex;
      justify-content: center;
      align-items: center;
      position: absolute;
      bottom: -45px;
      background-image: linear-gradient(90deg, #00236f, #2ecfff);
      color: #fff; }
    .career_page #schedule .schedule_inner .fl_box .img_area.left {
      padding-right: 40px; }
      .career_page #schedule .schedule_inner .fl_box .img_area.left .caption {
        right: 0; }
    .career_page #schedule .schedule_inner .fl_box .img_area.right {
      padding-left: 40px; }
      .career_page #schedule .schedule_inner .fl_box .img_area.right .caption {
        left: 0; }
  .career_page #schedule .schedule_inner .fl_box .text_area {
    width: 540px; }
    .career_page #schedule .schedule_inner .fl_box .text_area h3 {
      background-image: linear-gradient(90deg, #00236f, #2ecfff);
      height: 108px;
      display: flex;
      align-items: center;
      padding: 2rem;
      box-sizing: border-box;
      font-size: 30px;
      font-size: 600;
      color: #fff;
      margin-bottom: 30px; }
    .career_page #schedule .schedule_inner .fl_box .text_area dl {
      position: relative;
      display: flex;
      width: 376px;
      margin: 0 0 0 auto;
      height: 70px;
      align-items: center;
      border-bottom: 2px dashed #0D8CFF;
      font-size: 18px;
      font-weight: 500; }
      .career_page #schedule .schedule_inner .fl_box .text_area dl dt {
        color: #4E91CE;
        width: 110px; }
      .career_page #schedule .schedule_inner .fl_box .text_area dl::before {
        content: '';
        width: 26px;
        height: 26px;
        border-radius: 50px;
        background-color: #00236F;
        position: absolute;
        left: -66px; }
      .career_page #schedule .schedule_inner .fl_box .text_area dl::after {
        content: '';
        width: 2px;
        height: 100%;
        border-radius: 50px;
        background-color: #00236F;
        position: absolute;
        left: -54px;
        top: 100%;
        transform: translateY(-50%); }
      .career_page #schedule .schedule_inner .fl_box .text_area dl:last-child::after {
        display: none; }
  .career_page #schedule .schedule_inner .fl_box.right_img {
    justify-content: flex-end; }
    .career_page #schedule .schedule_inner .fl_box.right_img .text_area dl {
      margin: 0 auto; }
.career_page #faq {
  background-color: #fff; }
  .career_page #faq .container {
    width: 860px; }
    .career_page #faq .container h3 {
      position: relative;
      font-size: 36px;
      font-weight: bold;
      margin-bottom: 40px;
      display: flex; }
      .career_page #faq .container h3::before {
        content: url("../img/common/icon_h3.svg");
        margin-right: 1rem; }
  .career_page #faq .accordion_inner {
    background: url("../img/svg/dt_dot.svg") repeat center center transparent; }
  .career_page #faq .accordion_title {
    border-bottom: 2px dashed #1A69B0; }
    .career_page #faq .accordion_title::before {
      content: 'Q.';
      color: #00236F;
      margin-right: .5rem; }
  .career_page #faq .ac_inner_wraper {
    line-height: 2;
    position: relative;
    display: flex; }
    .career_page #faq .ac_inner_wraper::before {
      content: 'A.';
      color: #0D8CFF;
      margin-right: .5rem; }

.section_bl {
  background-color: #E5F3FF; }

.contact_inner {
  width: 860px;
  padding-top: 50px; }
  .contact_inner h4.center_red {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #FE4E4D; }
  .contact_inner .btn_bl {
    margin-bottom: 150px; }
    .contact_inner .btn_bl a {
      background-color: #0D8CFF;
      color: #fff;
      text-decoration: none;
      font-weight: bold;
      width: 246px;
      height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      border-radius: 50px;
      transition-duration: .5s;
      border: 1px solid transparent;
      margin: 0 auto; }
      .contact_inner .btn_bl a::after {
        content: url("../img/svg/arrow-right-light.svg");
        position: absolute;
        right: 1rem; }
      .contact_inner .btn_bl a:hover {
        background-color: #fff;
        color: #0D8CFF;
        border-color: #0D8CFF; }
        .contact_inner .btn_bl a:hover::after {
          content: url("../img/svg/arrow-right-light_bl.svg"); }
  .contact_inner h3 {
    position: relative;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    display: flex; }
    .contact_inner h3::before {
      content: url("../img/common/icon_h3.svg");
      margin-right: 1rem; }
  .contact_inner .lead_text {
    line-height: 2;
    font-weight: 500;
    width: 686px;
    margin: 30px auto;
    text-align: center; }
  .contact_inner .box_bg {
    background-color: #E5F1FC;
    border-radius: 20px;
    padding: 50px;
    box-sizing: border-box; }
    .contact_inner .box_bg p {
      text-align: center;
      font-size: 24px;
      text-transform: uppercase; }
      .contact_inner .box_bg p strong {
        font-size: 40px;
        font-weight: 600;
        margin-left: 1rem;
        color: #0D8CFF; }
      .contact_inner .box_bg p small {
        font-weight: 500;
        font-size: 16px; }

.faq_page .title_box, .career_page .title_box {
  min-height: 280px; }

.charges_page #business .container.contents .box_bg h3 span {
  color: #0D8CFF; }

.contact_page form dl dd {
  align-items: center;
  flex-wrap: wrap; }
.contact_page form input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="hidden"]):not([type="submit"]):not([type="reset"]):not([type="button"]):not([type="image"]),
.contact_page form select {
  font-size: 16px;
  width: 100%;
  max-width: 409px;
  color: #00236F;
  padding: 1rem 2rem;
  box-sizing: border-box;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #00236F;
  font-weight: 600;
  margin-bottom: 10px; }
.contact_page form .form_btn {
  text-decoration: none;
  background-color: #FE4E4D;
  display: flex;
  width: 152px;
  height: 46px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  color: #fff;
  transition-duration: .5s;
  margin: 2rem auto;
  border: none; }
  .contact_page form .form_btn.btn_back {
    background-color: #ccc; }
.contact_page form input[type="number"] {
  width: 7rem !important;
  padding: 1rem !important; }

.news .pagenation {
  display: flex;
  justify-content: center; }
  .news .pagenation .page-numbers {
    background-color: #ccc;
    border-radius: 50px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 0 5px;
    font-weight: 500; }
  .news .pagenation a.page-numbers {
    background-color: #00236F;
    color: #fff; }
    .news .pagenation a.page-numbers:hover {
      opacity: .7; }

.grecaptcha-badge {
  opacity: 0; }

/*# sourceMappingURL=style.css.map */
