@charset "UTF-8";
/*============================================================================================================
	base
============================================================================================================*/
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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
a:hover {
  opacity: 0.7;
}

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

@media screen and (min-width: 769px) {
  .hidden-pc {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .hidden-sp {
    display: none !important;
  }
}
/*------------------------------------------
	font
------------------------------------------*/
body {
  background: #fff;
  color: #323C43;
  font-size: 15px;
  line-height: 2;
  font-weight: 500;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
    height: 100%;
  }
}

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

/*------------------------------------------
	animation
------------------------------------------*/
@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  20% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
  40% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  60% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
  80% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  20% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
  40% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  60% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
  80% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
}
/*------------------------------------------
	frame
------------------------------------------*/
/*------------------------------------------
	frame
------------------------------------------*/
@media screen and (min-width: 769px) {
  body {
    min-width: 1000px;
  }
}

body.main {
  overflow: hidden;
}

.inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .inner.is-small {
    max-width: 900px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .inner.is-wide {
    max-width: 1020px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .inner.is-large {
    max-width: 1080px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/*============================================================================================================
	loading
============================================================================================================*/
/* 1st view */
.js-loading {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
}
.js-loading-anime {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .js-loading-anime {
    width: 100%;
  }
}

.js-loading,
.js-loading-logo,
.js-loadingBg {
  display: none;
}

/* 2nd view */
/* 3rd view */
/*------------------------------------------
	scroll action
------------------------------------------*/
.js-scroll {
  -webkit-transition: opacity 1s, -webkit-transform 1.5s;
  transition: opacity 1s, -webkit-transform 1.5s;
  transition: opacity 1s, transform 1.5s;
  transition: opacity 1s, transform 1.5s, -webkit-transform 1.5s;
}
.js-scroll.is-fadeInUp {
  opacity: 0;
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
}
.js-scroll.is-fadeInUp.is-view {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .js-scroll.is-fadeInUp {
    -webkit-transform: translate(0, 40px);
            transform: translate(0, 40px);
  }
}
@media screen and (max-width: 768px) {
  .js-scroll.is-sp-off {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

/*------------------------------------------
	bubble animation
------------------------------------------*/
.bubble {
  position: absolute;
  bottom: -50px;
  background-color: transparent;
  border-radius: 50%;
  pointer-events: none;
  -webkit-box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2);
          box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2);
  -webkit-animation: bubble 8s linear infinite;
          animation: bubble 8s linear infinite;
}

.bubble::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0.25) translate(-70%, -70%);
          transform: scale(0.25) translate(-70%, -70%);
  background: radial-gradient(rgba(255, 255, 255, 0.5), transparent);
  border-radius: 50%;
}

@-webkit-keyframes bubble {
  0% {
    -webkit-transform: translatY(0);
            transform: translatY(0);
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-100vh);
            transform: translateY(-100vh);
    opacity: 0;
  }
}

@keyframes bubble {
  0% {
    -webkit-transform: translatY(0);
            transform: translatY(0);
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-100vh);
            transform: translateY(-100vh);
    opacity: 0;
  }
}
/*============================================================================================================
	l-header
============================================================================================================*/
.l-header {
  height: 105px;
  padding: 0 3%;
  margin: 0 auto;
  position: fixed;
  z-index: 9000;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header__logo {
  width: 25%;
  max-width: 302px;
}
.l-header__logo a, .l-header__logo img {
  display: block;
}
.l-header__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-left: 20px;
}
.l-header__joblist {
  position: fixed;
  top: 35%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #185688;
  width: 70px;
  height: 327px;
  border-radius: 10px 0 0 10px;
  border-right: none;
  color: #fff;
  font-weight: 700;
}
.l-header__joblist a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding: 70px 0 0;
  font-style: 15px;
  letter-spacing: 0.1em;
}
.l-header__joblist a::before {
  content: "";
  display: block;
  background: url("../assets/img/ico_frasco.svg") no-repeat center/contain;
  width: 24px;
  height: 75px;
  position: absolute;
  top: 10px;
  right: 0;
  left: 0;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .l-header__joblist {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
    letter-spacing: 0.3em;
  }
  .l-header__joblist a:hover {
    opacity: 1;
  }
  .l-header__joblist a:hover::before {
    -webkit-animation: shake 1s;
    animation: shake 1s;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    position: relative;
    height: 50px;
    padding: 0 0 0 10px;
  }
  .l-header__logo {
    width: 170px;
    max-width: none;
  }
  .l-header__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    margin-left: 0;
    margin-top: 20px;
  }
}

/*============================================================================================================
	l-footer
============================================================================================================*/
.l-footer {
  background: #185688;
  padding: 0 3%;
}
.l-footer p, .l-footer li {
  margin: 0;
}
.l-footer a, .l-footer span {
  line-height: inherit;
  color: inherit;
  text-decoration: none;
  font-family: inherit;
  font-weight: inherit;
}
.l-footer a, .l-footer li, .l-footer div, .l-footer span {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-footer-inner {
  overflow: hidden;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 80px 10px;
}
.l-footer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 64px;
}
.l-footer-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 0 auto;
  gap: 64px;
}
.l-footer-nav {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  color: #fff;
}
.l-footer-nav__item {
  list-style: none;
  margin: 5px 0 !important;
  color: #fff;
  font-size: 14px;
  text-align: center;
}
.l-footer-nav__item + .l-footer-nav__item {
  position: relative;
}
.l-footer-nav__item + .l-footer-nav__item::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 1px;
  height: 80%;
  background: #fff;
  margin: auto;
}
.l-footer-nav__item a {
  color: inherit;
  display: block;
  padding: 0 15px;
  text-decoration: none;
}
.l-footer-nav__item a:hover {
  opacity: 1;
  text-decoration: underline;
}
.l-footer-nav__company {
  font-size: 21px;
  color: #fff;
  font-weight: bold;
}
.l-footer-nav__address {
  color: #fff;
  line-height: 2.25 !important;
  font-weight: normal;
}
.l-footer-list {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  color: #fff;
}
.l-footer-list:first-child {
  margin-bottom: 20px;
}
.l-footer-list__item {
  list-style: none;
  margin: 5px 0 !important;
  color: #fff;
  font-size: 15px;
  font-weight: normal;
}
.l-footer-list__item a {
  color: inherit;
  display: block;
  text-decoration: none;
}
.l-footer-list__item a:hover {
  opacity: 1;
  text-decoration: underline;
}
.l-footer-list__company {
  font-size: 21px;
  color: #fff;
  font-weight: bold;
}
.l-footer-list__address {
  color: #fff;
  line-height: 2.25 !important;
  font-weight: normal;
}
.l-footer-copyright {
  color: #fff;
  font-size: 12px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .l-footer .hidden-pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 50px 0;
  }
  .l-footer .hidden-sp {
    display: none;
  }
  .l-footer-inner {
    padding: 0 30px 20px;
  }
  .l-footer-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
  }
  .l-footer-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 50px 0 0;
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .l-footer-nav {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
    color: #fff;
  }
  .l-footer-nav__item {
    list-style: none;
    margin: 5px 0 !important;
    color: #fff;
    font-size: 14px;
    text-align: center;
  }
  .l-footer-nav__item + .l-footer-nav__item {
    position: relative;
  }
  .l-footer-nav__item + .l-footer-nav__item::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    content: "";
    display: block;
    width: 1px;
    height: 80%;
    background: #fff;
    margin: auto;
  }
  .l-footer-nav__item a {
    color: inherit;
    display: block;
    padding: 0 15px;
    text-decoration: none;
  }
  .l-footer-nav__item a:hover {
    opacity: 1;
    text-decoration: underline;
  }
  .l-footer-nav__company {
    font-size: 21px;
    color: #fff;
    font-weight: bold;
  }
  .l-footer-nav__address {
    color: #fff;
    line-height: 2.25 !important;
    font-weight: normal;
  }
  .l-footer-list {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
    color: #fff;
  }
  .l-footer-list:first-child {
    margin-bottom: 20px;
  }
  .l-footer-list__item {
    list-style: none;
    margin: 5px 0 !important;
    color: #fff;
    font-size: 15px;
    font-weight: normal;
  }
  .l-footer-list__item a {
    color: inherit;
    display: block;
    text-decoration: none;
  }
  .l-footer-list__item a:hover {
    opacity: 1;
    text-decoration: underline;
  }
  .l-footer-list__company {
    font-size: 21px;
    color: #fff;
    font-weight: bold;
  }
  .l-footer-list__address {
    color: #fff;
    line-height: 2.25 !important;
    font-weight: normal;
  }
  .l-footer-copyright {
    width: 100%;
    margin: 0 auto !important;
    text-align: center;
    font-size: 10px;
  }
}

.pagetop {
  width: 60px;
  height: 60px;
  display: none;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 9995;
}
.pagetop a {
  width: 100%;
  height: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .pagetop {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 10px;
  }
}

/*============================================================================================================
	nav
============================================================================================================*/
.l-nav a {
  display: block;
}
.l-nav__joblist {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0;
  width: 100%;
  margin: 0 auto;
  border-radius: 10px;
  color: #fff;
  text-align: center;
}
.l-nav__joblist a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70px;
  background: #185688;
  border-radius: inherit;
}
.l-nav__joblist a::before {
  content: "";
  display: block;
  background: url("../assets/img/ico_frasco.svg") no-repeat center/contain;
  width: 30px;
  height: 64px;
  position: absolute;
  left: 15px;
  top: -20px;
}

/* PC */
@media screen and (min-width: 769px) {
  .l-nav {
    display: block !important;
    height: auto !important;
    margin: 0 0 0 auto;
  }
  .l-nav-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .l-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 40px;
  }
  .l-nav-list__item {
    margin-right: 32px;
    font-size: 16px;
    text-align: center;
    line-height: 1.4;
  }
  .l-nav-list__item:last-of-type {
    margin-right: 0;
  }
  .l-nav-list__item a {
    position: relative;
    padding: 10px 0;
  }
  .l-nav-list__item a:hover {
    opacity: 1;
    color: #185688;
  }
  .l-nav-list__item a:hover::before {
    width: 100%;
    opacity: 1;
  }
  .l-nav-list__item a::before {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    display: block;
    width: 1px;
    height: 1px;
    background: #185688;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .l-nav__joblist a:hover {
    opacity: 1;
    letter-spacing: 0.1em;
  }
  .l-nav__joblist a:hover::before {
    -webkit-animation: shake 1s;
    animation: shake 1s;
  }
}
@media screen and (min-width: 769px) and (max-width: 1120px) {
  .l-nav-list {
    margin-right: 20px;
  }
  .l-nav-list__item {
    margin-right: 18px;
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .gnavBtn {
    overflow: hidden;
    cursor: pointer;
    width: 50px;
    height: 50px;
    z-index: 9992;
    position: fixed;
    top: 0;
    right: 10px;
  }
  .gnavBtn span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 26px;
    height: 1px;
    background: #609CCC;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .gnavBtn span:nth-of-type(1) {
    top: 15px;
  }
  .gnavBtn span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .gnavBtn span:nth-of-type(3) {
    bottom: 15px;
  }
  .gnavBtn.is-close span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(-45deg);
            transform: translateY(9px) rotate(-45deg);
  }
  .gnavBtn.is-close span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
  }
  .gnavBtn.is-close span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
            transform: translateY(-10px) rotate(45deg);
  }
  .l-nav {
    display: none;
    padding: 70px 0 60px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9991;
    background: rgba(255, 255, 255, 0.95);
    overflow: auto;
  }
  .l-nav::-webkit-scrollbar {
    display: none;
  }
  .l-nav-list__item {
    font-size: 15px;
    border-bottom: 1px solid #333;
  }
  .l-nav-list__item a {
    padding: 12px 30px 12px 20px;
    background: url("../img/ico_arrow02.webp") no-repeat right 15px center/12px;
  }
  .l-nav__joblist {
    font-size: 14px;
    max-width: 280px;
    margin-top: 40px;
  }
  .l-nav__joblist a {
    height: 60px;
    padding-left: 18px;
  }
  .l-nav__joblist a::before {
    left: 20px;
    width: 30px;
    height: 60px;
  }
}
/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  background: url("../img/bg_main00.svg") center repeat;
  height: 800px;
  /* SP */
}
.l-mv-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}
.l-mv .bg01 {
  position: absolute;
  width: 1280px;
  margin-top: 120px;
  z-index: 2;
}
.l-mv .bg02 {
  position: absolute;
  width: 740px;
  margin-top: 310px;
  left: 22.5%;
  z-index: 4;
}
.l-mv__anime {
  position: relative;
  margin: 0 auto;
}
.l-mv .anime01 {
  position: absolute;
  width: 535px;
  top: 260px;
  left: 22%;
  z-index: 3;
}
.l-mv .anime02 {
  position: absolute;
  width: 336px;
  top: 418px;
  left: -2%;
  z-index: 5;
}
.l-mv .anime03 {
  position: absolute;
  width: 449px;
  top: 418px;
  right: 2%;
  z-index: 5;
}
.l-mv .anime04 {
  position: absolute;
  width: 426px;
  top: 122px;
  right: 0;
  z-index: 5;
}
.l-mv .anime05 {
  position: absolute;
  width: 139px;
  top: 316px;
  left: 19.6%;
  z-index: 2;
}
.l-mv .anime06 {
  position: absolute;
  width: 625px;
  top: 310px;
  left: 25.6%;
  z-index: 4;
}
@media screen and (max-width: 768px) {
  .l-mv {
    height: 100vh;
    background-repeat: no-repeat;
    background-position: top;
    margin-top: -50px;
    overflow: hidden;
  }
  .l-mv-inner {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
  }
  .l-mv .bg01 {
    position: absolute;
    width: 100%;
    margin-top: 50px;
    z-index: 2;
  }
  .l-mv .bg02 {
    display: none;
  }
  .l-mv__anime {
    position: relative;
    margin: 0 auto;
    text-align: center;
  }
  .l-mv .anime01 {
    display: none;
  }
  .l-mv .anime02 {
    display: none;
  }
  .l-mv .anime03 {
    position: absolute;
    width: 100%;
    top: 364px;
    right: 0;
    z-index: 5;
  }
  .l-mv .anime04 {
    position: relative;
    width: 356px;
    top: 70px;
  }
  .l-mv .anime05 {
    width: 120px;
    top: 270px;
    left: 5.5%;
  }
  .l-mv .anime06 {
    position: absolute;
    width: 100%;
    top: 271px;
    left: 38.6%;
    z-index: 4;
    scale: 1.3;
  }
}
@media screen and (max-width: 375px) {
  .l-mv {
    height: 100vh;
  }
  .l-mv .anime03 {
    width: 95%;
    top: 334px;
    right: auto;
  }
}

/*------------------------------------------
	.c-tit01
------------------------------------------*/
.c-tit01 {
  color: #323C43;
  font-weight: 700;
  font-size: 21px;
  text-align: center;
  letter-spacing: 0;
}
.c-tit01__en {
  padding: 0;
  display: block;
  position: relative;
  color: #fff;
  font-size: 72px;
  font-family: "Roboto", sans-serif;
  line-height: 1.2;
}
.c-tit01__en.is-blue {
  color: #185688;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    font-size: 15px;
  }
  .c-tit01__en {
    margin-bottom: 8px;
    padding-top: 28px;
    font-size: 44px;
  }
  .c-tit01__en::before {
    height: 20px;
  }
  .c-tit01.is-left .c-tit01__en {
    padding: 0 0 0 28px;
  }
  .c-tit01.is-left .c-tit01__en::before {
    left: 0;
    width: 20px;
  }
}

/*------------------------------------------
	.c-tit02
------------------------------------------*/
.c-tit02 {
  color: #323C43;
  font-weight: 700;
  font-size: 17px;
  text-align: center;
  letter-spacing: 0;
}
.c-tit02__en {
  padding: 0;
  display: block;
  position: relative;
  color: #185688;
  font-size: 52px;
  font-family: "Roboto", sans-serif;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .c-tit02 {
    font-size: 14px;
  }
  .c-tit02__en {
    margin-bottom: 8px;
    padding-top: 28px;
    font-size: 34px;
  }
  .c-tit02__en::before {
    height: 20px;
  }
  .c-tit02.is-left .c-tit01__en {
    padding: 0 0 0 28px;
  }
  .c-tit02.is-left .c-tit01__en::before {
    left: 0;
    width: 20px;
  }
}

/*------------------------------------------
	.c-tit03
------------------------------------------*/
.c-tit03 {
  color: #185688;
  font-weight: 700;
  font-size: 44px;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .c-tit03 {
    font-size: 22px;
  }
}

.eachTextAnime span {
  opacity: 0;
}

.eachTextAnime.appeartext span {
  -webkit-animation: text_anime_on 1s ease-out forwards;
          animation: text_anime_on 1s ease-out forwards;
}

@-webkit-keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*------------------------------------------
	secIntro
------------------------------------------*/
.secIntro {
  padding: 160px 0;
  position: relative;
}
.secIntro::before {
  content: "";
  background: url("../img/img_deco02.svg") no-repeat;
  height: 520px;
  width: 446px;
  position: absolute;
  left: 0;
  bottom: 20px;
  z-index: -1;
}
.secIntro::after {
  content: "";
  background: url("../img/img_deco01.svg") no-repeat;
  height: 545px;
  width: 292px;
  position: absolute;
  right: 0;
  top: 20px;
  z-index: -1;
}
.secIntro-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
.secIntro-leadBox-en {
  font-size: 90px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1;
  color: #185688;
}
.secIntro-leadBox-ja {
  font-size: 44px;
  font-weight: bold;
  color: #848484;
  margin-top: 32px;
  letter-spacing: 0.2em;
}
.secIntro-txtBox-txt {
  font-size: 18px;
  font-weight: bold;
  line-height: 3;
}
.secIntro-txtBox-txt + .secIntro-txtBox-txt {
  margin-top: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1700px) {
  .secIntro::before {
    background-size: contain;
    height: 300px;
    width: 16%;
  }
  .secIntro::after {
    background-size: contain;
    height: 300px;
    width: 9%;
  }
}
@media screen and (max-width: 768px) {
  .secIntro {
    padding: 80px 0;
  }
  .secIntro::before {
    background-size: contain;
    height: 270px;
    opacity: 0.2;
    width: 100%;
  }
  .secIntro::after {
    background-size: contain;
    height: 270px;
    width: 35%;
  }
  .secIntro-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .secIntro-leadBox-en {
    font-size: 60px;
    font-family: "Roboto", sans-serif;
    line-height: 1;
    color: #185688;
  }
  .secIntro-leadBox-ja {
    font-size: 28px;
    font-weight: bold;
    color: #848484;
    margin-top: 32px;
    letter-spacing: 0.2em;
  }
  .secIntro-txtBox {
    width: 90%;
  }
  .secIntro-txtBox-txt {
    font-size: 14px;
    font-weight: bold;
    line-height: 2;
  }
  .secIntro-txtBox-txt + .secIntro-txtBox-txt {
    margin-top: 20px;
  }
}

/*------------------------------------------
	secProject
------------------------------------------*/
.secProject {
  padding: 100px 0 360px;
  position: relative;
  background: url("../img/bg_project.webp") no-repeat;
  background-size: cover;
  height: 900px;
}
.secProject-bg {
  display: none;
}
.secProject::before {
  content: "";
  background: url("../img/fig_project.webp") no-repeat bottom/cover;
  height: 405px;
  width: 706px;
  position: absolute;
  left: 0;
  bottom: -10px;
  z-index: 1;
}
.secProject-bubble {
  width: 100%;
}
.secProject-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
  counter-reset: number 0;
}
.secProject-list__item {
  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;
  width: 300px;
  height: 300px;
  background: #fff;
  border-radius: 50%;
  position: relative;
  -webkit-animation: fuwafuwa 4s infinite;
          animation: fuwafuwa 4s infinite;
}
.secProject-list__item img {
  width: 100px;
}
.secProject-list__item:nth-child(2) {
  margin-top: 50px;
  -webkit-animation: fuwafuwa 5s infinite;
          animation: fuwafuwa 5s infinite;
}
.secProject-list__item:nth-child(3) {
  -webkit-animation: fuwafuwa 6s infinite;
          animation: fuwafuwa 6s infinite;
}
.secProject-list__item::before {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero) " ";
  height: 100%;
  position: absolute;
  color: #185688;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 72px;
  top: -20px;
  left: 0;
  z-index: 1;
}
@-webkit-keyframes fuwafuwa {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes fuwafuwa {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
.secProject-list__txt {
  font-size: 21px;
  font-weight: bold;
}
.secProject__btn {
  margin-top: 10px;
}
.secProject__btn a {
  background: #185688;
  border-radius: 50px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 280px;
  height: 40px;
  padding: 10px 25px;
  color: #fff;
  border: 1px solid #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  font-weight: 700;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .secProject {
    padding: 0;
    height: auto;
    overflow: hidden;
  }
  .secProject-bg {
    display: block;
    width: 80%;
    margin: 40px auto 0;
  }
  .secProject-bg img {
    width: 100%;
  }
  .secProject-inner {
    padding: 44px 0 0px;
  }
  .secProject::before {
    content: none;
  }
  .secProject-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .secProject-list__item {
    height: auto;
    -webkit-animation: none;
            animation: none;
    background: none;
  }
  .secProject-list__item img {
    background: #fff;
    border-radius: 50%;
    padding: 5px;
  }
  .secProject-list__item:nth-child(2) {
    margin-top: 0;
    -webkit-animation: none;
            animation: none;
  }
  .secProject-list__item:nth-child(3) {
    -webkit-animation: none;
            animation: none;
  }
  .secProject-list__item::before {
    font-size: 40px;
    top: -30px;
    left: 80px;
  }
  .secProject__btn {
    margin-top: 20px;
  }
  .secProject__btn a {
    background: #185688;
    border-radius: 50px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 300px;
    max-width: 280px;
    height: 55px;
    padding: 10px 25px;
    color: #fff;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    font-weight: 700;
    font-size: 18px;
  }
}

figure.hover-parent {
  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;
  overflow: hidden;
  gap: 32px;
}

figcaption.hover-mask {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(24, 86, 136, 0.9);
  opacity: 0;
  border-radius: 50%;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 30px;
  font-size: 17px;
}

figure.hover-parent:hover .hover-mask {
  opacity: 1;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

@media screen and (max-width: 768px) {
  figure.hover-parent {
    gap: 12px;
  }
  figcaption.hover-mask {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: none;
    opacity: 1;
    padding: 0;
    color: #185688;
  }
  figure.hover-parent:hover .hover-mask {
    opacity: 1;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }
}
/* hitsuji anime */
.slide_hitsuji {
  width: 22.3%;
  position: absolute;
  right: 0;
  top: 10%;
  z-index: 2;
  overflow: hidden;
}
.slide_hitsuji img {
  -webkit-animation: wobbling_x 0.8s ease-in-out infinite alternate;
          animation: wobbling_x 0.8s ease-in-out infinite alternate;
}
@-webkit-keyframes wobbling_x {
  0% {
    margin-left: 12px;
  }
  100% {
    margin-left: 0px;
  }
}
@keyframes wobbling_x {
  0% {
    margin-left: 12px;
  }
  100% {
    margin-left: 0px;
  }
}
@media screen and (max-width: 768px) {
  .slide_hitsuji {
    width: 34.3%;
    top: 15%;
  }
}

.hitsuji {
  opacity: 0; /* 初期は透明 */
}

.hitsuji.active {
  opacity: 1; /* 要素が画面内に入ったら不透明にする */
}

/*------------------------------------------
	secCompnay
------------------------------------------*/
.secCompany {
  padding: 120px 0 140px;
  position: relative;
  z-index: 1;
  background: #fff;
}
.secCompany__tit {
  margin-top: 130px;
}
.secCompany-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
  margin-top: 80px;
}
.secCompany-img {
  width: 30%;
  -webkit-filter: drop-shadow(-10px 10px 0px #81b3db);
          filter: drop-shadow(-10px 10px 0px #81b3db);
}
.secCompany-chara img {
  width: 100%;
  -webkit-filter: none;
          filter: none;
}
.secCompany-txtBox {
  width: 70%;
}
.secCompany__lead {
  font-size: 26px;
  font-weight: bold;
  line-height: 2;
}
.secCompany__prof {
  color: #848484;
  font-weight: bold;
  font-size: 18px;
  margin-top: 20px;
}
.secCompany__btn {
  margin-top: 40px;
}
.secCompany__btn a {
  background: #185688;
  border-radius: 50px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 280px;
  height: 70px;
  padding: 10px 25px;
  color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  font-weight: 700;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .secCompany {
    padding: 64px 0 80px;
    z-index: 1;
  }
  .secCompany__tit {
    margin-top: 80px;
  }
  .secCompany-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    margin-top: 40px;
  }
  .secCompany-img {
    width: 70%;
    -webkit-filter: drop-shadow(-10px 10px 0px #81b3db);
            filter: drop-shadow(-10px 10px 0px #81b3db);
  }
  .secCompany-txtBox {
    width: 70%;
  }
  .secCompany__lead {
    font-size: 20px;
    font-weight: bold;
    line-height: 2;
  }
  .secCompany__prof {
    color: #848484;
    font-weight: bold;
    font-size: 14px;
    margin-top: 20px;
  }
  .secCompany__btn {
    margin-top: 40px;
  }
  .secCompany__btn a {
    background: #185688;
    border-radius: 50px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 280px;
    height: 70px;
    padding: 10px 25px;
    color: #fff;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    font-weight: 700;
    font-size: 18px;
  }
}

.secMessage-content {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
}
.secMessage-content-inner {
  position: relative;
  padding: 40px 40px 80px;
}
.secMessage-content-inner::before {
  content: "";
  background-color: #185688;
  width: calc(100% - 740px);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.secMessage-content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto 40px;
  z-index: 2;
}
.secMessage-content-top__img {
  width: 32%;
  z-index: 2;
  position: relative;
}
.secMessage-content-top-txtBox {
  position: relative;
  z-index: 2;
  width: 64%;
  margin-left: -107px;
  z-index: 2;
}
.secMessage-content-top__num {
  margin-bottom: 20px;
  color: #185688;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.1;
}
.secMessage-content-top__tit {
  margin-bottom: 24px;
  color: #fff;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.2em;
  line-height: 1.5;
}
.secMessage-content-top__tit-bg {
  display: table;
  padding: 8px 12px;
  background: #185688;
}
.secMessage-content-top__tit-bg + .secMessage-content-top__tit-bg {
  margin-top: 8px;
}
.secMessage-content-top__name {
  display: table;
  color: #848484;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
}
.secMessage-content-comment {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.secMessage-content-comment__tit {
  position: relative;
  margin-bottom: 18px;
  padding: 4px 0 6px 73px;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.secMessage-content-comment__tit::before {
  content: "Q";
  display: block;
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 3px;
  background: #008EDF;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  font-size: 21px;
  position: absolute;
  top: 0;
  left: 0;
}
.secMessage-content-comment__txt {
  margin-bottom: 50px;
  padding: 36px 40px;
  background: #F0F4F7;
  font-size: 16px;
  letter-spacing: 0.04em;
  z-index: 2;
}
.secMessage-content-comment__txt:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .secMessage-content-inner {
    padding: 15px;
  }
  .secMessage-content-inner::before {
    width: 100%;
    height: 20%;
  }
  .secMessage-content-top {
    display: block;
    margin-bottom: 30px;
  }
  .secMessage-content-top__img {
    width: 100%;
    margin-bottom: 15px;
  }
  .secMessage-content-top-txtBox {
    width: 100%;
    margin: 0 auto;
  }
  .secMessage-content-top__num {
    margin-bottom: 10px;
    font-size: 30px;
  }
  .secMessage-content-top__tit {
    margin-bottom: 10px;
    font-size: 15px;
    letter-spacing: 0.1em;
  }
  .secMessage-content-top__tit-bg {
    padding: 5px 7px;
  }
  .secMessage-content-top__tit-bg + .secMessage-content-top__tit-bg {
    margin-top: 5px;
  }
  .secMessage-content-top__name {
    padding: 5px 10px;
    font-size: 12px;
  }
  .secMessage-content-comment__tit {
    margin-bottom: 10px;
    padding: 3px 0 5px 40px;
    font-size: 15px;
  }
  .secMessage-content-comment__tit::before {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  .secMessage-content-comment__txt {
    margin-bottom: 30px;
    padding: 10px 15px;
    font-size: 12px;
  }
}

/* popup - js */
body .mfp-bg {
  z-index: 9993;
  opacity: 0.5;
  background: #000;
}
body .mfp-wrap {
  z-index: 9994;
}
body .mfp-container {
  padding: 0;
}
body .mfp-content {
  padding: 40px 15px;
}
@media screen and (max-width: 768px) {
  body .mfp-content {
    padding: 15px;
  }
}

.mfp-close.modalClose01,
.mfp-close.modalClose02 {
  cursor: pointer;
  opacity: 1;
  z-index: 3;
}

.mfp-close.modalClose01 {
  position: absolute;
  top: 20px !important;
  right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  padding: 0;
  background: #185688;
  border-radius: 50%;
  color: #fff !important;
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .mfp-close.modalClose01 {
    top: 10px !important;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}

.mfp-close.modalClose02 {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 290px;
  height: 54px;
  margin: 64px auto 0;
  padding: 0;
  border: 2px solid #185688;
  color: #185688 !important;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.07em;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 769px) {
  .mfp-close.modalClose02:hover {
    background-color: #185688;
    color: #fff !important;
  }
}
@media screen and (max-width: 768px) {
  .mfp-close.modalClose02 {
    margin-top: 20px;
    font-size: 15px;
  }
}

/*------------------------------------------
	secHistory
------------------------------------------*/
.secHistory {
  padding: 100px 0;
  background-color: #F0F4F7;
}
.secHistory__imgBox {
  margin-top: 94px;
}
.secHistory__imgBox img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  width: 75.5%;
}
.secHistory__deco {
  position: absolute;
  width: 500px;
  top: 40px;
  right: calc(50% - 800px);
  opacity: 0.2;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .secHistory {
    padding: 64px 0;
  }
  .secHistory__imgBox {
    margin-top: 64px;
    padding: 0 20px;
  }
  .secHistory__imgBox img {
    width: 100%;
  }
  .secHistory__deco {
    position: absolute;
    width: 100%;
    top: 40px;
    right: 0;
    opacity: 0.1;
  }
}

/*------------------------------------------
	secOverview
------------------------------------------*/
.secOverview {
  padding: 100px 0;
  background: #fff;
}
.secOverview-list {
  max-width: 840px;
  width: 100%;
  margin-top: 80px;
}
.secOverview-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 17px;
  font-weight: bold;
}
.secOverview-list__name {
  border-bottom: solid 1px #185688;
  display: block;
  font-weight: bold;
  padding-bottom: 30px;
  margin-bottom: 30px;
  width: 140px;
  color: #185688;
}
.secOverview-list__cont {
  border-bottom: solid 1px #DDDDDD;
  display: block;
  padding-bottom: 30px;
  margin-bottom: 30px;
  width: calc(100% - 140px);
  color: #848484;
}
@media screen and (max-width: 768px) {
  .secOverview {
    padding: 64px 0;
  }
  .secOverview-list {
    margin-top: 64px;
  }
  .secOverview-list__item {
    font-size: 14px;
  }
  .secOverview-list__name {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .secOverview-list__cont {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

/*------------------------------------------
	secOverview
------------------------------------------*/
.secRecruit {
  padding: 80px 0;
  background: url("../img/bg_recruit.webp") no-repeat;
  background-size: cover;
  position: relative;
}
.secRecruit-inner {
  position: relative;
  max-width: 900px;
}
.secRecruit__txtBox {
  position: relative;
}
.secRecruit__txtBox__tit {
  padding: 0;
  display: block;
  position: relative;
  color: #fff;
  font-size: 52px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  line-height: 1.2;
}
.secRecruit__txtBox__lead {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin-top: 20px;
}
.secRecruit__txtBox__txt {
  font-size: 16px;
  font-weight: normal;
  margin-top: 48px;
  color: #fff;
}
.secRecruit__btn {
  margin-top: 40px;
}
.secRecruit__btn a {
  background: #185688;
  border-radius: 50px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 280px;
  height: 70px;
  padding: 10px 25px;
  color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  font-weight: 700;
  font-size: 18px;
}
.secRecruit__img {
  position: absolute;
  width: 326px;
  height: 423px;
  right: 0;
  top: -110px;
}
@media screen and (max-width: 768px) {
  .secRecruit__txtBox {
    text-align: center;
  }
  .secRecruit__txtBox__tit {
    font-size: 44px;
  }
  .secRecruit__txtBox__lead {
    font-size: 18px;
  }
  .secRecruit__txtBox__txt {
    font-size: 14px;
  }
  .secRecruit__img {
    position: relative;
    top: 40px;
    right: auto;
    margin: 0 auto;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 60%;
    height: 60%;
  }
  .secRecruit__btn a {
    margin: 0 auto;
  }
}

/*------------------------------------------
	secContact
------------------------------------------*/
.secContact {
  padding: 80px 0;
  background: url("../img/bg_contact.webp") no-repeat;
  background-size: cover;
  position: relative;
}
.secContact::before {
  content: "";
  background: url("../img/fig_contact01.webp") no-repeat;
  background-size: contain;
  height: 310px;
  width: 170px;
  position: absolute;
  left: calc(50% - 700px);
  bottom: 0;
}
.secContact::after {
  content: "";
  background: url("../img/fig_contact02.webp") no-repeat;
  background-size: contain;
  height: 310px;
  width: 187px;
  position: absolute;
  right: calc(50% - 660px);
  bottom: 0;
}
.secContact__txt {
  text-align: center;
  padding-top: 80px;
  font-weight: bold;
  font-size: 18px;
}
.secContact__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}
.secContact__list__item {
  padding-right: 60px;
}
.secContact__list__item:last-child {
  padding-right: 0;
  padding-left: 60px;
  border-left: 1px solid #185688;
}
.secContact__btn {
  margin: 40px auto 0;
  max-width: 500px;
  text-align: center;
}
.secContact__btn a {
  background: #185688;
  border-radius: 50px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100px;
  padding: 10px 25px;
  color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  font-weight: 700;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .secContact {
    padding: 64px 0 140px;
    background-size: cover;
    background-position-x: right;
  }
  .secContact::before {
    background-size: contain;
    height: 100px;
    width: 16%;
    position: absolute;
    left: 20px;
    bottom: 0;
  }
  .secContact::after {
    height: 100px;
    width: 16%;
    position: absolute;
    right: 20px;
    bottom: 0;
  }
  .secContact__txt {
    text-align: center;
    padding-top: 40px;
    font-size: 15px;
  }
  .secContact__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
  .secContact__list__item {
    padding-right: 0;
    width: 85%;
  }
  .secContact__list__item:last-child {
    padding-right: 0;
    padding-left: 0;
    border-left: none;
  }
  .secContact__btn a {
    margin: 0 auto;
    height: 80px;
  }
}

/*------------------------------------------
	lifeline
------------------------------------------*/
/*------------------------------------------
	l-heading
------------------------------------------*/
.l-heading {
  margin-top: 160px;
  background: url("../assets/img/img_head01.webp") no-repeat right 100%;
  background-position-x: calc(50% + 420px);
  background-size: contain;
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-heading::before {
  content: "";
  background: url("../assets/img/img_about01.webp") no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: -120px;
  z-index: 1;
}
.l-heading_title {
  color: #185688;
  font-size: 44px;
  letter-spacing: 0.1em;
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.l-heading span.en {
  font-size: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0;
}
.l-heading span.en::before {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  margin-right: 15px;
  background: #185688;
}
@media screen and (max-width: 768px) {
  .l-heading {
    margin-top: 50px;
    background: url("../assets/img/img_head01.webp") no-repeat right 100%;
    background-size: contain;
    height: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .l-heading_title {
    color: #185688;
    font-size: 24px;
    letter-spacing: 0.1em;
    font-weight: 900;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 150px;
  }
  .l-heading span.en {
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    letter-spacing: 0;
  }
  .l-heading span.en::before {
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    margin-right: 15px;
    background: #185688;
  }
}

/*------------------------------------------
	secIntroduction
------------------------------------------*/
.secIntroduction {
  padding: 100px 0 100px;
  position: relative;
  background: url("../img/bg_project.webp") no-repeat;
  background-size: cover;
}
.secIntroduction::before {
  content: "";
  background: url("../assets/img/img_about01.webp") no-repeat;
  background-size: contain;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: -120px;
  z-index: 1;
}
.secIntroduction__txt {
  font-size: 18px;
  font-weight: bold;
  margin-top: 50px;
  text-align: center;
}
.secIntroduction-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
.secIntroduction-list__item {
  width: 30%;
}
.secIntroduction-list__item:nth-child(2) {
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .secIntroduction {
    padding: 64px 0 120px;
  }
  .secIntroduction::before {
    background: url("../assets/img/img_about01.webp") no-repeat center;
    background-size: contain;
    height: 200px;
    bottom: -80px;
    width: 100%;
  }
  .secIntroduction__txt {
    font-size: 15px;
    font-weight: bold;
    margin-top: 30px;
    text-align: center;
  }
  .secIntroduction-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .secIntroduction-list__item {
    width: 70%;
  }
  .secIntroduction-list__item:nth-child(2) {
    padding-top: 0;
  }
}

/*------------------------------------------
	secService
------------------------------------------*/
.secService {
  padding: 220px 0 100px;
  position: relative;
  background: url("../assets/img/bg_lifeline-r.webp") right top, url("../assets/img/bg_lifeline-l.webp") left bottom;
  background-size: 18%;
  background-repeat: no-repeat;
}
.secService__txt {
  font-size: 18px;
  font-weight: bold;
  margin-top: 50px;
  text-align: center;
}
.secService-list {
  max-width: 1160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 200px;
  margin-top: 40px;
  position: relative;
}
.secService-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.secService-list__item:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.secService-list__item::before {
  content: "";
  display: block;
  background: #F0F4F7;
  width: max(1000px, 100% - 110px);
  height: 428px;
  position: absolute;
  pointer-events: none;
  top: -50px;
  bottom: 0;
  right: 90px;
  z-index: -1;
}
.secService-list__item:first-child::before {
  top: 44px;
  height: 448px;
}
.secService-list__item:nth-of-type(2)::before {
  top: -35px;
}
.secService-list__item:nth-of-type(even)::before {
  right: auto;
  left: 90px;
}
.secService-list__item-txtBox {
  width: 42%;
}
.secService-list__item-imgBox {
  width: 54%;
}
.secService__img {
  margin-top: 75px;
}
.secService__lead {
  font-size: 24px;
  font-weight: 900;
  color: #185688;
}
.secService__lead .en {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 72px;
  line-height: 1.4;
}
.secService__txt {
  font-size: 16px;
  font-weight: 500;
  color: #848484;
  text-align: left;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .secService {
    padding: 120px 0 120px;
  }
  .secService::before {
    background-size: contain;
    height: 150px;
    width: 90%;
  }
  .secService-list {
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    margin-top: 40px;
    position: relative;
  }
  .secService-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  .secService-list__item:nth-of-type(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .secService-list__item::before {
    content: none;
  }
  .secService-list__item-txtBox {
    width: 100%;
    background-color: #F0F4F7;
    padding: 32px 20px 40px;
  }
  .secService-list__item-imgBox {
    width: 100%;
  }
  .secService__img {
    margin-top: 0;
  }
  .secService__lead {
    font-size: 24px;
    font-weight: 900;
    color: #185688;
  }
  .secService__lead .en {
    display: block;
    font-family: "Roboto", sans-serif;
    font-size: 42px;
    line-height: 1.4;
  }
  .secService__txt {
    font-size: 15px;
    font-weight: 500;
    color: #848484;
    text-align: left;
    margin-top: 20px;
    line-height: 1.8666666667;
  }
}

/*------------------------------------------
	secFlow
------------------------------------------*/
.secFlow {
  padding: 110px 0 120px;
  background: #F0F4F7;
}
.secFlow__imgBox {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .secFlow {
    padding: 50px 0;
  }
  .secFlow__imgBox {
    overflow: auto;
  }
}

/*------------------------------------------
	secContact
------------------------------------------*/
.secContact__title {
  width: 780px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.secContact__txt02 {
  text-align: center;
  padding-top: 30px;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .secContact__title {
    width: 100%;
  }
  .secContact__txt02 {
    text-align: center;
    padding-top: 10px;
    font-weight: bold;
    font-size: 15px;
  }
}

/*------------------------------------------
	outsourcing
------------------------------------------*/
/*------------------------------------------
	o-heading
------------------------------------------*/
.o-heading {
  margin-top: 160px;
  background: url("../assets/img/img_head02.webp") no-repeat right 100%;
  background-position-x: calc(50% + 360px);
  background-position-y: 24px;
  background-size: contain;
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.o-heading::before {
  content: "";
  background: url("../assets/img/img_about02.webp") no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: -120px;
  z-index: 1;
}
.o-heading_title {
  color: #185688;
  font-size: 44px;
  letter-spacing: 0.1em;
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.o-heading span.en {
  font-size: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0;
}
.o-heading span.en::before {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  margin-right: 15px;
  background: #185688;
}
@media screen and (max-width: 768px) {
  .o-heading {
    margin-top: 50px;
    background: url("../assets/img/img_head02.webp") no-repeat right 100%;
    background-position-y: 64px;
    background-size: contain;
    height: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .o-heading_title {
    color: #185688;
    font-size: 24px;
    letter-spacing: 0.1em;
    font-weight: 900;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 150px;
  }
  .o-heading span.en {
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    letter-spacing: 0;
  }
  .o-heading span.en::before {
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    margin-right: 15px;
    background: #185688;
  }
}

/*------------------------------------------
	secIntroduction
------------------------------------------*/
.secIntroduction02 {
  padding: 100px 0 100px;
  position: relative;
  background: url("../img/bg_project.webp") no-repeat;
  background-size: cover;
}
.secIntroduction02::before {
  content: "";
  background: url("../assets/img/img_about02.webp") no-repeat;
  background-size: contain;
  position: absolute;
  width: 336px;
  height: 290px;
  left: calc(50% - 650px);
  bottom: -80px;
  z-index: 1;
}
.secIntroduction02__txt {
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  text-align: center;
}
.secIntroduction02__lead {
  margin-top: 40px;
  font-weight: bold;
  text-align: center;
  font-size: 24px;
  color: #185688;
}
.secIntroduction02-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
.secIntroduction02-list__item {
  width: 30%;
}
.secIntroduction02-list__item:nth-child(2) {
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .secIntroduction02 {
    padding: 64px 0 120px;
  }
  .secIntroduction02::before {
    background: url("../assets/img/img_about02.webp") no-repeat center;
    background-size: contain;
    height: 200px;
    left: 0;
    bottom: -90px;
    width: 100%;
  }
  .secIntroduction02__txt {
    font-size: 15px;
    font-weight: bold;
    margin-top: 30px;
    text-align: left;
  }
  .secIntroduction02__lead {
    margin-top: 40px;
    font-weight: bold;
    text-align: center;
    font-size: 18px;
    color: #185688;
  }
  .secIntroduction02-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .secIntroduction02-list__item {
    width: 70%;
  }
  .secIntroduction02-list__item:nth-child(2) {
    padding-top: 0;
  }
}

/*------------------------------------------
	secMerit
------------------------------------------*/
.secMerit {
  padding: 100px 0 100px;
  position: relative;
  background: url("../assets/img/bg_out_t.webp") left top, url("../assets/img/bg_out_b.webp") right bottom;
  background-size: 13%;
  background-repeat: no-repeat;
}
.secMerit__txt {
  font-size: 18px;
  font-weight: bold;
  margin-top: 50px;
  text-align: center;
}
.secMerit-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  margin-top: 100px;
  position: relative;
}
.secMerit-list__item {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .secMerit {
    padding: 140px 0 120px;
    background-size: 25%;
  }
  .secMerit::before {
    background-size: contain;
    height: 150px;
    width: 90%;
  }
  .secMerit-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    margin-top: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .secMerit-list__item {
    width: 100%;
  }
  .secMerit-list__item:nth-child(2) {
    padding-top: 0;
  }
}

/*------------------------------------------
	secEvent
------------------------------------------*/
.secEvent {
  padding: 100px 0 100px;
  background: #F0F4F7;
}
.secEvent__txt {
  font-size: 21px;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}
.secEvent-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .secEvent__txt {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
  }
  .secEvent-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

/*------------------------------------------
	tenshoku
------------------------------------------*/
/*------------------------------------------
	t-heading
------------------------------------------*/
.t-heading {
  margin-top: 160px;
  background: url("../assets/img/img_head03.webp") no-repeat right 100%;
  background-position-x: calc(50% + 360px);
  background-position-y: 6px;
  background-size: contain;
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.t-heading::before {
  content: "";
  background: url("../assets/img/img_about03.webp") no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: -120px;
  z-index: 1;
}
.t-heading_title {
  color: #185688;
  font-size: 44px;
  letter-spacing: 0.1em;
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.t-heading span.en {
  font-size: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0;
}
.t-heading span.en::before {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  margin-right: 15px;
  background: #185688;
}
@media screen and (max-width: 768px) {
  .t-heading {
    margin-top: 50px;
    background: url("../assets/img/img_head03.webp") no-repeat right 100%;
    background-position-y: 68px;
    background-size: contain;
    height: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .t-heading_title {
    color: #185688;
    font-size: 24px;
    letter-spacing: 0.1em;
    font-weight: 900;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 150px;
  }
  .t-heading span.en {
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    letter-spacing: 0;
  }
  .t-heading span.en::before {
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    margin-right: 15px;
    background: #185688;
  }
}

/*------------------------------------------
	secIntroduction
------------------------------------------*/
.secIntroduction03 {
  padding: 100px 0 420px;
  position: relative;
  background: url("../img/bg_project.webp") no-repeat;
  background-size: cover;
}
.secIntroduction03::before {
  content: "";
  background: url("../assets/img/img_about03.webp") no-repeat center;
  background-size: contain;
  position: absolute;
  width: 100%;
  height: 365px;
  bottom: -10px;
  z-index: 1;
}
.secIntroduction03__txt {
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  text-align: center;
}
.secIntroduction03__lead {
  margin-top: 40px;
  font-weight: bold;
  text-align: center;
  font-size: 24px;
  color: #185688;
}
.secIntroduction03-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
.secIntroduction03-list__item {
  width: 30%;
}
.secIntroduction03-list__item:nth-child(2) {
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .secIntroduction03 {
    padding: 64px 0 270px;
  }
  .secIntroduction03::before {
    background: url("../assets/img/img_about03.webp") no-repeat center;
    background-size: contain;
    height: 430px;
    left: 0;
    bottom: -110px;
    width: 100%;
  }
  .secIntroduction03__txt {
    font-size: 15px;
    font-weight: bold;
    margin-top: 30px;
    text-align: left;
  }
  .secIntroduction03__lead {
    margin-top: 40px;
    font-weight: bold;
    text-align: center;
    font-size: 18px;
    color: #185688;
  }
  .secIntroduction03-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .secIntroduction03-list__item {
    width: 70%;
  }
  .secIntroduction03-list__item:nth-child(2) {
    padding-top: 0;
  }
}

/*------------------------------------------
	secPhilosophy
------------------------------------------*/
.secPhilosophy {
  padding: 120px 0 120px;
  position: relative;
  background: url("../assets/img/bg_tenshoku01.webp") no-repeat center;
  background-size: cover;
}
.secPhilosophy__txt {
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  text-align: center;
}
.secPhilosophy__lead {
  margin-top: 40px;
  font-weight: bold;
  text-align: center;
  font-size: 24px;
  color: #185688;
}
@media screen and (max-width: 768px) {
  .secPhilosophy {
    background: #F0F4F7 url("../assets/img/bg_tenshoku01.webp") no-repeat right top;
    background-size: 620px;
    padding: 64px 0;
  }
  .secPhilosophy::before {
    background-size: contain;
    height: 150px;
    width: 90%;
  }
  .secPhilosophy__txt {
    font-size: 15px;
    font-weight: bold;
    margin-top: 30px;
    text-align: left;
  }
  .secPhilosophy__lead {
    margin-top: 40px;
    font-weight: bold;
    text-align: center;
    font-size: 24px;
    color: #185688;
  }
}

/*------------------------------------------
	secFeature
------------------------------------------*/
.secFeature {
  padding: 100px 0 100px;
  position: relative;
  background: url("../assets/img/bg_tenshoku-t.svg") right top, url("../assets/img/bg_tenshoku-b.svg") left bottom;
  background-size: 42%;
  background-repeat: no-repeat;
}
.secFeature__txt {
  font-size: 18px;
  font-weight: bold;
  margin-top: 50px;
  text-align: center;
}
.secFeature-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5%;
  margin-top: 80px;
  position: relative;
}
.secFeature-list__item {
  width: 47.5%;
}
.secFeature-list__item:nth-child(3) {
  margin-top: -23px;
}
.secFeature-list__item:nth-child(5) {
  margin-top: -24px;
}
.secFeature-list__item:nth-child(even) {
  margin-top: 50px;
}
.secFeature .deco01 {
  position: absolute;
  bottom: 0;
  width: 426px;
  right: calc(50% - 490px);
}
@media screen and (max-width: 768px) {
  .secFeature {
    padding: 64px 0 300px;
    background-size: 70%;
  }
  .secFeature::before {
    background-size: contain;
    height: 150px;
    width: 90%;
  }
  .secFeature-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 40px;
  }
  .secFeature-list__item {
    width: 100%;
  }
  .secFeature-list__item:nth-child(3) {
    margin-top: 0;
  }
  .secFeature-list__item:nth-child(5) {
    margin-top: 0;
  }
  .secFeature-list__item:nth-child(even) {
    margin-top: 0;
  }
  .secFeature .deco01 {
    position: absolute;
    bottom: 0;
    width: 280px;
    right: calc(50% - 140px);
  }
}

/*------------------------------------------
	secOurjob
------------------------------------------*/
.secOurjob {
  padding: 120px 0 120px;
  position: relative;
  background: url("../assets/img/bg_tenshoku02.webp") no-repeat center;
  background-size: cover;
}
.secOurjob__txt {
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  text-align: center;
}
.secOurjob__lead {
  margin-top: 40px;
  font-weight: bold;
  text-align: center;
  font-size: 24px;
  color: #185688;
}
.secOurjob-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
.secOurjob-list__item {
  width: 30%;
}
.secOurjob-list__item:nth-child(2) {
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .secOurjob {
    background: url("../assets/img/bg_tenshoku02.webp") no-repeat center right 7%;
    padding: 64px 0;
  }
  .secOurjob::before {
    background-size: contain;
    height: 150px;
    width: 90%;
  }
  .secOurjob-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .secOurjob-list__item {
    width: 70%;
  }
  .secOurjob-list__item:nth-child(2) {
    padding-top: 0;
  }
  .secOurjob__txt {
    font-size: 15px;
    font-weight: bold;
    margin-top: 30px;
    text-align: left;
  }
  .secOurjob__lead {
    margin-top: 40px;
    font-weight: bold;
    text-align: center;
    font-size: 24px;
    color: #185688;
  }
}

/*------------------------------------------
	.secCoordinator
------------------------------------------*/
.secCoordinator {
  padding: 120px 0 120px;
  position: relative;
}
.secCoordinator-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}
.secCoordinator-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #F0F4F7;
  padding: 40px 30px;
  gap: 50px;
}
.secCoordinator-imgBox {
  width: 43%;
}
.secCoordinator-txtBox {
  width: 70%;
}
.secCoordinator__name {
  font-size: 26px;
  font-weight: bold;
  color: #185688;
}
.secCoordinator__prof {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .secCoordinator {
    padding: 64px 0;
  }
  .secCoordinator-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }
  .secCoordinator-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #F0F4F7;
    padding: 30px 20px;
    gap: 30px;
  }
  .secCoordinator-imgBox {
    width: 100%;
  }
  .secCoordinator-txtBox {
    width: 100%;
  }
  .secCoordinator__name {
    font-size: 21px;
    font-weight: bold;
    color: #185688;
  }
  .secCoordinator__prof {
    margin-top: 20px;
  }
}

/*------------------------------------------
	.secVoice
------------------------------------------*/
.secVoice {
  background: #F0F4F7;
  padding: 120px 0 120px;
  position: relative;
}
.secVoice-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}
.secVoice-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  gap: 50px;
}
.secVoice-imgBox {
  width: 24%;
}
.secVoice-txtBox {
  width: 70%;
}
.secVoice-labelBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.secVoice__label {
  color: #848484;
}
.secVoice__label span {
  background: #F0F4F7;
  color: #185688;
  font-weight: bold;
  padding: 7px 24px;
  border-radius: 15px;
  margin-right: 10px;
}
.secVoice__label span.is-blue {
  background: #4491D6;
  color: #fff;
}
.secVoice__label.is-blue {
  color: #4491D6;
}
.secVoice__name {
  font-size: 26px;
  font-weight: bold;
  color: #185688;
}
.secVoice__txt {
  margin-top: 20px;
  font-size: 15px;
}
.secVoice__prof {
  margin-top: 20px;
  text-align: right;
  font-weight: bold;
  color: #185688;
}
@media screen and (max-width: 768px) {
  .secVoice {
    padding: 80px 0 80px;
  }
  .secVoice-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    margin-top: 40px;
  }
  .secVoice-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    gap: 30px;
  }
  .secVoice-imgBox {
    width: 80%;
  }
  .secVoice-txtBox {
    width: 100%;
  }
  .secVoice-labelBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .secVoice__label {
    color: #848484;
  }
  .secVoice__label span {
    background: #F0F4F7;
    color: #185688;
    font-weight: bold;
    padding: 7px 24px;
    border-radius: 15px;
    margin-right: 10px;
  }
  .secVoice__label span.is-blue {
    background: #4491D6;
    color: #fff;
  }
  .secVoice__label.is-blue {
    color: #4491D6;
  }
  .secVoice__name {
    font-size: 26px;
    font-weight: bold;
    color: #185688;
  }
  .secVoice__txt {
    margin-top: 20px;
    font-size: 15px;
  }
  .secVoice__prof {
    margin-top: 20px;
    text-align: right;
    font-weight: bold;
    color: #185688;
  }
}
/*# sourceMappingURL=style.css.map */