@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: #000;
  --color-blue: #0032af;
  --color-blue-light: #f1f3fa;
  --color-red: #c71a22;
  --color-gray: #f8f8f8;
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 60px;
    --inner-padding: 20px;
  }
}

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

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

.f-lexend {
  font-weight: 400;
  font-family: "Lexend", 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;
  gap: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
}
.l-header__logo a,
.l-header__logo img {
  display: block;
}
.l-header__entry {
  width: 160px;
  height: var(--header-height);
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.l-header__entry a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--color-red);
}
@media screen and (min-width: 769px) {
  .l-header {
    position: sticky;
    z-index: 9990;
    top: 0;
    left: 0;
    padding-inline: 30px 0;
  }
  .l-header__entry {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .l-header__entry a {
    border: 2px solid var(--color-red);
  }
  .l-header__entry a:hover {
    opacity: 1;
    background: #fff;
    color: var(--color-red);
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    gap: 10px;
    padding-inline: 10px 165px;
  }
  .l-header__logo {
    width: 150px;
  }
  .l-header__entry {
    width: 100px;
    font-size: 12px;
    position: fixed;
    top: 0;
    right: var(--header-height);
    z-index: 9992;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: #00113a;
  position: relative;
}
.l-footer p,
.l-footer li {
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
}
.l-footer a,
.l-footer span {
  color: inherit !important;
  font-family: inherit;
  font-weight: inherit;
}
.l-footer a,
.l-footer li,
.l-footer div,
.l-footer span {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-footer-inner {
  width: min(100%, 1100px);
  margin-inline: auto;
  padding: 50px 10px;
}
.l-footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto 25px;
  padding: 0;
  gap: 20px 0;
}
.l-footer-nav__item {
  list-style: none;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}
.l-footer-nav__item + .l-footer-nav__item {
  position: relative;
}
.l-footer-nav__item + .l-footer-nav__item::after {
  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;
  }
  .l-footer-nav {
    display: block;
    margin: 0 auto 30px;
  }
  .l-footer-nav__item {
    border-bottom: 1px dashed;
    font-size: 12px;
    text-align: left;
  }
  .l-footer-nav__item + .l-footer-nav__item::after {
    content: none;
  }
  .l-footer-nav__item a {
    padding: 10px 0;
  }
  .l-footer-copyright {
    font-size: 10px;
  }
}

.pagetop {
  display: none;
  width: 70px;
  height: 70px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  border-radius: 50%;
  text-indent: 100%;
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  z-index: 9000;
}
.pagetop a {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--color-blue);
  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: 10px;
  }
  .pagetop a::after {
    width: 10px;
    height: 10px;
  }
}

/*============================================================================================================
	nav
============================================================================================================*/
.l-nav a {
  display: block;
}
.l-nav-list__item {
  color: #4e4e4e;
  font-weight: 700;
}

/* PC */
@media screen and (min-width: 769px) {
  .l-nav {
    display: block !important;
    height: auto !important;
    margin-inline: auto 0;
  }
  .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 24px;
  }
  .l-nav-list__item {
    font-size: 15px;
    text-align: center;
    line-height: 1.5;
  }
  .l-nav-list__item a:hover {
    opacity: 1;
    color: var(--color-red);
  }
}
/* 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: var(--color-blue);
  }
  .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;
    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-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;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  padding: 58px 64px 88px;
}
.l-mv img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-mv {
    padding: 50px 15px 64px;
  }
}

/*============================================================================================================
	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: 20px;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.06em;
}
.c-tit01__en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  color: var(--color-blue);
  font-weight: 400;
  font-size: 102px;
  line-height: 0.8;
  letter-spacing: 0;
  font-family: "Lexend", sans-serif;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    gap: 15px;
    font-size: 16px;
  }
  .c-tit01__en {
    font-size: 44px;
  }
}

/*------------------------------------------
	.secUs
------------------------------------------*/
.secUs {
  overflow: clip;
  margin-bottom: 160px;
  padding-block: 200px;
  background: url(../img/bg_us01_pc.webp) no-repeat center/cover;
  color: #fff;
  position: relative;
}
.secUs-inner {
  position: relative;
  z-index: 2;
}
.secUs__lead {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.8;
  letter-spacing: 0.06em;
}
.secUs__txt {
  margin-top: 160px;
  line-height: 2.2;
}
.secUs__en {
  mix-blend-mode: soft-light;
  font-size: 170px;
  line-height: 0.8;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .secUs-inner {
    max-width: 940px;
    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: 40px;
  }
}
@media screen and (max-width: 768px) {
  .secUs {
    margin-bottom: 50px;
    padding-block: 120px 130px;
    background-image: url(../img/bg_us01_sp.webp);
  }
  .secUs-inner {
    padding-inline: 40px;
  }
  .secUs__lead {
    font-size: 19px;
    line-height: 1.7;
  }
  .secUs__txt {
    margin-top: 40px;
    font-size: 14px;
  }
  .secUs__en {
    font-size: 30vw;
    opacity: 0.7;
  }
}
@media screen and (max-width: 374px) {
  .secUs-inner {
    padding-inline: 30px;
  }
  .secUs__lead {
    font-size: min(5.5vw, 19px);
  }
  .secUs__txt {
    font-size: min(4vw, 14px);
  }
}

/*------------------------------------------
	.secJob
------------------------------------------*/
.secJob {
  overflow-x: clip;
  margin-bottom: 90px;
  padding-block: 0 120px;
  position: relative;
}
.secJob::after {
  content: "";
  display: block;
  width: calc(50% + 320px);
  height: calc(100% - 40px);
  background: var(--color-blue-light);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -2;
  pointer-events: none;
}
.secJob__secTit {
  margin-bottom: 82px;
}
@media screen and (max-width: 768px) {
  .secJob {
    margin-bottom: 40px;
    padding-block: 80px;
  }
  .secJob::after {
    width: calc(100% - 100px);
    height: calc(100% - 100px);
  }
  .secJob__secTit {
    margin-bottom: 45px;
  }
}

/*	.secJob-car
------------------------------------------*/
.secJob-car {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 385px 30px 1fr;
  grid-template-columns: 385px 1fr;
  grid-gap: 30px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 145px;
}
.secJob-car__tit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 32px 0;
  padding: 6px 16px;
  background: var(--color-blue);
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  letter-spacing: 0.06em;
}
.secJob-car__lead {
  font-size: 18px;
  line-height: 2.2;
}
.secJob-car-list__item {
  padding: 20px 20px 35px;
  background: #fff;
  border: 1px solid #eee;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  position: relative;
}
.secJob-car-list-imgBox {
  height: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}
.secJob-car-list-imgBox img {
  width: auto;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.secJob-car-list__num {
  color: var(--color-red);
  font-weight: 300;
  font-size: 62px;
  line-height: 0.8;
  position: absolute;
  top: -20px;
  left: 20px;
}
.secJob-car-list__txt {
  color: var(--color-blue);
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .secJob-car {
    display: block;
    margin-bottom: 80px;
  }
  .secJob-car-txtBox {
    margin-bottom: 25px;
  }
  .secJob-car__tit {
    margin-bottom: 15px;
    font-size: 22px;
  }
  .secJob-car__lead {
    font-size: 16px;
    line-height: 1.8;
  }
  .secJob-car-list__item {
    padding: 30px 20px 20px;
  }
  .secJob-car-list-imgBox {
    height: 100px;
    margin-bottom: 20px;
  }
  .secJob-car-list__num {
    font-size: 40px;
    top: -15px;
    left: 10px;
  }
  .secJob-car-list__txt {
    font-size: 20px;
  }
}

.js-job-slider {
  position: relative;
}
.js-job-slider .splide__track {
  padding: 20px 0 20px 10px !important;
}
.js-job-slider-nav {
  width: min(100%, 288px);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 88px;
  grid-template-columns: 1fr 88px;
  grid-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: -415px;
}
.js-job-slider .my-carousel-progress {
  background: #eee;
}
.js-job-slider .my-carousel-progress-bar {
  background: var(--color-blue);
  height: 2px;
  -webkit-transition: width 1000ms ease;
  transition: width 1000ms ease;
  width: 0;
}
.js-job-slider .splide__arrows {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 8px;
}
.js-job-slider .splide__arrow {
  width: 100%;
  aspect-ratio: 1/1;
  padding: 0;
  background: var(--color-blue) url(../img/ico_arrow02.svg) no-repeat center 45%;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.js-job-slider .splide__arrow svg {
  display: none;
}
.js-job-slider .splide__arrow.splide__arrow--prev {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.js-job-slider .splide__arrow:hover {
  background-color: var(--color-red);
}
@media screen and (min-width: 769px) {
  .js-job-slider {
    min-width: 0;
    width: max(100% + var(--inner-padding), 100% + 50vw - 540px);
  }
}
@media screen and (max-width: 768px) {
  .js-job-slider {
    margin-inline: calc(var(--inner-padding) * -1);
  }
  .js-job-slider .splide__track {
    padding: 15px 0 15px var(--inner-padding) !important;
  }
  .js-job-slider-nav {
    width: min(100% - var(--inner-padding) * 2, 288px);
    margin: 20px auto 0;
    position: static;
  }
}

/*	.secJob-flow
------------------------------------------*/
.secJob-flow {
  margin-bottom: 50px;
  position: relative;
}
.secJob-flow::after {
  content: "";
  display: block;
  width: max(460px, 50vw - 40px);
  height: 400px;
  background: url(../img/bg_flow01.webp) no-repeat left center/auto 100%;
  position: absolute;
  top: -165px;
  right: min(var(--inner-padding) * -1, (50vw - 545px) * -1);
  z-index: -1;
  pointer-events: none;
}
.secJob-flow__tit {
  margin-bottom: 30px;
  padding-left: 1em;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.06em;
  position: relative;
}
.secJob-flow__tit::after {
  content: "";
  display: block;
  width: 0.37em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--color-blue);
  position: absolute;
  top: 0.65em;
  left: 0;
}
.secJob-flow__lead {
  margin-bottom: 60px;
  font-size: 22px;
  line-height: 2.2;
}
.secJob-flow-list {
  width: min(100%, 900px);
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 36px;
}
.secJob-flow-list__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 35% 1fr;
  grid-template-columns: 35% 1fr;
  background: #fff;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  position: relative;
}
.secJob-flow-list__item::after {
  content: "";
  display: block;
  width: 54px;
  aspect-ratio: 54/16;
  background: var(--color-red);
  position: absolute;
  right: 0;
  left: 0;
  top: 100%;
  margin: auto;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.secJob-flow-list__item:last-of-type::after {
  content: none;
}
.secJob-flow-list-txtBox {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding: 20px 50px;
}
.secJob-flow-list-titBox {
  margin-bottom: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 120px 24px 1fr;
  grid-template-columns: 120px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 24px;
}
.secJob-flow-list__time {
  padding: 4px;
  background: var(--color-red);
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
}
.secJob-flow-list__tit {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.05em;
}
.secJob-flow-list__txt {
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.secJob-flow-list__img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .secJob-flow {
    margin-bottom: 80px;
  }
  .secJob-flow::after {
    width: calc(100% + var(--inner-padding));
    height: 240px;
    top: 115px;
    right: calc(var(--inner-padding) * -1);
  }
  .secJob-flow__tit {
    margin-bottom: 20px;
    font-size: 24px;
  }
  .secJob-flow__lead {
    margin-bottom: 130px;
    font-size: 18px;
    line-height: 1.8;
  }
  .secJob-flow-list {
    width: 100%;
  }
  .secJob-flow-list__item {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .secJob-flow-list-txtBox {
    width: 100%;
    padding: 30px 20px;
  }
  .secJob-flow-list-titBox {
    margin-bottom: 15px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
  .secJob-flow-list__time {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 90px;
    padding: 3px;
    font-size: 12px;
  }
  .secJob-flow-list__tit {
    font-size: 20px;
  }
  .secJob-flow-list__txt {
    font-size: 15px;
  }
  .secJob-flow-list__img {
    height: auto;
    aspect-ratio: 350/220;
  }
}

/*	.secJob-detail
------------------------------------------*/
.secJob-detail {
  margin: 0 auto 100px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 60px;
}
.secJob-detail-sec {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 2;
  grid-row: span 2;
  grid-gap: 0;
  color: #fff;
}
.secJob-detail-sec__tit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 40px 5px;
  background: #213c7e;
  font-weight: 700;
  font-size: 24px;
  -webkit-text-decoration: underline;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-offset: 10px;
}
.secJob-detail-sec-list {
  padding: 40px;
  background: #213c7e;
}
.secJob-detail-sec-list__item {
  padding-left: 2.2em;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
}
.secJob-detail-sec-list__item + .secJob-detail-sec-list__item {
  margin-top: 26px;
}
.secJob-detail-sec-list__item-txt {
  text-decoration: underline;
  text-decoration-thickness: 5px;
  text-decoration-color: #ffea00;
  text-underline-offset: 3px;
}
.secJob-detail-sec-list__item::after {
  content: "";
  display: block;
  width: 22px;
  aspect-ratio: 20/26;
  background: url("../img/ico_check.svg") no-repeat center/contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 768px) {
  .secJob-detail {
    margin-bottom: 80px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .secJob-detail-sec {
    display: block;
  }
  .secJob-detail-sec__tit {
    padding-inline: 20px;
    font-size: 20px;
  }
  .secJob-detail-sec-list {
    padding: 25px 40px;
  }
  .secJob-detail-sec-list__item + .secJob-detail-sec-list__item {
    margin-top: 20px;
  }
  .secJob-detail-sec-list__item-txt {
    font-size: 16px;
    line-height: 1.8;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-decoration-color: #ffea00;
    text-underline-offset: 3px;
  }
}

/*	.secJob-entry
------------------------------------------*/
.secJob-entry {
  width: min(100%, 780px);
  margin-inline: auto;
  background: url(../img/bg_entry01_pc.webp) no-repeat center/cover;
  color: #fff;
}
.secJob-entry a {
  height: 300px;
  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: rgba(0, 50, 175, 0.6);
  position: relative;
}
.secJob-entry a::after {
  content: "";
  display: block;
  width: 42px;
  aspect-ratio: 14/10;
  background: url(../img/ico_arrow01.svg) no-repeat center/contain;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: 0;
  right: 75px;
  bottom: 0;
  margin: auto;
}
.secJob-entry-txtBox {
  width: calc(100% - 160px);
}
.secJob-entry__en {
  margin-bottom: 10px;
  font-size: 78px;
  line-height: 1;
}
.secJob-entry__txt {
  margin-left: 5px;
  font-weight: 700;
  font-size: 20px;
}
@media screen and (min-width: 769px) {
  .secJob-entry a:hover {
    opacity: 1;
    background: rgba(199, 26, 34, 0.8);
  }
}
@media screen and (max-width: 768px) {
  .secJob-entry {
    background-image: url(../img/bg_entry01_sp.webp);
  }
  .secJob-entry a {
    height: 240px;
  }
  .secJob-entry a::after {
    right: 25px;
  }
  .secJob-entry-txtBox {
    width: calc(100% - 60px);
  }
  .secJob-entry__en {
    font-size: 54px;
  }
  .secJob-entry__txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 374px) {
  .secJob-entry a::after {
    right: 15px;
  }
  .secJob-entry-txtBox {
    width: calc(100% - 40px);
  }
}

/*------------------------------------------
	.secEnvironment
------------------------------------------*/
.secEnvironment {
  padding-block: 0 120px;
  position: relative;
}
.secEnvironment::after {
  content: "";
  display: block;
  width: min(100%, 50% + 480px);
  height: calc(100% - 90px);
  background: var(--color-gray);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .secEnvironment-inner {
    padding-top: 150px;
    position: relative;
  }
  .secEnvironment__secTit {
    letter-spacing: 0.2em;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    position: absolute;
    top: 0;
    left: 10px;
  }
  .secEnvironment__secTit .c-tit01__en {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: -10px;
  }
}
@media screen and (max-width: 768px) {
  .secEnvironment {
    padding-block: 80px;
  }
  .secEnvironment::after {
    width: calc(100% - 100px);
    height: calc(100% - 100px);
  }
  .secEnvironment__secTit {
    margin-bottom: 40px;
  }
  .secEnvironment__secTit .c-tit01__en {
    font-size: min(11vw, 44px);
  }
}

/*	.secEnvironment-merit
------------------------------------------*/
.secEnvironment-merit {
  margin-bottom: 120px;
}
.secEnvironment-merit__tit {
  margin-bottom: 65px;
  font-weight: 700;
  font-size: 32px;
  text-align: right;
  letter-spacing: 0.06em;
}
.secEnvironment-merit__tit .big {
  color: var(--color-blue);
  font-size: 2.25em;
  line-height: 1;
}
.secEnvironment-merit-list {
  width: min(100% - 150px, 900px);
  margin-inline: auto 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 40px;
}
.secEnvironment-merit-list__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 43.6% 48px 1fr;
  grid-template-columns: 43.6% 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 48px;
}
.secEnvironment-merit-list__num {
  margin-bottom: 15px;
  color: var(--color-red);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
}
.secEnvironment-merit-list__tit {
  margin-bottom: 20px;
  color: var(--color-blue);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.05em;
}
.secEnvironment-merit-list__note {
  margin-top: 8px;
  font-size: 14px;
}
.secEnvironment-merit-list__img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .secEnvironment-merit {
    margin-bottom: 80px;
  }
  .secEnvironment-merit__tit {
    margin-bottom: 25px;
    font-size: 24px;
    text-align: center;
  }
  .secEnvironment-merit-list {
    width: 100%;
    margin-inline: auto;
  }
  .secEnvironment-merit-list__item {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }
  .secEnvironment-merit-list__num {
    margin-bottom: 10px;
  }
  .secEnvironment-merit-list__tit {
    margin-bottom: 15px;
    font-size: 20px;
  }
  .secEnvironment-merit-list__note {
    font-size: 12px;
  }
}

/*	.secEnvironment-interview
------------------------------------------*/
.secEnvironment-interview__tit {
  margin-bottom: 60px;
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .secEnvironment-interview__tit {
    margin-bottom: 30px;
    font-size: 24px;
  }
}

/* .secEnvironment-interview-front */
.secEnvironment-interview-front {
  width: min(100%, 1040px);
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}
.secEnvironment-interview-front__item a {
  display: block;
}
.secEnvironment-interview-front__item-in {
  overflow: clip;
  height: 240px;
  padding: 20px;
  background: #fff;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  position: relative;
}
.secEnvironment-interview-front__tit, .secEnvironment-interview-front__prof {
  position: relative;
  z-index: 2;
}
.secEnvironment-interview-front__tit {
  margin-bottom: 8px;
  color: var(--color-blue);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.secEnvironment-interview-front__num {
  color: var(--color-red);
  font-size: 20px;
  line-height: 1;
  text-align: center;
  position: absolute;
  left: 20px;
  bottom: 15px;
}
.secEnvironment-interview-front__num .big {
  display: block;
  font-weight: 300;
  font-size: 2.2em;
}
.secEnvironment-interview-front__img {
  width: 48%;
  height: 92%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right bottom;
     object-position: right bottom;
  position: absolute;
  right: 0;
  bottom: 0;
}
.secEnvironment-interview-front__img.is-custom01 {
  right: 6%;
}
.secEnvironment-interview-front__img.is-custom02 {
  right: 8%;
}
.secEnvironment-interview-front__more {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin: 16px 0 0 auto;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}
.secEnvironment-interview-front__more::after {
  content: "";
  display: block;
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--color-blue) url(../img/ico_arrow01.svg) no-repeat center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .secEnvironment-interview-front a:hover {
    opacity: 1;
    color: var(--color-red);
  }
  .secEnvironment-interview-front a:hover .secEnvironment-interview-front__tit {
    color: var(--color-red);
  }
  .secEnvironment-interview-front a:hover .secEnvironment-interview-front__more::after {
    background-color: var(--color-red);
  }
  .secEnvironment-interview-front a:hover .secEnvironment-interview-front__img {
    -webkit-filter: brightness(1.3);
            filter: brightness(1.3);
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .secEnvironment-interview-front__tit {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .secEnvironment-interview-front__img {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}
@media screen and (max-width: 768px) {
  .secEnvironment-interview-front {
    width: min(100%, 350px);
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .secEnvironment-interview-front__item-in {
    height: 160px;
    padding-top: 15px;
  }
  .secEnvironment-interview-front__tit {
    margin-bottom: 5px;
    font-size: 22px;
  }
  .secEnvironment-interview-front__num {
    font-size: 12px;
    bottom: 10px;
  }
  .secEnvironment-interview-front__img {
    width: 50%;
  }
  .secEnvironment-interview-front__img.is-custom01 {
    right: 2%;
  }
  .secEnvironment-interview-front__img.is-custom02 {
    right: 4%;
  }
  .secEnvironment-interview-front__more {
    font-size: 15px;
  }
  .secEnvironment-interview-front__more::after {
    width: 35px;
  }
}

/* .secEnvironment-interview-content */
.secEnvironment-interview-content {
  width: min(100%, 800px);
  margin-inline: auto;
  padding-bottom: 80px;
  background: #fff;
  position: relative;
}
.secEnvironment-interview-content-top {
  margin-bottom: 60px;
  padding: 50px 60px;
  background: var(--color-blue-light);
  position: relative;
}
.secEnvironment-interview-content-top-txtBox {
  position: relative;
  z-index: 2;
}
.secEnvironment-interview-content-top__num {
  margin-bottom: 20px;
  color: var(--color-red);
  font-size: 14px;
  line-height: 0.8;
}
.secEnvironment-interview-content-top__tit {
  margin-bottom: 12px;
  color: var(--color-blue);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.secEnvironment-interview-content-top__img {
  width: 30%;
  height: 83%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right bottom;
     object-position: right bottom;
  position: absolute;
  right: 60px;
  bottom: 0;
}
.secEnvironment-interview-content-q {
  width: min(100% - 40px, 680px);
  margin-inline: auto;
}
.secEnvironment-interview-content-q__tit {
  min-height: 44px;
  margin-bottom: 20px;
  padding-left: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.5;
  position: relative;
}
.secEnvironment-interview-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: 400;
  font-size: 21px;
  font-family: "Lexend", sans-serif;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.secEnvironment-interview-content-q__txt {
  padding: 30px;
  background: var(--color-blue-light);
  font-size: 15px;
  line-height: 1.85;
}
.secEnvironment-interview-content-q__txt + .secEnvironment-interview-content-q__tit {
  margin-top: 40px;
}
.secEnvironment-interview-content-sche {
  width: min(100% - 40px, 680px);
  margin: 80px auto 0;
}
.secEnvironment-interview-content-sche__tit {
  margin-bottom: 50px;
  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;
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  letter-spacing: 0.1em;
}
.secEnvironment-interview-content-sche__tit-en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  color: var(--color-blue);
  font-size: 54px;
  line-height: 1;
  letter-spacing: 0;
}
.secEnvironment-interview-content-sche-list {
  padding: 20px 40px 40px;
  background: var(--color-gray);
}
.secEnvironment-interview-content-sche-list__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 78px 30px 1fr;
  grid-template-columns: 78px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 30px;
  padding-block: 20px;
  border-bottom: 1px solid #d2d2d2;
}
.secEnvironment-interview-content-sche-list__time {
  padding: 10px 0;
  background: var(--color-red);
  border-radius: 4px;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.08em;
}
.secEnvironment-interview-content-sche-list__tit {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.secEnvironment-interview-content-sche-list__txt {
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0.02em;
}
.secEnvironment-interview-content__entry {
  width: min(100% - 40px, 360px);
  margin: 40px auto 0;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.secEnvironment-interview-content__entry a {
  height: 80px;
  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 45px;
  background: var(--color-blue) url(../img/ico_arrow01.svg) no-repeat right 30px center;
}
@media screen and (min-width: 769px) {
  .secEnvironment-interview-content__entry a:hover {
    opacity: 1;
    background-color: var(--color-red);
  }
}
@media screen and (max-width: 768px) {
  .secEnvironment-interview-content {
    padding-bottom: 30px;
  }
  .secEnvironment-interview-content-top {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 10px;
    margin-bottom: 40px;
    padding: 20px;
  }
  .secEnvironment-interview-content-top-txtBox {
    position: static;
  }
  .secEnvironment-interview-content-top__num {
    margin: 0;
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 12px;
  }
  .secEnvironment-interview-content-top__tit {
    margin-bottom: 10px;
    font-size: 22px;
    text-align: center;
  }
  .secEnvironment-interview-content-top__prof {
    text-align: center;
  }
  .secEnvironment-interview-content-top__img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: min(60%, 170px);
    height: auto;
    -o-object-fit: fill;
       object-fit: fill;
    position: static;
    display: block;
    margin-inline: auto;
  }
  .secEnvironment-interview-content-q {
    width: calc(100% - 40px);
  }
  .secEnvironment-interview-content-q__tit {
    min-height: 35px;
    margin-bottom: 15px;
    padding-left: 50px;
    font-size: 16px;
  }
  .secEnvironment-interview-content-q__tit::after {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .secEnvironment-interview-content-q__txt {
    padding: 20px;
    font-size: 14px;
    line-height: 1.7;
  }
  .secEnvironment-interview-content-q__txt + .secEnvironment-interview-content-q__tit {
    margin-top: 25px;
  }
  .secEnvironment-interview-content-sche {
    width: calc(100% - 40px);
    margin-top: 40px;
  }
  .secEnvironment-interview-content-sche__tit {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .secEnvironment-interview-content-sche__tit-en {
    font-size: 30px;
  }
  .secEnvironment-interview-content-sche-list {
    padding: 5px 20px 20px;
  }
  .secEnvironment-interview-content-sche-list__item {
    -ms-grid-columns: 60px 15px 1fr;
    grid-template-columns: 60px 1fr;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    grid-gap: 15px;
    padding-block: 15px;
  }
  .secEnvironment-interview-content-sche-list__time {
    padding-block: 6px;
    font-size: 13px;
  }
  .secEnvironment-interview-content-sche-list__tit {
    font-size: 16px;
  }
  .secEnvironment-interview-content-sche-list__txt {
    font-size: 13px;
    line-height: 1.7;
  }
  .secEnvironment-interview-content__entry {
    margin-top: 30px;
    font-size: 16px;
  }
  .secEnvironment-interview-content__entry a {
    height: 60px;
    padding-inline: 30px;
    background-position: right 15px center;
  }
}

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

.mfp-close.modalClose01, .mfp-close.modalClose02 {
  cursor: pointer;
  opacity: 1;
  z-index: 3;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.mfp-close.modalClose01 {
  position: absolute;
  top: 10px !important;
  right: 10px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: var(--color-red);
  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, 360px);
  height: 80px;
  margin: 20px auto 0;
  padding: 0;
  border: 1px solid var(--color-blue);
  color: var(--color-blue) !important;
  font-weight: 700;
  font-size: 16px;
  font-family: inherit;
}
@media screen and (min-width: 769px) {
  .mfp-close.modalClose02:hover {
    border-color: #333;
    background: #333;
    color: #fff !important;
  }
}
@media screen and (max-width: 768px) {
  .mfp-close.modalClose02 {
    height: 60px;
  }
}

/*------------------------------------------
	.secEntry
------------------------------------------*/
.secEntry {
  padding-block: 100px 120px;
  background: url(../img/bg_entry02_pc.webp) no-repeat center/cover;
  color: #fff;
}
.secEntry__secTit {
  mix-blend-mode: soft-light;
  margin-bottom: -0.21em;
  font-size: 170px;
  line-height: 0.8;
  text-align: center;
}
.secEntry__txt {
  font-weight: 700;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.06em;
  text-align: center;
  position: relative;
  z-index: 2;
}
.secEntry__txt + .secEntry__txt {
  margin-top: 24px;
}
.secEntry__btnWrap {
  width: min(100%, 760px);
  margin: 64px auto 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}
.secEntry__btn {
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
}
.secEntry__btn a {
  min-height: 80px;
  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 45px;
  background: url(../img/ico_arrow01.svg) no-repeat right 30px center;
  border: 1px solid #fff;
}
@media screen and (min-width: 769px) {
  .secEntry__btn a:hover {
    opacity: 1;
    background-color: var(--color-red);
    border-color: var(--color-red);
  }
}
@media screen and (max-width: 768px) {
  .secEntry {
    padding-block: 100px;
    background-image: url(../img/bg_entry02_sp.webp);
  }
  .secEntry-inner {
    padding-inline: 40px;
  }
  .secEntry__secTit {
    margin: 0 -15px -0.25em;
    font-size: min(24vw, 100px);
  }
  .secEntry__txt {
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
  }
  .secEntry__btnWrap {
    width: min(100%, 400px);
    margin-top: 40px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
  .secEntry__btn {
    font-size: 14px;
  }
  .secEntry__btn a {
    min-height: 60px;
    padding-inline: 25px;
    background-position: right 12px center;
  }
}
@media screen and (max-width: 374px) {
  .secEntry-inner {
    padding-inline: 30px;
  }
}
/*# sourceMappingURL=style.css.map */