@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: 90px;
  --inner-width: min(100%, 1080px + (var(--inner-padding) * 2));
  --inner-padding: 10px;
  --cv-width: 140px;
  --cv-height: 300px;
  --color-txt: #005190;
  --color-red: #FF5A5F;
  --color-orange: #FF9A03;
  --color-sky: #34C1EB;
  --color-yellow: #FF0;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  :root {
    --cv-width: 110px;
    --cv-height: 260px;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 60px;
    --inner-padding: 20px;
    --cv-width: 100%;
    --cv-height: 70px;
  }
}

/*------------------------------------------
	font
------------------------------------------*/
body {
  color: var(--color-txt);
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0;
  font-weight: 500;
  font-family: "Zen Maru Gothic", "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 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.5;
}

.f-zenkaku {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.f-ubuntu {
  font-family: "Ubuntu", 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%;
  height: var(--header-height);
  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;
  background: #fff;
}
.l-header__logo a, .l-header__logo img {
  display: block;
}
@media screen and (min-width: 769px) {
  .l-header {
    position: sticky;
    z-index: 9990;
    top: 0;
    left: 0;
    padding-inline: 40px;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    padding-inline: 10px calc(var(--header-height) + 10px);
  }
  .l-header__logo {
    width: 212px;
  }
}

/*	.l-header-cv
------------------------------------------*/
.l-header-cv {
  width: var(--cv-width);
  height: var(--cv-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  position: fixed;
  right: 15px;
  bottom: 100px;
  z-index: 9992;
}
.l-header-cv__btn {
  --btnColor: var(--color-txt);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
}
.l-header-cv__btn a {
  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: 100%;
  background: var(--btnColor);
}
.l-header-cv__btn-in {
  display: block;
}
.l-header-cv__btn-en {
  margin-top: 5px;
  display: block;
  color: var(--color-yellow);
  font-size: 14px;
  letter-spacing: 0.06em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-header-cv__btn.is-red {
  --btnColor: var(--color-red);
}
@media screen and (min-width: 769px) {
  .l-header-cv__btn {
    --skewSize: 12deg;
    border-radius: 50%;
    -webkit-transform: skewX(calc(var(--skewSize) * -1));
            transform: skewX(calc(var(--skewSize) * -1));
  }
  .l-header-cv__btn a {
    border: 2px solid var(--btnColor);
    border-radius: inherit;
  }
  .l-header-cv__btn a:hover {
    opacity: 1;
    background: var(--color-yellow);
    color: var(--btnColor);
  }
  .l-header-cv__btn a:hover .l-header-cv__btn-en {
    color: inherit;
  }
  .l-header-cv__btn-in {
    border-radius: inherit;
    -webkit-transform: skewX(var(--skewSize));
            transform: skewX(var(--skewSize));
  }
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .l-header-cv__btn {
    font-size: 15px;
  }
  .l-header-cv__btn .l-header-cv__btn-en {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .l-header-cv {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
    right: 0;
    bottom: 0;
  }
  .l-header-cv__btn {
    font-size: 16px;
  }
  .l-header-cv__btn-en {
    font-size: 11px;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: #005190;
}
.l-footer p, .l-footer li {
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-family: "Zen Maru Gothic", "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 30px;
  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 {
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  background: currentColor;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.l-footer-nav__item a {
  display: block;
  padding-inline: 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;
    text-align: left;
  }
}

.pagetop {
  display: none;
  width: 70px;
  height: 70px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  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: #005190;
  border: 1px solid #fff;
  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
============================================================================================================*/
.l-nav a {
  display: block;
}

/* PC */
@media screen and (min-width: 769px) {
  .l-nav {
    display: block !important;
    height: auto !important;
  }
  .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;
    gap: 30px;
  }
  .l-nav-list {
    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;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5px 30px;
  }
  .l-nav-list__item {
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
  }
  .l-nav-list__item a {
    padding-block: 4px;
    position: relative;
  }
  .l-nav-list__item a::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-yellow);
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-nav-list__item a:hover {
    opacity: 1;
  }
  .l-nav-list__item a:hover::after {
    opacity: 1;
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .gnavBtn {
    overflow: hidden;
    cursor: pointer;
    width: var(--header-height);
    aspect-ratio: 1/1;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9992;
    background: #005190;
  }
  .gnavBtn span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 28px;
    height: 2px;
    border-radius: 10px;
    background: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .gnavBtn span:nth-of-type(1) {
    top: 20px;
  }
  .gnavBtn span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .gnavBtn span:nth-of-type(3) {
    bottom: 20px;
  }
  .gnavBtn.is-close span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(-225deg);
            transform: translateY(9px) rotate(-225deg);
  }
  .gnavBtn.is-close span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
  }
  .gnavBtn.is-close span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) rotate(225deg);
            transform: translateY(-9px) rotate(225deg);
  }
  .l-nav {
    display: none;
    padding: 80px 20px calc(var(--cv-height) + 50px);
    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 {
    border-bottom: 1px solid #999;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
  }
  .l-nav-list__item a {
    padding: 15px 30px 15px 20px;
    position: relative;
  }
  .l-nav-list__item a::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    color: var(--color-txt);
    border-right: 2px solid;
    border-bottom: 2px solid;
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    margin: auto;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  overflow: clip;
  margin-bottom: 90px;
  position: relative;
}
.l-mv::after {
  content: "";
  display: block;
  width: 100%;
  height: 150px;
  background: url(../img/bg_wave01_pc.webp) no-repeat center top/max(100%, 1440px) 100%;
  position: absolute;
  left: 0;
  bottom: -1px;
  pointer-events: none;
}
.l-mv__txt {
  width: 43%;
  position: absolute;
  top: 37.8%;
  left: 5.6%;
  z-index: 2;
}
.l-mv img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-mv {
    margin-bottom: 0;
  }
  .l-mv::after {
    height: 60px;
    background-image: url(../img/bg_wave01_sp.webp);
    background-size: max(100%, 390px) 100%;
  }
  .l-mv__txt {
    width: 88.2%;
    top: auto;
    left: 4.1%;
    bottom: 40px;
  }
}

/*============================================================================================================
	main
============================================================================================================*/
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .c-inner01 {
    padding-right: var(--cv-width);
  }
}

.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;
  gap: 16px;
  color: var(--color-red);
  font-weight: 700;
  font-size: 26px;
  text-align: center;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 2;
}
.c-tit01::after {
  content: "";
  display: block;
  width: 100%;
  height: 250px;
  background: url(../img/bg_tit01.svg) no-repeat left calc(50% - 305px) bottom, url(../img/bg_tit02.svg) no-repeat right calc(50% - 255px) top;
  position: absolute;
  top: -65px;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.c-tit01__en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  color: var(--color-txt);
  font-size: 88px;
  line-height: 1;
  letter-spacing: 0.06em;
  font-family: "Ubuntu", sans-serif;
}
.c-tit01.is-yellow {
  color: #fff;
}
.c-tit01.is-yellow::after {
  background-image: url(../img/bg_tit03.svg), url(../img/bg_tit04.svg);
}
.c-tit01.is-yellow .c-tit01__en {
  color: var(--color-yellow);
  text-shadow: 0 0 16px rgba(0, 81, 144, 0.16);
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    gap: 8px;
    font-size: 18px;
  }
  .c-tit01::after {
    height: 100px;
    background-position: left bottom, right top;
    background-size: 115px, 155px;
    top: -30px;
  }
  .c-tit01__en {
    font-size: 40px;
  }
  .c-tit01.is-yellow .c-tit01__en {
    text-shadow: 0 0 8px rgba(0, 81, 144, 0.16);
  }
}

.c-tit02 {
  padding-bottom: 22px;
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  position: relative;
}
.c-tit02::after {
  content: "";
  display: block;
  width: 242px;
  height: 15px;
  -webkit-mask-image: url(../img/bg_tit07.svg);
  mask-image: url(../img/bg_tit07.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: auto 100%;
  mask-size: auto 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .c-tit02 {
    padding-bottom: 15px;
    font-size: 22px;
  }
  .c-tit02::after {
    width: 150px;
    height: auto;
    aspect-ratio: 242/15;
  }
}

.c-bg01 {
  position: relative;
}
.c-bg01::after {
  content: "";
  display: block;
  width: 100%;
  height: 210px;
  -webkit-mask-image: url(../img/bg_wave02_pc.webp);
  mask-image: url(../img/bg_wave02_pc.webp);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: max(100%, 1440px) 100%;
  mask-size: max(100%, 1440px) 100%;
  background: inherit;
  position: absolute;
  left: 0;
  bottom: calc(100% - 1px);
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .c-bg01::after {
    height: 60px;
    -webkit-mask-image: url(../img/bg_wave02_sp.webp);
    mask-image: url(../img/bg_wave02_sp.webp);
    -webkit-mask-size: max(100%, 390px) 100%;
    mask-size: max(100%, 390px) 100%;
  }
}

.c-btn01 {
  width: min(100%, 300px);
  margin-inline: auto;
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.c-btn01 a {
  min-height: 60px;
  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: inherit;
  background: var(--color-red);
}
@media screen and (min-width: 769px) {
  .c-btn01 a {
    border: 2px solid var(--color-red);
  }
  .c-btn01 a:hover {
    opacity: 1;
    background: #fff;
    color: var(--color-red);
  }
}
@media screen and (max-width: 768px) {
  .c-btn01 {
    font-size: 16px;
  }
}

/*	js - magnific_popup
------------------------------------------*/
.modalOpen01 {
  width: min(100%, 300px);
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.modalOpen01 a {
  min-height: 60px;
  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: inherit;
  background: var(--color-red);
}
.modalOpen01:not(:has(a)) {
  min-height: 60px;
  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-red);
}
@media screen and (min-width: 769px) {
  .modalOpen01 a {
    border: 2px solid var(--color-red);
  }
  .modalOpen01 a:hover {
    opacity: 1;
    background: #fff;
    color: var(--color-red);
  }
  .modalOpen01:not(:has(a)) {
    border: 2px solid var(--color-red);
  }
}
@media screen and (max-width: 768px) {
  .modalOpen01 {
    font-size: 16px;
  }
}

.c-modal01 {
  margin-inline: auto;
  padding-block: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-modal01 {
    padding: 20px 20px 30px;
  }
}

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: #005190;
  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;
}
.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%, 300px);
  height: 60px;
  margin: 10px auto 0;
  padding: 0;
  border: 1px solid #005190;
  border-radius: 100px;
  color: #005190 !important;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (min-width: 769px) {
  .mfp-close.modalClose02:hover {
    background: #005190;
    color: #fff !important;
  }
}
@media screen and (max-width: 768px) {
  .mfp-close.modalClose02 {
    margin-top: 20px;
  }
}

/*------------------------------------------
	.secUs
------------------------------------------*/
.secUs {
  overflow-x: clip;
  padding-block: 0 165px;
}
.secUs__secTit {
  margin-bottom: 85px;
}
.secUs__txt {
  font-size: 20px;
  line-height: 2;
}
.secUs__txt + .secUs__txt {
  margin-top: 32px;
}
@media screen and (min-width: 769px) {
  .secUs-top {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50% 30px 1fr;
    grid-template-columns: 50% 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-gap: 30px;
  }
  .secUs-txtBox {
    margin-top: 30px;
  }
  .secUs__img {
    width: max(100% + var(--inner-padding), 100% + 50vw - 545px);
    max-width: none;
    border-radius: 16px 0 0 16px;
  }
}
@media screen and (max-width: 768px) {
  .secUs {
    padding-block: 80px;
  }
  .secUs__secTit {
    margin-bottom: 40px;
  }
  .secUs-txtBox {
    margin-bottom: 30px;
  }
  .secUs__txt {
    font-size: min(4.1vw, 16px);
  }
  .secUs__txt + .secUs__txt {
    margin-top: 20px;
  }
  .secUs__img {
    width: 100%;
    border-radius: 16px;
  }
}

/*	.secUs-point
------------------------------------------*/
.secUs-point {
  margin-top: 85px;
}
.secUs-point__tit {
  margin-bottom: 50px;
}
.secUs-point__tit::after {
  background: #009AF3;
}
.secUs-point-list {
  counter-reset: number;
  width: min(100%, 1040px);
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 80px;
}
.secUs-point-list__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
.secUs-point-list__item::after {
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  color: var(--color-orange);
  font-weight: 700;
  font-size: 68px;
  line-height: 1;
  font-family: "Ubuntu", sans-serif;
  position: absolute;
  top: 0;
  left: 0;
}
.secUs-point-list__item:nth-of-type(1) {
  margin-top: 60px;
}
.secUs-point-list__item:nth-of-type(1) .secUs-point-list__txt {
  bottom: 100px;
}
.secUs-point-list__item:nth-of-type(1) .secUs-point-list__arrow {
  bottom: 60px;
}
.secUs-point-list__item:nth-of-type(2) .secUs-point-list__txt {
  bottom: 80px;
}
.secUs-point-list__item:nth-of-type(2) .secUs-point-list__arrow {
  bottom: 40px;
}
.secUs-point-list__txt {
  width: 100%;
  color: #fff;
  font-weight: 900;
  font-size: 28px;
  text-align: center;
  line-height: 1.65;
  position: absolute;
  left: 0;
  z-index: 2;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.secUs-point-list__arrow {
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.secUs-point-list__arrow::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.secUs-point-list__img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .secUs-point-list__item:hover .secUs-point-list__txt {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  .secUs-point-list__item:hover .secUs-point-list__arrow {
    -webkit-transform: translateX(-50%) translateY(8px);
            transform: translateX(-50%) translateY(8px);
  }
}
@media screen and (max-width: 768px) {
  .secUs-point {
    margin-top: 60px;
  }
  .secUs-point__tit {
    margin-bottom: 40px;
  }
  .secUs-point-list {
    width: min(100% - 30px, 320px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .secUs-point-list__item {
    width: 100%;
  }
  .secUs-point-list__item::after {
    font-size: min(10vw, 38px);
  }
  .secUs-point-list__item:nth-of-type(1) {
    margin-top: 0;
  }
  .secUs-point-list__item:nth-of-type(1) .secUs-point-list__txt {
    bottom: min(15.5vw, 70px);
  }
  .secUs-point-list__item:nth-of-type(1) .secUs-point-list__arrow {
    bottom: min(10vw, 45px);
  }
  .secUs-point-list__item:nth-of-type(2) .secUs-point-list__txt {
    bottom: min(13vw, 60px);
  }
  .secUs-point-list__item:nth-of-type(2) .secUs-point-list__arrow {
    bottom: min(8vw, 35px);
  }
  .secUs-point-list__txt {
    font-size: min(4.4vw, 18px);
  }
  .secUs-point-list__arrow {
    width: 18px;
    height: 18px;
    bottom: min(10vw, 45px);
  }
  .secUs-point-list__arrow::after {
    border-width: 2px;
  }
}

/*------------------------------------------
	.secLearcn
------------------------------------------*/
.secLearcn {
  padding-block: 90px 275px;
  background: var(--color-sky);
}
.secLearcn__secTit {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .secLearcn {
    padding-block: 80px;
  }
  .secLearcn__secTit {
    margin-bottom: 60px;
  }
}

/*	.secLearcn-box01
------------------------------------------*/
.secLearcn-box01 {
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 1fr;
  grid-template-columns: 50% 1fr;
  margin-bottom: 40px;
  border-radius: 24px;
  background: #fff;
}
.secLearcn-box01__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.secLearcn-box01-txtBox {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding: 30px 40px;
}
.secLearcn-box01-titBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 3px;
  margin-bottom: 35px;
}
.secLearcn-box01__num {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.5em;
  margin-top: 3px;
  color: var(--color-sky);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
}
.secLearcn-box01__tit {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #fff;
  font-weight: 900;
  font-size: clamp(23px, 2.3vw, 28px);
  line-height: 2.4;
}
.secLearcn-box01__tit .bg {
  padding: 8px 10px;
  background: var(--color-sky);
  border-radius: 8px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.secLearcn-box01__txt {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .secLearcn-box01 {
    display: block;
    margin-bottom: 60px;
  }
  .secLearcn-box01__img {
    height: auto;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .secLearcn-box01-txtBox {
    padding: 20px;
  }
  .secLearcn-box01-titBox {
    gap: 0;
    margin-bottom: 15px;
  }
  .secLearcn-box01__num {
    margin-top: 5px;
    font-size: 32px;
  }
  .secLearcn-box01__tit {
    font-size: 18px;
  }
  .secLearcn-box01__tit .bg {
    padding-block: 6px;
  }
}

/*	.secLearcn-box02
------------------------------------------*/
.secLearcn-box02 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50%;
  grid-template-columns: 1fr 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .secLearcn-box02 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
}

/* .secLearcn-box02-nav */
.secLearcn-box02-nav {
  padding-inline: 40px;
}
.secLearcn-box02-nav-titBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 3px;
  margin-bottom: 60px;
}
.secLearcn-box02-nav__num {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.5em;
  margin-top: 3px;
  color: var(--color-yellow);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
}
.secLearcn-box02-nav__tit {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: var(--color-sky);
  font-weight: 900;
  font-size: clamp(23px, 2.3vw, 28px);
  line-height: 2.4;
}
.secLearcn-box02-nav__tit .bg {
  padding: 8px 10px;
  background: #fff;
  border-radius: 8px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.secLearcn-box02-nav-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 28px;
  margin-left: 40px;
}
.secLearcn-box02-nav-list__item {
  cursor: pointer;
  padding: 3px 0 3px 32px;
  background: url(../img/ico_hand01.svg) no-repeat left top 2px/22px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  opacity: 0.6;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
.secLearcn-box02-nav-list__item .in {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secLearcn-box02-nav-list__item.is-active {
  opacity: 1;
}
.secLearcn-box02-nav-list__item.is-active .in {
  border-bottom: 6px solid var(--color-yellow);
}
@media screen and (max-width: 768px) {
  .secLearcn-box02-nav {
    padding-inline: 0;
  }
  .secLearcn-box02-nav-titBox {
    gap: 0;
    margin-bottom: 15px;
  }
  .secLearcn-box02-nav__num {
    margin-top: 5px;
    font-size: 32px;
  }
  .secLearcn-box02-nav__tit {
    font-size: 18px;
  }
  .secLearcn-box02-nav__tit .bg {
    padding-block: 6px;
  }
  .secLearcn-box02-nav-list {
    grid-gap: 10px;
    margin-left: 0;
  }
  .secLearcn-box02-nav-list__item {
    padding-block: 6px;
    background-position: left top;
    font-size: 14px;
  }
  .secLearcn-box02-nav-list__item.is-active .in {
    border-bottom-width: 4px;
  }
}

/* .js-tab-content */
.js-tab-content {
  display: none;
}
.js-tab-content.is-show {
  display: block;
}

/* .secLearcn-box02-content */
.secLearcn-box02-contentWrap {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
}
.secLearcn-box02-content__img {
  width: 100%;
}
.secLearcn-box02-content-txtBox {
  padding: 35px 40px 40px;
}
.secLearcn-box02-content__tit {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 22px;
  text-align: center;
}
.secLearcn-box02-content__txt {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .secLearcn-box02-content-txtBox {
    padding: 20px;
  }
  .secLearcn-box02-content__tit {
    margin-bottom: 15px;
    font-size: 18px;
  }
}

/*	.secLearcn-data
------------------------------------------*/
.secLearcn-data {
  margin-top: 85px;
}
.secLearcn-data__tit {
  margin-bottom: 40px;
  color: #fff;
}
.secLearcn-data__tit::after {
  background: currentColor;
}
.secLearcn-data-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.secLearcn-data-list__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.secLearcn-data-list__item + .secLearcn-data-list__item {
  border-left: 2px solid #fff;
}
.secLearcn-data-list__item img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .secLearcn-data {
    margin-top: 60px;
  }
  .secLearcn-data__tit {
    margin-bottom: 30px;
  }
  .secLearcn-data-list {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .secLearcn-data-listWrap {
    overflow: auto;
    margin-right: calc(var(--inner-padding) * -1);
    padding-right: var(--inner-padding);
  }
  .secLearcn-data-list__item {
    width: 250px;
  }
}

/*	.secLearcn-message
------------------------------------------*/
.secLearcn-message {
  width: min(100% - var(--inner-padding) * 2, 1040px);
  margin: 105px auto 0;
  position: relative;
}
.secLearcn-message::after {
  content: "";
  display: block;
  width: 368px;
  aspect-ratio: 368/313;
  background: url(../img/img_message01.svg) no-repeat center/contain;
  position: absolute;
  top: -62px;
  right: 10px;
  pointer-events: none;
}
.secLearcn-message__txt {
  width: calc(100% - 360px);
  padding: 40px;
  background: #fff;
  border-radius: 16px;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.6;
  position: relative;
}
.secLearcn-message__txt::after {
  content: "";
  display: block;
  width: 28px;
  aspect-ratio: 28/21;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  position: absolute;
  top: 45%;
  left: calc(100% - 1px);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .secLearcn-message {
    margin-top: 60px;
    padding-bottom: 110px;
  }
  .secLearcn-message::after {
    width: 150px;
    top: auto;
    right: -10px;
    bottom: 0;
  }
  .secLearcn-message__txt {
    width: 100%;
    padding: 20px;
    font-size: 16px;
  }
  .secLearcn-message__txt::after {
    width: 22px;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    top: calc(100% - 1px);
    left: auto;
    right: 100px;
  }
}

/*------------------------------------------
	.secJob
------------------------------------------*/
.secJob {
  padding-block: 65px 250px;
  background: #fff;
  position: relative;
  z-index: 1;
}
.secJob__secTit {
  margin-bottom: 85px;
}
@media screen and (max-width: 768px) {
  .secJob {
    padding-block: 80px 100px;
  }
  .secJob__secTit {
    margin-bottom: 40px;
  }
}

/*	.secJob-box
------------------------------------------*/
.secJob-box {
  padding: 40px;
  border-radius: 24px;
  background: #E6F4FA;
}
.secJob-box-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 46% 40px 1fr;
  grid-template-columns: 46% 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 40px;
}
.secJob-box-top__img {
  width: 100%;
  border-radius: 24px;
}
.secJob-box-top__tit {
  margin-bottom: 30px;
  color: #fff;
  font-weight: 900;
  font-size: 28px;
}
.secJob-box-top__tit .bg {
  padding: 8px 10px;
  background: var(--color-txt);
  border-radius: 8px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.secJob-box-top__txt {
  margin-bottom: 24px;
}
.secJob-box-top-detail {
  margin-bottom: 24px;
}
.secJob-box-top-detail-box01 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 105px 16px 1fr;
  grid-template-columns: 105px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 8px 16px;
  margin-bottom: 8px;
}
.secJob-box-top-detail-box01__tit {
  padding: 5px 10px;
  border-radius: 8px;
  background: var(--color-sky);
  color: #fff;
  font-weight: 900;
  line-height: 1.45;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.secJob-box-top-detail-box01__txt {
  line-height: 1.65;
}
.secJob-box-top-detail-box02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.secJob-box-top-detail-box02__txt {
  padding: 5px 10px;
  border-radius: 8px;
  background: var(--color-sky);
  color: #fff;
  font-weight: 900;
  line-height: 1.45;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.secJob-box-top__more {
  margin-inline: auto 0;
}
.secJob-box-point {
  margin-top: 70px;
  padding: 50px 60px;
  border-radius: 24px;
  background: #fff;
  position: relative;
}
.secJob-box-point__tit {
  width: min(100%, 300px);
  min-height: 60px;
  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-orange);
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  letter-spacing: 0.05em;
  position: absolute;
  top: -30px;
  right: 0;
  left: 0;
  margin: auto;
}
.secJob-box-point-boxWrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 60px;
}
.secJob-box-point-box__tit {
  margin-bottom: 20px;
  font-size: 20px;
}
.secJob-box-point-box__tit::after {
  background: currentColor;
}
@media screen and (min-width: 769px) {
  .secJob-box-point-box__tit::after {
    width: 102px;
  }
}
@media screen and (max-width: 768px) {
  .secJob-box {
    padding: 20px;
  }
  .secJob-box-top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }
  .secJob-box-top__img {
    border-radius: 12px;
  }
  .secJob-box-top__tit {
    margin-bottom: 15px;
    font-size: 20px;
  }
  .secJob-box-top__tit .bg {
    padding-block: 6px;
  }
  .secJob-box-top__txt {
    margin-bottom: 30px;
  }
  .secJob-box-top-detail {
    margin-bottom: 30px;
  }
  .secJob-box-top-detail-box01 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 8px;
  }
  .secJob-box-top-detail-box01__tit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .secJob-box-top-detail-box01__txt {
    margin-bottom: 8px;
  }
  .secJob-box-top__more {
    margin-inline: auto;
  }
  .secJob-box-point {
    padding: 50px 20px 20px;
  }
  .secJob-box-point__tit {
    width: min(100%, 200px);
    min-height: 50px;
    font-size: 20px;
    top: -25px;
  }
  .secJob-box-point-boxWrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .secJob-box-point-box__tit {
    margin-bottom: 15px;
    font-size: 18px;
  }
  .secJob-box-point-box__txt {
    font-size: 13px;
  }
}

/*	.secJob-content
------------------------------------------*/
.secJob-content {
  width: min(100%, 980px);
  border-radius: 24px;
  background: #E6F4FA;
}
.secJob-content-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 46.7% 40px 1fr;
  grid-template-columns: 46.7% 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 40px;
  margin-bottom: 40px;
}
.secJob-content-box__img {
  width: 100%;
  border-radius: 24px;
}
.secJob-content-box__tit {
  margin-bottom: 32px;
  padding: 15px 10px;
  background: var(--color-txt);
  border-radius: 8px;
  color: #fff;
  font-weight: 900;
  font-size: 28px;
  text-align: center;
}
.secJob-content-box-sche {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}
.secJob-content-box-sche__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 67px 10px 1fr;
  grid-template-columns: 67px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 10px;
}
.secJob-content-box-sche__time {
  padding-block: 6px;
  border-radius: 100px;
  background: var(--color-sky);
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  line-height: 1.1;
  font-family: "Ubuntu", sans-serif;
}
.secJob-content-box-sche__txt {
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .secJob-content {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 768px) {
  .secJob-content-box {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 30px;
    margin-bottom: 40px;
  }
  .secJob-content-box__img {
    border-radius: 12px;
  }
  .secJob-content-box__tit {
    margin-bottom: 25px;
    padding-block: 10px;
    font-size: 18px;
  }
  .secJob-content-box-sche {
    grid-gap: 10px;
  }
  .secJob-content-box-sche__item {
    -ms-grid-columns: 60px 10px 1fr;
    grid-template-columns: 60px 1fr;
  }
  .secJob-content-box-sche__time {
    padding-block: 5px;
    font-size: 14px;
  }
}

/*------------------------------------------
	.secInterview
------------------------------------------*/
.secInterview {
  padding-block: 85px 10px;
  background: var(--color-sky);
  position: relative;
  z-index: 2;
}
.secInterview::before {
  content: "";
  display: block;
  width: 100%;
  height: 210px;
  -webkit-mask-image: url(../img/bg_wave03_pc.webp);
  mask-image: url(../img/bg_wave03_pc.webp);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: max(100%, 1440px) 100%;
  mask-size: max(100%, 1440px) 100%;
  background: inherit;
  position: absolute;
  left: 0;
  top: calc(100% - 1px);
  z-index: -1;
  pointer-events: none;
}
.secInterview__secTit {
  margin-bottom: 85px;
}
@media screen and (max-width: 768px) {
  .secInterview {
    padding-block: 80px 50px;
  }
  .secInterview::before {
    height: 60px;
    -webkit-mask-image: url(../img/bg_wave03_sp.webp);
    mask-image: url(../img/bg_wave03_sp.webp);
    -webkit-mask-size: max(100%, 390px) 100%;
    mask-size: max(100%, 390px) 100%;
  }
  .secInterview__secTit {
    margin-bottom: 50px;
  }
}

/*	.secInterview-front
------------------------------------------*/
.secInterview-front {
  width: min(100%, 740px);
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 100px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 100px;
}
.secInterview-front__item a {
  display: block;
}
.secInterview-front__img {
  width: 100%;
}
.secInterview-front__tit {
  margin-block: -75px 15px;
  font-weight: 700;
  font-size: 17.5px;
  text-align: center;
  line-height: 2.45;
  position: relative;
  z-index: 2;
}
.secInterview-front__tit .bg {
  padding: 8px;
  background: #fff;
  border-radius: 6px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.secInterview-front__prof {
  margin-bottom: 30px;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.secInterview-front__more {
  margin-inline: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .secInterview-front__item a:hover {
    opacity: 1;
  }
  .secInterview-front__item a:hover .secInterview-front__img {
    -webkit-filter: brightness(0.9);
            filter: brightness(0.9);
  }
  .secInterview-front__item a:hover .secInterview-front__tit {
    color: var(--color-red);
  }
  .secInterview-front__item a:hover .secInterview-front__more {
    background: #fff;
    color: var(--color-red);
  }
  .secInterview-front__img, .secInterview-front__tit {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 768px) {
  .secInterview-front {
    width: 100%;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 60px;
  }
  .secInterview-front__img {
    width: min(80%, 250px);
    display: block;
    margin-inline: auto;
  }
  .secInterview-front__tit {
    margin-block: -50px 10px;
    font-size: min(4.7vw, 18px);
    line-height: 2.2;
  }
  .secInterview-front__tit .bg {
    padding: 5px 10px;
  }
  .secInterview-front__prof {
    margin-bottom: 15px;
  }
}

/*	.secInterview-content
------------------------------------------*/
.secInterview-content {
  width: min(100%, 860px);
  background: var(--color-sky);
}
.secInterview-content-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 42.2% 34px 1fr;
  grid-template-columns: 42.2% 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 34px;
  margin-bottom: 32px;
}
.secInterview-content-top__img {
  width: 100%;
}
.secInterview-content-top__tit {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 2.4;
}
.secInterview-content-top__tit .bg {
  padding: 8px 12px;
  background: #fff;
  border-radius: 6px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.secInterview-content-top__prof {
  color: #fff;
  font-weight: 700;
}
.secInterview-content-q {
  margin-bottom: 40px;
}
.secInterview-content-q__tit {
  min-height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  padding-left: 64px;
  color: #fff;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.5;
  font-family: "Zen Kaku Gothic New", sans-serif;
  position: relative;
}
.secInterview-content-q__tit::after {
  content: "Q";
  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: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-red);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  font-family: "Ubuntu", sans-serif;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.secInterview-content-q__txt {
  padding: 20px 30px;
  background: #fff;
  border-radius: 16px;
}
.secInterview-content-q__txt + .secInterview-content-q__tit {
  margin-top: 32px;
}
@media screen and (min-width: 769px) {
  .secInterview-content {
    padding-inline: 50px;
  }
}
@media screen and (max-width: 768px) {
  .secInterview-content {
    width: 100%;
    padding-top: 30px;
  }
  .secInterview-content-top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 0;
    margin-bottom: 40px;
  }
  .secInterview-content-top__img {
    width: min(70%, 200px);
    display: block;
    margin-inline: auto;
  }
  .secInterview-content-top-txtBox {
    margin-top: -40px;
    position: relative;
    z-index: 2;
  }
  .secInterview-content-top__tit {
    margin-bottom: 10px;
    font-size: min(4.3vw, 16px);
    line-height: 2.3;
    text-align: center;
  }
  .secInterview-content-top__tit .bg {
    padding: 5px 10px;
  }
  .secInterview-content-top__prof {
    text-align: center;
  }
  .secInterview-content-q__tit {
    min-height: 35px;
    padding-left: 50px;
    font-size: 16px;
  }
  .secInterview-content-q__tit::after {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .secInterview-content-q__txt {
    padding: 15px;
    border-radius: 8px;
    line-height: 1.65;
  }
  .secInterview-content-q__txt + .secInterview-content-q__tit {
    margin-top: 25px;
  }
}

/*------------------------------------------
	.secSearch
------------------------------------------*/
.secSearch {
  padding-block: 320px 120px;
  background: url(../img/bg_search01_pc.webp) no-repeat center/cover;
}
.secSearch__secTit {
  margin-bottom: 40px;
  color: var(--color-txt);
  font-weight: 900;
  font-size: 38px;
}
.secSearch__secTit::after {
  background-image: url(../img/bg_tit05.svg), url(../img/bg_tit06.svg);
  top: -68px;
}
@media screen and (min-width: 769px) {
  .secSearch__btn {
    width: min(100%, 400px);
    font-size: 22px;
  }
  .secSearch__btn a {
    min-height: 100px;
    border-width: 3px;
  }
}
@media screen and (max-width: 768px) {
  .secSearch {
    padding-block: 100px 55px;
    background-image: url(../img/bg_search01_sp.webp);
  }
  .secSearch__secTit {
    margin-bottom: 25px;
    font-size: 24px;
  }
  .secSearch__secTit::after {
    top: -15px;
  }
  .secSearch__btn {
    width: min(100%, 260px);
  }
}
/*# sourceMappingURL=style.css.map */