@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Roboto:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap");
/*  --------------------------------------------------------------------------------
  base
--------------------------------------------------------------------------------  */
body {
  background: rgba(10, 58, 144, 0.83);
  color: #001742;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.12em;
  position: relative;
  margin: 0;
}
body::before {
  background: url(../img/img/bg01.png) repeat-y;
  background-size: 100% 7526px;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  body {
    padding-bottom: 68px;
    font-size: 14px;
  }
  body::before {
    background: url(../img/img/bg01_sp.png) repeat-y;
    background-size: 100% 4013px;
  }
}

div, h1, h2, h3, h4, h5, p, li, dl, dt, dd, th, td, article, header, footer, nav, span, a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

li {
  list-style: none;
}

a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

img {
  height: auto;
  width: auto;
  max-width: 100%;
  line-height: 100%;
  vertical-align: bottom;
}

em {
  font-style: normal;
}

h1, h2, h3, h4, h5 {
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.12em;
  margin: 0;
  word-wrap: break-word;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

p, li, td, th, dt, dd {
  font-weight: normal;
  line-height: 2.2;
  letter-spacing: 0.12em;
  margin: 0;
  word-wrap: break-word;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

span, strong, small {
  letter-spacing: 0.12em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: top;
  word-break: break-all;
}

ul, ol, dl {
  padding: 0;
  margin: 0;
}

/* display switching */
@media screen and (min-width: 769px) {
  .pc-none {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .sp-none {
    display: none !important;
  }
}
@media screen and (min-width: 951px) {
  .min951-none {
    display: none !important;
  }
}
@media screen and (max-width: 950px) {
  .max950-none {
    display: none !important;
  }
}
/* font */
body, input, textarea {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}

.f-Roboto {
  font-family: "Roboto", sans-serif;
}

/* hover */
@media screen and (min-width: 769px) {
  a {
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
  }
  a:hover {
    opacity: 0.4;
  }
}

/* selection */
::-moz-selection {
  background: rgba(10, 58, 144, 0.8);
  color: #fff;
}
::selection {
  background: rgba(10, 58, 144, 0.8);
  color: #fff;
}

/*	tel link	*/
@media screen and (min-width: 769px) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
}
/* imgFitBox imgLinkBox */
.imgFitBox {
  overflow: hidden;
}
.imgFitBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover; object-position: center;";
}
.imgFitBox.contain { /* fit = contain */ }
.imgFitBox.contain img {
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain; object-position: center;";
}

.imgLinkBox .imgLink-target {
  overflow: hidden;
}
.imgLinkBox .imgLink-target img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover; object-position: center;";
  -webkit-transition: 0.8s ease;
  transition: 0.8s ease;
  -webkit-transform: scale(1);
          transform: scale(1);
}
@media screen and (min-width: 769px) {
  .imgLinkBox:hover {
    opacity: 1;
  }
  .imgLinkBox:hover .imgLink-target img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

/*  --------------------------------------------------------------------------------
  common
--------------------------------------------------------------------------------  */
.loading-list {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 999999;
}
.loading-list-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 480px;
  height: 220px;
  z-index: 999;
  overflow: hidden;
}
.loading-list-logo.is-on::before {
  -webkit-animation: loading_anime 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
          animation: loading_anime 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.loading-list-logo::before {
  background: #0A3A90;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.loading-list-logo .logo {
  display: block;
  width: 380px;
}
.loading-list-logo .logo.is-on {
  -webkit-animation: loading_anime_logo 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
          animation: loading_anime_logo 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.loading-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}
.loading-list-item.is-on .imgInner .imgBox {
  -webkit-animation: loading_anime 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
          animation: loading_anime 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.loading-list-item .imgInner {
  width: 12.5%;
  height: 100%;
  overflow: hidden;
}
.loading-list-item .imgInner .imgBox {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 9;
}
.loading-list-item .imgInner .img {
  background: #0A3A90;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .loading-list-logo {
    width: 280px;
    height: 100px;
  }
  .loading-list-logo .logo {
    width: 200px;
  }
  .loading-list-item .imgInner {
    width: 20%;
  }
}

@-webkit-keyframes loading_anime {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}

@keyframes loading_anime {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
@-webkit-keyframes loading_anime_logo {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(40%, 0);
            transform: translate(40%, 0);
  }
}
@keyframes loading_anime_logo {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(40%, 0);
            transform: translate(40%, 0);
  }
}
/* cmn-frame */
.cmn-frame {
  background: #fff;
  margin: 0 auto;
  position: relative;
  max-width: 1200px;
  width: calc(100% - 80px);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .cmn-frame {
    width: calc(100% - 30px);
  }
}

.cmn-inner {
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
}
.cmn-inner.inner-1200 {
  max-width: 1200px;
}

/* cmn-cvBar */
.cmn-cvBar {
  background: #0A3A90;
  border-top: solid #fff 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 68px;
  z-index: 99999;
}
.cmn-cvBar::before {
  background: #506CA1;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
}
.cmn-cvBar li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 9px 0 20px;
  width: 50%;
}
.cmn-cvBar li:nth-child(1) {
  border-right: solid #fff 0.5px;
}
.cmn-cvBar li:nth-child(2) {
  border-left: solid #fff 0.5px;
}
.cmn-cvBar li a {
  display: block;
  position: relative;
  width: 45px;
  z-index: 9;
}

/* cmn-ttl */
.cmn-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
.cmn-ttl.f-sizUp .ttlSub {
  font-size: 18px;
  margin-bottom: 4px;
}
.cmn-ttl.f-sizUp .ttl {
  font-size: 52px;
}
.cmn-ttl.f-sizDun .ttl {
  font-size: 38px;
}
.cmn-ttl.is-left {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
}
.cmn-ttl.is-left .ttlSub {
  padding: 0 0 0 44px;
}
.cmn-ttl.is-left .ttlSub::before {
  width: 30px;
}
.cmn-ttl.is-left .ttlSub::after {
  content: none;
}
.cmn-ttl.is-wht .ttlSub {
  color: #fff;
}
.cmn-ttl.is-wht .ttlSub::before {
  background: #fff;
}
.cmn-ttl.is-wht .ttlSub::after {
  background: #fff;
}
.cmn-ttl.is-wht .ttl {
  color: #fff;
}
.cmn-ttl .ttlSub {
  display: inline-block;
  color: #0A3A90;
  font-weight: 500;
  font-style: italic;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 10px;
  padding: 0 22px;
  position: relative;
}
.cmn-ttl .ttlSub::before {
  background: #0A3A90;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 14px;
  height: 1px;
}
.cmn-ttl .ttlSub::after {
  background: #0A3A90;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 14px;
  height: 1px;
}
.cmn-ttl .ttl {
  display: inline-block;
  color: #000E29;
  font-weight: 500;
  font-size: 42px;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 768px) {
  .cmn-ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .cmn-ttl.f-sizUp .ttlSub {
    font-size: 14px;
  }
  .cmn-ttl.f-sizUp .ttl {
    font-size: 32px;
  }
  .cmn-ttl.f-sizDun .ttl {
    font-size: 30px;
  }
  .cmn-ttl.is-left .ttlSub {
    padding: 0 0 0 30px;
  }
  .cmn-ttl.is-left .ttlSub::before {
    width: 20px;
  }
  .cmn-ttl .ttlSub {
    margin-bottom: 5px;
    padding: 0 18px;
  }
  .cmn-ttl .ttlSub::before {
    width: 10px;
  }
  .cmn-ttl .ttlSub::after {
    width: 10px;
  }
  .cmn-ttl .ttl {
    font-size: 30px;
  }
}

/* cmn-bt */
.cmn-bt {
  background: #0A3A90;
  border-radius: 25vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  max-width: 400px;
  width: 100%;
  height: 80px;
  overflow: hidden;
}
.cmn-bt.is-blu {
  background: #fff;
}
.cmn-bt.is-blu::before {
  background: url(../img/ico/ico_arrow01_blu.svg) no-repeat;
  background-size: 100% auto;
}
.cmn-bt.is-blu::after {
  background: #E55817;
}
.cmn-bt.is-blu span {
  color: #0A3A90;
}
.cmn-bt.is-left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0;
  padding: 0 30px 0 26px;
}
.cmn-bt.is-btSizUp {
  max-width: 600px;
  height: 128px;
}
.cmn-bt.is-btSizUp span {
  font-size: 24px;
}
.cmn-bt.is-btSizUp::before {
  background: url(../img/ico/ico_arrow01_wht.svg) no-repeat;
  background-size: 100% auto;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 32px;
  margin: auto;
  width: 16px;
  height: 28px;
  z-index: 3;
}
.cmn-bt::before {
  background: url(../img/ico/ico_arrow01_wht.svg) no-repeat;
  background-size: 100% auto;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 14px;
  height: 24px;
  z-index: 3;
}
.cmn-bt::after {
  background: #E55817;
  border-radius: 25vw;
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.cmn-bt span {
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 769px) {
  .cmn-bt {
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
  }
  .cmn-bt::before {
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
  }
  .cmn-bt::after {
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
  }
  .cmn-bt span {
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
  }
  .cmn-bt:hover {
    opacity: 1;
  }
  .cmn-bt:hover.is-blu::before {
    background: url(../img/ico/ico_arrow01_wht.svg) no-repeat;
    background-size: 100% auto;
  }
  .cmn-bt:hover.is-blu span {
    color: #fff;
  }
  .cmn-bt:hover::before {
    background: url(../img/ico/ico_arrow01_wht.svg) no-repeat;
    background-size: 100% auto;
    right: 14px;
  }
  .cmn-bt:hover::after {
    left: 0;
  }
  .cmn-bt:hover span {
    color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .cmn-bt {
    padding: 0 30px;
    max-width: 260px;
    height: 54px;
  }
  .cmn-bt span {
    font-size: 13px;
    letter-spacing: 0.14em;
  }
  .cmn-bt.is-btSizUp {
    max-width: 285px;
    height: 80px;
  }
  .cmn-bt.is-btSizUp span {
    font-size: 16px;
  }
  .cmn-bt.is-btSizUp::before {
    right: 17px;
    width: 10px;
    height: 18px;
  }
  .cmn-bt::before {
    top: 2px;
    right: 17px;
    width: 10px;
    height: 18px;
  }
}

/* cmn-mv */
.cmn-mv {
  margin-top: 80px;
  padding: 0 40px;
  height: 400px;
}
.cmn-mv-inner {
  background: #fff;
  border-bottom: solid #0A3A90 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  padding: 0 0 30px;
  height: 100%;
}
.cmn-mv-ttl {
  text-align: center;
}
.cmn-mv-ttl.is-job .cmn-mv-ttl__subTtl {
  max-width: 726px;
}
.cmn-mv-ttl.is-form .cmn-mv-ttl__subTtl {
  max-width: 324px;
}
.cmn-mv-ttl.is-form .cmn-mv-ttl__ttl {
  margin-top: -4px;
}
.cmn-mv-ttl__subTtl {
  display: block;
  margin: 0 auto;
  max-width: 697px;
  width: 100%;
}
.cmn-mv-ttl__ttl {
  color: #000E29;
  display: block;
  font-weight: 500;
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: 0.16em;
  margin-top: -20px;
}
@media screen and (max-width: 768px) {
  .cmn-mv {
    margin-top: 60px;
    padding: 0 15px;
    height: 220px;
  }
  .cmn-mv-inner {
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
    padding: 0 0 10px;
  }
  .cmn-mv-ttl.is-job .cmn-mv-ttl__subTtl {
    max-width: 200px;
  }
  .cmn-mv-ttl.is-job .cmn-mv-ttl__ttl {
    margin-top: -30px;
  }
  .cmn-mv-ttl.is-form .cmn-mv-ttl__subTtl {
    max-width: 238px;
  }
  .cmn-mv-ttl.is-form .cmn-mv-ttl__ttl {
    margin-top: -8px;
  }
  .cmn-mv-ttl__subTtl {
    max-width: 180px;
  }
  .cmn-mv-ttl__ttl {
    font-size: 32px;
    margin-top: -14px;
  }
}

/* cmn-main */
.cmn-main {
  padding: 120px 0 200px;
}
@media screen and (max-width: 768px) {
  .cmn-main {
    padding: 50px 0 100px;
  }
}

/* cmn-list */
.cmn-dl01 {
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
}
.cmn-dl01.is-dt-blu dt {
  color: #0A3A90;
}
.cmn-dl01 dl {
  border-bottom: solid #D9D9D9 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px 0;
  position: relative;
}
.cmn-dl01 dl::before {
  background: #0A3A90;
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 200px;
  height: 1px;
}
.cmn-dl01 dl:first-child {
  border-top: solid #D9D9D9 1px;
}
.cmn-dl01 dl:first-child::after {
  background: #0A3A90;
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 200px;
  height: 1px;
}
.cmn-dl01 dl dt {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  padding: 0 20px;
  width: 200px;
  text-align: center;
}
.cmn-dl01 dl dd {
  line-height: 1.6;
  padding: 0 20px;
  width: calc(100% - 200px);
}
.cmn-dl01 dl dd p {
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
}
.cmn-dl01 dl dd p + p {
  margin-top: 4px;
}
.cmn-dl01 dl dd p small {
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .cmn-dl01 {
    max-width: 480px;
  }
  .cmn-dl01.is-dt-blu dt {
    letter-spacing: 0.1em;
    padding: 0 2px;
  }
  .cmn-dl01 dl {
    padding: 14px 0;
  }
  .cmn-dl01 dl::before {
    width: 100px;
  }
  .cmn-dl01 dl:first-child::after {
    width: 100px;
  }
  .cmn-dl01 dl dt {
    font-size: 14px;
    padding: 0 8px;
    width: 100px;
  }
  .cmn-dl01 dl dd {
    padding: 0 8px;
    width: calc(100% - 100px);
  }
  .cmn-dl01 dl dd p {
    font-size: 14px;
  }
  .cmn-dl01 dl dd p small {
    display: inline-block;
    font-size: 10px;
    line-height: 1.4;
  }
}

/* cmn-toTop */
.cmn-toTop {
  background: #0A3A90;
  border: solid #0A3A90 1px;
  border-radius: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: 9px;
  right: 10px;
  width: 50px;
  height: 50px;
  overflow: hidden;
  z-index: 9;
}
.cmn-toTop::before {
  background: url(../img/ico/ico_arrow02_wht.svg) no-repeat;
  background-size: 100% auto;
  content: "";
  position: absolute;
  top: 0;
  bottom: 3px;
  left: 0;
  right: 0;
  margin: auto;
  width: 26px;
  height: 10px;
  z-index: 3;
}
.cmn-toTop::after {
  background: #fff;
  border-radius: 25vw;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .cmn-toTop::before {
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
  }
  .cmn-toTop::after {
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
  }
  .cmn-toTop:hover {
    opacity: 1;
  }
  .cmn-toTop:hover::before {
    background: url(../img/ico/ico_arrow02_blu.svg) no-repeat;
    background-size: 100% auto;
  }
  .cmn-toTop:hover::after {
    width: 110%;
    height: 110%;
  }
}

.lb-prev,
.lb-next {
  display: block !important;
  opacity: 1 !important;
}

.lb-cancel {
  background: url(../img/lightbox/loading.gif) no-repeat !important;
}

.lb-nav a.lb-prev {
  background: url(../img/lightbox/prev.png) left 48% no-repeat !important;
}

.lb-nav a.lb-next {
  background: url(../img/lightbox/next.png) right 48% no-repeat !important;
}

.lb-data .lb-close {
  background: url(../img/lightbox/close.png) top right no-repeat !important;
}

/*  --------------------------------------------------------------------------------
  header
--------------------------------------------------------------------------------  */
.header {
  background: white;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: solid #0A3A90 1px;
  padding: 0 40px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 9999;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.header .cmn-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
.header-logo {
  display: block;
  width: 210px;
}
.header-nav {
  margin-left: 80px;
  position: relative;
  max-width: 700px;
  width: 100%;
}
.header-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.header-nav-list-item + .header-nav-list-item {
  margin-left: 20px;
}
.header-nav-list-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header-nav-list-item a .ttl {
  color: #000E29;
  display: block;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  padding: 6px 0;
  position: relative;
  overflow: hidden;
}
.header-nav-list-item a .ttl::before {
  background: #0A3A90;
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
}
@media screen and (min-width: 769px) {
  .header-nav-list-item a {
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
  }
  .header-nav-list-item a span {
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
  }
  .header-nav-list-item a span::before {
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
  }
  .header-nav-list-item a:hover {
    opacity: 1;
  }
  .header-nav-list-item a:hover span {
    color: #0A3A90;
  }
  .header-nav-list-item a:hover span::before {
    left: 0;
  }
}
@media screen and (max-width: 1000px) {
  .header {
    padding: 0 20px;
  }
  .header-logo {
    width: 150px;
  }
  .header-nav {
    margin-left: 20px;
    max-width: 500px;
  }
  .header-nav-list-item + .header-nav-list-item {
    margin-left: 14px;
  }
  .header-nav-list-item a .ttl {
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 768px) {
  .header {
    padding: 0 15px;
    height: 60px;
  }
  .header .cmn-inner {
    display: block;
    padding-bottom: 0;
    max-width: initial;
    height: auto;
  }
  .header-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0;
    position: absolute;
    top: 1px;
    bottom: 0;
    left: 15px;
    margin: auto;
    width: 134px;
    z-index: 99999;
  }
  .header-nav {
    background: transparent;
    margin-left: 0;
    position: fixed;
    top: 60px;
    left: -100%;
    max-width: 100%;
    width: 100%;
    height: calc(100% - 60px);
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
  }
  .header-nav-list {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: block;
    padding: 55px 20px 108px;
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    z-index: 99999;
  }
  .header-nav-list-item + .header-nav-list-item {
    margin-top: 38px;
    margin-left: 0;
  }
  .header-nav-list-item a {
    display: block;
  }
  .header-nav-list-item a .ttlSub {
    display: block;
    color: #fff;
    font-weight: 500;
    font-style: italic;
    font-size: 10px;
    line-height: 1.2;
    margin-bottom: 4px;
    padding-left: 18px;
    position: relative;
  }
  .header-nav-list-item a .ttlSub::before {
    background: #fff;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 10px;
    height: 1px;
  }
  .header-nav-list-item a .ttl {
    display: block;
    color: #fff;
    font-size: 24px;
    padding: 0;
  }
  .header-nav.close {
    background: rgba(10, 58, 144, 0.9);
    left: 0;
    opacity: 1;
    visibility: visible;
    z-index: 9999;
  }
}

.navBt {
  background: transparent;
  cursor: pointer;
  position: fixed;
  top: 15.5px;
  right: 27px;
  width: 42px;
  height: 28px;
  z-index: 9999;
}
.navBt::before {
  background: url(../img/txt/txt_menu01.png) no-repeat;
  background-size: 100% auto;
  content: "";
  position: absolute;
  top: -1.5px;
  right: -13px;
  width: 9px;
  height: 32px;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.navBt-item span {
  background: #0A3A90;
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.navBt-item span:nth-child(1) {
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.navBt-item span:nth-child(2) {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.navBt-item span:nth-child(3) {
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.navBt.close::before {
  background: url(../img/txt/txt_close01.png) no-repeat;
  background-size: 100% auto;
}
.navBt.close .navBt-item span:nth-child(1) {
  bottom: 0;
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
}
.navBt.close .navBt-item span:nth-child(2) {
  left: -100%;
  opacity: 0;
}
.navBt.close .navBt-item span:nth-child(3) {
  top: 0;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
}

/*  --------------------------------------------------------------------------------
  footer
--------------------------------------------------------------------------------  */
.footer {
  border-top: solid #0A3A90 1px;
  text-align: center;
  position: relative;
}
.footer-inner.inner01 {
  background: rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding: 70px 40px;
}
.footer-inner.inner02 {
  background: #0A3A90;
  padding: 24px 40px;
}
.footer-box__logo {
  display: block;
  margin: 0 auto 42px;
  width: 200px;
}
.footer-box-list-item + .footer-box-list-item {
  margin-top: 32px;
}
.footer-box-list-item h3 {
  color: #000E29;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 8px;
}
.footer-box-list-item p {
  font-weight: normal;
  font-size: 16px;
  line-height: 1.4;
  margin-top: 4px;
}
.footer-box-list-item .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 15px;
}
.footer-box-list-item .sns a {
  display: block;
  width: 42px;
}
.footer-navList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  max-width: 700px;
  width: 100%;
}
.footer-navList-item + .footer-navList-item {
  margin-left: 20px;
}
.footer-navList-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer-navList-item a .ttl {
  color: #fff;
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  padding: 6px 0;
  position: relative;
  overflow: hidden;
}
.footer-navList-item a .ttl::before {
  background: #fff;
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
}
@media screen and (min-width: 769px) {
  .footer-navList-item a {
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
  }
  .footer-navList-item a span {
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
  }
  .footer-navList-item a span::before {
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
  }
  .footer-navList-item a:hover {
    opacity: 1;
  }
  .footer-navList-item a:hover span::before {
    left: 0;
  }
}
.footer__copyright {
  background: #fff;
  color: #0A3A90;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: normal;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-align: center;
  padding: 0 40px;
  height: 68px;
}
@media screen and (max-width: 1000px) {
  .footer-navList {
    max-width: 600px;
  }
  .footer-navList-item + .footer-navList-item {
    margin-left: 14px;
  }
  .footer-navList-item a .ttl {
    font-size: 14px;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 768px) {
  .footer-inner.inner01 {
    padding: 50px 10px;
  }
  .footer-box__logo {
    margin: 0 auto 32px;
    width: 160px;
  }
  .footer-box-list-item + .footer-box-list-item {
    margin-top: 28px;
  }
  .footer-box-list-item h3 {
    font-size: 13px;
    margin-bottom: 6px;
  }
  .footer-box-list-item p {
    font-size: 12px;
    margin-top: 4px;
  }
  .footer-box-list-item .sns {
    gap: 18px;
  }
  .footer-box-list-item .sns a {
    width: 40px;
  }
  .footer__copyright {
    background: #0A3A90;
    color: #fff;
    font-size: 10px;
    padding: 0 10px;
    height: 38px;
  }
}

/*  --------------------------------------------------------------------------------
  form
--------------------------------------------------------------------------------  */
.form-main {
  padding: 80px 0 120px;
}
@media screen and (max-width: 768px) {
  .form-main {
    padding: 50px 0 80px;
  }
}

.formLead__txt {
  font-weight: 500;
  font-size: 20px;
  line-height: 2;
  text-align: center;
  padding: 0 40px 80px;
}
@media screen and (max-width: 768px) {
  .formLead__txt {
    font-size: 14px;
    padding: 0 20px 50px;
  }
}

.formMerit {
  padding: 20px 40px 100px;
}
.formMerit-list {
  margin: 50px auto 0;
  max-width: 800px;
  width: 100%;
}
.formMerit-list-item + .formMerit-list-item {
  margin-top: 28px;
}
.formMerit-list-item h3 {
  color: #0A3A90;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
  padding: 8.8px 0 0 38px;
  position: relative;
}
.formMerit-list-item h3 .num {
  font-weight: 500;
  font-style: italic;
  font-size: 34px;
  letter-spacing: 0.1em;
  position: absolute;
  top: 0;
  left: 0;
}
.formMerit-list-item p {
  line-height: 2;
  padding-left: 38px;
}
.formMerit .industriesBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px 20px;
}
.formMerit .industriesBox p {
  color: #000E29;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
  padding: 0;
  padding-left: 12px;
  position: relative;
}
.formMerit .industriesBox p::before {
  background: #0A3A90;
  border-radius: 50vh;
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
}
@media screen and (max-width: 768px) {
  .formMerit {
    padding: 20px 20px 80px;
  }
  .formMerit-list {
    margin: 40px auto 0;
  }
  .formMerit-list-item + .formMerit-list-item {
    margin-top: 24px;
  }
  .formMerit-list-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    padding: 3.4px 0 0 28px;
    position: relative;
  }
  .formMerit-list-item h3 .num {
    font-size: 24px;
  }
  .formMerit-list-item p {
    padding-left: 28px;
  }
  .formMerit .industriesBox {
    gap: 10px 15px;
  }
  .formMerit .industriesBox p {
    font-size: 14px;
    padding-left: 10px;
  }
  .formMerit .industriesBox p::before {
    top: 9px;
    width: 6px;
    height: 6px;
  }
}

.formFlow {
  padding: 20px 40px 100px;
}
.formFlow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 70px auto 0;
  max-width: 800px;
  width: 100%;
}
.formFlow-list-item {
  border: solid #0A3A90 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 65px 4px 4px 4px;
  position: relative;
  width: 14.5%;
  height: 320px;
}
.formFlow-list-item + .formFlow-list-item {
  margin-left: 55px;
}
.formFlow-list-item + .formFlow-list-item::before {
  border-style: solid;
  border-width: 25px 0 25px 25px;
  border-color: transparent transparent transparent #0a3990;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40px;
  margin: auto;
  width: 0;
  height: 0;
}
.formFlow-list-item .num {
  background: #0A3A90;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 500;
  font-style: italic;
  line-height: 1.2;
  padding: 3px 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 65px;
}
.formFlow-list-item .num strong {
  font-size: 24px;
  line-height: 1.2;
}
.formFlow-list-item h3 {
  color: #0A3A90;
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.22em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}
.formFlow-list-item h3 .ico-circle {
  background: #0A3A90;
  border-radius: 25vw;
  display: inline-block;
  margin: 4px auto 7px;
  width: 4px;
  height: 4px;
}
@media screen and (max-width: 768px) {
  .formFlow {
    padding: 20px 20px 120px;
  }
  .formFlow-list {
    display: block;
    margin: 40px auto 0;
  }
  .formFlow-list-item {
    padding: 50px 4px 4px 4px;
    width: 100%;
    height: 110px;
  }
  .formFlow-list-item + .formFlow-list-item {
    margin-top: 50px;
    margin-left: 0;
  }
  .formFlow-list-item + .formFlow-list-item::before {
    border-style: solid;
    border-width: 20px 20px 0 20px;
    border-color: #0A3990 transparent transparent transparent;
    top: -35px;
    bottom: auto;
    left: 0;
    right: 0;
  }
  .formFlow-list-item .num {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    font-size: 18px;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
  }
  .formFlow-list-item .num strong {
    font-size: 26px;
    margin-left: 8px;
  }
  .formFlow-list-item h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 22px;
    -ms-writing-mode: horizontal-tb;
    -webkit-writing-mode: horizontal-tb;
            writing-mode: horizontal-tb;
  }
  .formFlow-list-item h3 .ico-circle {
    margin: 4px 10px 0 6px;
  }
}

.formManual {
  padding: 0 40px 140px;
}
.formManual-list {
  margin: 0 auto;
  max-width: 520px;
  width: 100%;
}
.formManual-list-item {
  border: solid #0A3A90 3px;
  text-align: center;
  padding: 40px 20px;
}
.formManual-list-item + .formManual-list-item {
  margin-top: 40px;
}
.formManual-list-item.is-tel p {
  line-height: 1.6;
}
.formManual-list-item.is-tel a {
  font-weight: 500;
  font-style: italic;
  margin-right: 4px;
}
.formManual-list-item h3 {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 20px;
  padding-bottom: 16px;
  position: relative;
}
.formManual-list-item h3::before {
  background: #0A3A90;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 30px;
  height: 2px;
}
.formManual-list-item strong {
  color: #0A3A90;
  font-weight: 500;
  font-size: 18px;
}
.formManual-list-item a {
  color: #0059FF;
  display: inline-block;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .formManual {
    padding: 0 20px 120px;
  }
  .formManual-list-item {
    padding: 30px 20px;
  }
  .formManual-list-item + .formManual-list-item {
    margin-top: 30px;
  }
  .formManual-list-item h3 {
    font-size: 18px;
    margin-bottom: 18px;
    padding-bottom: 18px;
  }
  .formManual-list-item h3::before {
    width: 20px;
  }
  .formManual-list-item p {
    font-size: 16px;
    line-height: 1.8;
  }
  .formManual-list-item strong {
    font-size: 16px;
  }
}

.form {
  border-top: solid #0A3A90 1px;
  padding: 80px 40px;
}
@media screen and (max-width: 768px) {
  .form {
    padding: 50px 20px;
  }
}

.form-content {
  margin: 60px auto 0;
  max-width: 800px;
  width: 100%;
}
.form-content-inner {
  margin-bottom: 60px;
}
.form-content ::-webkit-input-placeholder {
  color: #A9B6CC;
  font-size: 16px;
}
.form-content ::-moz-placeholder {
  color: #A9B6CC;
  font-size: 16px;
}
.form-content :-ms-input-placeholder {
  color: #A9B6CC;
  font-size: 16px;
}
.form-content ::-ms-input-placeholder {
  color: #A9B6CC;
  font-size: 16px;
}
.form-content ::placeholder {
  color: #A9B6CC;
  font-size: 16px;
}
.form-content :focus {
  outline: 2px solid #E6EDFA;
}
.form-content input, .form-content textarea {
  background: #E6EDFA;
  border: solid 2px #0A3A90;
  border-radius: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #000E29;
  cursor: pointer;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.12em;
  padding: 17px 16px 16px;
  width: 100%;
}
.form-content input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border: solid 1px #0A3A90;
  border-radius: 25vw;
  margin: 0 10px 0 0;
  padding: 0;
  width: 24px;
  height: 24px;
}
.form-content input[type=radio]:checked {
  border: solid 1px #0A3A90;
  position: relative;
}
.form-content input[type=radio]:checked::before {
  background: #0A3A90;
  background-size: 100%;
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 12px;
  height: 12px;
}
.form-content input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border: solid 1px #0A3A90;
  margin: 0 10px 0 0;
  padding: 0;
  position: relative;
  width: 24px;
  height: 24px;
}
.form-content input[type=checkbox]:checked::before {
  background: #0A3A90;
  background-size: 100%;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 12px;
  height: 12px;
}
.form-content select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: #E6EDFA;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-image: none;
  border: solid 2px #0A3A90;
  color: #000E29;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  padding: 0 32px 0 16px;
  width: 100%;
  height: 52px;
  outline: 0;
}
@media screen and (max-width: 768px) {
  .form-content {
    margin: 45px auto 0;
  }
  .form-content ::-webkit-input-placeholder {
    font-size: 14px;
  }
  .form-content ::-moz-placeholder {
    font-size: 14px;
  }
  .form-content :-ms-input-placeholder {
    font-size: 14px;
  }
  .form-content ::-ms-input-placeholder {
    font-size: 14px;
  }
  .form-content ::placeholder {
    font-size: 14px;
  }
  .form-content input, .form-content textarea {
    font-size: 14px;
    padding: 16px 12px 15px;
  }
}

.form-list {
  color: #0A3A90;
}
.form-list + .form-list {
  margin-top: 34px;
}
.form-list-dt {
  margin-bottom: 10px;
}
.form-list-dt__ttl {
  display: inline-block;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.12em;
  position: relative;
}
.form-list-dt__ttl.f-adjust01 {
  font-size: 17px;
}
.form-list-dt__ttl.is-required {
  padding-right: 50px;
}
.form-list-dt__ttl.is-required::after {
  background: #DB1616;
  color: #fff;
  content: "必須";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding-bottom: 1px;
  position: absolute;
  top: 5px;
  right: 0;
  width: 40px;
  height: 19px;
}
.form-list-dd.is-mBtm {
  margin-bottom: 14px;
}
.form-list-dd.is-mBtm-none {
  margin-bottom: 0;
}
.form-list-dd.is-ad .ttl {
  font-weight: normal;
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.form-list-dd.is-ad .form-list-dd-inputItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form-list-dd.is-ad .form-list-dd-inputItem .ico {
  font-weight: 500;
  font-size: 18px;
}
.form-list-dd.is-ad .form-list-dd-inputItem input {
  margin: 0 10px;
  width: 120px;
}
.form-list-dd-inputItem {
  width: 100%;
}
.form-list-dd-selectBox-item {
  position: relative;
  width: 220px;
}
.form-list-dd-selectBox-item::before {
  background: url(../img/ico/ico_arrow04_blu.svg) no-repeat;
  background-size: 100% auto;
  content: "";
  display: inline-block;
  pointer-events: none;
  position: absolute;
  top: 22px;
  right: 16px;
  width: 16px;
  height: 10px;
}
.form-list-dd-textareaItem {
  height: 320px;
}
.form-list-dd-textareaItem textarea {
  height: 100%;
}
.form-list-dd-radioBox, .form-list-dd-checkBox {
  background: #E6EDFA;
  border: solid 2px #0A3A90;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 30px 30px 16px 30px;
}
.form-list-dd-radioBox-label, .form-list-dd-checkBox-label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 32px 14px 0;
  position: relative;
  width: auto;
}
.form-list-dd-radioBox-label__txt, .form-list-dd-checkBox-label__txt {
  color: #000E29;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .form-list-dt {
    margin-bottom: 8px;
  }
  .form-list-dt__ttl.f-adjust01 {
    font-size: 13px;
  }
  .form-list-dd.is-mBtm {
    margin-bottom: 18px;
  }
  .form-list-dd.is-ad .form-list-dd-inputItem input {
    margin: 0 8px;
    width: 100px;
  }
  .form-list-dd-selectBox-item {
    width: 200px;
  }
  .form-list-dd-textareaItem {
    height: 180px;
  }
  .form-list-dd-radioBox, .form-list-dd-checkBox {
    display: block;
    padding: 20px 20px 2px;
  }
  .form-list-dd-radioBox-label, .form-list-dd-checkBox-label {
    margin: 0 0 20px 0;
  }
  .form-list-dd-radioBox-label__txt, .form-list-dd-checkBox-label__txt {
    color: #000E29;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}

.completion {
  padding: 20px 40px;
}
@media screen and (max-width: 768px) {
  .completion {
    padding: 0 20px;
  }
}

.form-ttlCntact {
  color: #0A3990;
  font-weight: 500;
  font-size: 38px;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .form-ttlCntact {
    font-size: 28px;
    margin-bottom: 35px;
  }
}

.form-txtCntact {
  font-weight: 500;
  font-size: 20px;
  line-height: 2.2;
  text-align: center;
  margin: 60px 0 80px;
}
.form-txtCntact strong {
  font-weight: 500;
  color: #0A3990;
}
@media screen and (max-width: 768px) {
  .form-txtCntact {
    font-size: 16px;
    margin: 40px 0 50px;
  }
}

.form-inner {
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
}

.confirmation {
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .confirmation {
    padding: 0 20px;
  }
}

.form-confirmation-inner {
  margin-bottom: 80px;
}
.form-confirmation-list {
  border-bottom: solid #D9D9D9 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 24px 0;
  position: relative;
}
.form-confirmation-list:first-child {
  border-top: solid #D9D9D9 1px;
}
.form-confirmation-list:first-child::before {
  background: #0A3A90;
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 250px;
  height: 1px;
}
.form-confirmation-list::before {
  background: #0A3A90;
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 250px;
  height: 1px;
}
.form-confirmation-list-dt {
  color: #0A3990;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  padding: 0 20px;
  width: 250px;
}
.form-confirmation-list-dd {
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
  padding: 0 20px;
  width: calc(100% - 250px);
}
@media screen and (max-width: 768px) {
  .form-confirmation-inner {
    margin-bottom: 60px;
  }
  .form-confirmation-list {
    display: block;
    padding: 24px 0;
  }
  .form-confirmation-list:first-child::before {
    content: none;
  }
  .form-confirmation-list::before {
    content: none;
  }
  .form-confirmation-list-dt {
    text-align: left;
    margin-bottom: 8px;
    padding: 0;
    width: 100%;
  }
  .form-confirmation-list-dd {
    font-size: 14px;
    padding: 0;
    width: 100%;
  }
}

.formError {
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .formError {
    padding: 0 20px;
  }
}

.form-error-inner {
  margin-bottom: 80px;
}
.form-error__txt {
  color: #DB1616;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
}
.form-error__txt + .form-error__txt {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .form-error__txt {
    font-size: 14px;
  }
}

.form-btInner.is-adjust01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.form-btInner.is-adjust01 .form-bt + .form-bt {
  margin-left: 40px;
}
@media screen and (max-width: 768px) {
  .form-btInner.is-adjust01 {
    display: block;
  }
  .form-btInner.is-adjust01 .form-bt {
    margin: 0 auto;
  }
  .form-btInner.is-adjust01 .form-bt + .form-bt {
    margin: 28px auto 0;
  }
}

.form-bt {
  background: #fff;
  border: solid #0A3A90 1px;
  border-radius: 25vw;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  max-width: 300px;
  width: 100%;
  height: 64px;
  overflow: hidden;
}
.form-bt.is-center {
  margin: 0 auto;
}
.form-bt.is-back::before {
  background: url(../img/ico/ico_arrow01_blu.svg) no-repeat;
  background-size: 100% auto;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16px;
  right: auto;
  margin: auto;
  width: 8px;
  height: 14px;
  z-index: 3;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.form-bt.is-back::after {
  background: #0A3A90;
  border-radius: 25vw;
  content: "";
  position: absolute;
  top: 0;
  left: auto;
  right: -100%;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.form-bt::before {
  background: url(../img/ico/ico_arrow01_blu.svg) no-repeat;
  background-size: 100% auto;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto;
  width: 8px;
  height: 14px;
  z-index: 3;
}
.form-bt::after {
  background: #0A3A90;
  border-radius: 25vw;
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.form-bt input {
  background: transparent;
  border: none;
  color: #0A3990;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  padding: 0 30px;
  width: 100%;
  height: 100%;
  z-index: 4;
}
@media screen and (min-width: 769px) {
  .form-bt {
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
  }
  .form-bt::before {
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
  }
  .form-bt::after {
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
  }
  .form-bt input {
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
  }
  .form-bt:hover {
    opacity: 1;
  }
  .form-bt:hover.is-back::before {
    bottom: 0;
    left: 12px;
    right: auto;
  }
  .form-bt:hover.is-back::after {
    left: auto;
    right: 0;
  }
  .form-bt:hover::before {
    background: url(../img/ico/ico_arrow01_wht.svg) no-repeat;
    background-size: 100% auto;
    right: 12px;
  }
  .form-bt:hover::after {
    left: 0;
  }
  .form-bt:hover input {
    color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .form-bt {
    max-width: 260px;
    height: 54px;
  }
}

/*  --------------------------------------------------------------------------------
  top
--------------------------------------------------------------------------------  */
.topMv {
  margin-top: 80px;
  position: relative;
}
.topMv-filter {
  background: rgba(10, 58, 144, 0.34);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}
.topMv-copy {
  position: absolute;
  bottom: 100px;
  left: 8%;
  width: 500px;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .topMv {
    margin-top: 60px;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100 - 60px - 68px);
  }
  .topMv-copy {
    bottom: 8.5vh;
    left: 4%;
    width: 220px;
  }
}

.topMv-list {
  width: 100%;
}
.topMv-list-item {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  width: 100%;
  height: calc(100vh - 80px);
  opacity: 1 !important;
}
.topMv-list-item.slick-active .imgInner .imgBox {
  -webkit-animation: slick_anime 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
          animation: slick_anime 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.topMv-list-item .imgInner {
  width: 12.5%;
  height: 100%;
  overflow: hidden;
}
.topMv-list-item .imgInner:nth-child(2) .imgBox .img {
  left: -100%;
}
.topMv-list-item .imgInner:nth-child(3) .imgBox .img {
  left: -200%;
}
.topMv-list-item .imgInner:nth-child(4) .imgBox .img {
  left: -300%;
}
.topMv-list-item .imgInner:nth-child(5) .imgBox .img {
  left: -400%;
}
.topMv-list-item .imgInner:nth-child(6) .imgBox .img {
  left: -500%;
}
.topMv-list-item .imgInner:nth-child(7) .imgBox .img {
  left: -600%;
}
.topMv-list-item .imgInner:nth-child(8) .imgBox .img {
  left: -700%;
}
.topMv-list-item .imgInner .imgBox {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 9;
}
.topMv-list-item .imgInner .img {
  background: url(../img/img/img_mv01.jpg) no-repeat center top;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 800%;
  height: 100%;
}
.topMv-list-item .imgInner .img.img02 {
  background: url(../img/img/img_mv02.jpg) no-repeat center top;
  background-size: cover;
}
.topMv-list-item .imgInner .img.img03 {
  background: url(../img/img/img_mv03.jpg) no-repeat center top;
  background-size: cover;
}
.topMv-list-item .imgInner .img.img04 {
  background: url(../img/img/img_mv04.jpg) no-repeat center top;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .topMv-list-item {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100 - 60px - 68px);
  }
  .topMv-list-item .imgInner {
    width: 20%;
  }
  .topMv-list-item .imgInner:nth-child(2) .imgBox .img {
    left: -100%;
  }
  .topMv-list-item .imgInner:nth-child(3) .imgBox .img {
    left: -200%;
  }
  .topMv-list-item .imgInner:nth-child(4) .imgBox .img {
    left: -300%;
  }
  .topMv-list-item .imgInner:nth-child(5) .imgBox .img {
    left: -400%;
  }
  .topMv-list-item .imgInner .img {
    background: url(../img/img/img_mv01_sp.jpg) no-repeat center top;
    background-size: cover;
    width: 500%;
  }
  .topMv-list-item .imgInner .img.img02 {
    background: url(../img/img/img_mv02_sp.jpg) no-repeat center top;
    background-size: cover;
  }
  .topMv-list-item .imgInner .img.img03 {
    background: url(../img/img/img_mv03_sp.jpg) no-repeat center top;
    background-size: cover;
  }
}

@-webkit-keyframes slick_anime {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}

@keyframes slick_anime {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}
.topMain {
  background: #fff;
  padding: 80px 0 220px;
}
@media screen and (max-width: 768px) {
  .topMain {
    padding: 20px 0 140px;
  }
}

.topJobInfo {
  padding: 20px 40px 180px;
}
.topJobInfo-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 50px auto 60px;
}
.topJobInfo-content-box {
  max-width: 480px;
  width: 100%;
}
.topJobInfo-content-box__ttl {
  color: #000E29;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  text-align: center;
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.topJobInfo-content-box__ttl::before {
  background: #0A3A90;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 80px;
  height: 2px;
}
.topJobInfo-content-box__txt {
  color: #000E29;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 30px;
}
.topJobInfo-content-box-item {
  display: -ms-grid;
  display: grid;
  gap: 25px;
}
.topJobInfo-content-box-item-inner {
  border: solid #0A3A90 3px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  padding: 55px 20px 35px;
}
.topJobInfo-content-box-item__ttl {
  position: absolute;
  top: 0;
  left: 0;
}
.topJobInfo-content-box-item__ttl span {
  display: inline-block;
  background: #0A3A90;
  color: #fff;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
  padding: 5px 15px 8px;
}
.topJobInfo-content-box-item-list {
  display: -ms-grid;
  display: grid;
  gap: 12px;
}
.topJobInfo-content-box-item-list-item a {
  border-bottom: solid #0A3A90 1px;
  display: block;
  padding-bottom: 20px;
}
.topJobInfo-content-box-item-list-item a .date {
  color: #000E29;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.topJobInfo-content-box-item-list-item a .txtBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.topJobInfo-content-box-item-list-item a .txtBox .cat {
  background: #1163F5;
  border-radius: 2px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  color: #fff;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.07em;
  margin-top: 1px;
  width: 70px;
  height: 22px;
}
.topJobInfo-content-box-item-list-item a .txtBox .ttl {
  color: #000E29;
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.07em;
  padding: 0 0 0 15px;
  width: calc(100% - 70px);
}
.topJobInfo-content-box-item-list-txtItem p {
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .topJobInfo {
    padding: 20px 20px 80px;
  }
  .topJobInfo-content {
    display: -ms-grid;
    display: grid;
    gap: 45px;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 50px auto;
  }
  .topJobInfo-content-box__ttl {
    font-size: 24px;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
  .topJobInfo-content-box__ttl::before {
    width: 60px;
    height: 2px;
  }
  .topJobInfo-content-box__txt {
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 30px;
  }
  .topJobInfo-content-box-item-inner {
    border: solid #0A3A90 2px;
    border-radius: 10px;
    padding: 45px 15px 25px;
  }
  .topJobInfo-content-box-item__ttl span {
    font-size: 20px;
    padding: 3px 12px 6px;
  }
  .topJobInfo-content-box-item-list {
    gap: 10px;
  }
  .topJobInfo-content-box-item-list-item a {
    padding-bottom: 15px;
  }
  .topJobInfo-content-box-item-list-item a .date {
    font-size: 14px;
  }
  .topJobInfo-content-box-item-list-item a .txtBox .cat {
    font-size: 11px;
    margin-top: 0;
    width: 60px;
    height: 20px;
  }
  .topJobInfo-content-box-item-list-item a .txtBox .ttl {
    font-size: 15px;
    padding: 0 10px;
    width: calc(100% - 60px);
  }
  .topJobInfo-content-box-item-list-txtItem p {
    font-size: 14px;
  }
}

.companyPhilosophy.is-top {
  overflow: hidden;
}

.js-slidein {
  opacity: 0;
  -webkit-transition: 1.2s 0.5s ease;
  transition: 1.2s 0.5s ease;
  -webkit-transform: translateX(calc(50vw + 50%));
          transform: translateX(calc(50vw + 50%));
}
.js-slidein .js-slidein-item01 {
  opacity: 0;
  -webkit-transition: 1.2s 1s ease;
  transition: 1.2s 1s ease;
  -webkit-transform: translateX(calc(50vw + 50%));
          transform: translateX(calc(50vw + 50%));
}
.js-slidein .js-slidein-item02 {
  display: block;
  opacity: 0;
  -webkit-transition: 1.2s 1.5s ease;
  transition: 1.2s 1.5s ease;
  -webkit-transform: translateX(calc(50vw + 50%));
          transform: translateX(calc(50vw + 50%));
}
.js-slidein.is-on {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.js-slidein.is-on .js-slidein-item01 {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.js-slidein.is-on .js-slidein-item02 {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.topCompany {
  padding: 20px 40px 180px;
}
.topCompany__txt {
  text-align: center;
  margin: 50px 0 60px;
}
.topCompany-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 70px;
}
.topCompany-list li {
  width: 50%;
}
.topCompany-list-logoItem {
  background: #0A3A90;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.topCompany-list-logoItem img {
  display: block;
  width: 80%;
}
@media screen and (max-width: 768px) {
  .topCompany {
    padding: 20px 20px 80px;
  }
  .topCompany__txt {
    margin: 32px 0 40px;
  }
  .topCompany-list {
    display: block;
    margin-bottom: 65px;
    position: relative;
    width: 95.52%;
    z-index: 2;
  }
  .topCompany-list::before {
    background: #0A3A90;
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .topCompany-list li {
    width: 100%;
  }
}

.topJob {
  padding: 20px 40px 200px;
}
.topJob__txt {
  text-align: center;
  margin: 50px 0 60px;
}
.topJob-imgInner {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .topJob {
    padding: 20px 20px 120px;
  }
  .topJob__txt {
    margin: 32px 0 40px;
  }
  .topJob-imgInner {
    position: relative;
    margin-bottom: 65px;
    width: 95.52%;
    z-index: 2;
  }
  .topJob-imgInner::before {
    background: #0A3A90;
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
}

.topForm {
  padding: 20px 40px 0;
}
.topForm .cmn-inner {
  background: url(../img/img/img_top04.jpg) no-repeat;
  background-size: cover;
  padding: 45px 80px;
  position: relative;
}
.topForm .cmn-inner::before {
  background: -webkit-gradient(linear, left top, right top, color-stop(10%, rgba(10, 58, 144, 0.5)), color-stop(50%, #0A3A90));
  background: linear-gradient(90deg, rgba(10, 58, 144, 0.5) 10%, #0A3A90 50%);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.topForm-txtBox {
  margin-left: auto;
  position: relative;
  width: 55%;
  z-index: 3;
}
.topForm-txtBox__txt {
  color: #fff;
  margin: 40px 0;
}
@media screen and (max-width: 950px) {
  .topForm .cmn-inner {
    padding: 60px 20px;
  }
  .topForm .cmn-inner::before {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(20%, rgba(10, 58, 144, 0.5)), color-stop(90%, #0A3A90));
    background: linear-gradient(0deg, rgba(10, 58, 144, 0.5) 20%, #0A3A90 90%);
  }
  .topForm-txtBox {
    text-align: center;
    margin-left: 0;
    width: 100%;
  }
  .topForm-txtBox__txt {
    color: #fff;
    margin: 50px 0;
  }
  .topForm-txtBox .cmn-bt.is-left {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .topForm {
    padding: 0;
  }
  .topForm .cmn-inner {
    background: url(../img/img/img_top04_sp.jpg) no-repeat;
    background-size: cover;
    padding: 40px 20px 50px;
  }
  .topForm-txtBox__txt {
    color: #fff;
    margin: 32px 0 45px;
  }
}

/*  --------------------------------------------------------------------------------
  company
--------------------------------------------------------------------------------  */
.companyCeo {
  margin-top: -80px;
  padding: 100px 40px 160px;
}
.companyCeo .cmn-inner {
  padding: 100px 0 0 18%;
  position: relative;
}
.companyCeo__subTtl {
  position: absolute;
  top: 0;
  left: -12px;
  width: 24%;
}
.companyCeo-txtBox {
  margin-left: auto;
  max-width: 660px;
  width: 100%;
}
.companyCeo-txtBox__ttl {
  color: #000E29;
  font-size: 38px;
  letter-spacing: 0.16em;
  margin-bottom: 28px;
  padding-bottom: 20px;
  position: relative;
}
.companyCeo-txtBox__ttl::before {
  background: #0A3A90;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
}
.companyCeo-txtBox__txt {
  margin-bottom: 24px;
}
.companyCeo-txtBox__ceoName {
  font-weight: 500;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .companyCeo {
    margin-top: -60px;
    padding: 80px 20px 80px;
  }
  .companyCeo .cmn-inner {
    padding: 86px 0 0 0;
  }
  .companyCeo__subTtl {
    left: -20px;
    width: 88%;
  }
  .companyCeo-txtBox__ttl {
    font-size: 28px;
    margin-bottom: 22px;
    padding-bottom: 16px;
  }
  .companyCeo-txtBox__ttl::before {
    width: 30px;
  }
  .companyCeo-txtBox__txt {
    margin-bottom: 14px;
  }
}

.companyPhilosophy {
  padding: 20px 40px 160px;
}
.companyPhilosophy__txt {
  font-size: 18px;
  text-align: center;
  margin: 40px auto 0;
}
.companyPhilosophy__txt strong {
  display: block;
  font-weight: 500;
  font-size: 42px;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
}
.companyPhilosophy__txt strong span {
  color: #0A3A90;
  margin: 0 6px;
}
@media screen and (max-width: 768px) {
  .companyPhilosophy {
    padding: 20px 20px 80px;
  }
  .companyPhilosophy__txt {
    font-size: 14px;
    margin: 20px auto 0;
  }
  .companyPhilosophy__txt strong {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .companyPhilosophy__txt strong span {
    margin: 0 4px;
  }
}

.companyProfile {
  padding: 20px 40px 160px;
}
.companyProfile .cmn-dl01 {
  margin: 60px auto 0;
}
@media screen and (max-width: 768px) {
  .companyProfile {
    padding: 20px 20px 80px;
  }
  .companyProfile .cmn-dl01 {
    margin: 38px auto 0;
  }
}

.companyOffice {
  padding: 20px 40px 240px;
}
.companyOffice-inner {
  margin-top: 100px;
}
.companyOffice-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.companyOffice-list + .companyOffice-list {
  margin-top: 160px;
}
.companyOffice-list-mapItem {
  position: relative;
  width: 60%;
  height: 450px;
  z-index: 2;
}
.companyOffice-list-mapItem iframe {
  width: 100%;
  height: 100%;
}
.companyOffice-list-txtItem {
  background: #0A3A90;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 50px 10px 10px 17%;
  position: absolute;
  top: 130px;
  right: 0;
  width: 55%;
  height: 400px;
}
.companyOffice-list-txtItem .inner {
  max-width: 320px;
  width: 100%;
}
.companyOffice-list-txtItem .ttl {
  margin-bottom: 20px;
}
.companyOffice-list-txtItem .ttl span {
  background: #fff;
  color: #0A3A90;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0.16em;
  padding: 1px 12px;
}
.companyOffice-list-txtItem .access {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
}
.companyOffice-list-txtItem .txt {
  color: #fff;
  font-weight: normal;
  font-size: 13px;
  line-height: 1.6;
  margin-top: 5px;
  padding-left: 14px;
  position: relative;
}
.companyOffice-list-txtItem .txt span {
  position: absolute;
  top: 0.5px;
  left: 0;
}
.companyOffice-list-txtItem .tel {
  color: #fff;
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  text-decoration: underline;
  margin-top: 15px;
}
.companyOffice-list-txtItem .fax {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  text-decoration: underline;
  margin-top: 6px;
}
.companyOffice-list-txtItem .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.companyOffice-list-txtItem .sns a {
  display: block;
  width: 42px;
}
@media screen and (max-width: 768px) {
  .companyOffice {
    padding: 20px 20px 80px;
  }
  .companyOffice-inner {
    margin: 40px auto 0;
    max-width: 480px;
    width: 100%;
  }
  .companyOffice-list {
    display: block;
  }
  .companyOffice-list + .companyOffice-list {
    margin-top: 50px;
  }
  .companyOffice-list-mapItem {
    position: relative;
    width: 89.55%;
    height: 225px;
  }
  .companyOffice-list-txtItem {
    margin: -36px 0 0 auto;
    padding: 70px 25px 30px;
    position: static;
    top: auto;
    right: auto;
    width: 89.55%;
    height: auto;
  }
  .companyOffice-list-txtItem .ttl {
    margin-bottom: 16px;
  }
  .companyOffice-list-txtItem .ttl span {
    font-size: 24px;
    padding: 1px 12px;
  }
  .companyOffice-list-txtItem .access {
    font-size: 14px;
  }
  .companyOffice-list-txtItem .txt {
    font-size: 12px;
  }
  .companyOffice-list-txtItem .tel {
    font-size: 16px;
  }
  .companyOffice-list-txtItem .fax {
    font-size: 16px;
  }
  .companyOffice-list-txtItem .sns {
    gap: 18px;
  }
  .companyOffice-list-txtItem .sns a {
    width: 40px;
  }
}

.companyHistory {
  padding: 20px 40px 0;
}
.companyHistory .cmn-dl01 {
  margin: 60px auto 0;
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .companyHistory {
    padding: 20px 20px 0;
  }
  .companyHistory .cmn-dl01 {
    margin: 38px auto 0;
  }
}

/*  --------------------------------------------------------------------------------
  job
--------------------------------------------------------------------------------  */
.jobFaq {
  padding: 20px 40px 140px;
}
.jobFaq-inner {
  margin: 60px auto 100px;
  max-width: 800px;
  width: 100%;
}
.jobFaq-list {
  background: #5C7DBA;
}
.jobFaq-list + .jobFaq-list {
  margin-top: 20px;
}
.jobFaq-list-item {
  color: #fff;
  position: relative;
}
.jobFaq-list-item.is-q {
  cursor: pointer;
  padding: 12px 70px;
}
.jobFaq-list-item.is-q.is-on .ico.is-arrow::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.jobFaq-list-item.is-q p {
  display: block;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.8;
  width: 100%;
}
.jobFaq-list-item.is-a {
  display: none;
  padding: 12px 70px 22px;
}
.jobFaq-list-item.is-a p {
  display: inline-block;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.8;
  width: 100%;
}
.jobFaq-list-item .ico {
  background: #0A3A90;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-style: italic;
  font-size: 24px;
  position: absolute;
  top: 10px;
  width: 40px;
  height: 40px;
}
.jobFaq-list-item .ico.ico-q {
  padding-left: 3px;
  left: 10px;
}
.jobFaq-list-item .ico.ico-a {
  padding-left: 3px;
  left: 10px;
}
.jobFaq-list-item .ico.is-arrow {
  right: 10px;
}
.jobFaq-list-item .ico.is-arrow::before {
  background: url(../img/ico/ico_arrow02_wht.svg) no-repeat;
  background-size: 100% auto;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 20px;
  height: 10px;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
@media screen and (max-width: 768px) {
  .jobFaq {
    padding: 20px 20px 60px;
  }
  .jobFaq-inner {
    margin: 38px auto 60px;
  }
  .jobFaq-list-item.is-q {
    padding: 3px 36px 6px;
  }
  .jobFaq-list-item.is-q p {
    font-size: 14px;
  }
  .jobFaq-list-item.is-a {
    display: none;
    padding: 4.5px 6px 6px 34px;
  }
  .jobFaq-list-item.is-a p {
    font-size: 12px;
  }
  .jobFaq-list-item .ico {
    font-size: 14px;
    top: 6px;
    width: 20px;
    height: 20px;
  }
  .jobFaq-list-item .ico.ico-q {
    padding-left: 2px;
    left: 6px;
  }
  .jobFaq-list-item .ico.ico-a {
    padding-left: 2px;
    left: 6px;
  }
  .jobFaq-list-item .ico.is-arrow {
    right: 6px;
  }
  .jobFaq-list-item .ico.is-arrow::before {
    width: 15px;
    height: 5px;
  }
}

.jobFlow {
  padding: 20px 40px 160px;
}
.jobFlow-list {
  margin: 70px auto 100px;
  max-width: 800px;
  width: 100%;
}
.jobFlow-list-item {
  background: #5C7DBA;
  text-align: center;
  padding: 60px 20px;
  position: relative;
}
.jobFlow-list-item + .jobFlow-list-item {
  margin-top: 138px;
}
.jobFlow-list-item + .jobFlow-list-item::before {
  background: url(../img/ico/ico_arrow03_blu.svg) no-repeat;
  background-size: 100% auto;
  content: "";
  position: absolute;
  top: -87px;
  left: 0;
  right: 0;
  margin: auto;
  width: 120px;
  height: 42px;
}
.jobFlow-list-item .num {
  background: #0A3A90;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  font-style: italic;
  font-size: 24px;
  position: absolute;
  top: 0;
  left: 0;
  width: 140px;
  height: 60px;
}
.jobFlow-list-item .num strong {
  font-weight: 500;
  font-size: 32px;
  margin-left: 8px;
}
.jobFlow-list-item .ttl {
  color: #fff;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0.16em;
}
.jobFlow-list-item .ttl.ttl02 {
  background: #0A3A90;
  padding: 20px 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.jobFlow-list-item .txt {
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  margin-top: 36px;
}
.jobFlow-list-item .txt.txt02 {
  line-height: 1.8;
  margin-top: 60px;
}
.jobFlow-list-item .imgBox {
  margin: 36px auto 0;
  max-width: 400px;
  width: 100%;
}
.jobFlow-list-item .imgBox.w-300 {
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  .jobFlow {
    padding: 20px 20px 100px;
  }
  .jobFlow-list {
    margin: 38px auto 70px;
  }
  .jobFlow-list-item {
    padding: 74px 20px 44px;
  }
  .jobFlow-list-item + .jobFlow-list-item {
    margin-top: 88px;
  }
  .jobFlow-list-item + .jobFlow-list-item::before {
    top: -60px;
    width: 90px;
    height: 30px;
  }
  .jobFlow-list-item .num {
    font-size: 18px;
    width: 100px;
    height: 47px;
  }
  .jobFlow-list-item .num strong {
    font-size: 26px;
    margin-left: 6px;
  }
  .jobFlow-list-item .ttl {
    font-size: 20px;
  }
  .jobFlow-list-item .ttl.ttl02 {
    font-size: 22px;
    line-height: 1.4;
    padding: 12px 10px;
  }
  .jobFlow-list-item .txt {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 24px;
  }
  .jobFlow-list-item .txt.txt02 {
    line-height: 1.8;
    margin-top: 40px;
  }
  .jobFlow-list-item .imgBox {
    margin: 30px auto 0;
    max-width: 280px;
  }
  .jobFlow-list-item .imgBox.w-300 {
    max-width: 280px;
  }
}

.jobReasons {
  padding: 20px 40px 0;
}
.jobReasons__txt {
  font-size: 16px;
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .jobReasons {
    padding: 20px 20px 0;
  }
  .jobReasons__txt {
    font-size: 14px;
    margin-top: 38px;
  }
}

/*  --------------------------------------------------------------------------------
  company
--------------------------------------------------------------------------------  */
.csrSec {
  padding: 20px 40px 160px;
}
.csrSec .cmn-inner {
  display: -ms-grid;
  display: grid;
  gap: 80px;
}
.csrSec-list {
  border-bottom: solid 3px #0A3A90;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 50px;
}
.csrSec-list-txtItem {
  max-width: 520px;
  width: 100%;
}
.csrSec-list-txtItem h2 {
  display: block;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  position: relative;
}
.csrSec-list-txtItem h2::before {
  background: #0A3A90;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
}
.csrSec-list-txtItem h3 {
  display: block;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}
.csrSec-list-txtItem p {
  display: block;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 30px;
}
.csrSec-list-youtubeItem {
  max-width: 440px;
  width: 100%;
}
.csrSec-list-youtubeItem .box01 {
  margin-bottom: 10px;
}
.csrSec-list-youtubeItem .box01 video {
  width: 100%;
  height: 100%;
}
.csrSec-list-youtubeItem .box02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}
.csrSec-list-youtubeItem .box02 span {
  display: block;
  width: 100%;
  height: 100px;
}
.csrSec-list-youtubeItem .box02 span.imgFit img {
  width: 100%;
  height: 100%;
}
.csrSec-list-youtubeItem .box03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
}
.csrSec-list-youtubeItem .box03 a {
  display: block;
  width: 100%;
}
.csrSec-list-youtubeItem .message {
  font-weight: bold;
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: #0A3A90;
  margin-top: 20px;
}
@media screen and (max-width: 1000px) {
  .csrSec {
    padding: 20px 20px 80px;
  }
  .csrSec .cmn-inner {
    display: -ms-grid;
    display: grid;
    gap: 60px;
  }
  .csrSec-list {
    display: -ms-grid;
    display: grid;
    gap: 0;
    margin: 0 auto;
    padding-bottom: 40px;
    max-width: 580px;
    width: 100%;
  }
  .csrSec-list-txtItem {
    display: contents;
    max-width: 100%;
  }
  .csrSec-list-txtItem h2 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 18px;
  }
  .csrSec-list-txtItem .content {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
  }
  .csrSec-list-txtItem h3 {
    font-size: 16px;
  }
  .csrSec-list-txtItem p {
    font-size: 13px;
  }
  .csrSec-list-youtubeItem {
    border-bottom: solid 1px #0A3A90;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    max-width: 100%;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .csrSec-list-youtubeItem .box01 {
    margin-bottom: 10px;
  }
  .csrSec-list-youtubeItem .box01 video {
    width: 100%;
    height: 100%;
  }
  .csrSec-list-youtubeItem .box02 {
    gap: 10px;
  }
  .csrSec-list-youtubeItem .box02 span {
    display: block;
    width: 100%;
    height: 80px;
  }
  .csrSec-list-youtubeItem .box03 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }
  .csrSec-list-youtubeItem .box03 a {
    display: block;
    width: 100%;
  }
  .csrSec-list-youtubeItem .message {
    font-size: 14px;
    margin-top: 15px;
  }
}

/*  --------------------------------------------------------------------------------
  progress
--------------------------------------------------------------------------------  */
.progressMain {
  padding: 100px 40px;
}
.progressMain .progress-list {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.progressMain .progress-list li {
  border: solid #ccc 1px;
  border-top: none;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.08em;
  padding: 8px;
}
.progressMain .progress-list li a {
  color: #0A3A90;
  text-decoration: underline;
}
.progressMain .progress-list li.is-ttl {
  border-top: solid #ccc 1px;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.12em;
  text-align: center;
}
.progressMain .progress-list li:nth-child(1) {
  border-right: none;
  width: 30%;
}
.progressMain .progress-list li:nth-child(2) {
  width: 30%;
}
.progressMain .progress-list li:nth-child(3) {
  border-right: none;
  width: 10%;
  text-align: center;
}
.progressMain .progress-list li:nth-child(4) {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .progressMain {
    padding: 100px 20px;
  }
  .progressMain .progress-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .progressMain .progress-list li {
    font-size: 12px;
  }
  .progressMain .progress-list li.is-ttl {
    font-size: 12px;
  }
  .progressMain .progress-list li:nth-child(1) {
    border-right: none;
    width: 40%;
  }
  .progressMain .progress-list li:nth-child(2) {
    width: 40%;
  }
  .progressMain .progress-list li:nth-child(3) {
    border-right: none;
    width: 10%;
    text-align: center;
  }
  .progressMain .progress-list li:nth-child(4) {
    width: 20%;
  }
}
/*# sourceMappingURL=style.css.map */