@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;
  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 {
    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: #2974BD;
  --color-blue-light: #F5F7FB;
  --color-yellow: #FFFB00;
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 60px;
    --inner-padding: 20px;
    --cv-height: 60px;
  }
}

/*------------------------------------------
	font
------------------------------------------*/
body {
  color: var(--color-txt);
  font-size: 15px;
  line-height: 1.85;
  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-sen {
  font-weight: 400;
  font-family: "Sen", 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 {
  transition: opacity 1s, transform 1.5s;
}
.js-scroll:nth-child(2) {
  transition-delay: 0.1s;
}
.js-scroll:nth-child(3) {
  transition-delay: 0.2s;
}
.js-scroll:nth-child(4) {
  transition-delay: 0.3s;
}
.js-scroll:nth-child(5) {
  transition-delay: 0.4s;
}
.js-scroll.is-fadeInUp {
  opacity: 0;
  transform: translate(0, 100px);
}
.js-scroll.is-fadeInUp.is-view {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .js-scroll.is-fadeInUp {
    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: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  background: #fff;
}
.l-header__logo a, .l-header__logo img {
  display: block;
}
.l-header__entry {
  position: fixed;
  right: 0;
  bottom: 140px;
  z-index: 9992;
  width: 100px;
  height: 100px;
  border-radius: 10px 0 0 10px;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.1em;
}
.l-header__entry a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: inherit;
  background: var(--color-blue);
  border: 2px solid #fff;
}
@media screen and (min-width: 769px) {
  .l-header {
    --header-top: 20px;
    position: -webkit-sticky;
    position: sticky;
    width: max(980px, 100% - 200px);
    border-radius: 10px;
    z-index: 9990;
    top: 0;
    margin-inline: auto;
    margin-top: var(--header-top);
    margin-bottom: calc((var(--header-height) + var(--header-top)) * -1);
    padding: 0 40px;
    transition: all 0.3s;
  }
  .l-header.is-scroll {
    width: 100%;
    border-radius: 0;
  }
  .l-header__entry a {
    border-right: none;
  }
  .l-header__entry a:hover {
    opacity: 1;
    background: var(--color-yellow);
    border-color: var(--color-blue);
    color: var(--color-blue);
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    height: auto;
  }
  .l-header__logo {
    position: absolute;
    top: 15px;
    left: 16px;
    width: 74px;
    z-index: 9990;
  }
  .l-header__entry {
    bottom: 0;
    left: 0;
    margin: auto;
    width: calc(100% - 40px);
    height: var(--cv-height);
    border-radius: 10px 10px 0 0;
  }
  .l-header__entry a {
    border-bottom: none;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: #2974BD;
}
.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 {
  box-sizing: border-box;
}
.l-footer-inner {
  width: min(100%, 1100px);
  margin-inline: auto;
  padding: 50px 10px;
}
.l-footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  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 20px;
  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 calc(var(--cv-height) + 30px);
  }
  .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: 80px;
  height: 80px;
  position: fixed;
  right: 15px;
  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: var(--color-blue);
  border: 2px solid #fff;
  border-radius: inherit;
  box-sizing: border-box;
  color: #fff !important;
  position: relative;
}
.pagetop a::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 2px, 2px 2px, 2px 100%, 0 100%);
  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;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .pagetop {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: calc(var(--cv-height) + 10px);
  }
  .pagetop a {
    border-width: 1px;
  }
  .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: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
  }
  .l-nav-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 30px;
  }
  .l-nav-list__item {
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
  }
  .l-nav-list__item a:hover {
    opacity: 1;
    color: var(--color-blue);
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .gnavBtn {
    overflow: hidden;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: 9992;
    position: fixed;
    top: 10px;
    right: 10px;
    background: var(--color-blue);
  }
  .gnavBtn span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 28px;
    height: 2px;
    border-radius: 10px;
    background: #fff;
    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) {
    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) {
    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-blue);
    border-right: 2px solid;
    border-bottom: 2px solid;
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    margin: auto;
    transform: rotate(45deg);
  }
}
/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  margin-bottom: 115px;
  position: relative;
}
.l-mv img {
  width: 100%;
}
.l-mv-txtBox {
  position: absolute;
  z-index: 2;
  width: 86%;
  left: 0;
  right: 0;
  bottom: 10%;
  margin: auto;
}
.l-mv__txt01 {
  width: 41.8%;
  margin-bottom: max(30px, 2.8vw);
}
.l-mv__txt02 {
  width: fit-content;
  padding: max(6px, 0.6vw);
  background: var(--color-yellow);
  color: var(--color-blue);
  font-weight: 700;
  font-size: max(13px, 1.24vw);
  letter-spacing: 0.06em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .l-mv {
    margin-bottom: 0;
  }
  .l-mv-txtBox {
    width: calc(100% - 40px);
    bottom: 30px;
  }
  .l-mv__txt01 {
    width: 90%;
    margin-bottom: 5vw;
  }
  .l-mv__txt02 {
    padding: 1.7vw 2.5vw;
    font-size: 3.3vw;
    line-height: 1.7;
  }
}

.js-mv-slider {
  opacity: 0;
  transition: opacity 0.5s;
  aspect-ratio: 1440/802;
}
.js-mv-slider.is-initialized {
  opacity: 1;
}
.js-mv-slider .splide__track {
  height: 100%;
}
.js-mv-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .js-mv-slider {
    aspect-ratio: 780/1320;
  }
}

/*============================================================================================================
	main
============================================================================================================*/
.c-tit01 {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.02em;
}
.c-tit01__en {
  order: -1;
  margin-bottom: 7px;
  color: var(--color-blue);
  font-weight: 400;
  font-size: 78px;
  line-height: 1.2;
  letter-spacing: 0;
  font-family: "Sen", sans-serif;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    font-size: 18px;
  }
  .c-tit01__en {
    font-size: 50px;
  }
}

/*	tab common
------------------------------------------*/
.js-tab-btn {
  cursor: pointer;
  transition: all 0.3s;
}

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

@media screen and (max-width: 768px) {
  .c-tab-set {
    scroll-margin-top: 80px;
  }
  .c-tab-set__back {
    width: fit-content;
    margin: -1px 10px 0 auto;
    border-radius: 0 0 10px 10px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
  }
  .c-tab-set__back a {
    height: 60px;
    padding: 0 40px 0 15px;
    display: flex;
    align-items: center;
    background: var(--color-blue);
    border-radius: inherit;
    position: relative;
  }
  .c-tab-set__back a::after {
    content: "";
    display: block;
    width: 8px;
    aspect-ratio: 13/25;
    background: url(../img/ico_arrow01.svg) no-repeat center/contain;
    transform: rotate(-90deg);
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    margin: auto;
  }
}

/*------------------------------------------
	.secMessage
------------------------------------------*/
.secMessage {
  padding-block: 0 120px;
  background: url(../img/bg_message01.svg) no-repeat left calc(50% - 438px) top 65px, url(../img/bg_message02.svg) no-repeat right calc(50% - 467px) bottom;
}
.secMessage__secTit {
  margin-bottom: 77px;
}
.secMessage__catch {
  margin-bottom: 35px;
  font-weight: 700;
  font-size: 38px;
  text-align: center;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
.secMessage__catch .color {
  padding-inline: 10px 0;
  background: linear-gradient(0deg, var(--color-yellow) 20%, rgba(255, 255, 255, 0) 20%);
  color: var(--color-blue);
  font-weight: 900;
}
.secMessage__txt {
  font-size: 16px;
  line-height: 2.4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .secMessage {
    padding-block: 80px;
    background-position: left 5px top 140px, right 10px bottom;
    background-size: 80px, 75px;
  }
  .secMessage__secTit {
    margin-bottom: 50px;
  }
  .secMessage__catch {
    margin-bottom: 30px;
    font-size: 26px;
  }
  .secMessage__txt {
    font-size: 15px;
    text-align: left;
    line-height: 2;
  }
}

/*------------------------------------------
	.secGallery
------------------------------------------*/
.secGallery {
  margin-bottom: 8px;
}
.secGallery img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .secGallery {
    margin-bottom: 4px;
  }
}

/*------------------------------------------
	.secJob
------------------------------------------*/
.secJob {
  margin-bottom: 160px;
  padding-block: 110px 0;
  background: var(--color-blue-light);
}
.secJob-secTitBox {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 10px;
  margin-bottom: 105px;
}
.secJob__secTit {
  text-align: left;
  flex-shrink: 0;
}
.secJob__lead {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .secJob {
    margin-bottom: 0;
    padding-block: 80px 40px;
  }
  .secJob-secTitBox {
    display: block;
    margin-bottom: 50px;
  }
  .secJob__secTit {
    margin-bottom: 30px;
    text-align: center;
  }
  .secJob__secTit .c-tit01__en {
    font-size: min(13vw, 50px);
  }
  .secJob__lead {
    font-size: 15px;
    text-align: center;
  }
}

.secJob-nav {
  --item-height: 140px;
  width: calc(100% - var(--inner-padding) * 2);
  height: var(--item-height);
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 20px;
  margin: 0 auto -1px;
}
.secJob-nav__item {
  flex: 1;
  max-width: 440px;
  height: calc(100% - 20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 5px;
  background: #fff;
  border-radius: 16px 16px 0 0;
  color: #898E91;
  font-weight: 700;
  font-size: 26px;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
.secJob-nav__item-num {
  color: var(--color-blue);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0;
}
.secJob-nav__item.is-active {
  height: 100%;
  background: var(--color-blue);
  color: #fff;
}
.secJob-nav__item.is-active .secJob-nav__item-num {
  color: #fff;
}
@media screen and (min-width: 769px) {
  .secJob-nav__item:hover {
    background: var(--color-blue);
    color: #fff;
  }
  .secJob-nav__item:hover .secJob-nav__item-num {
    color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .secJob-nav {
    --item-height: 90px;
    width: calc(100% - 20px);
    gap: 10px;
  }
  .secJob-nav__item {
    height: calc(100% - 10px);
    font-size: min(4.3vw, 15px);
  }
  .secJob-nav__item-num {
    font-size: 0.75em;
  }
}

.secJob-contentWrap {
  padding-block: 100px;
  background: var(--color-blue);
  color: #fff;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .secJob-contentWrap {
    padding-block: 50px;
  }
}

/*	secJob-sec
------------------------------------------*/
.secJob-sec + .secJob-sec {
  margin-top: 60px;
}
.secJob-sec__tit {
  width: fit-content;
  margin: 0 auto 43px;
  padding: 7px 22px;
  background: #fff;
  color: var(--color-blue);
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  letter-spacing: 0.05em;
  position: relative;
}
.secJob-sec__tit::after {
  content: "";
  display: block;
  width: 15px;
  aspect-ratio: 20/18;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: inherit;
  position: absolute;
  right: 0;
  left: 0;
  top: calc(100% - 1px);
  margin: auto;
}
@media screen and (max-width: 768px) {
  .secJob-sec + .secJob-sec {
    margin-top: 40px;
  }
  .secJob-sec__tit {
    margin-bottom: 30px;
    padding: 5px 20px;
    font-size: 20px;
  }
  .secJob-sec__tit::after {
    width: 12px;
  }
}

/*	.secJob-info
------------------------------------------*/
.secJob-info .secJob-sec__tit {
  margin-bottom: 20px;
}
.secJob-info__txt {
  font-size: 17px;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .secJob-info__txt {
    font-size: 14px;
    text-align: left;
  }
}

/*	.secJob-state
------------------------------------------*/
.secJob-state-list {
  width: min(100%, 1000px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px 50px;
}
.secJob-state-list-imgBox {
  margin-bottom: 10px;
}
.secJob-state-list-imgBox img {
  width: 100%;
  border-radius: 8px;
}
.secJob-state-list__txt {
  min-height: 3.2em;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.secJob-state-list.is-flow {
  counter-reset: number;
}
.secJob-state-list.is-flow .secJob-state-list-imgBox {
  position: relative;
}
.secJob-state-list.is-flow .secJob-state-list-imgBox::after {
  content: "";
  display: block;
  width: 13px;
  aspect-ratio: 13/25;
  background: url(../img/ico_arrow01.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -32px;
  margin: auto;
}
.secJob-state-list.is-flow .secJob-state-list__txt {
  padding-left: 1em;
  position: relative;
}
.secJob-state-list.is-flow .secJob-state-list__txt::after {
  counter-increment: number;
  content: counter(number, decimal) ".";
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 769px) {
  .secJob-state-list.is-flow .secJob-state-list__item:nth-of-type(3n) .secJob-state-list-imgBox::after, .secJob-state-list.is-flow .secJob-state-list__item:last-of-type .secJob-state-list-imgBox::after {
    content: none;
  }
}
@media screen and (max-width: 768px) {
  .secJob-state-list {
    width: calc(100% - 20px);
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px 20px;
  }
  .secJob-state-list__txt {
    min-height: auto;
    font-size: 14px;
  }
  .secJob-state-list.is-flow .secJob-state-list__item:first-of-type .secJob-state-list-imgBox::after {
    content: none;
  }
  .secJob-state-list.is-flow .secJob-state-list-imgBox::after {
    width: 9px;
    right: auto;
    left: -14px;
  }
}

/*	.secJob-data
------------------------------------------*/
.secJob-data-list {
  width: min(100%, 1020px);
  margin-inline: auto;
  display: flex;
  align-items: start;
  gap: 30px;
  flex-wrap: wrap;
}
.secJob-data-list__item {
  width: min((100% - 60px) / 3);
}
.secJob-data-list__item img {
  width: 100%;
  border-radius: 8px;
}
@media screen and (min-width: 769px) {
  .secJob-data {
    margin-top: 35px !important;
  }
}
@media screen and (max-width: 768px) {
  .secJob-data-list {
    width: max-content;
    gap: 20px;
    flex-wrap: nowrap;
  }
  .secJob-data-listWrap {
    margin-right: calc(var(--inner-padding) * -1);
    padding-right: var(--inner-padding);
  }
  .secJob-data-list__item {
    width: 200px;
  }
}

/*	.secJob__btn
------------------------------------------*/
.secJob__btn {
  width: min(100%, 480px);
  margin: 60px auto 0;
  border-radius: 100px;
  color: var(--color-blue);
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.secJob__btn a {
  min-height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 50px;
  border-radius: inherit;
  background: #fff url(../img/ico_arrow02.svg) no-repeat right 30px center;
}
@media screen and (min-width: 769px) {
  .secJob__btn a:hover {
    opacity: 1;
    background-color: var(--color-yellow);
  }
}
@media screen and (max-width: 768px) {
  .secJob__btn {
    margin-top: 50px;
    font-size: 18px;
  }
  .secJob__btn a {
    min-height: 70px;
    padding-inline: 30px;
    background-position: right 20px center;
  }
}

/*------------------------------------------
	.secInterview
------------------------------------------*/
.secInterview {
  margin-bottom: 105px;
  padding-block: 0 100px;
  background: url(../img/bg_interview01.svg) no-repeat right calc(50% - 440px) top;
  position: relative;
}
.secInterview::after {
  content: "";
  display: block;
  width: max(100% - 180px, 1000px);
  height: calc(100% - 55px);
  background: var(--color-blue-light);
  border-radius: 0 200px 0 0;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
}
.secInterview__secTit {
  margin-bottom: 50px;
}
.secInterview__lead {
  margin-bottom: 55px;
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .secInterview {
    margin-bottom: 40px;
    padding-block: 80px 40px;
    background-position: right 10px top 130px;
    background-size: 70px;
  }
  .secInterview::after {
    width: calc(100% - 30px);
    height: calc(100% - 120px);
    border-radius: 0 50px 0 0;
  }
  .secInterview__secTit {
    margin-bottom: 40px;
  }
  .secInterview__lead {
    margin-bottom: 40px;
    font-size: 15px;
  }
}

.secInterview-front__item a {
  display: block;
  position: relative;
}
.secInterview-front-imgBox {
  position: relative;
}
.secInterview-front-imgBox img {
  width: 100%;
}
.secInterview-front__job {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  padding: 6px 22px;
  background: var(--color-yellow);
  color: var(--color-blue);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.secInterview-front-txtBox {
  width: calc(100% - 40px);
  margin: -35px auto 0;
  position: relative;
  z-index: 2;
}
.secInterview-front__tit {
  width: calc(100% - 5px);
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 2;
}
.secInterview-front__tit .bg {
  padding: 4px 16px;
  background: var(--color-blue);
  border-radius: 4px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.secInterview-front__prof {
  margin-top: 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}
.secInterview-front__more {
  width: fit-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin: 12px 0 0 auto;
  font-weight: 700;
  font-size: 16px;
}
.secInterview-front__more::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: var(--color-blue) url(../img/ico_arrow03.svg) no-repeat center;
  border-radius: 50%;
  flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .secInterview-front__item a:hover {
    opacity: 1;
  }
  .secInterview-front__item a:hover .secInterview-front-imgBox img {
    transform: scale(1.1);
    filter: brightness(0.8);
  }
  .secInterview-front__item a:hover .secInterview-front-txtBox {
    color: var(--color-blue);
  }
  .secInterview-front__item a:hover .secInterview-front__tit {
    color: var(--color-blue);
  }
  .secInterview-front__item a:hover .secInterview-front__tit .bg {
    background: var(--color-yellow);
  }
  .secInterview-front__item a:hover .secInterview-front__more::after {
    background-color: var(--color-yellow);
    background-image: url(../img/ico_arrow04.svg);
  }
  .secInterview-front-imgBox {
    overflow: hidden;
  }
  .secInterview-front-imgBox img {
    transition: all 0.5s;
  }
  .secInterview-front__tit, .secInterview-front__tit .bg, .secInterview-front__more, .secInterview-front__more::after {
    transition: all 0.3s;
  }
}
@media screen and (max-width: 768px) {
  .secInterview-front__job {
    top: 5px;
    right: 5px;
    padding: 3px 10px;
    font-size: 13px;
  }
  .secInterview-front-txtBox {
    width: calc(100% - 20px);
    margin-top: -15px;
  }
  .secInterview-front__tit {
    font-size: min(4.2vw, 16px);
    line-height: 2.2;
  }
  .secInterview-front__tit .bg {
    padding-inline: 7px;
  }
  .secInterview-front__prof {
    font-size: 13px;
  }
  .secInterview-front__more {
    margin-top: 25px;
    font-size: 13px;
  }
  .secInterview-front__more::after {
    width: 35px;
    height: 35px;
    background-size: 12px;
  }
}

.secInterview-front-nav {
  width: min(100% - var(--inner-padding) * 2, 288px);
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: 1fr 88px;
  align-items: center;
  grid-gap: 20px;
}
.secInterview-front-nav .my-carousel-progress {
  background: #fff;
}
.secInterview-front-nav .my-carousel-progress-bar {
  background: var(--color-blue);
  height: 2px;
  transition: width 1000ms ease;
  width: 0;
}
.secInterview-front-nav .splide__arrows {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.secInterview-front-nav .splide__arrow {
  width: 40px;
  aspect-ratio: 1/1;
  padding: 0;
  background: var(--color-blue) url(../img/ico_arrow05.svg) no-repeat center;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}
.secInterview-front-nav .splide__arrow svg {
  display: none;
}
.secInterview-front-nav .splide__arrow.splide__arrow--prev {
  transform: scale(-1, 1);
}
.secInterview-front-nav .splide__arrow:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .secInterview-front-nav {
    margin-top: 30px;
  }
}

.secInterview-content {
  width: min(100%, 800px);
  margin-inline: auto;
  padding: 0 0 60px;
  background: var(--color-blue-light);
  position: relative;
}
.secInterview-content-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.secInterview-content-top-txtBox {
  align-self: flex-end;
  flex: 1;
  margin-inline: 40px -26%;
  padding-block: 40px;
  position: relative;
  z-index: 2;
}
.secInterview-content-top__job {
  width: fit-content;
  margin: 0 auto 40px 0;
  padding: 6px 22px;
  background: var(--color-yellow);
  color: var(--color-blue);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.secInterview-content-top__tit {
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 2;
}
.secInterview-content-top__tit .bg {
  padding: 4px 16px;
  background: var(--color-blue);
  border-radius: 4px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.secInterview-content-top__prof {
  margin-top: 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}
.secInterview-content-top__img {
  width: 62.5%;
  object-fit: cover;
}
.secInterview-content-q {
  width: min(100% - 40px, 680px);
  margin-inline: auto;
}
.secInterview-content-q__tit {
  min-height: 44px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-left: 64px;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.5;
  position: relative;
}
.secInterview-content-q__tit::after {
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: var(--color-blue);
  border-radius: 50%;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  font-family: "Sen", sans-serif;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.secInterview-content-q__txt {
  padding: 30px;
  background: #fff;
  border-radius: 4px;
  font-weight: 400;
  line-height: 1.85;
}
.secInterview-content-q__txt + .secInterview-content-q__tit {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .secInterview-content {
    padding-bottom: 30px;
  }
  .secInterview-content-top {
    flex-direction: column;
  }
  .secInterview-content-top-txtBox {
    width: calc(100% - 20px);
    margin: -35px auto 0;
    padding: 0;
  }
  .secInterview-content-top__job {
    margin-bottom: 20px;
    padding: 3px 10px;
    font-size: 13px;
  }
  .secInterview-content-top__tit {
    width: calc(100% - 5px);
    font-size: min(4.8vw, 17px);
    line-height: 2.2;
  }
  .secInterview-content-top__tit .bg {
    padding-inline: 7px;
  }
  .secInterview-content-top__prof {
    font-size: 13px;
  }
  .secInterview-content-top__img {
    order: -1;
    width: 100%;
    object-fit: fill;
  }
  .secInterview-content-q {
    width: calc(100% - 40px);
  }
  .secInterview-content-q__tit {
    min-height: 35px;
    margin-bottom: 15px;
    padding-left: 50px;
    font-size: 16px;
  }
  .secInterview-content-q__tit::after {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  .secInterview-content-q__txt {
    padding: 15px;
    font-size: 13px;
  }
  .secInterview-content-q__txt + .secInterview-content-q__tit {
    margin-top: 30px;
  }
}

/*	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;
  transition: all 0.3s;
}
.mfp-close.modalClose01 {
  position: absolute;
  top: 10px !important;
  right: 10px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: #1A1A1A;
  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 {
  transform: rotate(45deg);
}
.mfp-close.modalClose01::after {
  transform: rotate(-45deg);
}
.mfp-close.modalClose01:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .mfp-close.modalClose01 {
    top: 5px !important;
    right: 5px;
  }
}
.mfp-close.modalClose02 {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(100%, 180px);
  height: 44px;
  margin: 40px auto 0;
  padding: 0;
  border: 1px solid #333;
  color: #333 !important;
  font-weight: 700;
  font-size: 16px;
  font-family: "Sen", sans-serif;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  .mfp-close.modalClose02:hover {
    background: #333;
    color: #fff !important;
  }
}

/*------------------------------------------
	.secFeature
------------------------------------------*/
.secFeature {
  padding-block: 50px 135px;
  background: url(../img/bg_feature01.svg) no-repeat left calc(50% - 450px) top;
}
.secFeature__secTit {
  margin-bottom: 60px;
}
.secFeature-list {
  width: min(100%, 1040px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
}
.secFeature-list__item {
  display: flex;
  flex-direction: column;
  padding: 40px 30px 60px;
  background: var(--color-blue-light);
}
.secFeature-list__tit {
  margin-bottom: 24px;
  color: var(--color-blue);
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  letter-spacing: 0.05em;
}
.secFeature-list__txt {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.07em;
  text-align: center;
}
.secFeature-list__ico {
  order: -1;
  display: block;
  margin: 0 auto 35px;
}
@media screen and (max-width: 768px) {
  .secFeature {
    padding-block: 80px 40px;
    background-position: left 10px top 30px;
    background-size: 70px;
  }
  .secFeature__secTit {
    margin-bottom: 40px;
  }
  .secFeature-list {
    width: min(100%, 300px);
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .secFeature-list__item {
    padding: 20px 20px 30px;
  }
  .secFeature-list__tit {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .secFeature-list__txt {
    font-size: 14px;
  }
  .secFeature-list__ico {
    width: min(35%, 90px);
    margin-bottom: 20px;
  }
}

/*------------------------------------------
	.secGroup
------------------------------------------*/
.secGroup {
  padding-block: 20px 120px;
  background: url(../img/bg_group01.svg) no-repeat right calc(50% - 460px) top;
}
.secGroup__secTit {
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .secGroup {
    padding-block: 80px 40px;
    background-position: right 15px top 20px;
    background-size: 80px;
  }
  .secGroup__secTit {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  .secGroup-set {
    margin-inline: calc(var(--inner-padding) * -0.5);
  }
}

.secGroup-nav {
  --item-height: 90px;
  height: var(--item-height);
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 10px;
  margin-inline: auto;
}
.secGroup-nav__item {
  flex: 1;
  max-width: 300px;
  height: calc(100% - 10px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  background: #EDEDED;
  border-radius: 8px 8px 0 0;
  color: #898E91;
  font-weight: 700;
  font-size: 19px;
  text-align: center;
  line-height: 1.4;
}
.secGroup-nav__item.is-active {
  height: 100%;
  background: var(--color-blue);
  color: #fff;
}
@media screen and (min-width: 769px) {
  .secGroup-nav__item:hover {
    background: var(--color-blue);
    color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .secGroup-nav {
    --item-height: 70px;
    gap: 5px;
  }
  .secGroup-nav__item {
    height: calc(100% - 5px);
    font-size: min(3vw, 13px);
    line-height: 1.5;
  }
}

.secGroup-content {
  padding: 50px;
  background: var(--color-blue-light);
}
.secGroup-content-box {
  display: grid;
  grid-template-columns: min(38.8%, 380px) 1fr;
  align-items: center;
  grid-gap: 40px;
}
.secGroup-content__tit {
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.05em;
}
.secGroup-content__txt {
  margin-bottom: 30px;
}
.secGroup-content-data {
  display: grid;
  grid-template-columns: 122px 1fr;
  align-items: center;
  grid-gap: 16px;
}
.secGroup-content-data__tit {
  padding: 3px 10px;
  background: var(--color-blue);
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
.secGroup-content__img {
  order: -1;
  width: 100%;
}
.secGroup-content__btn {
  width: min(100%, 480px);
  margin: 40px auto 0;
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.secGroup-content__btn a {
  min-height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 50px;
  border-radius: inherit;
  background: var(--color-blue) url(../img/ico_arrow06.svg) no-repeat right 30px center;
}
@media screen and (min-width: 769px) {
  .secGroup-content__btn a:hover {
    opacity: 1;
    background-color: var(--color-yellow);
    background-image: url(../img/ico_arrow02.svg);
    color: var(--color-blue);
  }
}
@media screen and (max-width: 768px) {
  .secGroup-content {
    padding: 20px 20px 30px;
  }
  .secGroup-content-box {
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }
  .secGroup-content__tit {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .secGroup-content__txt {
    margin-bottom: 20px;
  }
  .secGroup-content-data {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
  .secGroup-content-data__tit {
    width: fit-content;
    margin-bottom: 8px;
    min-width: 100px;
    font-size: 14px;
  }
  .secGroup-content-data__txt + .secGroup-content-data__tit {
    margin-top: 20px;
  }
  .secGroup-content__btn {
    margin-top: 30px;
    font-size: 18px;
  }
  .secGroup-content__btn a {
    min-height: 70px;
    padding-inline: 30px;
    background-position: right 20px center;
  }
}

/*------------------------------------------
	.secEntry
------------------------------------------*/
.secEntry {
  padding-block: 0 120px;
  display: grid;
  grid-template-columns: 1fr 52.8%;
  align-items: center;
  grid-gap: 80px;
}
.secEntry-txtBox {
  width: min(100%, 380px);
  margin-inline: auto 0;
}
.secEntry__secTit {
  margin-bottom: 106px;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.7;
  letter-spacing: 0.06em;
  position: relative;
}
.secEntry__secTit::after {
  content: "";
  display: block;
  width: 307px;
  aspect-ratio: 307/141;
  background: url(../img/txt_joinus01.svg) no-repeat center/contain;
  position: absolute;
  right: 8px;
  bottom: -80px;
  z-index: -1;
  pointer-events: none;
}
.secEntry__btn {
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.secEntry__btn a {
  min-height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 50px;
  border-radius: inherit;
  background: var(--color-blue) url(../img/ico_arrow06.svg) no-repeat right 30px center;
}
.secEntry__img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .secEntry__btn a:hover {
    opacity: 1;
    background-color: var(--color-yellow);
    background-image: url(../img/ico_arrow02.svg);
    color: var(--color-blue);
  }
}
@media screen and (max-width: 768px) {
  .secEntry {
    padding: 80px 0 0;
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .secEntry-txtBox {
    width: calc(100% - var(--inner-padding) * 2);
    margin-inline: auto;
  }
  .secEntry__secTit {
    margin-bottom: 30px;
    padding-top: 60px;
    font-size: 30px;
    text-align: center;
  }
  .secEntry__secTit::after {
    width: 200px;
    right: auto;
    bottom: auto;
    top: 0;
    left: max(-20px, 50% - 180px);
  }
  .secEntry__btn {
    font-size: 18px;
  }
  .secEntry__btn a {
    min-height: 70px;
    padding-inline: 30px;
    background-position: right 20px center;
  }
  .secEntry__img {
    width: 100%;
  }
}