@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;
    transition: all 0.3s;
  }
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  img {
    width: 100%;
  }
}

@media screen and (min-width: 769px) {
  .hidden-pc {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .hidden-sp {
    display: none !important;
  }
}
/*------------------------------------------
	root
------------------------------------------*/
:root {
  --header-height: 100px;
  --inner-width: min(100%, 1080px + (var(--inner-padding) * 2));
  --inner-padding: 10px;
  --color-txt: #333;
  --color-blue: #1569C1;
  --color-blue-light: #F3F9FF;
  --color-yellow: #FBFF00;
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 60px;
    --inner-padding: 20px;
    --cv-height: 70px;
  }
}

/*------------------------------------------
	font
------------------------------------------*/
body {
  color: var(--color-txt);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.4;
}

.f-figtree {
  font-style: italic;
  font-weight: 700;
  font-family: "Figtree", sans-serif;
}

/*------------------------------------------
	smooth scroll / frame
------------------------------------------*/
html {
  scroll-behavior: smooth;
}
@media screen and (min-width: 769px) {
  html {
    scroll-padding-top: var(--header-height);
  }
}

@media screen and (min-width: 769px) {
  body {
    min-width: 1000px;
  }
}

.inner {
  width: var(--inner-width);
  margin-inline: auto;
  padding-inline: var(--inner-padding);
}

/*------------------------------------------
	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:nth-child(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.js-scroll:nth-child(3) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.js-scroll:nth-child(4) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.js-scroll:nth-child(5) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.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);
  }
}
.js-scroll.is-fadeIn {
  opacity: 0;
}
.js-scroll.is-fadeIn.is-view {
  opacity: 1;
}

/*============================================================================================================
	l-header
============================================================================================================*/
.l-header {
  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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-header__logo a, .l-header__logo img {
  display: block;
}
.l-header__entry {
  width: 220px;
  height: 60px;
  color: #fff;
  font-size: 28px;
  position: fixed;
  z-index: 9992;
}
.l-header__entry a {
  height: 100%;
  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;
  background: var(--color-blue);
}
@media screen and (min-width: 769px) {
  .l-header.is-scroll .l-header__logo {
    width: 200px;
  }
  .l-header.is-scroll .gnavBtn span {
    background: var(--color-blue);
  }
  .l-header__logo {
    width: 267px;
    aspect-ratio: 267/124;
    clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9990;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header__logo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    padding-left: 18.7%;
    background: #fff;
  }
  .l-header__logo img {
    width: 65%;
  }
  .l-header__entry {
    top: 32px;
    right: 110px;
  }
  .l-header__entry a:hover {
    opacity: 1;
    background: var(--color-yellow);
    color: var(--color-txt);
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    height: var(--header-height);
    padding: 0 70px 0 15px;
  }
  .l-header__logo {
    width: 80px;
  }
  .l-header__entry {
    width: 100%;
    height: var(--cv-height);
    border-top: 1px solid #fff;
    font-size: 28px;
    letter-spacing: 0.1em;
    left: 0;
    bottom: 0;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: #1569C1;
  position: relative;
}
.l-footer p, .l-footer li {
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
}
.l-footer a, .l-footer span {
  color: inherit !important;
  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 {
  width: min(100%, 1100px);
  margin-inline: auto;
  padding: 45px 10px;
}
.l-footer-nav {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto 25px;
  padding: 0;
  gap: 20px 0;
}
.l-footer-nav__item {
  list-style: none;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}
.l-footer-nav__item + .l-footer-nav__item {
  position: relative;
}
.l-footer-nav__item + .l-footer-nav__item::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  background: currentColor;
  margin: auto;
}
.l-footer-nav__item a {
  display: block;
  padding: 0 25px;
  color: inherit;
  text-decoration: none;
}
.l-footer-nav__item a:hover {
  opacity: 1;
  text-decoration: underline;
}
.l-footer-copyright {
  margin: 0;
  color: #fff !important;
  font-weight: 400;
  font-size: 11px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .l-footer .hidden-pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-footer .hidden-sp {
    display: none;
  }
  .l-footer-inner {
    padding: 30px 20px 100px;
  }
  .l-footer-nav {
    display: block;
    margin: 0 auto 30px;
  }
  .l-footer-nav__item {
    border-bottom: 1px dashed;
    font-size: 12px;
    text-align: left;
  }
  .l-footer-nav__item + .l-footer-nav__item::after {
    content: none;
  }
  .l-footer-nav__item a {
    padding: 10px 0;
  }
  .l-footer-copyright {
    font-size: 10px;
  }
}

.pagetop {
  display: none;
  width: 70px;
  height: 70px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  border-radius: 50%;
  text-indent: 100%;
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  z-index: 9000;
}
.pagetop a {
  width: 100%;
  height: 100%;
  display: block;
  background: #2BACF2;
  border-radius: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff !important;
  position: relative;
}
.pagetop a::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  clip-path: polygon(0 0, 100% 0, 100% 2px, 2px 2px, 2px 100%, 0 100%);
  background: currentColor;
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .pagetop {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: calc(var(--cv-height) + 10px);
  }
  .pagetop a::after {
    width: 10px;
    height: 10px;
  }
}

/*============================================================================================================
	nav
============================================================================================================*/
.gnavBtn {
  overflow: hidden;
  cursor: pointer;
  width: 110px;
  height: 110px;
  position: fixed;
  z-index: 9992;
  top: 5px;
  right: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gnavBtn:hover span {
  background: var(--color-blue);
}
.gnavBtn span {
  display: block;
  position: absolute;
  left: 30px;
  margin: auto;
  height: 2px;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gnavBtn span:nth-of-type(1) {
  width: 50px;
  top: 42px;
}
.gnavBtn span:nth-of-type(2) {
  width: 40px;
  top: 0;
  bottom: 0;
}
.gnavBtn span:nth-of-type(3) {
  width: 30px;
  bottom: 42px;
}
.gnavBtn.is-close span {
  background: var(--color-blue);
}
.gnavBtn.is-close span:nth-of-type(1) {
  -webkit-transform: translateY(12px) rotate(-200deg);
          transform: translateY(12px) rotate(-200deg);
}
.gnavBtn.is-close span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
}
.gnavBtn.is-close span:nth-of-type(3) {
  width: 50px;
  -webkit-transform: translateY(-12px) rotate(200deg);
          transform: translateY(-12px) rotate(200deg);
}
@media screen and (max-width: 768px) {
  .gnavBtn {
    width: 60px;
    height: 60px;
    top: 0;
    background: var(--color-blue);
  }
  .gnavBtn span {
    left: 15px;
    background: #fff !important;
  }
  .gnavBtn span:nth-of-type(1) {
    width: 30px;
    top: 20px;
  }
  .gnavBtn span:nth-of-type(2) {
    width: 23px;
  }
  .gnavBtn span:nth-of-type(3) {
    width: 16px;
    bottom: 20px;
  }
  .gnavBtn.is-close span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(-200deg);
            transform: translateY(9px) rotate(-200deg);
  }
  .gnavBtn.is-close span:nth-of-type(3) {
    width: 30px;
    -webkit-transform: translateY(-9px) rotate(200deg);
            transform: translateY(-9px) rotate(200deg);
  }
}

.l-nav {
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  position: fixed;
  z-index: 9991;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-nav.is-open {
  right: 0;
}
.l-nav.is-open .l-nav-overlay {
  left: 0;
  width: 100%;
}
.l-nav-inner {
  width: 100%;
  height: 100%;
  padding: 130px 50px 100px;
  background: #fff;
  position: relative;
  z-index: 2;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.l-nav-inner::-webkit-scrollbar {
  display: none;
}
.l-nav-list__item {
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.l-nav-list__item:last-of-type {
  margin-bottom: 0;
}
.l-nav-list__item a {
  display: block;
  padding: 10px 20px 10px 0;
  position: relative;
}
.l-nav-list__item a::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  color: var(--color-blue);
  border-right: 2px solid;
  border-bottom: 2px solid;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 5px);
  right: 2px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
}
.l-nav-list__item-en {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin-bottom: 5px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, rgba(255, 255, 255, 0)), color-stop(75%, var(--color-yellow)), color-stop(90%, var(--color-yellow)), color-stop(90%, rgba(255, 255, 255, 0)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 75%, var(--color-yellow) 75%, var(--color-yellow) 90%, rgba(255, 255, 255, 0) 90%);
  color: var(--color-blue);
  font-size: 30px;
  line-height: 1.1;
}
.l-nav-overlay {
  cursor: pointer;
  position: fixed;
  width: 0;
  height: 100%;
  top: 0;
  left: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .l-nav-list__item a:hover {
    color: var(--color-blue);
    opacity: 1;
  }
  .l-nav-list__item a:hover::after {
    top: 50%;
  }
}
@media screen and (max-width: 768px) {
  .l-nav {
    right: -280px;
    width: 280px;
  }
  .l-nav-inner {
    padding: 80px 20px calc(var(--cv-height) + 50px);
  }
  .l-nav-list__item {
    margin-bottom: 10px;
    font-size: 14px;
  }
  .l-nav-list__item a::after {
    width: 8px;
    height: 8px;
    top: calc(50% - 4px);
  }
  .l-nav-list__item-en {
    font-size: 26px;
  }
}

/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  margin-bottom: 165px;
  position: relative;
}
.l-mv img {
  width: 100%;
}
.l-mv-txtBox {
  position: absolute;
  z-index: 2;
  width: 87%;
  left: 0;
  right: 0;
  bottom: 13.3%;
  margin: auto;
}
.l-mv__txt01 {
  width: 53.6%;
  margin: 0 auto 1.5% 0.6%;
}
.l-mv__txt01 img {
  -webkit-filter: drop-shadow(0 0 34px rgba(0, 0, 0, 0.32));
          filter: drop-shadow(0 0 34px rgba(0, 0, 0, 0.32));
}
.l-mv__txt02 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: max(6px, 0.6vw) max(15px, 1.5vw);
  background: var(--color-blue);
  color: #fff;
  font-weight: 700;
  font-size: max(13px, 1.23vw);
  line-height: 1.5;
  letter-spacing: 0.06em;
  -webkit-transform: skewX(-11deg);
          transform: skewX(-11deg);
}
@media screen and (max-width: 768px) {
  .l-mv {
    margin-bottom: 0;
  }
  .l-mv-txtBox {
    width: 89%;
    bottom: 8%;
  }
  .l-mv__txt01 {
    width: 100%;
    margin: 0 auto 2.5% 1%;
  }
  .l-mv__txt02 {
    padding: 1.5vw 3.5vw;
    font-size: 3.15vw;
  }
}

/*============================================================================================================
	main
============================================================================================================*/
.c-tit01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 700;
  font-size: 18px;
}
.c-tit01__en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 15px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, rgba(255, 255, 255, 0)), color-stop(80%, var(--color-yellow)), color-stop(86%, var(--color-yellow)), color-stop(86%, rgba(255, 255, 255, 0)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 80%, var(--color-yellow) 80%, var(--color-yellow) 86%, rgba(255, 255, 255, 0) 86%);
  color: var(--color-blue);
  font-style: italic;
  font-weight: 700;
  font-size: 92px;
  line-height: 1.1;
  font-family: "Figtree", sans-serif;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    font-size: 16px;
  }
  .c-tit01__en {
    margin-bottom: 5px;
    font-size: 50px;
  }
}

/*------------------------------------------
	.secMessage
------------------------------------------*/
.secMessage {
  overflow-x: clip;
  margin-bottom: 65px;
  padding-block: 0 120px;
  position: relative;
}
.secMessage::before, .secMessage::after {
  content: "";
  display: block;
  background: var(--color-blue-light);
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.secMessage::before {
  width: calc(50% - 260px);
  height: 300px;
  left: 0;
  bottom: 0;
}
.secMessage::after {
  width: calc(50% - 130px);
  height: 646px;
  top: -165px;
  right: 0;
}
.secMessage-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 45.5%;
  grid-template-columns: 1fr 45.5%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 50px;
}
.secMessage-txtBox {
  width: min(100%, 480px);
  margin: 5px auto 0 0;
}
.secMessage__secTit {
  margin-bottom: 120px;
}
.secMessage__txt {
  font-size: 18px;
  line-height: 2.1;
}
.secMessage__txt + .secMessage__txt {
  margin-top: 34px;
}
.secMessage-imgBox img {
  display: block;
}
.secMessage-imgBox img:nth-of-type(1) {
  width: 100%;
  margin-bottom: 20.6%;
}
.secMessage-imgBox img:nth-of-type(2) {
  width: 83.8%;
  margin: 0 -12.3% -5.8% auto;
}
.secMessage-imgBox img:nth-of-type(3) {
  width: 58%;
  margin-left: 12.2%;
}
@media screen and (max-width: 768px) {
  .secMessage {
    margin-bottom: 0;
    padding-block: 80px;
  }
  .secMessage::before {
    width: 200px;
    height: 130px;
  }
  .secMessage::after {
    width: 200px;
    height: 300px;
    top: 0;
  }
  .secMessage-inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .secMessage-txtBox {
    width: 100%;
    margin: 0 auto;
  }
  .secMessage__secTit {
    margin-bottom: 50px;
  }
  .secMessage__txt {
    font-size: 16px;
    line-height: 2;
  }
  .secMessage__txt + .secMessage__txt {
    margin-top: 25px;
  }
  .secMessage-imgBox {
    margin-inline: calc(var(--inner-padding) * -1);
  }
  .secMessage-imgBox img:nth-of-type(1) {
    width: 87.7%;
    margin-bottom: 10%;
  }
  .secMessage-imgBox img:nth-of-type(2) {
    width: 73.3%;
    margin: 0 0 -5.2% auto;
  }
  .secMessage-imgBox img:nth-of-type(3) {
    width: 50.7%;
    margin-left: 12.5%;
  }
}

/*------------------------------------------
	.secJob
------------------------------------------*/
.secJob {
  --navHeight: 80px;
  padding-block: 0 100px;
}
.secJob__secTit {
  margin-bottom: 60px;
}
.secJob-top {
  margin-bottom: 60px;
  padding: 22px 40px;
  position: relative;
}
.secJob-top::before, .secJob-top::after {
  content: "";
  display: block;
  width: 20px;
  height: 100%;
  border: 1px solid var(--color-blue);
  position: absolute;
  top: 0;
  pointer-events: none;
}
.secJob-top::before {
  left: 0;
  border-right: none;
}
.secJob-top::after {
  right: 0;
  border-left: none;
}
.secJob-top__txt {
  font-size: 18px;
  line-height: 2.1;
  text-align: center;
}
.secJob-top__txt .color {
  color: var(--color-blue);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .secJob {
    --navHeight: 60px;
    padding-block: 80px;
  }
  .secJob__secTit {
    margin-bottom: 40px;
  }
  .secJob-top {
    padding: 15px 20px;
    margin-bottom: 40px;
  }
  .secJob-top::before, .secJob-top::after {
    width: 10px;
  }
  .secJob-top__txt {
    font-size: 15px;
    text-align: left;
  }
}

/*	.secJob-nav
------------------------------------------*/
.secJob-nav {
  width: min(100% - var(--inner-padding) * 2, 940px);
  height: var(--navHeight);
  margin: 0 auto 80px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 18px 1fr 18px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 18px;
}
.secJob-nav__item {
  height: 100%;
  color: var(--color-blue);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
}
.secJob-nav__item a {
  height: 100%;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 5px 5px 20px;
  background: var(--color-blue-light);
  border: 1px solid var(--color-blue);
  position: relative;
}
.secJob-nav__item a::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid;
  border-bottom: 2px solid;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  margin: auto;
}
.secJob-nav__item span {
  display: contents;
}
@media screen and (min-width: 769px) {
  .secJob-nav__item a:hover {
    opacity: 1;
    background: var(--color-blue);
    color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .secJob-nav {
    position: sticky;
    top: 0;
    z-index: 2;
    margin-bottom: 50px;
    grid-gap: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .secJob-nav__item {
    font-size: min(3.7vw, 14px);
  }
  .secJob-nav__item + .secJob-nav__item a {
    border-left: none;
  }
  .secJob-nav__item a {
    padding: 2px 1px 13px;
  }
  .secJob-nav__item a::after {
    width: 6px;
    height: 6px;
    bottom: 8px;
  }
  .secJob-nav__item span {
    display: block;
    font-size: 0.75em;
  }
  .secJob-nav.is-fixed {
    width: calc(100% - var(--header-height));
    margin-left: 0;
  }
}

/*	.secJob-sec
------------------------------------------*/
@media screen and (max-width: 1600px) {
  .secJob-sec {
    scroll-margin-top: var(--navHeight);
  }
}

/*	.secJob-job
------------------------------------------*/
.secJob-job {
  --imgSize: 46.8%;
}
.secJob-job + .secJob-job {
  margin-top: 100px;
}
.secJob-job-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: var(--imgSize) 80px 1fr;
  grid-template-columns: var(--imgSize) 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 80px;
  margin-bottom: 60px;
}
.secJob-job-top-txtBox {
  width: min(100%, 505px);
}
.secJob-job-top__num {
  overflow: hidden;
  width: 5.5em;
  height: 4.9em;
  margin-bottom: 15px;
  padding: 0.9em 0 0 0.3em;
  color: var(--color-blue);
  font-size: 22px;
  line-height: 1;
  position: relative;
}
.secJob-job-top__num::after {
  content: "";
  display: block;
  width: 1px;
  height: 150%;
  background: currentColor;
  position: absolute;
  right: 15%;
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: top;
          transform-origin: top;
  z-index: -1;
}
.secJob-job-top__num-big {
  font-size: 3.3em;
  position: absolute;
  left: 24%;
  bottom: 0;
  line-height: 0.8;
}
.secJob-job-top__tit {
  margin-bottom: 12px;
  color: var(--color-blue);
  font-weight: 900;
  font-size: 32px;
}
.secJob-job-top__tit .line {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, rgba(255, 255, 255, 0)), color-stop(80%, var(--color-yellow)), color-stop(95%, var(--color-yellow)), color-stop(95%, rgba(255, 255, 255, 0)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 80%, var(--color-yellow) 80%, var(--color-yellow) 95%, rgba(255, 255, 255, 0) 95%);
}
.secJob-job-top__txt {
  margin-left: 5px;
  line-height: 1.85;
}
.secJob-job-top__img {
  width: 100%;
}
.secJob-job-schedule__tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}
.secJob-job-schedule__tit-en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  color: var(--color-blue);
  font-size: 32px;
  line-height: 1.1;
}
.secJob-job-schedule-list {
  width: min(100%, 1000px);
  margin-inline: auto;
  counter-reset: number;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}
.secJob-job-schedule-list__item {
  min-height: 170px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 26.5% 1fr;
  grid-template-columns: 26.5% 1fr;
  padding: 30px 40px 30px 170px;
  background: var(--color-blue-light);
  position: relative;
}
.secJob-job-schedule-list__item::after {
  counter-increment: number;
  content: counter(number, decimal);
  width: 110px;
  height: 110px;
  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;
  border-radius: 50%;
  background: var(--color-blue);
  color: #fff;
  font-style: italic;
  font-weight: 700;
  font-size: 32px;
  font-family: "Figtree", sans-serif;
  position: absolute;
  top: 0;
  left: 40px;
  bottom: 0;
  margin: auto;
}
.secJob-job-schedule-list__item:first-of-type::after {
  content: "START";
  font-size: 22px;
}
.secJob-job-schedule-list__item:last-of-type::after {
  content: "fin";
}
.secJob-job-schedule-list__item:nth-of-type(even) {
  background: #E3EDF8;
}
.secJob-job-schedule-list__time {
  -ms-grid-column-span: 2;
  grid-column: span 2;
  -ms-grid-row-align: end;
      align-self: end;
  color: var(--color-blue);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 0.05em;
}
.secJob-job-schedule-list__time .ja {
  font-style: normal;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.secJob-job-schedule-list__time .small {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
}
.secJob-job-schedule-list__tit {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.45;
}
.secJob-job-schedule-list__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 50px;
  border-left: 1px dashed #C0C0C0;
  font-weight: 400;
}
@media screen and (min-width: 769px) {
  .secJob-job-top__img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .secJob-job:nth-of-type(even) .secJob-job-top {
    -ms-grid-columns: 1fr 80px var(--imgSize);
    grid-template-columns: 1fr var(--imgSize);
  }
  .secJob-job:nth-of-type(even) .secJob-job-top .secJob-job-top-txtBox {
    margin-inline: auto 0;
  }
  .secJob-job:nth-of-type(even) .secJob-job-top .secJob-job-top__img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (max-width: 768px) {
  .secJob-job + .secJob-job {
    margin-top: 60px;
  }
  .secJob-job-top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 30px;
    margin-bottom: 50px;
  }
  .secJob-job-top-txtBox {
    width: calc(100% - var(--inner-padding) * 2);
    margin-inline: auto;
  }
  .secJob-job-top__num {
    margin-bottom: 20px;
    font-size: 14px;
  }
  .secJob-job-top__tit {
    margin-bottom: 15px;
    font-size: 22px;
  }
  .secJob-job-schedule__tit {
    margin-bottom: 30px;
  }
  .secJob-job-schedule-list {
    grid-gap: 40px;
  }
  .secJob-job-schedule-list__item {
    min-height: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 40px 20px 20px;
  }
  .secJob-job-schedule-list__item::after {
    width: 70px;
    height: 70px;
    font-size: 24px;
    top: -20px;
    left: 10px;
    bottom: auto;
  }
  .secJob-job-schedule-list__item:first-of-type::after {
    font-size: 18px;
  }
  .secJob-job-schedule-list__time {
    -ms-grid-column-span: 1;
    grid-column: span 1;
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
  }
  .secJob-job-schedule-list__time .small {
    font-size: 14px;
  }
  .secJob-job-schedule-list__tit {
    margin-bottom: 20px;
    font-size: 18px;
    text-align: center;
  }
  .secJob-job-schedule-list__txt {
    display: block;
    padding: 20px 0 0;
    border-left: none;
    border-top: 1px dashed #C0C0C0;
  }
}

/*	.secJob-merit
------------------------------------------*/
.secJob-merit {
  margin-top: 60px;
}
.secJob-merit__tit {
  width: 470px;
  aspect-ratio: 470/120;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto 20px;
  padding-bottom: 10px;
  background: url(../img/ico_megaphone01.svg) no-repeat left 55%/16%;
  color: var(--color-blue);
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  position: relative;
}
.secJob-merit__tit::before, .secJob-merit__tit::after {
  content: "";
  display: block;
  width: 82%;
  height: 2px;
  background: #333;
  -webkit-transform-origin: right;
          transform-origin: right;
  position: absolute;
  right: 0;
  z-index: -1;
  pointer-events: none;
}
.secJob-merit__tit::before {
  top: 0;
  -webkit-transform: rotate(-6deg);
          transform: rotate(-6deg);
}
.secJob-merit__tit::after {
  bottom: 0;
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
}
.secJob-merit__tit-en {
  font-weight: 800;
  font-size: 2.1em;
}
.secJob-merit__tit .line {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, rgba(255, 255, 255, 0)), color-stop(75%, var(--color-yellow)), color-stop(82%, var(--color-yellow)), color-stop(82%, rgba(255, 255, 255, 0)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 75%, var(--color-yellow) 75%, var(--color-yellow) 82%, rgba(255, 255, 255, 0) 82%);
}
.secJob-merit__lead {
  margin-bottom: 30px;
  line-height: 2;
  text-align: center;
}
.secJob-merit-list {
  width: min(100%, 1000px);
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
.secJob-merit-list__item {
  padding-bottom: 30px;
  background: #F3F9FF;
}
.secJob-merit-list__img {
  width: 100%;
  margin-bottom: 33px;
}
.secJob-merit-list__tit {
  width: calc(100% - 20px);
  margin: 0 auto 20px;
  color: var(--color-blue);
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}
.secJob-merit-list__txt {
  width: calc(100% - 46px);
  margin-inline: auto;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 768px) {
  .secJob-merit__tit {
    width: min(100%, 350px);
    padding-bottom: 5px;
    font-size: min(5vw, 21px);
  }
  .secJob-merit__lead {
    text-align: left;
  }
  .secJob-merit-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .secJob-merit-list__img {
    margin-bottom: 25px;
  }
  .secJob-merit-list__tit {
    margin-bottom: 15px;
  }
  .secJob-merit-list__txt {
    font-size: 14px;
  }
}

/*------------------------------------------
	.secPhoto
------------------------------------------*/
.secPhoto {
  margin-bottom: 125px;
  position: relative;
}
.secPhoto::before, .secPhoto::after {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  background: var(--color-blue-light);
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.secPhoto::before {
  width: 6.25%;
  top: 6%;
  left: 2%;
}
.secPhoto::after {
  width: 13.9%;
  top: 30%;
  left: 26.5%;
}
.secPhoto img {
  display: block;
}
.secPhoto img:nth-of-type(1) {
  width: 62.5%;
  margin-inline: auto 0;
}
.secPhoto img:nth-of-type(2) {
  width: 29.2%;
  margin-top: -9%;
}
@media screen and (max-width: 768px) {
  .secPhoto {
    margin-bottom: 0;
  }
  .secPhoto::before {
    width: 12%;
  }
  .secPhoto::after {
    width: 32%;
    left: 25%;
  }
  .secPhoto img:nth-of-type(1) {
    width: 70%;
  }
  .secPhoto img:nth-of-type(2) {
    width: 40%;
    margin-top: 10%;
  }
}

/*------------------------------------------
	.secInterview
------------------------------------------*/
.secInterview {
  margin-bottom: 125px;
  padding-block: 0 80px;
  position: relative;
}
.secInterview::after {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 50px);
  background: var(--color-blue-light);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
}
.secInterview__secTit {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .secInterview {
    margin-bottom: 0;
    padding-block: 80px;
  }
  .secInterview::after {
    height: calc(100% - 110px);
  }
  .secInterview__secTit {
    margin-bottom: 50px;
  }
}

/*	.secInterview-front
------------------------------------------*/
.secInterview-front a {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: min(53.8%, 580px) 55px 1fr;
  grid-template-columns: min(53.8%, 580px) 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 55px;
}
.secInterview-front-txtBox {
  margin-top: 13px;
}
.secInterview-front__tit {
  margin-bottom: 16px;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secInterview-front__tit .bg {
  padding: 4px 16px;
  border-radius: 4px;
  background: var(--color-blue);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secInterview-front__name {
  margin-bottom: 12px;
  color: var(--color-blue);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
}
.secInterview-front-data {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 80px 1fr;
  grid-template-columns: 80px 1fr;
}
.secInterview-front-data__tit {
  padding-right: 1em;
  position: relative;
}
.secInterview-front-data__tit::after {
  content: "：";
  position: absolute;
  top: 0;
  right: 0;
}
.secInterview-front__more {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 40px;
  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;
  gap: 8px;
  margin: 40px 0 0 auto;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
}
.secInterview-front__more::before, .secInterview-front__more::after {
  content: "";
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secInterview-front__more::before {
  width: 14px;
  aspect-ratio: 14/10;
  -webkit-mask-image: url(../img/ico_arrow01.svg);
  mask-image: url(../img/ico_arrow01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: #fff;
  position: absolute;
  top: 0;
  right: 13px;
  bottom: 0;
  margin: auto;
}
.secInterview-front__more::after {
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--color-blue);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.secInterview-front-imgBox {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
.secInterview-front-imgBox img {
  width: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (min-width: 769px) {
  .secInterview-front a:hover {
    opacity: 1;
  }
  .secInterview-front a:hover .secInterview-front__tit {
    color: var(--color-txt);
  }
  .secInterview-front a:hover .secInterview-front__tit .bg {
    background: var(--color-yellow);
  }
  .secInterview-front a:hover .secInterview-front__more::before {
    background: var(--color-txt);
  }
  .secInterview-front a:hover .secInterview-front__more::after {
    background: var(--color-yellow);
  }
  .secInterview-front a:hover .secInterview-front-imgBox img {
    -webkit-filter: brightness(0.7);
            filter: brightness(0.7);
  }
}
@media screen and (max-width: 768px) {
  .secInterview-front a {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
  .secInterview-front-txtBox {
    margin-top: -15px;
    position: relative;
    z-index: 2;
  }
  .secInterview-front__tit {
    font-size: 20px;
    text-align: center;
  }
  .secInterview-front__tit .bg {
    padding: 3px 10px;
  }
  .secInterview-front__name {
    font-size: 22px;
  }
  .secInterview-front-data {
    -ms-grid-columns: 75px 1fr;
    grid-template-columns: 75px 1fr;
  }
  .secInterview-front__more {
    gap: 15px;
    margin: 25px auto 0;
    font-size: 16px;
  }
  .secInterview-front-imgBox img {
    max-width: none;
    width: calc(100% + var(--inner-padding));
    margin-left: calc(var(--inner-padding) * -0.5);
  }
}

/*	.secInterview-content
------------------------------------------*/
.secInterview-content {
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 20px 40px 100px;
  background: var(--color-blue-light);
  position: relative;
}
.secInterview-content::before, .secInterview-content::after {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  background: #000;
  position: absolute;
  pointer-events: none;
}
.secInterview-content::before {
  width: 61.2%;
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.secInterview-content::after {
  width: 26.5%;
  right: 0;
  bottom: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.secInterview-content-inner {
  position: relative;
  z-index: 2;
}
.secInterview-content__tit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, rgba(255, 255, 255, 0)), color-stop(80%, var(--color-yellow)), color-stop(88%, var(--color-yellow)), color-stop(88%, rgba(255, 255, 255, 0)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 80%, var(--color-yellow) 80%, var(--color-yellow) 88%, rgba(255, 255, 255, 0) 88%);
  color: var(--color-blue);
  font-size: min(8vw, 92px);
  line-height: 1.1;
}
.secInterview-content-car {
  margin-bottom: 85px;
  position: relative;
}
.secInterview-content-car__tit {
  position: absolute;
  right: 0;
  bottom: 25px;
}
.secInterview-content-car-imgBox img {
  width: 100%;
}
.secInterview-content-int__tit {
  margin-bottom: 45px;
}
.secInterview-content-int-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40% 60px 1fr;
  grid-template-columns: 40% 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 60px;
}
.secInterview-content-int-prof-imgBox {
  margin-bottom: 20px;
}
.secInterview-content-int-prof-imgBox img {
  width: 100%;
}
.secInterview-content-int-prof__name {
  margin-bottom: 12px;
  color: var(--color-blue);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
}
.secInterview-content-int-prof-data {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 80px 1fr;
  grid-template-columns: 80px 1fr;
}
.secInterview-content-int-prof-data__tit {
  padding-right: 1em;
  position: relative;
}
.secInterview-content-int-prof-data__tit::after {
  content: "：";
  position: absolute;
  top: 0;
  right: 0;
}
.secInterview-content-int-q__tit {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--color-blue);
  color: var(--color-blue);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
}
.secInterview-content-int-q__txt {
  letter-spacing: 0.02em;
}
.secInterview-content-int-q__txt + .secInterview-content-int-q__tit {
  margin-top: 37px;
}
@media screen and (max-width: 768px) {
  .secInterview-content {
    padding: 20px 15px 60px;
  }
  .secInterview-content::before {
    width: 77.7%;
  }
  .secInterview-content::after {
    width: 34.4%;
  }
  .secInterview-content__tit {
    font-size: min(10.4vw, 39px);
  }
  .secInterview-content-car {
    padding-bottom: 15px;
  }
  .secInterview-content-car__tit {
    bottom: 0;
  }
  .secInterview-content-int__tit {
    margin-bottom: 20px;
  }
  .secInterview-content-int-box {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 50px;
  }
  .secInterview-content-int-prof-imgBox {
    margin-bottom: 15px;
  }
  .secInterview-content-int-prof__name {
    margin-bottom: 15px;
    font-size: 19px;
  }
  .secInterview-content-int-prof-data {
    -ms-grid-columns: 75px 1fr;
    grid-template-columns: 75px 1fr;
  }
  .secInterview-content-int-q__tit {
    font-size: 20px;
  }
  .secInterview-content-int-q__txt + .secInterview-content-int-q__tit {
    margin-top: 40px;
  }
}

/*	js - magnific_popup
------------------------------------------*/
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 {
  position: static;
  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;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.mfp-close.modalClose01 {
  position: absolute;
  top: 10px !important;
  right: 10px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: #000;
  border-radius: 50%;
  font-size: 10px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.mfp-close.modalClose01::before, .mfp-close.modalClose01::after {
  content: "";
  display: block;
  width: 45%;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
}
.mfp-close.modalClose01::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mfp-close.modalClose01::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.mfp-close.modalClose01:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .mfp-close.modalClose01 {
    top: 5px !important;
    right: 5px;
    width: 30px;
    height: 30px;
  }
}
.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: min(100%, 180px);
  height: 44px;
  margin: 60px auto 0;
  padding: 0;
  border: 1px solid #000;
  color: #000 !important;
  font-size: 16px;
  font-family: "Figtree", sans-serif;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  .mfp-close.modalClose02:hover {
    background: var(--color-blue);
    border-color: var(--color-blue);
    color: #fff !important;
  }
}
@media screen and (max-width: 768px) {
  .mfp-close.modalClose02 {
    margin-top: 40px;
  }
}

/*------------------------------------------
	.secData
------------------------------------------*/
.secData {
  padding-block: 0 140px;
}
.secData__secTit {
  margin-bottom: 60px;
}
.secData-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 30px;
}
.secData-list__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 3;
  grid-row: span 3;
  grid-gap: 0;
  padding: 30px 15px;
  background: var(--color-blue-light);
}
.secData-list__tit {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 26px;
  text-align: center;
}
.secData-list-imgBox {
  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;
  margin-bottom: 20px;
}
.secData-list-imgBox img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.secData-list__txt {
  font-weight: 400;
  font-size: 15px;
}
@media screen and (min-width: 769px) {
  .secData-list__item {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
  .secData-list__item:nth-of-type(n + 4) {
    -ms-grid-column-span: 3;
    grid-column: span 3;
  }
  .secData-list__item:nth-of-type(n + 4) .secData-list-imgBox {
    height: 170px;
  }
}
@media screen and (max-width: 768px) {
  .secData {
    padding-block: 80px;
  }
  .secData__secTit {
    margin-bottom: 40px;
  }
  .secData-list {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  .secData-listWrap {
    margin-right: calc(var(--inner-padding) * -1);
    padding-right: var(--inner-padding);
  }
  .secData-list__item {
    padding: 20px;
    width: 250px;
    display: block;
  }
  .secData-list__tit {
    font-size: 20px;
  }
  .secData-list-imgBox {
    height: 180px;
  }
  .secData-list-imgBox.is-custom01 img {
    height: 82%;
  }
  .secData-list-imgBox.is-custom02 img {
    height: 50%;
  }
  .secData-list__txt {
    font-size: 14px;
  }
}

/*------------------------------------------
	.secCompany
------------------------------------------*/
.secCompany {
  padding-block: 105px 100px;
  background: url(../img/bg_company01.webp) no-repeat center/cover;
}
.secCompany__secTit {
  margin-bottom: 40px;
  color: #fff;
  text-align: center;
}
.secCompany__secTit .c-tit01__en {
  margin-inline: auto;
  color: #fff;
}
.secCompany-box {
  width: min(100%, 760px);
  margin-inline: auto;
  padding: 30px 50px 50px;
  background: rgba(255, 255, 255, 0.94);
}
.secCompany-data th, .secCompany-data td {
  padding-block: 27px;
  padding-left: 20px;
  line-height: 1.5;
  text-align: left;
}
.secCompany-data th {
  width: 170px;
  border-bottom: 1px solid var(--color-blue);
  color: var(--color-blue);
  font-weight: 700;
  vertical-align: middle;
}
.secCompany-data td {
  border-bottom: 1px solid #C5CCD6;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .secCompany {
    padding-block: 80px;
  }
  .secCompany-box {
    width: 100%;
    padding: 15px 20px 30px;
  }
  .secCompany-data th, .secCompany-data td {
    padding-block: 17px;
    padding-left: 5px;
  }
  .secCompany-data th {
    width: 100px;
  }
}

/*------------------------------------------
	.secEntry
------------------------------------------*/
.secEntry {
  padding-block: 80px;
  background: url(../img/bg_entry01.webp) no-repeat center/cover;
}
.secEntry__secTit {
  margin-bottom: 23px;
  color: var(--color-blue);
  font-weight: 700;
  font-size: 32px;
  text-align: center;
}
.secEntry__btn {
  width: min(100%, 400px);
  margin-inline: auto;
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
}
.secEntry__btn a {
  min-height: 96px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: inherit;
  background: var(--color-blue);
}
.secEntry__btn-en {
  font-weight: 600;
  font-size: 44px;
  line-height: 1.1;
}
@media screen and (min-width: 769px) {
  .secEntry__btn a {
    border: 3px solid var(--color-blue);
  }
  .secEntry__btn a:hover {
    opacity: 1;
    background: #fff;
    color: var(--color-blue);
  }
}
@media screen and (max-width: 768px) {
  .secEntry {
    padding-block: 60px;
  }
  .secEntry__secTit {
    font-size: 28px;
    line-height: 1.6;
  }
  .secEntry__btn {
    font-size: 16px;
  }
  .secEntry__btn a {
    min-height: 85px;
  }
  .secEntry__btn-en {
    font-size: 34px;
  }
}
/*# sourceMappingURL=style.css.map */