@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;
}

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 (min-width: 769px) {
  .hidden-pc {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .hidden-sp {
    display: none !important;
  }
}
/*------------------------------------------
	root
------------------------------------------*/
:root {
  --header-height: 100px;
  --header-height-scrolled: 70px;
  --inner-width: min(100%, 1080px + (var(--inner-padding) * 2));
  --inner-padding: 10px;
  --color-txt: #222;
  --color-red: #b13737;
  --color-red-dark: #983030;
  --color-bg: #dad3d3;
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 60px;
    --inner-padding: 20px;
  }
}

/*------------------------------------------
	font
------------------------------------------*/
body {
  color: var(--color-txt);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  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%;
  background: var(--color-bg);
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

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

.f-roboto {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
}

/*------------------------------------------
	smooth scroll / frame
------------------------------------------*/
@media screen and (max-width: 768px) {
  html [id] {
    scroll-margin-top: var(--header-height);
  }
}

.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.is-fadeInUp {
  opacity: 0;
  -webkit-transform: translate(0, 60px);
          transform: translate(0, 60px);
}
.js-scroll.is-fadeInUp.is-view {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .js-scroll.is-fadeInUp {
    -webkit-transform: translate(0, 40px);
            transform: translate(0, 40px);
  }
}
.js-scroll.is-fadeIn {
  opacity: 0;
}
.js-scroll.is-fadeIn.is-view {
  opacity: 1;
}

/*============================================================================================================
	l-header
============================================================================================================*/
.l-header {
  width: 100%;
  height: var(--header-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9990;
}
.l-header__logo {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: var(--header-height);
  padding: 0 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-header__logo img {
  display: block;
  width: 262px;
  height: auto;
}
@media screen and (min-width: 769px) {
  .l-header {
    position: fixed;
    -webkit-transition: background 0.3s, height 0.3s, -webkit-box-shadow 0.3s;
    transition: background 0.3s, height 0.3s, -webkit-box-shadow 0.3s;
    transition: background 0.3s, height 0.3s, box-shadow 0.3s;
    transition: background 0.3s, height 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
  }
  .l-header__logo {
    -webkit-transition: height 0.3s;
    transition: height 0.3s;
  }
  .l-header__logo img {
    -webkit-transition: width 0.3s;
    transition: width 0.3s;
  }
  .l-header.is-scroll {
    height: var(--header-height-scrolled);
    background: #fff;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }
  .l-header.is-scroll .l-header__logo {
    height: var(--header-height-scrolled);
  }
  .l-header.is-scroll .l-header__logo img {
    width: 183px;
  }
  .l-header.is-scroll .l-nav-list__item a {
    color: var(--color-txt);
  }
  .l-header.is-scroll .l-nav-list__item a:hover {
    color: var(--color-red);
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    height: var(--header-height);
    position: fixed;
    background: #fff;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  .l-header__logo {
    background: transparent;
    padding: 0 0 0 16px;
  }
  .l-header__logo img {
    width: 190px;
  }
}

/*============================================================================================================
	nav
============================================================================================================*/
.l-nav a {
  display: block;
}

/* PC */
@media screen and (min-width: 769px) {
  .l-nav {
    margin-inline: auto 0;
    padding-right: 40px;
  }
  .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 28px;
  }
  .l-nav-list__item {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  .l-nav-list__item a {
    color: #fff;
  }
  .l-nav-list__item a:hover {
    opacity: 1;
    color: rgba(255, 255, 255, 0.75);
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .gnavBtn {
    overflow: hidden;
    cursor: pointer;
    width: 60px;
    height: 60px;
    z-index: 9992;
    position: fixed;
    top: 0;
    right: 0;
    background: var(--color-red);
  }
  .gnavBtn span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 25px;
    height: 2px;
    border-radius: 10px;
    background: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .gnavBtn span:nth-of-type(1) {
    top: 22px;
  }
  .gnavBtn span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .gnavBtn span:nth-of-type(3) {
    bottom: 22px;
  }
  .gnavBtn.is-close span:nth-of-type(1) {
    -webkit-transform: translateY(7px) rotate(-225deg);
            transform: translateY(7px) 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(-7px) rotate(225deg);
            transform: translateY(-7px) rotate(225deg);
  }
  .l-nav {
    display: none;
    padding: 90px 20px 50px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9991;
    background: rgba(255, 255, 255, 0.97);
    overflow: auto;
  }
  .l-nav-list__item {
    border-bottom: 1px solid #ccc;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .l-nav-list__item a {
    padding: 16px 30px 16px 10px;
    position: relative;
  }
  .l-nav-list__item a::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--color-red);
    border-bottom: 2px solid var(--color-red);
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    margin: auto;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  position: relative;
  z-index: 2;
  background: var(--color-bg);
}
.l-mv__img img {
  display: block;
  width: 100%;
  height: auto;
}
.l-mv__txt {
  position: absolute;
  top: 24.73vw;
  left: 0;
  width: 100%;
  line-height: 0;
}
.l-mv__txt img {
  display: block;
  width: 100%;
  height: auto;
}
.l-mv__entry {
  position: absolute;
  top: 54.25vw;
  right: 0;
  z-index: 3;
}
.l-mv__entry a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 200px;
  height: 70px;
  background: var(--color-red);
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.1em;
  border: 1px solid #fff;
  border-right: none;
}
.l-mv__entry a:hover {
  opacity: 1;
  background: var(--color-red-dark);
}
.l-mv__entry--float {
  position: fixed;
  top: auto;
  bottom: 24px;
  z-index: 9000;
}
@media screen and (max-width: 768px) {
  .l-mv {
    padding-top: var(--header-height);
  }
  .l-mv__txt {
    top: calc(var(--header-height) + 24.8vw);
  }
  .l-mv__entry {
    top: calc(var(--header-height) + 54.25vw);
  }
  .l-mv__entry a {
    width: 120px;
    height: 46px;
    font-size: 15px;
  }
  .l-mv__entry--float {
    top: auto;
    bottom: 0;
  }
}

/*============================================================================================================
	main
============================================================================================================*/
/*------------------------------------------
	.secMessage
------------------------------------------*/
.secMessage {
  position: relative;
  z-index: 1;
  background: var(--color-bg);
  min-height: 72vw;
  padding: 28.5vw 0 4vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.secMessage__txtBox {
  position: relative;
  z-index: 2;
  max-width: 440px;
}
.secMessage__txt {
  font-size: 18px;
  font-weight: 500;
  line-height: 240%;
  letter-spacing: 0.04em;
}
.secMessage__txt + .secMessage__txt {
  margin-top: 1.7em;
}
.secMessage__img {
  position: absolute;
  top: 9.7vw;
  right: 0;
  width: 47.2vw;
  z-index: 1;
}
.secMessage__img img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .secMessage {
    min-height: 0;
    padding: 36vw 0 0;
  }
  .secMessage__txtBox {
    max-width: none;
    width: var(--inner-width);
    margin-inline: auto;
    padding: 0 var(--inner-padding);
  }
  .secMessage__txt {
    font-size: 14px;
    line-height: 1.85;
  }
  .secMessage__txt br {
    display: none;
  }
  .secMessage__img {
    position: static;
    width: 100%;
    margin-top: 64px;
  }
}

/*------------------------------------------
	.secPoint
------------------------------------------*/
.secPoint {
  position: relative;
  z-index: 2;
  background: var(--color-bg);
  padding: 5.5vw 0 8.5vw;
  color: #fff;
}
.secPoint::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 9.7vw;
  background: var(--color-red);
  z-index: 0;
}
.secPoint-inner {
  position: relative;
  z-index: 2;
}
.secPoint__label {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.secPoint__tit {
  margin-top: 8px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 800;
  font-size: 98px;
  line-height: 1;
  letter-spacing: 0;
}
.secPoint__num {
  position: absolute;
  top: -5.5vw;
  right: 6vw;
  width: 27.5vw;
  z-index: 1;
  line-height: 0;
  pointer-events: none;
}
.secPoint__num img {
  display: block;
  width: 100%;
  height: auto;
}
.secPoint-list {
  max-width: 72%;
  margin-top: 110px;
}
.secPoint-list__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.secPoint-list__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  padding: 24px 4px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.secPoint-list__num {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 800;
  font-size: 60px;
  line-height: 1;
  letter-spacing: 0.02em;
}
.secPoint-list__tit {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.secPoint-list .btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  width: 22px;
  height: 22px;
  margin-left: auto;
}
.secPoint-list .btn::before, .secPoint-list .btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.secPoint-list .btn::before {
  width: 22px;
  height: 2px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.secPoint-list .btn::after {
  width: 2px;
  height: 22px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.secPoint-list__head.is-open .btn::after {
  -webkit-transform: translate(-50%, -50%) scaleY(0);
          transform: translate(-50%, -50%) scaleY(0);
}
.secPoint-list__body {
  display: none;
  padding: 0 4px 28px;
}
.secPoint-list__txt {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 769px) {
  .secPoint-list__head:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 768px) {
  .secPoint {
    padding: 48px 0 56px;
  }
  .secPoint::before {
    right: 0;
  }
  .secPoint__label {
    font-size: 13px;
  }
  .secPoint__tit {
    font-size: 48px;
  }
  .secPoint__num {
    width: 26vw;
    top: -8vw;
    bottom: auto;
  }
  .secPoint-list {
    max-width: none;
    margin-top: 32px;
  }
  .secPoint-list__head {
    gap: 16px;
    padding: 18px 2px;
  }
  .secPoint-list__num {
    font-size: 24px;
  }
  .secPoint-list__tit {
    font-size: 16px;
  }
  .secPoint-list .btn {
    width: 18px;
    height: 18px;
  }
  .secPoint-list .btn::before {
    width: 18px;
  }
  .secPoint-list .btn::after {
    height: 18px;
  }
  .secPoint-list__body {
    padding: 0 2px 22px;
  }
  .secPoint-list__txt {
    font-size: 14px;
    line-height: 1.85;
  }
}

/*------------------------------------------
	.secJob
------------------------------------------*/
.secJob {
  background: var(--color-bg);
  padding: 7vw 0 0;
}
.secJob__head {
  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;
}
.secJob__label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.secJob__tit {
  margin-top: 8px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 800;
  font-size: 72px;
  line-height: 1;
  letter-spacing: 0.02em;
}
.secJob__lead {
  margin-top: 6px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
.secJob__anchor {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  margin-top: 94px;
}
.secJob__anchorItem {
  position: relative;
}
.secJob__anchorItem a {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 540/189;
}
.secJob__anchorItem a:hover {
  opacity: 1;
}
.secJob__anchorItem a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.secJob__anchorItem img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.secJob__anchorItem::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.secJob__anchorItem--driver::after, .secJob__anchorItem--forklift::after {
  background: rgba(0, 0, 0, 0.5);
}
.secJob__anchorItem:hover::after {
  background: rgba(196, 60, 60, 0.9);
}
.secJob__anchorTxt {
  position: absolute;
  z-index: 2;
  top: 42%;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.secJob__anchorIco {
  position: absolute;
  z-index: 2;
  top: 76%;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.secJob__anchorIco img {
  position: static;
  width: 26px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .secJob {
    padding: 48px 0 40px;
  }
  .secJob__head {
    display: block;
  }
  .secJob__tit {
    font-size: 48px;
  }
  .secJob__lead {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.85;
  }
  .secJob__lead br {
    display: none;
  }
  .secJob__anchor {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 32px;
  }
  .secJob__anchorItem a {
    aspect-ratio: 343/130;
  }
  .secJob__anchorTxt {
    font-size: 18px;
  }
  .secJob__anchorIco img {
    width: 22px;
  }
}

/*------------------------------------------
	.secWork
------------------------------------------*/
.secWork {
  background: var(--color-bg);
  padding-bottom: 2vw;
}
.secWork__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  padding-top: 4vw;
}
.secWork__intro--rev {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.secWork__introImg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  scroll-margin-top: var(--header-height);
}
@media screen and (min-width: 769px) {
  .secWork__introImg {
    scroll-margin-top: var(--header-height-scrolled);
  }
}
.secWork__introImg img {
  display: block;
  width: 100%;
  height: auto;
}
.secWork__introTxt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.secWork__name {
  color: var(--color-red);
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.secWork__lead {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
.secWork__see {
  margin-top: 3vw;
}
.secWork__seeHead {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.secWork__tabBtns {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr 8px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 28px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  max-width: 808px;
}
.secWork__tabBtn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  cursor: pointer;
  width: 100%;
  height: 70px;
  background: #1a1a1a;
  color: #fff;
  font-family: inherit;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.secWork__tabBtn.is-active {
  height: 80px;
  background: var(--color-red);
  color: #fff;
}
.secWork__tabBtn:not(.is-active):hover {
  opacity: 0.8;
}
.secWork__panel {
  background: var(--color-red);
  color: #fff;
}
.secWork__panelInner {
  padding-top: 64px;
  padding-bottom: 80px;
}
.secWork__tabPanel {
  display: none;
}
.secWork__tabPanel.is-show {
  display: block;
}
.secWork__desc {
  max-width: 800px;
  margin-inline: auto;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.95;
  letter-spacing: 0;
}
.secWork__cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  margin-top: 40px;
}
.secWork__voice {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
}
.secWork__flow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
}
.secWork__colLabel {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
}
.secWork__colLabel:not(.secWork__colLabel--solo) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.secWork__colLabelSub, .secWork__colLabelMain {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
  background: #fff;
  color: var(--color-red);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
}
.secWork__colLabelSub {
  padding: 16px 11px;
  font-size: 24px;
}
.secWork__colLabelMain {
  padding: 16px 11px;
  font-size: 24px;
}
.secWork__bubbles {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px 20px;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  padding-top: 20px;
}
.secWork__bubble {
  position: relative;
  width: calc(50% - 10px);
  background: #dfd8d8;
  color: var(--color-txt);
  border-radius: 4px;
  padding: 18px 18px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.secWork__bubble::after {
  content: "";
  position: absolute;
  bottom: -17px;
  width: 20px;
  height: 18px;
  background: url(../img/ico_fukidashi.svg) no-repeat center/contain;
}
.secWork__bubble:nth-child(1)::after {
  left: auto;
  right: 40px;
}
.secWork__bubble:nth-child(2) {
  margin-top: 20px;
}
.secWork__bubble:nth-child(2)::after {
  left: 50px;
  right: auto;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.secWork__bubble--wide {
  width: 100%;
  max-width: 280px;
  margin-left: 80px;
}
.secWork__bubble--wide::after {
  left: 65%;
  right: auto;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.secWork__timeline {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 20px;
}
.secWork__time {
  display: block;
  padding: 10px 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.secWork__time:first-child {
  padding-top: 0;
}
.secWork__timeNum {
  display: block;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  font-family: "Roboto Condensed", sans-serif;
}
.secWork__timeTxt {
  display: block;
  margin-top: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
}
.secWork__search {
  margin-top: 40px;
  text-align: center;
}
.secWork__search a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 280px;
  height: 64px;
  background: #161616;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.secWork__search a:hover {
  opacity: 0.85;
}
.secWork__other {
  margin-top: 0;
  text-align: right;
}
.secWork__other a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  min-width: 250px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  color: var(--color-red);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 22px 28px;
}
.secWork__other a:hover {
  opacity: 0.8;
}
.secWork__otherIco {
  position: relative;
  width: 12px;
  height: 15px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.secWork__otherIco::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 50%;
  width: 1.5px;
  height: 14px;
  background: var(--color-red);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.secWork__otherIco::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid var(--color-red);
  border-left: 1.5px solid var(--color-red);
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .secWork {
    padding-bottom: 40px;
  }
  .secWork__intro, .secWork__intro--rev {
    display: block;
    padding-top: 36px;
  }
  .secWork__introTxt {
    margin-top: 20px;
  }
  .secWork__name {
    font-size: 32px;
  }
  .secWork__lead {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.85;
  }
  .secWork__see {
    margin-top: 40px;
  }
  .secWork__seeHead {
    font-size: 19px;
  }
  .secWork__tabBtns {
    gap: 4px;
    margin-top: 20px;
  }
  .secWork__tabBtn {
    height: 48px;
    font-size: 14px;
  }
  .secWork__tabBtn.is-active {
    height: 52px;
  }
  .secWork__panelInner {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .secWork__desc {
    font-size: 14px;
    line-height: 1.85;
  }
  .secWork__cols {
    display: block;
    margin-top: 28px;
  }
  .secWork__flow {
    margin-top: 32px;
  }
  .secWork__colLabel {
    display: block;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: upright;
    background: #fff;
    color: var(--color-red);
    padding: 12px 8px;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .secWork__colLabelSub, .secWork__colLabelMain {
    display: inline;
    background: transparent;
    padding: 0;
    font-size: 17px;
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    text-orientation: inherit;
  }
  .secWork__timeNum {
    font-size: 15px;
  }
  .secWork__timeTxt {
    margin-top: 2px;
    font-size: 13px;
  }
  .secWork__bubble {
    width: 100%;
    font-size: 14px;
  }
  .secWork__bubble:nth-child(2) {
    margin-top: 0;
  }
  .secWork__bubble--wide {
    margin-left: 0;
    max-width: none;
  }
  .secWork__search {
    margin-top: 28px;
  }
  .secWork__search a {
    width: 100%;
    max-width: 280px;
    height: 56px;
    font-size: 15px;
  }
  .secWork__other a {
    min-width: 0;
    width: auto;
    gap: 24px;
    padding: 14px 18px;
    font-size: 14px;
  }
}

/*------------------------------------------
	.secInterview
------------------------------------------*/
.secInterview {
  background: var(--color-bg);
  padding: 5vw 0 7vw;
}
.secInterview__head {
  border-bottom: 1px solid var(--color-red);
  padding-bottom: 16px;
  max-width: 762px;
  margin-inline: auto;
}
.secInterview__label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  color: var(--color-red);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-left: 32px;
}
.secInterview__label::before {
  content: "";
  position: absolute;
  left: -30px;
  top: -30px;
  width: 52px;
  height: 44px;
  background: url(../img/ico_ashirai.svg) no-repeat left top/contain;
}
.secInterview__label::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background: var(--color-red);
}
.secInterview__titBox {
  margin-top: 14px;
  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;
  gap: 40px;
}
.secInterview__tit {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 800;
  font-size: 98px;
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--color-red);
}
.secInterview__sub {
  color: var(--color-red);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.secInterview__list {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 27px 1fr 27px 1fr 27px 1fr;
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: auto 6px auto 6px auto 6px auto;
  grid-template-rows: auto auto auto auto;
  -webkit-column-gap: 27px;
     -moz-column-gap: 27px;
          column-gap: 27px;
  row-gap: 6px;
  margin-top: 60px;
  padding-bottom: 48px;
}
.secInterview__list > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.secInterview__list > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.secInterview__list > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.secInterview__list > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}
.secInterview__list > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.secInterview__list > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.secInterview__list > *:nth-child(7) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}
.secInterview__list > *:nth-child(8) {
  -ms-grid-row: 3;
  -ms-grid-column: 7;
}
.secInterview__list > *:nth-child(9) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}
.secInterview__list > *:nth-child(10) {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
}
.secInterview__list > *:nth-child(11) {
  -ms-grid-row: 5;
  -ms-grid-column: 5;
}
.secInterview__list > *:nth-child(12) {
  -ms-grid-row: 5;
  -ms-grid-column: 7;
}
.secInterview__list > *:nth-child(13) {
  -ms-grid-row: 7;
  -ms-grid-column: 1;
}
.secInterview__list > *:nth-child(14) {
  -ms-grid-row: 7;
  -ms-grid-column: 3;
}
.secInterview__list > *:nth-child(15) {
  -ms-grid-row: 7;
  -ms-grid-column: 5;
}
.secInterview__list > *:nth-child(16) {
  -ms-grid-row: 7;
  -ms-grid-column: 7;
}
.secInterview__list::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: calc(50% - 50vw + 5.5vw);
  right: calc(50% - 50vw);
  top: 3vw;
  bottom: -40px;
  background: var(--color-red);
}
.secInterview__item {
  position: relative;
  z-index: 1;
  -ms-grid-row-span: 4;
  grid-row: span 4;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
}
.secInterview__item a {
  -ms-grid-row-span: 4;
  grid-row: span 4;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.secInterview__item a:hover {
  opacity: 1;
}
.secInterview__item a:hover .secInterview__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.secInterview__img {
  overflow: hidden;
  aspect-ratio: 500/320;
}
.secInterview__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.secInterview__cardTit {
  margin-top: 16px;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.secInterview__profile {
  margin-top: 14px;
  text-align: right;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.secInterview__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  margin-top: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.secInterview__moreIco {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 38px;
  height: 38px;
  margin-left: auto;
  border-radius: 50%;
  background: #fff url(../img/ico_arrow04.svg) no-repeat center/13px 13px;
}
@media screen and (max-width: 768px) {
  .secInterview {
    padding: 40px 0 48px;
  }
  .secInterview__head {
    padding-bottom: 12px;
  }
  .secInterview__label {
    font-size: 19.5px;
    gap: 16px;
    padding-left: 42px;
  }
  .secInterview__label::before {
    left: 4px;
    top: -10px;
    width: 30px;
    height: 34px;
  }
  .secInterview__titBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    margin-top: 10px;
  }
  .secInterview__tit {
    font-size: 56px;
  }
  .secInterview__sub {
    text-align: center;
    font-size: 19.5px;
    line-height: 1.5;
  }
  .secInterview__sub br {
    display: none;
  }
  .secInterview__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    margin-top: 28px;
    padding: 20px 20px 36px;
  }
  .secInterview__list::before {
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
    top: 56px;
    bottom: -24px;
  }
  .secInterview__item {
    grid-row: auto;
    display: block;
  }
  .secInterview__item a {
    display: block;
    grid-row: auto;
    -ms-grid-rows: none;
    grid-template-rows: none;
  }
  .secInterview__cardTit {
    margin-top: 12px;
    font-size: 19px;
    line-height: 1.55;
    letter-spacing: 0.03em;
  }
  .secInterview__profile {
    margin-top: 8px;
    font-size: 15px;
  }
  .secInterview__more {
    margin-top: 14px;
    font-size: 14px;
    gap: 12px;
  }
  .secInterview__moreIco {
    width: 32px;
    height: 32px;
    background-size: 11px 11px;
  }
}

/*------------------------------------------
	.secEarning
------------------------------------------*/
.secEarning {
  position: relative;
  background: var(--color-bg);
  padding: 5vw 0 15vw;
}
.secEarning__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.secEarning__watermark {
  position: absolute;
  top: 155px;
  left: calc(50% - 774px);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  white-space: nowrap;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 800;
  font-size: 380px;
  line-height: 0.92;
  letter-spacing: 0;
  color: #fff;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.secEarning-inner {
  position: relative;
  z-index: 1;
}
.secEarning__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 135px;
}
.secEarning__side {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 296px;
          flex: 0 0 296px;
}
.secEarning__tit {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 800;
  font-size: 98px;
  line-height: 90%;
  letter-spacing: 0;
  color: var(--color-txt);
}
.secEarning__sub {
  margin-top: 18px;
  color: var(--color-red);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.secEarning__nav {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}
@media screen and (min-width: 769px) {
  .secEarning__nav {
    top: calc(var(--header-height-scrolled) + 30px);
  }
}
.secEarning__nav {
  margin-top: 44px;
}
.secEarning__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
.secEarning__nav a {
  position: relative;
  display: inline-block;
  color: var(--color-txt);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  -webkit-transition: color 0.3s, padding 0.3s;
  transition: color 0.3s, padding 0.3s;
}
.secEarning__nav a:hover {
  opacity: 1;
  color: var(--color-red);
}
.secEarning__nav a.is-active {
  color: var(--color-red);
  padding-left: 40px;
}
.secEarning__nav a.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 1px;
  background: var(--color-red);
}
.secEarning__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.secEarning__block {
  scroll-margin-top: calc(var(--header-height) + 30px);
}
@media screen and (min-width: 769px) {
  .secEarning__block {
    scroll-margin-top: calc(var(--header-height-scrolled) + 30px);
  }
}
.secEarning__block + .secEarning__block {
  margin-top: 60px;
}
.secEarning__img {
  overflow: hidden;
}
.secEarning__img img {
  display: block;
  width: 100%;
  height: auto;
}
.secEarning__blockTit {
  margin-top: 26px;
  color: var(--color-red);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.secEarning__txt {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.95;
  letter-spacing: 0.04em;
}
.secEarning__steps {
  margin-top: 16px;
}
.secEarning__steps li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
.secEarning__stepNum {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 8px;
  color: var(--color-red);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .secEarning {
    padding: 48px 0 56px;
  }
  .secEarning__watermark {
    font-size: 120px;
  }
  .secEarning__layout {
    display: block;
  }
  .secEarning__side {
    width: auto;
  }
  .secEarning__tit {
    font-size: 48px;
  }
  .secEarning__sub {
    margin-top: 14px;
    font-size: 17px;
  }
  .secEarning__nav {
    position: static;
    margin-top: 24px;
  }
  .secEarning__nav ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 20px;
  }
  .secEarning__nav a.is-active {
    padding-left: 26px;
  }
  .secEarning__nav a.is-active::before {
    width: 18px;
  }
  .secEarning__main {
    margin-top: 36px;
  }
  .secEarning__block + .secEarning__block {
    margin-top: 44px;
  }
  .secEarning__blockTit {
    margin-top: 20px;
    font-size: 21px;
  }
  .secEarning__txt {
    font-size: 14px;
    line-height: 1.85;
  }
}

/*------------------------------------------
	.secEnv
------------------------------------------*/
.secEnv {
  position: relative;
  color: #fff;
  background: var(--color-bg);
  padding: 11.5vw 0 7.5vw;
}
.secEnv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.secEnv__bg::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 5.5vw;
  left: 5.5vw;
  background: #000;
}
.secEnv__bg::after {
  content: "";
  position: absolute;
  top: 5.5vw;
  right: 5.5vw;
  bottom: 0;
  left: 0;
  background: var(--color-red);
}
.secEnv__watermark {
  position: absolute;
  top: -0.1em;
  right: 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 800;
  font-size: 230px;
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: #fff;
  opacity: 0.08;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.secEnv-inner {
  position: relative;
  z-index: 1;
}
.secEnv__label {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.secEnv__tit {
  margin-top: 6px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 800;
  font-size: 98px;
  line-height: 1;
  letter-spacing: 0;
}
.secEnv__list {
  margin-top: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.secEnv__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 380px 118px 1fr;
  grid-template-columns: 380px 1fr;
  gap: 118px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.secEnv__itemTit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.secEnv__itemTit--2line {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.secEnv__itemTitLine {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.secEnv__itemTitLine + .secEnv__itemTitLine {
  margin-top: -1px;
}
.secEnv__itemTitLine > span,
.secEnv__itemTit > span:not(.secEnv__itemTitLine) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 40px;
  height: 40px;
  margin: 0 -1px -1px 0;
  border: 1px solid #fff;
  font-size: 28px;
  font-weight: 700;
}
.secEnv__itemTxt p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.95;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .secEnv {
    padding: 68px 0 68px;
  }
  .secEnv__bg::before {
    left: 20px;
    bottom: 20px;
  }
  .secEnv__bg::after {
    top: 20px;
    right: 20px;
    bottom: 0;
    left: 0;
  }
  .secEnv__watermark {
    font-size: 120px;
  }
  .secEnv__tit {
    font-size: 42px;
  }
  .secEnv__list {
    margin-top: 32px;
    gap: 28px;
  }
  .secEnv__item {
    display: block;
  }
  .secEnv__itemTitLine > span,
  .secEnv__itemTit > span:not(.secEnv__itemTitLine) {
    width: 36px;
    height: 36px;
    font-size: 19px;
  }
  .secEnv__itemTxt {
    margin-top: 16px;
  }
  .secEnv__itemTxt p {
    font-size: 14px;
    line-height: 1.85;
  }
}

/*------------------------------------------
	.secSearch
------------------------------------------*/
.secSearch {
  position: relative;
}
.secSearch__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.secSearch__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.secSearch__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 20, 28, 0.5);
}
.secSearch-inner {
  position: relative;
  z-index: 1;
}
.secSearch__body {
  padding: 7vw 0;
  color: #fff;
}
.secSearch__lead p {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.secSearch__lead p + p {
  margin-top: 32px;
}
.secSearch__label {
  position: relative;
  margin-top: 64px;
  padding-left: 48px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.secSearch__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 32px;
  height: 1px;
  background: #fff;
}
.secSearch__btns {
  margin-top: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.secSearch__btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: var(--color-red);
  color: #fff;
  padding: 26px 40px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.secSearch__btn:hover {
  opacity: 1;
  background: var(--color-red-dark);
}
.secSearch__btn.is-disabled {
  background: #999;
  cursor: not-allowed;
}
.secSearch__btn.is-disabled:hover {
  background: #999;
}
.secSearch__btn.is-disabled .secSearch__btnIco::before,
.secSearch__btn.is-disabled .secSearch__btnIco::after {
  opacity: 0.7;
}
.secSearch__select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.secSearch__select:disabled {
  cursor: not-allowed;
}
.secSearch__btnIco {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 12px;
  height: 16px;
}
.secSearch__btnIco::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1.5px;
  height: 14px;
  background: #fff;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.secSearch__btnIco::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1px;
  width: 8px;
  height: 8px;
  border-bottom: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .secSearch__body {
    padding: 56px 0;
  }
  .secSearch__lead p {
    font-size: 16px;
    line-height: 1.8;
  }
  .secSearch__label {
    margin-top: 36px;
  }
  .secSearch__btns {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .secSearch__btn {
    padding: 20px 22px;
    font-size: 16px;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  position: relative;
  background: #000;
  color: #fff;
}
.l-footer p,
.l-footer li {
  line-height: 1.8;
  letter-spacing: 0.08em;
  -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: 40px 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: 10px 35px;
}
.l-footer-nav__item {
  position: relative;
  list-style: none;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}
.l-footer-nav__item + .l-footer-nav__item::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 50%;
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-footer-nav__item a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.l-footer-nav__item a:hover {
  opacity: 1;
  text-decoration: underline;
}
.l-footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.7) !important;
  font-weight: 500;
  font-size: 11px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-footer-inner {
    padding: 30px 20px 40px;
  }
  .l-footer-nav {
    display: block;
    margin: 0 auto 24px;
  }
  .l-footer-nav__item {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.35);
    font-size: 12px;
    text-align: left;
  }
  .l-footer-nav__item + .l-footer-nav__item::before {
    display: none;
  }
  .l-footer-nav__item a {
    padding: 10px 0;
  }
  .l-footer-copyright {
    font-size: 10px;
    text-align: left;
  }
}

.pagetop {
  display: none;
  width: 56px;
  height: 56px;
  position: fixed;
  right: 24px;
  bottom: 100px;
  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-red);
  border-radius: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff !important;
  position: relative;
}
.pagetop a::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  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: 44px;
    height: 44px;
    right: 12px;
    bottom: 58px;
  }
}

/*------------------------------------------
	.interviewModal
------------------------------------------*/
body .mfp-bg {
  z-index: 9993;
  opacity: 0.4;
  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-txt);
  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: 1px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
}
.mfp-close.modalClose01::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mfp-close.modalClose01::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.mfp-close.modalClose01:hover {
  opacity: 0.7;
}
.mfp-close.modalClose02 {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 180px;
  min-height: 44px;
  margin: 0;
  padding: 13px 50px;
  border: 1px solid #000;
  color: var(--color-txt) !important;
  font-size: 16px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  .mfp-close.modalClose02:hover {
    background: var(--color-txt);
    border-color: var(--color-txt);
    color: #fff !important;
  }
}

.interviewModal {
  position: relative;
  width: min(100%, 980px);
  margin-inline: auto;
}
.interviewModal__panel {
  position: relative;
  background: var(--color-bg);
  padding: 0 0 80px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .interviewModal__panel {
    padding-bottom: 56px;
  }
}
.interviewModal__hero {
  position: relative;
  min-height: 444px;
  padding-left: 60px;
}
@media screen and (max-width: 768px) {
  .interviewModal__hero {
    min-height: 0;
    padding: 20px 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.interviewModal__heroTxt {
  position: relative;
  z-index: 2;
  max-width: 440px;
  padding-top: 121px;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .interviewModal__heroTxt {
    max-width: none;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.interviewModal__titLines {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4px;
}
.interviewModal__titLines span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4px 12px;
  background: var(--color-red);
  color: #fff;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .interviewModal__titLines span {
    font-size: 20px;
    padding: 4px 12px;
  }
}
.interviewModal__meta {
  margin-top: 10px;
}
.interviewModal__prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 10px;
}
.interviewModal__prevLabel {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .interviewModal__prevLabel {
    font-size: 16px;
  }
}
.interviewModal__prevJob {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3px 12px;
  background: #fff;
  border: 1px solid #000;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .interviewModal__prevJob {
    font-size: 15px;
    padding: 6px 8px;
  }
}
.interviewModal__currentJob {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
  padding: 4px 8px;
  background: #000;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .interviewModal__currentJob {
    font-size: 15px;
  }
}
.interviewModal__profile {
  margin-top: 10px;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .interviewModal__profile {
    font-size: 15px;
    font-weight: 700;
  }
}
.interviewModal__heroImg {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 63.27%;
  max-width: 620px;
  aspect-ratio: 620/444;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .interviewModal__heroImg {
    position: static;
    width: 100%;
    max-width: none;
    margin-bottom: -56px;
  }
}
.interviewModal__heroImg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.interviewModal__body {
  margin-top: 0;
  padding: 60px 60px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .interviewModal__body {
    padding: 0 20px;
    margin-top: 40px;
    gap: 32px;
  }
}
.interviewModal__qaItem {
  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;
}
.interviewModal__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .interviewModal__question {
    gap: 12px;
  }
}
.interviewModal__qMark {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-red);
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .interviewModal__qMark {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }
}
.interviewModal__qTxt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding-top: 6px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .interviewModal__qTxt {
    font-size: 17px;
    padding-top: 0;
  }
}
.interviewModal__answer {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
}
.interviewModal__answer p {
  font-size: 17.5px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .interviewModal__answer p {
    font-size: 15px;
    line-height: 1.9;
  }
}
@media screen and (max-width: 768px) {
  .interviewModal__answer {
    padding: 20px;
  }
}
.interviewModal__foot {
  margin-top: 40px;
  padding: 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .interviewModal__foot {
    padding: 0 20px;
  }
}
.interviewModal__jobLink {
  width: 100%;
  max-width: 240px;
}
.interviewModal__jobLink a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-height: 60px;
  padding: 14px 20px;
  background: var(--color-red);
  border: 1px solid var(--color-red);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
}
.interviewModal__jobLink a:hover {
  opacity: 0.85;
}
/*# sourceMappingURL=style.css.map */