@charset "UTF-8";
:root {
  --color-def: #222222;
  --color-title: #008ce5;
  --color-nav: #1d2087;
  --color-sub: #eaf2f8;
  --color-arrow: #008ce5;
  --accent: #1d2087;
  --primary: #008ce5;
  --secondary: #1d2087;
  --color-link: #008ce5;
  --red: #c2153e;
  --bg-dark: #23211e;
  --bg-gray: #f6f6f6;
  --bg-gnav: #474365;
  --bg-primary:#eaf2f8;
  --ls-wide: 0.05em;
  --title-sub-size: 2.4rem;
  --header-h: calc(90em / 20);
  --section-space: clamp(calc(100em / 64 / 1.2),calc(100% / 11.2),80px);
  --section-top: var(--section-space);
  --section-bottom: var(--section-space);
  --container: 1230px;
  --container-pad: clamp(1em, calc(80% / 15), 15px);
  --gra-base: #00A1F3;
  --gra: linear-gradient(90deg, rgba(0, 161, 243, 1) 0%, rgba(0, 120, 216, 1) 100%);
  --btn-bg:var(--gra);
  --btn-color: #fff;
  --btn-border: var(--gra-base);
  --btn-bg-h: #fff;
  --btn-color-h: var(--primary);
  --btn-border-h: var(--gra-base);
  --btn-w: calc(300em / 16);
  --btn-h: calc(60em / 16);
  --btn-round: calc(var(--btn-h) / 2);
  --btn-size: clamp(14px, calc(14vmin / 4), 16px);
  --btn-shadow: 0 0 4px 4px #0000004D;
  --gnavbtn-size: calc(72em / 16);
  --size-def: clamp(14px, calc(12vmin / 4), 16px);
  --size-12: clamp(10px, calc(10vmin / 4), 12px);
  --size-14: clamp(12px, calc(10vmin / 4), 14px);
  --size-16: clamp(14px, calc(10vmin / 4), 16px);
  --size-18: clamp(14px, calc(12vmin / 4), 18px);
  --size-20: clamp(14px, calc(14vmin / 4), 20px);
  --size-21: clamp(16px, calc(16vmin / 4), 21px);
  --size-22: clamp(16px, calc(16vmin / 4), 22px);
  --size-24: clamp(18px, calc(16vmin / 4), 24px);
  --size-25: clamp(18px, calc(16vmin / 4), 25px);
  --size-26: clamp(18px, calc(18vmin / 4), 26px);
  --size-28: clamp(18px, calc(18vmin / 4), 28px);
  --size-30: clamp(18px, calc(18vmin / 4), 30px);
  --size-32: clamp(18px, calc(18vmin / 4), 32px);
  --size-34: clamp(18px, calc(18vmin / 4), 34px);
  --size-35: clamp(18px, calc(18vmin / 4), 35px);
  --size-36: clamp(20px, calc(20vmin / 4), 36px);
  --size-38: clamp(22px, calc(20vmin / 4), 38px);
  --size-40: clamp(26px, calc(24vmin / 4), 40px);
  --size-42: clamp(26px, calc(24vmin / 4), 42px);
  --size-44: clamp(26px, calc(24vmin / 4), 44px);
  --size-48: clamp(28px, calc(26vmin / 4), 48px);
  --size-50: clamp(28px, calc(26vmin / 4), 50px);
  --size-56: clamp(28px, calc(28vmin / 4), 56px);
  --size-58: clamp(28px, calc(28vmin / 4), 58px);
  --size-60: clamp(28px, calc(28vmin / 4), 60px);
  --size-70: clamp(30px, calc(30vmin / 4), 70px);
  --size-72: clamp(30px, calc(30vmin / 4), 72px);
  --size-80: clamp(40px, calc(40vmin / 4), 80px);
  --size-84: clamp(40px, calc(40vmin / 4), 84px);
  --size-94: clamp(40px, calc(40vmin / 4), 94px);
  --size-120: clamp(40px, calc(50vmin / 4), 120px);
  --size-150: clamp(45px, calc(150vw / 16.8), 150px);
  --easing: cubic-bezier(0.37, 0, 0.63, 1);
  --easing-def: cubic-bezier(0.42, 0, 0.58, 1);
  --ff-gothic: "Noto Sans JP","游ゴシック Medium", yu-gothic-pr6n, "Yu Gothic", "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN",sans-serif;
  --ff-mincho: "游明朝", yu-mincho-pr6n, "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  --ff-en: "Poppins", sans-serif;
  --delay-anime: 0.3s;
  --arrow-w:calc(20em / 16);
  --arrow-h:calc(10em / 16);
}

.ff-en {
  font-family: var(--ff-en);
}

.ff-mincho {
  font-family: var(--ff-mincho);
}

.ff-gothic {
  font-family: var(--ff-gothic);
}

.medium {
  font-weight: 500;
}

.semi {
  font-weight: 600;
}

.size-12 {
  font-size: var(--size-12);
}
.size-14 {
  font-size: var(--size-14);
}
.size-16 {
  font-size: var(--size-16);
}
.size-18 {
  font-size: var(--size-18);
}
.size-20 {
  font-size: var(--size-20);
}
.size-21 {
  font-size: var(--size-21);
}
.size-22 {
  font-size: var(--size-22);
}
.size-24 {
  font-size: var(--size-24);
}
.size-25 {
  font-size: var(--size-25);
}
.size-26 {
  font-size: var(--size-26);
}
.size-28 {
  font-size: var(--size-28);
}
.size-30 {
  font-size: var(--size-30);
}
.size-32 {
  font-size: var(--size-32);
}
.size-34 {
  font-size: var(--size-34);
}
.size-35 {
  font-size: var(--size-35);
}
.size-36 {
  font-size: var(--size-36);
}
.size-38 {
  font-size: var(--size-38);
}
.size-40 {
  font-size: var(--size-40);
}
.size-42 {
  font-size: var(--size-42);
}
.size-44 {
  font-size: var(--size-44);
}
.size-48 {
  font-size: var(--size-48);
}
.size-50 {
  font-size: var(--size-50);
}
.size-56 {
  font-size: var(--size-56);
}
.size-58 {
  font-size: var(--size-58);
}
.size-60 {
  font-size: var(--size-60);
}
.size-70 {
  font-size: var(--size-70);
}
.size-72 {
  font-size: var(--size-72);
}
.size-80 {
  font-size: var(--size-80);
}
.size-84 {
  font-size: var(--size-84);
}
.size-94 {
  font-size: var(--size-94);
}
.size-120 {
  font-size: var(--size-120);
}
.size-150 {
  font-size: var(--size-150);
}

/* ===========================================================================

/assets/sass/common/_reset.scss
Reset

=========================================================================== */
body {
  /* webkit系のスマホで文字が拡大されるのを防ぐ */
  -webkit-text-size-adjust: 100%;
}

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, hr {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: inherit;
  font-size: 100%;
  vertical-align: baseline;
  text-decoration: none;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

html {
  overflow-y: scroll;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  /* 必要に応じて下記はコメントアウト */
  /*
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
  */
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a:focus {
  outline: none;
}

img {
  vertical-align: bottom;
}

a, span, small, strong {
  color: inherit;
  font-weight: inherit;
}

html {
  font-size: 0.625em;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  height: auto;
}

*, *::before, *::after {
  box-sizing: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}

a:hover, a:active {
  color: inherit;
  text-decoration: none;
}

.mt05 {
  margin-top: 0.5em;
}

.mt1 {
  margin-top: 1em;
}

.mt15 {
  margin-top: 1.5em;
}

.mt2 {
  margin-top: 2em;
}

.mt25 {
  margin-top: 2.5em;
}

.mt3 {
  margin-top: 3em;
}

.mb05 {
  margin-bottom: 0.5em;
}

.mb1 {
  margin-bottom: 1em;
}

.mb15 {
  margin-bottom: 1.5em;
}

.mb2 {
  margin-bottom: 2em;
}

.mb25 {
  margin-bottom: 2.5em;
}

.mb3 {
  margin-bottom: 3em;
}

.mr1 {
  margin-right: 1em;
}

.mr15 {
  margin-right: 1.5em;
}

.mr2 {
  margin-right: 2em;
}

.pl1 {
  padding-left: 1em;
}

.pl2 {
  padding-left: 2em;
}

.pl3 {
  padding-left: 3em;
}

.pl4 {
  padding-left: 4em;
}

.pb2 {
  padding-bottom: 2em;
}

.indent1 {
  text-indent: -1em;
  padding-left: 1em;
}

.ta_l {
  text-align: left;
}
.ta_r {
  text-align: right;
}
.ta_c {
  text-align: center;
}

@media print, screen and (max-width: 820px) {
  .hide-sp {
    display: none;
  }
}
@media print, screen and (min-width: 821px) and (max-width: 1020px) {
  .hide-tablet {
    display: none;
  }
}
@media print, screen and (min-width: 1021px) {
  .hide-pc {
    display: none;
  }
}

/* -----------------------------
 clearfix
----------------------------- */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
  min-height: 1%;
}

/* for IE-mac */
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

body {
  font-family: var(--ff-gothic);
  color: var(--color-def);
  line-height: 2.5;
  font-feature-settings: "pkna";
  -webkit-font-smoothing: antialiased;
  font-size: var(--size-def);
}
@media print, screen and (min-width: 1021px) {
  body {
    --header-h:100px;
  }
}
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.en {
  font-family: var(--ff-en);
}

.mincho {
  font-family: var(--ff-mincho);
}

.gothic {
  font-family: var(--ff-gothic);
}

b, strong, .bold {
  font-weight: 700;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}
@media print, screen and (min-width: 821px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: var(--container);
  }
}

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

.t-vtl {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-feature-settings: "pkna";
  white-space: nowrap;
}

video, img {
  max-width: 100%;
  height: auto;
}

a:hover {
  opacity: 0.75;
}

a img {
  transition: opacity 0.3s ease;
}
a img:hover {
  opacity: 0.75;
}
a img.js-img-on:hover {
  opacity: 1;
}

.h-alpha {
  display: inline-block;
  transition: opacity 0.3s ease;
}
.h-alpha:hover {
  opacity: 0.75;
}

.bg-gray {
  background-color: var(--bg-gray);
}

@media print, screen and (min-width: 1021px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.ilblk {
  display: inline-block;
}

.d-flex {
  display: flex;
}

.jc-c {
  justify-content: center;
}

.jc-sb {
  justify-content: space-between;
}

.f-wrap {
  flex-wrap: wrap;
}

.ai-c {
  align-items: center;
}

@media print, screen and (min-width: 821px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .col {
    width: 45%;
  }
  .col-3 {
    width: 31.3235294118%;
  }
}
.js-animate.fade-in {
  opacity: 0;
}
.js-animate.fade-in.inView {
  animation: 0.5s var(--anim-delay, 0.1s) cubic-bezier(0.215, 0.61, 0.355, 1) both;
  animation-name: fade_in, slide_in_y;
}
.js-animate.fade-in_left {
  opacity: 0;
}
.js-animate.fade-in_left.inView {
  animation: fade_in 0.8s var(--anim-delay, 0.1s) cubic-bezier(0.215, 0.61, 0.355, 1) forwards, slice_x_left 0.8s var(--anim-delay, 0.1s) cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.js-animate.reveal-diagonal {
  clip-path: polygon(0 0, 0 0, 100% 100%, 100% 100%);
}
.js-animate.reveal-diagonal.inView {
  animation: reveal_diagonal 0.8s var(--anim-delay, 0.1s) cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.js-animate.zoom-in {
  opacity: 0;
}
.js-animate.zoom-in.inView {
  animation: fade_in 0.8s var(--anim-delay, 0.1s) cubic-bezier(0.215, 0.61, 0.355, 1) forwards, zoom 0.8s var(--anim-delay, 0.1s) cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.js-animate.scale-in {
  opacity: 0;
}
.js-animate.scale-in.inView {
  animation: fade_in 0.8s var(--anim-delay, 0.1s) cubic-bezier(0.215, 0.61, 0.355, 1) forwards, zoom_in 0.8s var(--anim-delay, 0.1s) cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.js-animate.mask-in {
  position: relative;
  overflow: hidden;
}
.js-animate.mask-in .mask-blk {
  opacity: 0;
}
.js-animate.mask-in.inView {
  animation: maskIn 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  opacity: 1;
}
.js-animate.mask-in.inView::before {
  animation: maskOut 0.5s 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: var(--accent);
}
.js-animate.mask-in.inView .mask-blk {
  animation: fade_in 0.5s 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

@keyframes fade_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade_out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoom {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes zoom_in {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes blur_in {
  0% {
    filter: blur(20px);
  }
  100% {
    filter: blur(0);
  }
}
@keyframes slide_in_y {
  0% {
    transform: translateY(1.4vw);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slide_in_x_left {
  0% {
    transform: translateX(-25vw);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slice_x {
  0% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slice_x_left {
  0% {
    transform: translateX(-10%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide_in_x {
  0% {
    transform: translateX(25vw);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide_in_x_left2 {
  0% {
    transform: translateX(-50vw);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes skillin {
  0% {
    transform: translateX(-25%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes bg_slide_x {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}
@keyframes reveal_x {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
@keyframes reveal_diagonal {
  0% {
    clip-path: polygon(0 0, 0 0, 100% 100%, 100% 100%);
  }
  99% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  100% {
    clip-path: none;
  }
}
@keyframes graAnime {
  0% {
    background-position: 0% 14%;
  }
  50% {
    background-position: 100% 87%;
  }
  100% {
    background-position: 0% 14%;
  }
}
.title-sec {
  line-height: 1.6111111111;
  margin-bottom: 1em;
  text-align: var(--align, left);
  letter-spacing: 0;
  opacity: 0;
  color: var(--title-sec-color, var(--color-def));
}
.title-sec-jp {
  display: block;
  font-size: clamp(20px, 6vw, 36px);
}
.title-sec-en {
  font-size: var(--size-16);
}
.title-in.inView .title-sec {
  animation: 0.4s 0.1s cubic-bezier(0.4, 0, 0, 1) forwards;
  animation-name: fade_in, slide_in_y;
}
.title-num {
  color: var(--color-title);
  font-weight: 400;
  line-height: 1.1785714286;
  margin-bottom: 1.25em;
  text-align: var(--align, center);
  letter-spacing: 0;
  font-size: clamp(20px, 5vw, 32px);
}
.title-num .-num {
  display: block;
  font-size: clamp(40px, 12.5333333333vw, 94px);
  font-family: var(--ff-mincho);
}
.title-num .-jp {
  display: block;
  margin-top: 0.5em;
}
@media print, screen and (max-width: 820px) {
  .title-sec::before {
    width: 2.6315789474em;
    height: 3.0263157895em;
  }
  .title-num {
    margin-top: 1.25em;
  }
}

.section {
  padding-top: var(--section-top);
  padding-bottom: var(--section-bottom);
}
.section-title {
  margin-bottom: var(--title-margin, 1em);
}
.section-title-icon {
  display: block;
  line-height: 1;
  margin-bottom: 0.25em;
}
.section-title .-en {
  display: block;
  font-size: var(--title-size, var(--size-60));
  line-height: 1;
  margin-bottom: 0.2em;
}

.btn {
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, color 0.3s ease, color 0.3s ease, color 0.3s ease;
  line-height: 1;
  cursor: pointer;
  border: 1px var(--btn-border) solid;
  color: var(--btn-color);
  font-size: var(--btn-size);
  font-weight: var(--btn-weight, bold);
  background: var(--btn-bg);
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: var(--btn-align, center);
  flex-basis: var(--btn-w);
  height: var(--btn-h);
  border-radius: var(--btn-round);
  font-weight: inherit;
  padding: 0.5em 1em;
  letter-spacing: 0.04em;
  gap: 1em;
}
.btn:hover {
  opacity: 1;
  border-color: var(--btn-border-h, var(--btn-bg-h));
  color: var(--btn-color-h);
  background: var(--btn-bg-h);
  --arrow-color:var(--btn-color-h);
}
.arrow {
  display: inline-block;
  width: var(--arrow-w);
  height: var(--arrow-h);
}

.svg-arrow .st0 {
  fill: var(--arrow-color, var(--btn-color));
}

.marker {
  background: linear-gradient(transparent 60%, var(--marker, #fbe2ec) 60%);
}

.td_u {
  text-decoration: underline;
}

.link-arrow {
  display: flex;
  gap: 0.75em;
  align-items: center;
}

.fig {
  position: relative;
  text-align: center;
}
.fig-caption {
  position: absolute;
  bottom: 0.5em;
  width: 100%;
}

.fc-def {
  color: var(--color-def);
}
.fc-primary {
  color: var(--primary);
}
.fc-secondary {
  color: var(--secondary);
}
.fc-accent {
  color: var(--accent);
}
.fc-red {
  color: var(--red);
}
.fc-white {
  color: #fff;
}

.bg-2tone {
  background: #EAF2F8;
  background: linear-gradient(180deg, rgba(234, 242, 248, 0) 0%, rgba(234, 242, 248, 0) 50%, rgb(234, 242, 248) 50%, rgb(234, 242, 248) 100%);
}

.list-circle li {
  padding-left: 1.2em;
  text-indent: -1.2em;
}
.list-circle li::before {
  content: "●";
  color: var(--list-marker, var(--primary));
  margin-right: 0.2em;
}
.list-dia li {
  padding-left: 1.2em;
  text-indent: -1.2em;
}
.list-dia li::before {
  content: "◆";
  color: var(--list-marker, var(--primary));
  margin-right: 0.2em;
}
.list-indent li {
  text-indent: -1em;
  padding-left: 1em;
}
.list-decimal {
  padding-left: 1.5em;
}
.list-decimal > li {
  list-style: decimal;
  list-style-position: outside;
}
.list-decimal > li::marker {
  color: var(--list-marker, var(--primary));
  font-weight: bold;
}
.list-check li {
  display: flex;
  gap: 0.5em;
  margin-bottom: 1em;
}
.list-check li::before {
  content: "";
  background: url(../images/common/check@2x.webp) no-repeat;
  background-size: contain;
  flex-basis: 1.4545454545em;
  height: 1.4545454545em;
  flex-shrink: 0;
}

.gap-30 {
  gap: 3rem;
}

.map-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1100/620;
}
.map-wrap iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.accordion-inner {
  overflow: hidden;
  pointer-events: none;
  height: 0;
}
.accordionBtn {
  cursor: pointer;
  position: relative;
}
.accordion-icon {
  background-color: var(--color-def);
  width: 1.0526315789em;
  height: 1px;
  position: absolute;
  right: 0.6em;
  top: 50%;
}
.accordion-icon::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: var(--color-def);
  transform: rotate(90deg);
  transition: transform 0.3s ease-in-out;
  transform-origin: center;
}
.accordion-wrap .active .accordion-inner {
  pointer-events: initial;
}
.accordion-wrap .active .accordion-icon::before {
  transform: rotate(0);
}
@media print, screen and (min-width: 821px) {
  .accordion-icon {
    width: 0.7777777778em;
  }
}

.u_line {
  border-bottom: 1px var(--line-color, var(--color-def)) solid;
}

.header {
  width: 100%;
  --container: 1390px;
  z-index: 100;
  background-color: var(--header-bg, rgba(255, 255, 255, 0));
  transition: background-color 0.5s;
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
}
.header-logo {
  pointer-events: initial;
  position: relative;
  z-index: 101;
  flex-basis: clamp(120px, 18%, 180px);
  transition: opacity 0.3s var(--easing-def);
}
.header-logo a:hover img {
  opacity: 1;
}
.header-row {
  display: flex;
  justify-content: space-between;
  position: relative;
  height: var(--header-h);
  align-items: center;
}
.header-nav {
  display: flex;
  flex-grow: 1;
  gap: 1em 1.875em;
  position: relative;
  pointer-events: initial;
}
.header-menu {
  display: flex;
  flex-grow: 1;
  gap: 1em 10px;
  align-items: center;
  justify-content: flex-end;
  --btn-w:calc(160em / 16);
  --btn-h:calc(50em / 16);
  --btn-bg:transparent;
  --btn-border:transparent;
  --btn-color:#1d2087;
  --btn-bg-h:var(--gra);
  --btn-color-h:#fff;
}
.header-menu .-item {
  font-weight: bold;
}
.header-menu .-item.--current {
  --btn-bg:var(--gra);
  --btn-border:var(--gra-base);
  --btn-color:#fff;
}
.header-menu .-item-link {
  color: var(--color-nav);
  font-weight: bold;
}
@media print, screen and (max-width: 820px) {
  .header {
    --gnavbtn-size: 48px;
  }
  .header-logo {
    display: flex;
    gap: 1em;
    align-items: center;
    flex-grow: 1;
    flex-basis: calc(100% - 80px);
  }
  .header-logo .-link {
    display: block;
    flex-basis: 120px;
  }
  .header-logo .--title {
    color: var(--secondary);
  }
  .header-menu {
    display: none;
  }
  .header-nav {
    justify-content: flex-end;
  }
}
@media print, screen and (min-width: 821px) {
  .header-logo .--title {
    display: none;
  }
}
.catchloaded .header {
  animation: fade_in 1s 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.scrolled .header {
  --header-bg: #ffffffE6;
}
.gnav {
  position: fixed;
  z-index: 99;
  left: 0;
  top: var(--header-h);
  width: 100%;
  height: calc(100% - var(--header-h));
  background-color: #eaf2f8;
  --container: 1030px;
  padding-top: clamp(50px, 1%, 190px);
  clip-path: circle(0 at 0 0);
  pointer-events: none;
  transition: clip-path 0.5s var(--easing-def);
}
.navopen .gnav {
  clip-path: circle(141.4% at 100% 100%);
  pointer-events: initial;
}
.gnav-inner {
  overflow-y: auto;
  height: 100%;
  width: 100%;
}
.gnav-btn {
  height: var(--gnavbtn-size);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  background-color: var(--secondary);
  justify-content: center;
  border-radius: 50%;
  --gnav-btn-center:#fff;
  --gnav-btn-line:rotate(0deg);
  --gnav-btn-line2:rotate(0deg);
  --gnav-btn-top:-5px;
  --gnav-btn-bottom:-5px;
}
.gnav-btn .-line {
  width: 20px;
  height: 2px;
  background-color: transparent;
  display: block;
  position: relative;
}
.gnav-btn .-line::before, .gnav-btn .-line::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  left: 0;
  transition: transform 0.3s var(--easing-def);
}
.gnav-btn .-line::before {
  top: var(--gnav-btn-top);
  transform: var(--gnav-btn-line);
}
.gnav-btn .-line::after {
  bottom: var(--gnav-btn-bottom);
  transform: var(--gnav-btn-line2);
}
.navopen .gnav-btn {
  --gnav-btn-line:rotate(45deg);
  --gnav-btn-line2:rotate(315deg);
  --gnav-btn-top:0;
  --gnav-btn-bottom:0;
  --gnav-btn-center:#fff;
}
.gnav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em 2em;
}
.gnav-col {
  flex-grow: 1;
}
.gnav-item {
  --gnav-sub-ic:rotate(90deg);
  margin-bottom: 0.5em;
}
.gnav-item .en {
  display: block;
  line-height: 1;
  margin-bottom: 0.25em;
}
.gnav-children {
  margin-top: 1.5em;
}
@media print, screen and (min-width: 1021px) {
  .gnav {
    padding-top: clamp(100px, 19%, 190px);
  }
  .gnav-item {
    margin-bottom: 0.5em;
  }
  .gnav-sub-item {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
  }
}
.catchloaded .gnav {
  animation: fade_in 1s 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.navopen {
  --header-bg:#eaf2f8;
}

.footer {
  padding: 2em 0 calc(2em + env(safe-area-inset-bottom));
  background-color: #EAF2F8;
  --container: 1330px;
}
.footer-contact {
  --container:1030px;
  --section-bottom:0;
}
.footer-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1em 4%;
}
.footer-contact-head {
  flex-basis: clamp(300px, 48%, 480px);
}
.footer-contact-detail {
  flex-basis: clamp(400px, 48%, 480px);
  flex-grow: 1;
  color: var(--secondary);
}
.footer-contact-detail .tel-link {
  font-size: clamp(20px, 5vmin, 50px);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.2em;
  color: var(--secondary);
}
.footer-contact-detail .tel-link .-icon {
  display: inline-block;
  flex-shrink: 0;
  flex-basis: 0.6em;
}
.footer-contact-detail .tel-link .-number {
  display: flex;
  align-items: center;
}
.footer-contact .bg-2tone {
  padding: 1em 0;
}
@media print, screen and (max-width: 820px) {
  .footer-contact-detail {
    text-align: center;
  }
  .footer-contact-detail .tel-link {
    justify-content: center;
  }
}
@media print, screen and (min-width: 821px) {
  .footer-contact-row {
    padding-top: 60px;
  }
  .footer-contact-head .section-title-wrap {
    position: relative;
  }
  .footer-contact-head .section-title-icon {
    position: absolute;
    bottom: 100%;
  }
}
.footer-row {
  margin-bottom: 1.5em;
  display: flex;
  gap: 2em 2em;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-head {
  flex-basis: clamp(140px, 30%, 218px);
}
.footer-info a {
  border-bottom: 1px var(--color-def) solid;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1em;
  align-items: flex-end;
}
@media print, screen and (max-width: 820px) {
  .footer-info {
    margin-bottom: 2em;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
  .footer .copy a {
    flex-basis: clamp(80px, 25%, 130px);
  }
}
@media print, screen and (min-width: 821px) {
  .footer {
    padding-top: 5rem;
  }
}
.fnav-menu {
  display: flex;
  gap: 1em 2em;
  flex-wrap: wrap;
  color: var(--color-nav);
  font-weight: 500;
}
.fnav-link::before {
  content: "ー";
  margin-right: 0.25em;
}
@media print, screen and (min-width: 821px) {
  .fnav-list {
    grid-auto-flow: column;
    grid-template-rows: repeat(5, 1fr);
    grid-template-columns: auto auto;
  }
}
@media print, screen and (max-width: 820px) {
  .fnav {
    margin-bottom: 2.5em;
  }
}

.page-mv {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  overflow: hidden;
  --page-catch-h: auto;
}
.page-mv-inner {
  display: flex;
  align-items: center;
  z-index: 5;
  grid-column: 1/2;
  grid-row: 1/2;
}
.page-mv-bg {
  overflow: hidden;
  grid-column: 1/2;
  grid-row: 1/2;
}
.page-mv-bg img {
  pointer-events: none;
  max-width: none;
  width: 100%;
  min-height: 15em;
  object-fit: cover;
}
.page-mv-title {
  font-size: var(--size-56);
  line-height: 1.2;
}
@media print, screen and (max-width: 820px) {
  .page-mv-title {
    margin-top: 2em;
  }
}
.page-home .catch {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  overflow: hidden;
}
.page-home .catch-inner {
  grid-column: 1/2;
  grid-row: 1/2;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.page-home .catch-bg {
  grid-column: 1/2;
  grid-row: 1/2;
  overflow: hidden;
  z-index: 0;
}
.page-home .catch-img {
  z-index: 1;
  grid-column: 1/2;
  grid-row: 1/2;
  overflow: hidden;
}
.page-home .catch-img img {
  opacity: 0;
  pointer-events: none;
  max-width: none;
  width: 100%;
  height: auto;
  transform: scale(1.2);
  object-fit: cover;
}
.page-home .catch-text {
  text-align: center;
}
.page-home .catch-title {
  font-weight: bold;
  font-size: clamp(30px, 10.6666666667vmin, 90px);
  line-height: 1.2222222222;
  margin: 0.6em 0;
  color: var(--secondary);
  opacity: 0;
}
@media print, screen and (max-width: 820px) {
  .page-home .catch-img {
    padding-top: var(--header-h);
  }
  .page-home .catch-bg img {
    object-fit: cover;
    height: 100%;
  }
}
@media print, screen and (max-width: 1020px) {
  .page-home .catch-img img, .page-home .catch-bg img {
    min-height: 300px;
    object-fit: cover;
  }
}
@media print, screen and (min-width: 1021px) {
  .page-home .catch {
    height: clamp(700px, 64.2142857143vw, 899px);
  }
  .page-home .catch-bg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .page-home .catch-title {
    font-size: clamp(30px, 6.40625vw, 82px);
  }
}
.page-home .catchloaded .catch-img img {
  animation: fade_in var(--catch-duration, 0.1s) 0.01s cubic-bezier(0.4, 0, 0, 1) forwards, zoom_in var(--catch-duration, 0.1s) 0.01s cubic-bezier(0.4, 0, 0, 1) forwards;
}
.page-home .catchloaded .catch-title {
  --catch-duration: 2.5s;
  animation: fade_in var(--catch-duration, 0.3s) 0.31s cubic-bezier(0.4, 0, 0, 1) forwards, zoom_in var(--catch-duration, 0.1s) 0.31s cubic-bezier(0.4, 0, 0, 1) forwards, blur_in var(--catch-duration, 0.1s) 0.31s cubic-bezier(0.4, 0, 0, 1) forwards;
}
@media print, screen and (min-width: 1021px) {
  .page-home .catchloaded .catch-img {
    --catch-duration: 1.5s;
  }
}
.page-home .concept {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  background-color: #eaf2f8;
  --container: 1030px;
  overflow: hidden;
}
.page-home .concept-bg {
  grid-column: 1/2;
  grid-row: 1/2;
}
.page-home .concept-bg img {
  width: 100%;
  max-height: 1100px;
  object-fit: cover;
  object-position: center top;
}
.page-home .concept-front {
  grid-column: 1/2;
  grid-row: 1/2;
  padding-top: clamp(2em, 5%, 50px);
  padding-bottom: clamp(3em, 10%, 120px);
}
.page-home .concept-head .-title {
  display: flex;
  align-items: flex-end;
  margin-bottom: 0.5em;
}
.page-home .concept-detail {
  margin-top: 1em;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5em 4%;
}
.page-home .concept-detail .-col-text {
  flex-basis: clamp(300px, 44%, 440px);
}
.page-home .concept-detail .-col-img {
  flex-basis: clamp(300px, 50%, 500px);
}
.page-home .concept-detail .-text {
  line-height: 2.2222222222;
  margin: 1em 0 2.5em;
}
@media print, screen and (max-width: 820px) {
  .page-home .concept-detail .-col-text {
    flex-grow: 1;
  }
  .page-home .concept-detail .-col-img {
    flex-grow: 1;
  }
  .page-home .concept-detail .-bottom {
    justify-content: center;
  }
}
@media print, screen and (min-width: 821px) {
  .page-home .concept-head .-title {
    position: relative;
  }
  .page-home .concept-head .-title-icon {
    position: absolute;
    left: 0;
    transform: translateX(-100%);
  }
  .page-home .concept-detail .-col-img img {
    transform-origin: left top;
    transform: scale(1.25);
  }
}
.page-home .movie-section {
  --container:970px;
  background: #EAF2F8;
  background: linear-gradient(180deg, rgba(234, 242, 248, 0) 0%, rgba(234, 242, 248, 0) 50%, rgb(234, 242, 248) 50%, rgb(234, 242, 248) 100%);
  --section-top:clamp(3em, 10%, 100px);
}
.page-home .company-section {
  background: #EAF2F8;
  --container:1030px;
}
.page-home .company-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1em 4%;
}
.page-home .company-head {
  flex-basis: clamp(300px, 48%, 480px);
  flex-grow: 1;
}
.page-home .company-detail {
  flex-basis: clamp(300px, 48%, 480px);
  flex-grow: 1;
}
.page-home .company-detail .-bottom {
  margin-top: 1.5em;
}
@media print, screen and (max-width: 820px) {
  .page-home .company-detail .-bottom {
    justify-content: center;
  }
}
@media print, screen and (min-width: 821px) {
  .page-home .company-head .section-title-wrap {
    position: relative;
  }
  .page-home .company-head .section-title-icon {
    position: absolute;
    bottom: 100%;
  }
}
.page-home .recruit {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  overflow: hidden;
}
.page-home .recruit-bg {
  grid-column: 1/2;
  grid-row: 1/2;
}
.page-home .recruit-bg img {
  width: 100%;
  object-fit: cover;
  object-position: left bottom;
  min-height: 800px;
  height: 100%;
}
.page-home .recruit-front {
  grid-column: 1/2;
  grid-row: 1/2;
  padding-top: clamp(2em, 5%, 50px);
  padding-bottom: clamp(3em, 10%, 120px);
}
.page-home .recruit-row {
  margin-top: 1em;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em 0;
  align-items: center;
}
.page-home .recruit-row .-text {
  margin: 1em 0 2.5em;
}
.page-home .recruit-col {
  flex-basis: clamp(300px, 40%, 480px);
  flex-grow: 1;
  color: #fff;
  --btn-bg:#fff;
  --btn-color:var(--primary);
  --btn-color-h:#fff;
  --btn-bg-h:var(--primary);
}
.page-home .recruit-img {
  flex-basis: clamp(300px, 59.9166666667%, 719px);
  flex-grow: 1;
}
@media print, screen and (max-width: 820px) {
  .page-home .recruit-col .-bottom {
    justify-content: center;
  }
}
@media print, screen and (min-width: 821px) {
  .page-home .recruit-img {
    order: 0;
  }
  .page-home .recruit-col {
    order: 1;
  }
}

.service-intro {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  background-color: #eaf2f8;
}
.service-intro .-bg {
  grid-column: 1/2;
  grid-row: 1/2;
}
.service-intro .-bg img {
  width: 100%;
  object-fit: cover;
  object-position: center top;
  max-height: 710px;
}
.service-intro .-front {
  grid-column: 1/2;
  grid-row: 1/2;
}
.service-intro .-title {
  margin-bottom: 1em;
}
.service-intro .-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em 9.1666666667%;
}
.service-intro .-col-text {
  flex-basis: clamp(300px, 30%, 360px);
}
.service-intro .-col-img {
  flex-basis: clamp(300px, 60.8333333333%, 730px);
}
@media print, screen and (max-width: 820px) {
  .service-intro .-col-text {
    flex-grow: 1;
  }
  .service-intro .-col-img {
    margin-left: auto;
    flex-grow: 1;
    text-align: right;
  }
}
@media print, screen and (min-width: 821px) {
  .service-intro .-row {
    flex-wrap: nowrap;
  }
}
@media print, screen and (min-width: 1021px) {
  .service-intro {
    margin-bottom: 100px;
  }
  .service-intro .-col-img {
    position: relative;
  }
  .service-intro .-col-img .-img img {
    transform-origin: top left;
    transform: scale(1.13);
  }
}
.service-process {
  --title-size:var(--size-40);
  --flow-gap:76px;
  --flow-head-w:60px;
}
.service-process-img {
  margin: clamp(2em, 4.1666666667%, 50px) auto;
}
.service-process-flow {
  display: grid;
  gap: var(--flow-gap);
}
.service-process-flow .-item {
  display: grid;
  grid-template-columns: var(--flow-head-w) auto;
}
.service-process-flow .-item-box {
  background-color: var(--bg-primary);
  padding: clamp(1em, 4.8076923077%, 50px);
  display: flex;
  gap: 1em 5.7692307692%;
  justify-content: flex-end;
}
.service-process-flow .-item-text {
  flex-basis: clamp(300px, 36.5384615385%, 380px);
  flex-grow: 1;
  padding-left: 4.8076923077%;
}
.service-process-flow .-item-img {
  flex-basis: clamp(300px, 58.6538461538%, 610px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.9180327869%;
}
.service-process-flow .-item-head {
  position: relative;
}
.service-process-flow .-item-no {
  position: absolute;
  left: 0;
  width: calc(var(--flow-head-w) * 2);
  z-index: 2;
}
.service-process-flow .-item-arrow {
  display: block;
  position: absolute;
  right: 0;
  height: 100%;
  background-image: url(../images/service/process-arrow@2x.webp);
  background-size: 100% auto;
  background-position: center bottom;
  background-repeat: no-repeat;
  width: 27px;
  transform: translate(10px, 48px);
}
@media print, screen and (max-width: 820px) {
  .service-process {
    --flow-gap:50px;
    --flow-head-w:24px;
  }
  .service-process .-item-box {
    flex-wrap: wrap;
    padding-left: calc(var(--flow-head-w) + 1em);
  }
  .service-process .-item-img {
    flex-grow: 1;
  }
  .service-process .-item-text {
    padding-left: 0;
  }
  .service-process .-item-arrow {
    transform: translate(10px, 10px);
  }
}
.service-assemble {
  margin-bottom: clamp(2em, 10%, 70px);
}
.service-assemble-bg {
  background-image: url(../images/service/assemble-bg@2x.webp);
  background-size: cover;
}
.service-assemble-bg .-title {
  margin-bottom: 1em;
}
.service-assemble h3 {
  margin-bottom: 0.5em;
}
.service-assemble .-box {
  background-color: #fff;
  padding: clamp(1em, 4.1666666667%, 50px);
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
.service-assemble .-box-text {
  flex-basis: clamp(300px, 38.1818181818%, 420px);
  flex-grow: 1;
}
.service-assemble .-box-img {
  flex-basis: clamp(300px, 56.3636363636%, 620px);
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em 4.8387096774%;
  margin-left: auto;
}
.service-support {
  margin-bottom: 20px;
}
.service-support h3 {
  margin-bottom: 0.5em;
}
.service-support .-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em 6.6666666667%;
}
.service-support .-col-box {
  flex-basis: clamp(300px, 49.1228070175%, 560px);
  flex-grow: 1;
  background-color: #fff;
  padding: clamp(1em, 8.9285714286%, 50px);
}

.company-intro {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.company-intro .-bg {
  grid-column: 1/2;
  grid-row: 1/2;
  padding-bottom: clamp(3em, 10%, 100px);
}
.company-intro .-bg img {
  width: 100%;
  object-fit: cover;
  object-position: center top;
  max-height: 710px;
}
.company-intro .-front {
  grid-column: 1/2;
  grid-row: 1/2;
}
.company-intro .-front-head {
  margin-bottom: clamp(2em, 10%, 80px);
}
.company-intro .-title-sub {
  margin: 1em 0;
}
.company-message {
  --title-size:var(--size-40);
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.company-message .-bg {
  grid-column: 1/2;
  grid-row: 1/2;
}
.company-message .-bg img {
  width: 100%;
  object-fit: cover;
  object-position: right center;
}
.company-message .-front {
  grid-column: 1/2;
  grid-row: 1/2;
}
.company-message .-col {
  max-width: 600px;
}
.company-message .-col p:nth-of-type(n + 2) {
  margin-top: 1.5em;
}
.company-message .-name {
  margin-top: 2.5em;
  text-align: right;
}
.company-vision {
  --title-size:var(--size-40);
  --title-margin:1.5em;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  color: #fff;
  position: relative;
}
.company-vision .-bg {
  grid-column: 1/2;
  grid-row: 1/2;
}
.company-vision .-bg img {
  width: 100%;
  object-fit: cover;
  object-position: right center;
  height: 100%;
}
.company-vision .-bg-logo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(10em, 37.0714285714%, 519px);
}
.company-vision .-front {
  grid-column: 1/2;
  grid-row: 1/2;
  position: relative;
  z-index: 1;
}
.company-vision .-vision-img {
  margin-bottom: 2em;
}
.company-vision .-vision-text {
  margin-bottom: var(--section-bottom);
}
.company-vision .-row {
  display: flex;
  gap: 2em 4%;
  flex-wrap: wrap;
  padding-bottom: var(--section-bottom);
}
.company-vision .-col {
  flex-basis: clamp(300px, 48%, 480%);
}
@media print, screen and (max-width: 820px) {
  .company-vision .-front {
    padding: 2em 0;
  }
}
.company-credo .-title, .company-policy .-title {
  position: relative;
}
.company-credo .-title::after, .company-policy .-title::after {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #fff;
  display: block;
  margin: 0.5em 0;
}
.company-credo .-list-item, .company-policy .-list-item {
  display: flex;
  gap: 0.25em;
}
.company-credo .-list-item::before, .company-policy .-list-item::before {
  content: "一、";
  flex-shrink: 0;
}
.company-policy {
  margin-bottom: clamp(2em, 10%, 60px);
}
.company-guideline .-title {
  position: relative;
}
.company-guideline .-title::after {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #fff;
  display: block;
  margin: 0.5em 0;
}
.company-guideline .-list-item {
  margin-top: 1em;
}
.company-logo {
  --title-size:var(--size-40);
}
.company-logo .-row {
  border: 10px var(--secondary) solid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.company-logo .-col-img {
  text-align: center;
  padding: clamp(2em, 8.4745762712%, 50px);
}
.company-logo .-col-text {
  padding: clamp(2em, 8.4745762712%, 50px);
  background-color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.company-outline {
  --title-size:var(--size-40);
}
.company-outline h3 {
  margin-bottom: 0.5em;
}
.company-outline .-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em 1em;
}
.company-outline .-col-text {
  flex-basis: clamp(300px, 75%, 900px);
  margin-left: auto;
}
.company-outline .-outline-table {
  width: 100%;
}
.company-outline .-outline-table tr {
  border-top: 1px #b0b0b0 solid;
  border-bottom: 1px #b0b0b0 solid;
}
.company-outline .-outline-table th {
  color: var(--primary);
  font-weight: bold;
  padding: 1em 0;
  text-align: left;
  width: 17.7777777778%;
  min-width: 8em;
}
.company-outline .-outline-table td {
  padding: 1em;
  width: 82.2222222222%;
}
@media print, screen and (max-width: 820px) {
  .company-outline .-col-text {
    flex-grow: 1;
  }
}

.recruit-intro {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.recruit-intro .-bg {
  grid-column: 1/2;
  grid-row: 1/2;
}
.recruit-intro .-bg img {
  width: 100%;
  object-fit: cover;
  object-position: center top;
  max-height: 710px;
}
.recruit-intro .-front {
  grid-column: 1/2;
  grid-row: 1/2;
  padding-top: clamp(1.5em, 5%, 50px);
  padding-bottom: var(--section-bottom);
}
.recruit-intro .-title-sub {
  margin: 1em 0;
}
.recruit-intro .-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em 4.8333333333%;
}
.recruit-intro .-col-text {
  flex-basis: clamp(300px, 50%, 600px);
  flex-grow: 1;
}
.recruit-intro .-col-img {
  flex-basis: clamp(300px, 45.1666666667%, 542px);
  flex-grow: 1;
  text-align: right;
}
.recruit-intro .-text {
  max-width: 360px;
}
.recruit-voice {
  background-color: var(--primary);
}
.recruit-voice-list {
  display: grid;
  gap: 50px;
  --item-pad:3em 0 0 clamp(1em, calc(100% / 12), 100px);
}
.recruit-voice-list .-item {
  background-color: #fff;
  position: relative;
  padding: var(--item-pad);
  display: flex;
  flex-wrap: wrap;
  gap: 0 4.5454545455%;
}
.recruit-voice-list .-item-label {
  background-color: var(--primary);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  padding: 0 2em;
}
.recruit-voice-list .-item-text {
  flex-basis: clamp(300px, 60%, 660px);
  padding-top: 2em;
  padding-bottom: 2em;
  flex-grow: 1;
}
.recruit-voice-list .-item-text h3 {
  margin-bottom: 0.5em;
}
.recruit-voice-list .-item-img {
  position: relative;
  flex-basis: clamp(300px, 35.4545454545%, 390px);
  text-align: center;
  align-self: flex-end;
  flex-grow: 1;
}
.recruit-voice-list .-item-profile {
  background: var(--gra);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  aspect-ratio: 1/1;
  width: 172px;
  line-height: 1.5;
}
.recruit-voice-list .-item-fig {
  position: relative;
}
@media print, screen and (max-width: 820px) {
  .recruit-voice-list .-item {
    padding-left: 1em;
    padding-right: 1em;
  }
  .recruit-voice-list .-item-text {
    flex-grow: 1;
  }
  .recruit-voice-list .-item-img {
    flex-grow: 1;
  }
  .recruit-voice-list .-item-fig {
    padding-left: 15%;
  }
}
@media print, screen and (min-width: 821px) {
  .recruit-voice-list .-item {
    flex-wrap: nowrap;
  }
  .recruit-voice-list .-item:nth-of-type(even) {
    --item-pad:3em clamp(1em, calc(100% / 12), 100px) 0 0 ;
  }
  .recruit-voice-list .-item:nth-of-type(even) .-item-img {
    order: 0;
  }
  .recruit-voice-list .-item:nth-of-type(even) .-item-text {
    order: 1;
  }
  .recruit-voice-list .-item:nth-of-type(even) .-item-profile {
    left: 180px;
  }
}
.recruit-welfare {
  --title-size:var(--size-40);
}
.recruit-welfare h3 {
  margin-bottom: 0.5em;
}
.recruit-welfare .-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em 1em;
}
.recruit-welfare .-col-text {
  flex-basis: clamp(300px, 75%, 900px);
  margin-left: auto;
}
.recruit-welfare .-outline-table {
  width: 100%;
}
.recruit-welfare .-outline-table tr {
  border-top: 1px #b0b0b0 solid;
  border-bottom: 1px #b0b0b0 solid;
}
.recruit-welfare .-outline-table th {
  color: var(--primary);
  font-weight: bold;
  padding: 1em 0;
  text-align: left;
  width: 22.2222222222%;
  min-width: 8em;
}
.recruit-welfare .-outline-table td {
  padding: 1em;
  width: 77.7777777778%;
}
@media print, screen and (max-width: 820px) {
  .recruit-welfare .-col-text {
    flex-grow: 1;
  }
}
.recruit-flow {
  --title-size:var(--size-40);
  --title-margin:1.5em;
}
.recruit-jobs {
  --title-size:var(--size-40);
}
.recruit-jobs-list .box {
  background-color: var(--bg-primary);
  margin-bottom: 30px;
  padding: clamp(1em, 2.5%, 30px) clamp(1em, 4.1666666667%, 50px);
}
.recruit-jobs-list .box h3 {
  font-weight: bold;
  color: var(--secondary);
  font-size: var(--size-30);
  margin-bottom: 0.5em;
}
.recruit-jobs-list .box p:nth-of-type(n + 2) {
  margin-top: 1.5em;
}
.recruit-contact {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  color: #fff;
}
.recruit-contact .-bg {
  grid-column: 1/2;
  grid-row: 1/2;
}
.recruit-contact .-bg img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.recruit-contact .-front {
  grid-column: 1/2;
  grid-row: 1/2;
  display: flex;
  align-items: center;
}
.recruit-contact .-row {
  display: flex;
  gap: 1em 5.8333333333%;
  justify-content: center;
  align-items: center;
}
.recruit-contact .-col-img {
  flex-basis: clamp(200px, 28.5%, 342px);
}
.recruit-contact .-col-text {
  flex-basis: clamp(300px, 52.5%, 630px);
}
.recruit-contact .-title {
  margin-bottom: 0.5em;
}
.recruit-contact .tel-link {
  font-size: clamp(20px, 5vmin, 50px);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.2em;
  color: #fff;
}
.recruit-contact .tel-link .-icon {
  display: inline-block;
  flex-shrink: 0;
  filter: grayscale(1) brightness(10);
  flex-basis: 0.6em;
}
.recruit-contact .tel-link .-number {
  display: flex;
  align-items: center;
}
@media print, screen and (max-width: 820px) {
  .recruit-contact {
    --size-50: 22px;
  }
  .recruit-contact .-row {
    flex-wrap: wrap;
    padding: 1.5em 0;
  }
}/*# sourceMappingURL=style.css.map */