@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: 80px;
  --inner-width: min(100%, 1080px + (var(--inner-padding) * 2));
  --inner-padding: 10px;
  --cv-height: 90px;
  --color-txt: #333;
  --color-red: #bb3326;
  --color-gray: #f8f8f8;
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 70px;
    --inner-padding: 20px;
    --cv-height: 60px;
  }
}

/*------------------------------------------
	font
------------------------------------------*/
body {
  color: var(--color-txt);
  font-size: 16px;
  line-height: 1.8;
  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-saira {
  font-weight: 400;
  font-family: "Saira Stencil One", sans-serif;
}

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

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

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

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

/*============================================================================================================
	l-header
============================================================================================================*/
.l-header {
  width: 100%;
  height: var(--header-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 9990;
  top: 0;
  left: 0;
}
.l-header__logo a,
.l-header__logo img {
  display: block;
}
@media screen and (min-width: 769px) {
  .l-header {
    min-width: 1000px;
    gap: 30px;
    padding-inline: 30px;
    position: fixed;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header:not(.is-scroll) .l-nav {
    color: #fff;
  }
  .l-header.is-scroll {
    background: #fff;
  }
  .l-header.is-scroll .l-header__logo a::after {
    opacity: 1;
  }
  .l-header.is-scroll .l-header__logo img {
    opacity: 0;
  }
  .l-header__logo a {
    position: relative;
  }
  .l-header__logo a::after {
    content: "";
    display: block;
    width: 198px;
    aspect-ratio: 198/22;
    -webkit-mask-image: url(../img/common/logo01.svg);
    mask-image: url(../img/common/logo01.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: #333;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header__logo img {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    padding-inline: 20px calc(var(--header-height) + 10px);
    position: absolute;
    left: 0 !important;
  }
  .l-header__logo {
    width: 163px;
  }
}

/*	.l-header__entry
------------------------------------------*/
.l-header__entry {
  width: 300px;
  height: var(--cv-height);
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  position: fixed;
  z-index: 9992;
  right: 0;
  bottom: 0;
}
.l-header__entry a {
  height: 100%;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2px;
  padding: 5px 0 5px 20px;
  background: var(--color-red) url(../img/common/ico_entry01.svg) no-repeat right 20px center;
  position: relative;
}
.l-header__entry a::before, .l-header__entry a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
}
.l-header__entry a::before {
  width: 41px;
  height: 100%;
  background: var(--color-red);
  clip-path: polygon(calc(100% - 1px) 0, 100% 0, 100% 100%, 0 100%);
  right: calc(100% - 1px);
}
.l-header__entry a::after {
  width: 28%;
  aspect-ratio: 168/230;
  background: url(../img/common/img_entry01.webp) no-repeat center/contain;
  right: 20px;
}
.l-header__entry-small {
  font-weight: 500;
  font-size: 0.67em;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .l-header__entry {
    width: min(100% - 40px, 250px);
    font-size: 18px;
  }
  .l-header__entry a {
    padding-left: 15px;
    background-position: right 15px center;
  }
  .l-header__entry a::before {
    width: 31px;
  }
  .l-header__entry a::after {
    width: 23%;
    right: 25px;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: #333;
}
.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: 45px 10px;
}
.l-footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto 20px;
  padding: 0;
  gap: 20px 0;
}
.l-footer-nav__item {
  list-style: none;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
}
.l-footer-nav__item + .l-footer-nav__item {
  position: relative;
}
.l-footer-nav__item + .l-footer-nav__item::after {
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  background: currentColor;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.l-footer-nav__item a {
  display: block;
  padding-inline: 25px;
  color: inherit;
  text-decoration: none;
}
.l-footer-nav__item a:hover {
  opacity: 1;
  text-decoration: underline;
}
.l-footer-copyright {
  margin: 0;
  color: #fff !important;
  font-weight: 400;
  font-size: 12px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .l-footer .hidden-pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-footer .hidden-sp {
    display: none;
  }
  .l-footer-inner {
    padding: 30px 20px 100px;
  }
  .l-footer-nav {
    display: block;
    margin: 0 auto 30px;
  }
  .l-footer-nav__item {
    border-bottom: 1px dashed;
    font-size: 12px;
    text-align: left;
  }
  .l-footer-nav__item + .l-footer-nav__item::after {
    content: none;
  }
  .l-footer-nav__item a {
    padding: 10px 0;
  }
  .l-footer-copyright {
    font-size: 10px;
    text-align: left;
  }
}

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

/* body has ".l-header__entry" case */
body:has(.l-header__entry) .pagetop {
  bottom: calc(var(--cv-height) + 40px);
}
@media screen and (max-width: 768px) {
  body:has(.l-header__entry) .pagetop {
    bottom: calc(var(--cv-height) + 25px);
  }
}

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

/* PC */
@media screen and (min-width: 769px) {
  .l-nav {
    display: block !important;
    height: auto !important;
  }
  .l-nav-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
  .l-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 30px;
  }
  .l-nav-list__item {
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
  .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-red);
  }
  .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: 25px;
  }
  .gnavBtn span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .gnavBtn span:nth-of-type(3) {
    bottom: 25px;
  }
  .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: 100px 20px calc(var(--cv-height) + 50px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9991;
    background: rgba(255, 255, 255, 0.95);
    overflow: auto;
  }
  .l-nav::-webkit-scrollbar {
    display: none;
  }
  .l-nav-list__item {
    border-bottom: 1px solid #999;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
  .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-red);
    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-nav-list__item.is-link a::after {
    border-top: 2px solid;
    border-bottom: none;
    right: 13px;
  }
}
/*============================================================================================================
	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: 10px;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.05em;
}
.c-tit01__en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  font-weight: 400;
  font-size: 92px;
  letter-spacing: 0;
  line-height: 1;
  font-family: "Saira Stencil One", sans-serif;
}
.c-tit01__en::first-letter {
  color: var(--color-red);
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    font-size: 16px;
  }
  .c-tit01__en {
    font-size: 56px;
  }
}

.c-tit02 {
  --clipWidth: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 360px;
  margin: 0 auto 40px;
  padding: 13px calc(var(--clipWidth) + 10px);
  background: var(--color-red);
  clip-path: polygon(var(--clipWidth) 0, 100% 0, calc(100% - var(--clipWidth)) 100%, 0 100%);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-tit02 {
    --clipWidth: 20px;
    min-width: 250px;
    padding-block: 10px;
    font-size: 18px;
  }
}

/*============================================================================================================
	page
============================================================================================================*/
/*	home
============================================================================================================*/
/*------------------------------------------
	.homeMv
------------------------------------------*/
.homeMv {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1440/940;
}
.homeMv-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.homeMv-canvas canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.homeMv-imgBox {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.homeMv-imgBox img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 768px) {
  .homeMv {
    aspect-ratio: 780/1134;
  }
}

body.has-webgl .homeMv-imgBox img {
  opacity: 0;
  pointer-events: none;
}

body.no-curtains .homeMv-canvas {
  display: none;
}

/*------------------------------------------
	.homeMessage
------------------------------------------*/
.homeMessage {
  overflow: clip;
  margin-bottom: 120px;
  background: url(../img/home/bg_message01_pc.webp) no-repeat center/cover;
  position: relative;
}
.homeMessage-inner {
  padding-block: 150px 140px;
  background: url(../img/home/img_message01.webp) no-repeat right calc(50% - 260px) bottom/278px;
  position: relative;
  z-index: 2;
}
.homeMessage-txtBox {
  width: max(48%, 385px);
}
.homeMessage__secTit {
  width: min(73.6%, 283px);
  margin-bottom: 70px;
}
.homeMessage__secTit img {
  width: 100%;
}
.homeMessage__txt {
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.homeMessage__name {
  margin-right: 18px;
  line-height: 1.5;
  text-align: right;
  letter-spacing: 0.05em;
}
.homeMessage__en {
  font-size: 180px;
  line-height: 0.7;
  position: absolute;
  bottom: -3px;
  left: calc(50% - 305px);
  opacity: 0.1;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .homeMessage-inner {
    max-width: 820px;
  }
}
@media screen and (max-width: 768px) {
  .homeMessage {
    margin-bottom: 0;
    background-image: url(../img/home/bg_message01_sp.webp);
  }
  .homeMessage-inner {
    padding-block: 90px 300px;
    background-position: center bottom -95px;
    background-size: 180px;
  }
  .homeMessage-txtBox {
    width: min(100%, 310px);
    margin-inline: auto;
  }
  .homeMessage__secTit {
    width: 79%;
    margin-bottom: 30px;
  }
  .homeMessage__txt {
    margin-bottom: 32px;
    font-size: min(6vw, 22px);
  }
  .homeMessage__name {
    margin-right: 0;
    font-size: 14px;
  }
  .homeMessage__en {
    font-size: 120px;
    right: -5px;
    left: auto;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
}

/*------------------------------------------
	.homeJob
------------------------------------------*/
.homeJob {
  padding-block: 0 140px;
}
.homeJob__secTit {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .homeJob {
    padding-block: 80px 40px;
  }
  .homeJob__secTit {
    margin-bottom: 40px;
  }
}

/*	.homeJob-sec
------------------------------------------*/
.homeJob-sec + .homeJob-sec {
  margin-top: 45px;
}
.homeJob-sec {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: min(46.3%, 500px) 1fr;
  grid-template-columns: min(46.3%, 500px) 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--color-gray);
}
.homeJob-sec-txtBox {
  padding: 30px 48px;
}
.homeJob-sec__tit {
  margin-bottom: 24px;
  color: var(--color-red);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.05em;
}
.homeJob-sec__img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  clip-path: polygon(0 0, 100% 0, calc(100% - 60px) 100%, 0 100%);
}
@media screen and (max-width: 768px) {
  .homeJob-sec + .homeJob-sec {
    margin-top: 30px;
  }
  .homeJob-sec {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .homeJob-sec-txtBox {
    padding: 15px 20px 20px;
  }
  .homeJob-sec__tit {
    margin-bottom: 15px;
    font-size: 20px;
  }
  .homeJob-sec__img {
    height: auto;
    -o-object-fit: fill;
       object-fit: fill;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 0 100%);
  }
}

/*	.homeJob-gallery
------------------------------------------*/
.homeJob-gallery {
  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: 45px;
  margin-top: 45px;
}
.homeJob-gallery__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.homeJob-gallery__item img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .homeJob-gallery {
    gap: 10px;
    margin-top: 30px;
  }
}

/*------------------------------------------
	.homeCompany
------------------------------------------*/
.homeCompany {
  margin-bottom: 120px;
  padding-block: 0 140px;
  position: relative;
}
.homeCompany::after {
  content: "";
  display: block;
  width: calc(100% - 180px);
  height: calc(100% + 120px);
  background: var(--color-gray);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
}
.homeCompany__secTit {
  margin-bottom: 80px;
}
.homeCompany-box {
  margin-inline: auto;
  width: min(100% - 40px, 1360px);
}
.homeCompany-box-txtBox {
  color: #fff;
  text-align: center;
}
.homeCompany-box__en {
  margin-bottom: 10px;
  font-size: 92px;
  line-height: 1;
}
.homeCompany-box__txt {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.homeCompany-box__btn {
  width: 260px;
  color: var(--color-red);
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
.homeCompany-box__btn a {
  min-height: 65px;
  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 35px;
  background: #fff;
  position: relative;
}
.homeCompany-box__btn a::after {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 14/10;
  -webkit-mask-image: url(../img/common/ico_arrow01.svg);
  mask-image: url(../img/common/ico_arrow01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: currentColor;
  position: absolute;
  top: 0;
  right: 18px;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .homeCompany-box {
    aspect-ratio: 1360/520;
    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: url(../img/home/bg_company01_pc.webp) no-repeat center/cover;
  }
  .homeCompany-box-in {
    width: min(100% - 40px, 1080px);
    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;
  }
  .homeCompany-box__btn a {
    border: 1px solid #fff;
  }
  .homeCompany-box__btn a:hover {
    opacity: 1;
    background: var(--color-red);
    color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .homeCompany {
    margin-bottom: 30px;
    padding-block: 80px 50px;
  }
  .homeCompany::after {
    width: calc(100% - 30px);
    height: 100%;
  }
  .homeCompany__secTit {
    margin-bottom: 40px;
  }
  .homeCompany-box {
    width: calc(100% - var(--inner-padding) * 2);
  }
  .homeCompany-box-txtBox {
    padding-top: 35px;
    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-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    aspect-ratio: 350/330;
    background: url(../img/home/bg_company01_sp.webp) no-repeat center/cover;
  }
  .homeCompany-box__en {
    font-size: 14.3vw;
    margin-bottom: 4px;
  }
  .homeCompany-box__txt {
    font-size: 4.5vw;
  }
  .homeCompany-box__btn {
    width: 100%;
    color: #fff;
    font-size: 18px;
  }
  .homeCompany-box__btn a {
    min-height: 70px;
    padding-inline: 40px;
    background: var(--color-red);
  }
  .homeCompany-box__btn a::after {
    right: 25px;
  }
}

/*------------------------------------------
	.homeRecruit
------------------------------------------*/
.homeRecruit {
  padding-block: 0 140px;
}
.homeRecruit__secTit {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .homeRecruit {
    padding-block: 80px;
  }
  .homeRecruit__secTit {
    margin-bottom: 50px;
  }
}

/*	.homeRecruit-person
------------------------------------------*/
.homeRecruit-person-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 45px 1fr 45px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 45px;
}
.homeRecruit-person-list__item {
  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;
  position: relative;
}
.homeRecruit-person-list__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: -28px;
  padding: 22px 20px;
  background: var(--color-gray);
  border: 1px solid #333;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  position: relative;
}
.homeRecruit-person-list__txt::before, .homeRecruit-person-list__txt::after {
  content: "";
  display: block;
  aspect-ratio: 31/19;
  clip-path: polygon(9px 0, 100% 0, 0 100%);
  position: absolute;
  right: 84px;
  pointer-events: none;
}
.homeRecruit-person-list__txt::before {
  width: 31.5px;
  background: #333;
  top: calc(100% - 1px);
  z-index: -1;
}
.homeRecruit-person-list__txt::after {
  width: 30px;
  background: inherit;
  top: calc(100% - 2px);
  background: inherit;
}
.homeRecruit-person-list-profBox {
  width: 100%;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  position: absolute;
  top: 53.5%;
  z-index: 3;
}
.homeRecruit-person-list__prof01 {
  margin-bottom: 5px;
  font-size: 24px;
}
.homeRecruit-person-list__prof02 {
  font-size: 22px;
}
.homeRecruit-person-list__prof02 .small {
  font-size: 0.73em;
}
.homeRecruit-person-list__img {
  width: 100%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .homeRecruit-person-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 30px;
    width: min(100%, 300px);
    margin-inline: auto;
  }
  .homeRecruit-person-list__item {
    display: block;
  }
  .homeRecruit-person-list__txt {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: -20px;
    padding: 20px;
    font-size: min(4.8vw, 18px);
    text-align: center;
  }
  .homeRecruit-person-list__txt::before, .homeRecruit-person-list__txt::after {
    right: 65px;
  }
  .homeRecruit-person-list-profBox {
    top: 55%;
    left: -7px;
  }
  .homeRecruit-person-list__prof01 {
    font-size: 20px;
  }
  .homeRecruit-person-list__prof02 {
    font-size: 18px;
  }
  .homeRecruit-person-list__img {
    width: 90%;
    display: block;
    margin-inline: auto;
  }
}

/*	.homeRecruit-environment
------------------------------------------*/
.homeRecruit-environment {
  margin-top: 80px;
}
.homeRecruit-environment-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}
.homeRecruit-environment-list__item {
  min-height: 245px;
  padding: 30px 40px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 120px 40px 1fr;
  grid-template-columns: 120px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 40px;
  background: var(--color-gray);
}
.homeRecruit-environment-list__ico {
  width: 100%;
}
.homeRecruit-environment-list__tit {
  margin-bottom: 14px;
  color: var(--color-red);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.05em;
}
.homeRecruit-environment-list__txt {
  line-height: 1.65;
}
@media screen and (max-width: 768px) {
  .homeRecruit-environment {
    margin-top: 60px;
  }
  .homeRecruit-environment-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .homeRecruit-environment-list__item {
    min-height: auto;
    padding: 20px;
    -ms-grid-columns: 100px 15px 1fr;
    grid-template-columns: 100px 1fr;
    grid-gap: 15px;
  }
  .homeRecruit-environment-list__ico {
    width: 70%;
    display: block;
    margin-inline: auto;
  }
  .homeRecruit-environment-list-txtBox {
    display: contents;
  }
  .homeRecruit-environment-list__tit {
    margin-bottom: 0;
    font-size: 18px;
  }
  .homeRecruit-environment-list__txt {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}

/*	.homeRecruit-faq
------------------------------------------*/
.homeRecruit-faq {
  margin-top: 80px;
}
.homeRecruit-faq-box {
  width: min(100%, 960px);
  margin-inline: auto;
}
.homeRecruit-faq-box__tit {
  cursor: pointer;
  min-height: 94px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 100px 20px 40px;
  background: #333;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  position: relative;
}
.homeRecruit-faq-box__tit .btn {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 40px;
  margin: auto;
}
.homeRecruit-faq-box__tit .btn::before, .homeRecruit-faq-box__tit .btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.homeRecruit-faq-box__tit .btn::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.homeRecruit-faq-box__tit.is-open .btn::after {
  opacity: 0;
  top: -20px;
}
.homeRecruit-faq-box-content {
  display: none;
  padding: 32px 40px;
  border-bottom: 1px solid #333;
  font-weight: 400;
  font-size: 15px;
  line-height: 2.2;
}
.homeRecruit-faq-box-content + .homeRecruit-faq-box__tit {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .homeRecruit-faq {
    scroll-margin-top: var(--header-height);
  }
  .homeRecruit-faq-box__tit {
    min-height: 60px;
    padding: 15px 40px 15px 20px;
    font-size: 16px;
  }
  .homeRecruit-faq-box__tit .btn {
    width: 20px;
    height: 20px;
    right: 15px;
  }
  .homeRecruit-faq-box-content {
    padding: 20px;
    font-size: 14px;
  }
}

/*------------------------------------------
	.homeEntry
------------------------------------------*/
.homeEntry {
  padding-block: 120px;
  background: url(../img/home/bg_entry01.webp) no-repeat center/cover;
}
.homeEntry-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.homeEntry__secTit {
  text-align: left;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .homeEntry {
    padding-block: 80px;
  }
  .homeEntry-inner {
    display: block;
  }
  .homeEntry__secTit {
    margin-bottom: 40px;
  }
}

/*------------------------------------------
	.homeGallery
------------------------------------------*/
.homeGallery {
  margin-block: 8px;
  height: 400px;
  background: url(../img/home/img_gallery01_pc.webp) repeat-x 0 0/auto 100%;
  -webkit-animation: loop_pc 40s linear infinite;
          animation: loop_pc 40s linear infinite;
}
@media screen and (max-width: 768px) {
  .homeGallery {
    margin-block: 4px;
    height: 200px;
    background-image: url(../img/home/img_gallery01_sp.webp);
    -webkit-animation: loop_sp 20s linear infinite;
            animation: loop_sp 20s linear infinite;
  }
}

@-webkit-keyframes loop_pc {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -2004px 0;
  }
}

@keyframes loop_pc {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -2004px 0;
  }
}
@-webkit-keyframes loop_sp {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -1002px 0;
  }
}
@keyframes loop_sp {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -1002px 0;
  }
}
/*	company
============================================================================================================*/
/*------------------------------------------
	.companyMv
------------------------------------------*/
.companyMv {
  width: 100%;
  max-height: 540px;
  aspect-ratio: 1440/540;
  margin-bottom: 100px;
  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: url(../img/company/img_mv01_pc.webp) no-repeat center/cover;
}
.companyMv-txtBox {
  color: #fff;
}
.companyMv__en {
  margin-bottom: 10px;
  font-size: 92px;
  line-height: 1;
}
.companyMv__tit {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .companyMv {
    max-height: none;
    aspect-ratio: 390/280;
    margin-bottom: 0;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    background-image: url(../img/company/img_mv01_sp.webp);
  }
  .companyMv-txtBox {
    margin-bottom: 10%;
    padding-inline: 10%;
  }
  .companyMv__en {
    margin-bottom: 2.2vw;
    font-size: 11.8vw;
  }
  .companyMv__tit {
    font-size: 3.9vw;
  }
}

/*------------------------------------------
	.companyPhilosophy
------------------------------------------*/
.companyPhilosophy {
  padding-block: 0 100px;
}
.companyPhilosophy__catch {
  margin-bottom: 100px;
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .companyPhilosophy {
    padding-block: 80px;
  }
  .companyPhilosophy__catch {
    margin-bottom: 40px;
    font-size: 22px;
  }
}

/*	.companyPhilosophy-sec
------------------------------------------*/
.companyPhilosophy-sec {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 43.8%;
  grid-template-columns: 1fr 43.8%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 30px;
}
.companyPhilosophy-sec-txtBox {
  width: min(100%, 487px);
}
.companyPhilosophy-sec__tit {
  margin-bottom: 40px;
  color: var(--color-red);
  font-size: 32px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.companyPhilosophy-sec__txt {
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.05em;
}
.companyPhilosophy-sec__txt + .companyPhilosophy-sec__txt {
  margin-top: 24px;
}
.companyPhilosophy-sec__txt.is-name {
  text-align: right;
}
.companyPhilosophy-sec__img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .companyPhilosophy-sec {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .companyPhilosophy-sec-txtBox {
    width: 100%;
  }
  .companyPhilosophy-sec__tit {
    margin-bottom: 15px;
    font-size: 20px;
  }
  .companyPhilosophy-sec__txt {
    line-height: 2;
  }
  .companyPhilosophy-sec__txt + .companyPhilosophy-sec__txt {
    margin-top: 20px;
  }
  .companyPhilosophy-sec__img {
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/*------------------------------------------
	.companyOverview
------------------------------------------*/
.companyOverview {
  padding-block: 120px;
  background: url(../img/company/bg_company01.webp) no-repeat center/cover;
}
.companyOverview__secTit {
  margin-bottom: 65px;
}
.companyOverview-data {
  width: min(100%, 640px);
  margin-inline: auto;
}
.companyOverview-data th,
.companyOverview-data td {
  padding-block: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.companyOverview-data th {
  width: 120px;
  border-bottom: 1px solid var(--color-red);
}
.companyOverview-data td {
  padding-left: 15px;
  border-bottom: 1px solid #d9d9d9;
}
.companyOverview__txt {
  margin-top: 40px;
  text-align: center;
  font-size: 18px;
}
.companyOverview__img {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .companyOverview {
    padding-block: 80px;
  }
  .companyOverview__secTit {
    margin-bottom: 40px;
  }
  .companyOverview-data {
    width: 100%;
  }
  .companyOverview-data th,
  .companyOverview-data td {
    padding-block: 15px;
  }
  .companyOverview-data th {
    width: 90px;
  }
  .companyOverview__txt {
    margin-top: 24px;
    font-size: 16px;
  }
  .companyOverview__img {
    margin-top: 24px;
  }
}

/*------------------------------------------
	.companyRecruit
------------------------------------------*/
.companyRecruit {
  overflow: clip;
  height: 420px;
  background: url(../img/company/bg_recruit01_pc.webp) no-repeat center/cover;
  color: #fff;
}
.companyRecruit a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.companyRecruit a::after {
  content: "";
  display: block;
  width: 286px;
  aspect-ratio: 572/780;
  background: url(../img/company/img_recruit01.webp) no-repeat center/contain;
  position: absolute;
  right: calc(50% - 540px);
  bottom: 0;
  pointer-events: none;
}
.companyRecruit-inner {
  position: relative;
  z-index: 2;
}
.companyRecruit-txtBox {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 220px;
  position: relative;
}
.companyRecruit__en {
  margin-bottom: 10px;
  font-size: 92px;
  line-height: 1;
}
.companyRecruit__tit {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.companyRecruit__arrow {
  width: 160px;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.companyRecruit__arrow::after {
  content: "";
  display: block;
  width: 52%;
  aspect-ratio: 83/40;
  -webkit-mask-image: url(../img/common/ico_arrow02.svg);
  mask-image: url(../img/common/ico_arrow02.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: #fff;
}
@media screen and (min-width: 769px) {
  .companyRecruit a:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
    color: var(--color-red);
  }
  .companyRecruit a:hover .companyRecruit__arrow {
    background: var(--color-red);
    border-color: var(--color-red);
  }
}
@media screen and (max-width: 768px) {
  .companyRecruit {
    height: 240px;
    background-image: url(../img/company/bg_recruit01_sp.webp);
  }
  .companyRecruit a::after {
    width: 193px;
    right: 20px;
    bottom: -52px;
  }
  .companyRecruit-inner {
    padding-inline: 30px;
  }
  .companyRecruit-txtBox {
    width: 100%;
    padding-right: 70px;
  }
  .companyRecruit__en {
    font-size: 48px;
  }
  .companyRecruit__tit {
    font-size: 16px;
  }
  .companyRecruit__arrow {
    width: 60px;
  }
  .companyRecruit__arrow::after {
    aspect-ratio: 32/16;
    -webkit-mask-image: url(../img/common/ico_arrow03.svg);
    mask-image: url(../img/common/ico_arrow03.svg);
  }
}
@media screen and (max-width: 374px) {
  .companyRecruit-inner {
    padding-inline: 20px;
  }
}
/*# sourceMappingURL=style.css.map */