@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;
  --color-txt: #fff;
  --color-txt-black: #141414;
  --color-yellow: #FFE347;
  --cv-width: 60px;
  --cv-height: 185px;
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 60px;
    --inner-padding: 20px;
    --cv-width: calc(100% - 40px);
    --cv-height: 60px;
  }
}

/*------------------------------------------
	font
------------------------------------------*/
body {
  color: var(--color-txt);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.04em;
  font-family: "Noto Sans JP", "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.5;
}

.f-montserrat {
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
}

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

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

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

/*------------------------------------------
	scroll action
------------------------------------------*/
.js-scroll {
  -webkit-transition: opacity 1s, -webkit-transform 1.5s;
  transition: opacity 1s, -webkit-transform 1.5s;
  transition: opacity 1s, transform 1.5s;
  transition: opacity 1s, transform 1.5s, -webkit-transform 1.5s;
}
.js-scroll:nth-child(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.js-scroll:nth-child(3) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.js-scroll:nth-child(4) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.js-scroll:nth-child(5) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.js-scroll.is-fadeInUp {
  opacity: 0;
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
}
.js-scroll.is-fadeInUp.is-view {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .js-scroll.is-fadeInUp {
    -webkit-transform: translate(0, 40px);
            transform: translate(0, 40px);
  }
}
.js-scroll.is-fadeIn {
  opacity: 0;
}
.js-scroll.is-fadeIn.is-view {
  opacity: 1;
}

/*============================================================================================================
	l-header
============================================================================================================*/
.l-header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 9990;
  top: 0;
  left: 0;
}
.l-header__logo a, .l-header__logo img {
  display: block;
}
.l-header__logo a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 10px;
  background: #fff;
}
.l-header__entry {
  width: var(--cv-width);
  height: var(--cv-height);
  color: var(--color-txt-black);
  font-weight: 700;
  letter-spacing: 0.2em;
  position: fixed;
  z-index: 9992;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.l-header__entry a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--color-yellow);
}
@media screen and (min-width: 769px) {
  .l-header {
    min-width: 1000px;
    height: var(--header-height);
    gap: 20px;
    padding-inline: 0 40px;
    background: #141414;
    position: fixed;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header:not(.is-scroll) {
    background: none;
  }
  .l-header__entry {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
  .l-header__entry a {
    border: 3px solid var(--color-yellow);
    border-right: none;
  }
  .l-header__entry a:hover {
    opacity: 1;
    background: #fff;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    position: relative;
    left: 0 !important;
  }
  .l-header__logo {
    width: min(100% - 80px, 255px);
    height: var(--header-height);
    position: absolute;
    top: 0;
    left: 0;
  }
  .l-header__entry {
    height: 44px;
    font-size: 18px;
    top: auto;
    left: 0;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: #141414;
  position: relative;
}
.l-footer p, .l-footer li {
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-family: "Noto Sans JP", "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 20px;
  padding: 0;
  gap: 20px 0;
}
.l-footer-nav__item {
  list-style: none;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  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: 14px;
  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 #999;
    font-size: 12px;
    text-align: left;
  }
  .l-footer-nav__item + .l-footer-nav__item::after {
    content: none;
  }
  .l-footer-nav__item a {
    padding: 10px 0;
  }
  .l-footer-copyright {
    font-size: 10px;
  }
}

.pagetop {
  display: none;
  width: 70px;
  height: 70px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  border-radius: 50%;
  text-indent: 100%;
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  z-index: 9000;
}
.pagetop a {
  width: 100%;
  height: 100%;
  display: block;
  background: #FFE347;
  border-radius: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #141414 !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;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .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: 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-yellow);
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .gnavBtn {
    overflow: hidden;
    cursor: pointer;
    width: 60px;
    height: 60px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9992;
    background: var(--color-yellow);
  }
  .gnavBtn span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 28px;
    height: 2px;
    border-radius: 10px;
    background: var(--color-txt-black);
    -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(68, 68, 68, 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-yellow);
    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 {
  margin-bottom: 160px;
  position: relative;
}
.l-mv img {
  width: 100%;
}
.l-mv-txtBox {
  width: calc(100% - 100px);
  text-align: right;
  position: absolute;
  top: 16svh;
  left: 0;
  z-index: 2;
}
.l-mv__txt01 {
  width: 46.8%;
  margin: 0 max(15px, 1.5vw) max(27px, 2.7vw) auto;
}
.l-mv__txt02 {
  margin-bottom: max(55px, 5.5vw);
  font-size: max(18px, 1.75vw);
}
.l-mv__txt03 {
  margin-right: max(10px, 1vw);
  font-size: max(12px, 1.2vw);
}
.l-mv-imgBox {
  width: 64%;
  position: relative;
  overflow: hidden;
}
.l-mv-imgBox picture,
.l-mv-imgBox img {
  display: block;
}
.l-mv-imgBox__mask {
  position: absolute;
  inset: 0;
  background: #000;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .l-mv {
    overflow: clip;
    margin-bottom: 115px;
    padding-bottom: 54vw;
  }
  .l-mv-txtBox {
    width: 100%;
    text-align: left;
    top: auto;
    bottom: 0;
  }
  .l-mv__txt01 {
    width: 102%;
    margin: 0 auto 9vw -2%;
  }
  .l-mv__txt02 {
    width: calc(100% - 60px);
    margin: 0 auto 8vw;
    font-size: 6.3vw;
    line-height: 1.4;
  }
  .l-mv__txt03 {
    width: calc(100% - 60px);
    margin-inline: auto;
    font-size: 3.8vw;
  }
  .l-mv-imgBox {
    width: 100%;
  }
  .l-mv-imgBox img {
    height: 380px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/*============================================================================================================
	main
============================================================================================================*/
.c-tit01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  font-weight: 700;
  font-size: 22px;
  text-align: center;
}
.c-tit01__ja {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-left: 30px;
  position: relative;
}
.c-tit01__ja::after {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 1/1;
  background: url(../img/ico_tit01.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.c-tit01__en {
  font-weight: 600;
  font-size: 82px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
}
.c-tit01.is-left {
  text-align: left;
}
.c-tit01.is-left .c-tit01__ja {
  margin-inline: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    gap: 20px;
    font-size: 16px;
  }
  .c-tit01__ja {
    padding-left: 24px;
  }
  .c-tit01__ja::after {
    width: 12px;
  }
  .c-tit01__en {
    font-size: min(10.5vw, 40px);
  }
}

/*------------------------------------------
	.secCompany
------------------------------------------*/
.secCompany {
  padding-block: 0 260px;
}
.secCompany-box {
  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;
  gap: 110px;
  padding-left: 10px;
}
.secCompany-box + .secCompany-box {
  margin-top: 120px;
}
.secCompany-box-txtBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 530px;
}
.secCompany-box__txt {
  font-size: 18px;
  line-height: 2.4;
}
.secCompany-box__txt + .secCompany-box__txt {
  margin-top: 1.8em;
}
.secCompany-box__img {
  width: 43.35%;
}
@media screen and (min-width: 769px) {
  .secCompany-box:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    padding-inline: 0 10px;
    gap: 120px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .secCompany-box {
    gap: 50px !important;
  }
  .secCompany-box:nth-of-type(even) {
    padding-right: calc(var(--cv-width) + var(--inner-padding));
  }
}
@media screen and (max-width: 768px) {
  .secCompany {
    padding-block: 0 70px;
  }
  .secCompany-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 64px;
    padding-left: 0;
  }
  .secCompany-box + .secCompany-box {
    margin-top: 88px;
  }
  .secCompany-box:nth-of-type(even) .secCompany-box__img {
    width: calc(100% - 100px);
    margin-inline: 0 auto;
  }
  .secCompany-box-txtBox {
    max-width: none;
    width: calc(100% - 60px);
    margin-inline: auto;
  }
  .secCompany-box__txt {
    font-size: min(4vw, 16px);
    line-height: 2.2;
    letter-spacing: 0;
  }
  .secCompany-box__img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: calc(100% - 70px);
    margin-inline: auto 0;
  }
}

/*------------------------------------------
	.secJob
------------------------------------------*/
.secJob {
  padding-block: 0 80px;
  position: relative;
  z-index: 2;
}
.secJob::after {
  content: "";
  display: block;
  width: calc(50% + 400px);
  height: calc(100% + 240px);
  background: url(../img/bg_pattern01.webp);
  position: absolute;
  right: 0;
  top: -160px;
  z-index: -1;
  pointer-events: none;
}
.secJob__secTit {
  margin-bottom: 68px;
}
.secJob-leadBox {
  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: start;
  gap: 30px;
  margin-bottom: 100px;
}
.secJob-leadBox__txtWrap01 {
  width: 50%;
  margin-top: 5px;
}
.secJob-leadBox__txt01 {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.5;
}
.secJob-leadBox__txt02 {
  padding-left: 60px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0;
  position: relative;
}
.secJob-leadBox__txt02::after {
  content: "";
  display: block;
  background: currentColor;
  width: 55px;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.secJob-leadBox__txt03 {
  font-weight: 400;
  line-height: 2.4;
}
.secJob-set {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 330px 50px 1fr;
  grid-template-columns: 330px 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 50px;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .secJob-inner {
    padding-right: calc(var(--cv-width) + var(--inner-padding));
  }
}
@media screen and (max-width: 768px) {
  .secJob {
    --inner-padding: 30px;
    padding-block: 80px;
  }
  .secJob::after {
    width: calc(100% - 110px);
    height: calc(100% + 20px);
    top: 20px;
  }
  .secJob__secTit {
    margin-bottom: 70px;
  }
  .secJob-leadBox {
    display: block;
    margin-bottom: 80px;
  }
  .secJob-leadBox__txtWrap01 {
    width: auto;
    margin: 0 calc(var(--inner-padding) * -0.7) 35px 0;
  }
  .secJob-leadBox__txt01 {
    font-size: 24px;
  }
  .secJob-leadBox__txt02 {
    padding-left: 35px;
    font-size: 16px;
  }
  .secJob-leadBox__txt02::after {
    width: 30px;
    height: 1px;
  }
  .secJob-leadBox__txt03 {
    font-size: 14px;
    line-height: 2.2;
  }
  .secJob-set {
    display: block;
  }
  .secJob__swipe {
    font-size: 12px;
    margin-bottom: 30px;
  }
}

/*	.secJob-nav
------------------------------------------*/
.secJob-nav .splide__list {
  gap: 20px;
}
.secJob-nav .splide__slide {
  cursor: pointer;
}
.secJob-nav .splide__slide.is-active {
  color: var(--color-yellow);
}
.secJob-nav__item {
  padding: 10px 0 0 20px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secJob-nav__item-num {
  font-size: 14px;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 769px) {
  .secJob-nav .splide__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .secJob-nav .splide__slide:hover {
    color: var(--color-yellow);
  }
}
@media screen and (max-width: 768px) {
  .secJob-nav {
    --inner-padding: 30px;
    margin: 0 calc(var(--inner-padding) * -1) 20px 0;
  }
  .secJob-nav .splide__track {
    padding-right: var(--inner-padding) !important;
  }
  .secJob-nav .splide__list {
    gap: 15px;
  }
  .secJob-nav__item {
    padding-left: 15px;
    font-size: 12px;
  }
  .secJob-nav__item-num {
    font-size: 10px;
  }
}

/*	.secJob-content
------------------------------------------*/
.secJob-content {
  width: min(100%, 620px);
  min-width: 0;
  margin-inline: auto 0;
}
.secJob-content__img {
  width: 100%;
  margin-bottom: 30px;
}
.secJob-content__tit {
  margin-bottom: 30px;
  color: var(--color-yellow);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0;
}
.secJob-content__txt {
  font-weight: 400;
  line-height: 2.4;
}
.secJob-content__btn {
  width: calc(50% - 20px);
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
.secJob-content__btnWrap {
  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: 40px;
  margin-top: 40px;
}
.secJob-content__btn a {
  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;
  padding: 5px;
  border: 1px solid #fff;
}
.secJob-content__btn.is-entry a {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
  color: var(--color-txt-black);
}
@media screen and (min-width: 769px) {
  .secJob-content__btn a:hover {
    opacity: 1;
    background: #fff;
    color: var(--color-txt-black);
  }
}
@media screen and (max-width: 768px) {
  .secJob-content {
    width: 100%;
  }
  .secJob-content__img {
    margin-bottom: 18px;
  }
  .secJob-content__tit {
    margin-bottom: 15px;
    font-size: 24px;
  }
  .secJob-content__txt {
    line-height: 2;
  }
  .secJob-content__btn {
    width: calc(50% - 5px);
  }
  .secJob-content__btnWrap {
    gap: 10px;
    margin-top: 30px;
  }
}

/*	.secJob-schedule
------------------------------------------*/
.secJob-schedule {
  width: min(100%, 800px);
  margin-inline: auto;
  padding-bottom: 60px;
  background: url(../img/bg_pattern01.webp);
  position: relative;
}
.secJob-schedule-titBox {
  height: 300px;
  margin-bottom: 60px;
  position: relative;
}
.secJob-schedule-titBox__tit {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  font-weight: 700;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
.secJob-schedule-titBox__tit-en {
  font-weight: 600;
  font-size: 48px;
  line-height: 1.1;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
}
.secJob-schedule-titBox__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.secJob-schedule-list {
  width: min(100% - 40px, 680px);
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 80px 30px 1fr;
  grid-template-columns: 80px 1fr;
  grid-gap: 20px 30px;
}
.secJob-schedule-list__time {
  height: 35px;
  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: 1px solid;
  font-weight: 500;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  letter-spacing: 0.08em;
}
.secJob-schedule-list__txt {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(210, 210, 210, 0.3);
  font-weight: 700;
  font-size: 18px;
}
.secJob-schedule__entry {
  width: min(100% - 40px, 280px);
  margin: 40px auto 0;
  color: var(--color-txt-black);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.secJob-schedule__entry a {
  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;
  padding: 10px;
  background: var(--color-yellow);
}
@media screen and (min-width: 769px) {
  .secJob-schedule__entry a {
    border: 1px solid var(--color-yellow);
  }
  .secJob-schedule__entry a:hover {
    opacity: 1;
    background: #fff;
  }
}
@media screen and (max-width: 768px) {
  .secJob-schedule {
    width: 100%;
    padding-bottom: 40px;
  }
  .secJob-schedule-titBox {
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
  }
  .secJob-schedule-titBox__tit {
    width: calc(100% - 40px);
    gap: 10px;
    margin-inline: auto;
    padding-bottom: 30px;
    border-bottom: 1px solid;
    font-size: 16px;
    position: static;
    -webkit-transform: none;
            transform: none;
  }
  .secJob-schedule-titBox__tit-en {
    font-size: 26px;
  }
  .secJob-schedule-titBox__img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    height: auto;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .secJob-schedule-list {
    width: calc(100% - 40px);
    -ms-grid-columns: 60px 15px 1fr;
    grid-template-columns: 60px 1fr;
    grid-gap: 15px;
  }
  .secJob-schedule-list__time {
    height: 30px;
    font-size: 13px;
  }
  .secJob-schedule-list__txt {
    padding-bottom: 15px;
    font-size: 14px;
  }
  .secJob-schedule__entry {
    margin-top: 30px;
    font-size: 16px;
  }
}

/*	js - magnific_popup
------------------------------------------*/
body .mfp-bg {
  z-index: 9993;
  opacity: 0.8;
  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: #141414;
  border-radius: 50%;
  font-size: 10px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.mfp-close.modalClose01::before, .mfp-close.modalClose01::after {
  content: "";
  display: block;
  width: 45%;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
}
.mfp-close.modalClose01::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mfp-close.modalClose01::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.mfp-close.modalClose01:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .mfp-close.modalClose01 {
    top: 5px !important;
    right: 5px;
  }
}
.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% - 40px, 280px);
  height: 60px;
  margin: 20px auto 0;
  padding: 0;
  border: 1px solid #fff;
  color: #fff !important;
  font-size: 16px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  .mfp-close.modalClose02:hover {
    background: #fff;
    color: var(--color-txt-black) !important;
  }
}

/*------------------------------------------
	.secEnvironment
------------------------------------------*/
.secEnvironment {
  --padding-top: 220px;
  --inner-width: min(100%, 1100px + (var(--inner-padding) * 2));
  scroll-margin-top: calc(var(--padding-top) * -1);
  padding-block: var(--padding-top) 140px;
  background: #fff;
  color: var(--color-txt-black);
  position: relative;
}
.secEnvironment::after {
  content: "";
  display: block;
  width: calc(50% + 420px);
  height: calc(100% - 860px);
  background: #F1F1F1;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}
.secEnvironment-inner {
  position: relative;
  z-index: 2;
}
.secEnvironment__secTit {
  margin-bottom: 50px;
}
.secEnvironment__lead {
  margin-bottom: 105px;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .secEnvironment-inner {
    padding-right: calc(var(--cv-width) + var(--inner-padding));
  }
}
@media screen and (max-width: 768px) {
  .secEnvironment {
    --padding-top: 140px;
    scroll-margin-top: calc((var(--padding-top) - var(--header-height)) * -1);
    padding-bottom: 80px;
  }
  .secEnvironment::after {
    width: calc(100% - 40px);
    height: calc(100% - 500px);
  }
  .secEnvironment__secTit {
    margin-bottom: 40px;
  }
  .secEnvironment__lead {
    margin-bottom: 50px;
    font-size: 18px;
  }
}

/*	.secEnvironment-sec
------------------------------------------*/
.secEnvironment-sec + .secEnvironment-sec {
  margin-top: 100px;
}
.secEnvironment-sec__tit {
  margin-bottom: 35px;
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  letter-spacing: 0;
}
.secEnvironment-sec-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 64px 20px;
}
.secEnvironment-sec-list__img {
  width: 100%;
  margin-bottom: 30px;
}
.secEnvironment-sec-list__tit {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  letter-spacing: 0;
}
.secEnvironment-sec-list__txt {
  width: calc(100% - 40px);
  margin-inline: auto;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .secEnvironment-sec + .secEnvironment-sec {
    margin-top: 80px;
  }
  .secEnvironment-sec__tit {
    margin-bottom: 30px;
    font-size: 24px;
  }
  .secEnvironment-sec-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }
  .secEnvironment-sec-list__img {
    margin-bottom: 20px;
  }
  .secEnvironment-sec-list__tit {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .secEnvironment-sec-list__txt {
    width: 100%;
  }
}

/*	.secEnvironment-welfare
------------------------------------------*/
.secEnvironment-welfare__tit {
  margin-bottom: 45px;
}
.secEnvironment-welfare-list {
  width: min(100%, 656px);
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 24px;
}
.secEnvironment-welfare-list__item {
  padding-left: 96px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0;
  position: relative;
}
.secEnvironment-welfare-list__item::after {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  background: currentColor;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .secEnvironment-welfare__tit {
    margin-bottom: 40px;
  }
  .secEnvironment-welfare-list {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .secEnvironment-welfare-list__item {
    padding-left: 80px;
    font-size: 18px;
  }
  .secEnvironment-welfare-list__item::after {
    width: 65px;
  }
}

/*------------------------------------------
	.secVoice
------------------------------------------*/
.secVoice {
  padding-block: 140px 110px;
  background: url(../img/bg_pattern02.webp);
}
.secVoice__secTit {
  margin-bottom: 90px;
}
.secVoice-list__item {
  padding: 25px 35px 40px 40px;
  border-bottom: 1px solid #FCFCFC;
  font-weight: 400;
  position: relative;
}
.secVoice-list__item::before, .secVoice-list__item::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
}
.secVoice-list__item::before {
  width: 1px;
  height: calc(100% - 15px);
  background: #FCFCFC;
  top: 0;
  right: 0;
}
.secVoice-list__item::after {
  width: 32px;
  aspect-ratio: 32/24;
  background: url(../img/ico_quotation01.svg) no-repeat center/contain;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .secVoice {
    padding-block: 80px;
  }
  .secVoice__secTit {
    width: calc(100% - var(--inner-padding) * 2);
    margin: 0 auto 60px;
  }
  .secVoice-list__item {
    padding: 30px 20px;
  }
  .secVoice-list__item::after {
    width: 28px;
  }
}

.js-voice-slider-nav {
  width: min(100%, 288px);
  margin: 40px auto 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 88px;
  grid-template-columns: 1fr 88px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 20px;
}
.js-voice-slider .my-carousel-progress {
  background: #fff;
}
.js-voice-slider .my-carousel-progress-bar {
  background: var(--color-yellow);
  height: 2px;
  -webkit-transition: width 1000ms ease;
  transition: width 1000ms ease;
  width: 0;
}
.js-voice-slider .splide__arrows {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 8px;
}
.js-voice-slider .splide__arrow {
  cursor: pointer;
  width: 100%;
  aspect-ratio: 1/1;
  padding: 0;
  background: var(--color-yellow);
  border: 2px solid var(--color-yellow);
  border-radius: 50%;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.js-voice-slider .splide__arrow svg {
  display: none;
}
.js-voice-slider .splide__arrow::before {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 14/10;
  background: url(../img/ico_arrow01.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.js-voice-slider .splide__arrow.splide__arrow--prev {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media screen and (min-width: 769px) {
  .js-voice-slider .splide__arrow:hover {
    background: #fff;
  }
}

/*------------------------------------------
	.secSearch
------------------------------------------*/
.secSearch {
  padding-block: 140px;
  background: url(../img/bg_search01.webp) no-repeat center/cover;
}
.secSearch__secTit {
  margin-bottom: 50px;
}
.secSearch__lead {
  margin-bottom: 80px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0;
}
.secSearch-list {
  width: min(100%, 620px);
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}
.secSearch-list__item {
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
.secSearch-list__item 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;
  padding: 10px;
  border: 1px solid #fff;
}
@media screen and (min-width: 769px) {
  .secSearch-list__item a:hover {
    opacity: 1;
    border-color: var(--color-yellow);
    background: var(--color-yellow);
    color: var(--color-txt-black);
  }
}
@media screen and (max-width: 768px) {
  .secSearch {
    padding-block: 80px;
  }
  .secSearch__secTit {
    margin-bottom: 40px;
  }
  .secSearch__lead {
    margin-bottom: 50px;
    font-size: 18px;
  }
  .secSearch-list {
    width: 100%;
    grid-gap: 15px;
  }
  .secSearch-list__item {
    font-size: 15px;
  }
  .secSearch-list__item a {
    min-height: 65px;
    padding: 5px;
  }
}
@media screen and (max-width: 374px) {
  .secSearch-list__item {
    font-size: 14px;
  }
}
/*# sourceMappingURL=style.css.map */