@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes infinity-rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
html,
body {
  font-size: 62.5% !important;
}

html {
  background: #f4f4f4;
  position: relative;
  z-index: 1;
}

body {
  width: 100%;
  height: 100%;
  background: url(/asset/images/common/texture.png) repeat;
  background-size: 30rem 30rem;
  position: relative;
  z-index: -1;
}

#load {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  background: #f4f4f4;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  display: none;
}
#load::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/asset/images/common/texture.png) repeat;
  position: absolute;
  top: 0;
  left: 0;
}
#load .logo {
  width: 14rem;
}

html.is-first-session {
  overflow: hidden;
}
html.is-first-session #load {
  display: flex;
}

.entry-cont {
  padding: 0 3rem;
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  grid-column-gap: min(2vw, 3rem);
  background: #fff;
}
.entry-cont__wrap {
  height: 22vw;
  background: #f4f4f4;
  display: grid;
  grid-template-columns: repeat(13, 1fr);
  grid-column-gap: min(2vw, 3rem);
  align-items: center;
  grid-area: 1/2/2/15;
}
.entry-cont__wrap::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(/asset/images/common/texture.png) repeat;
  background-size: 30rem 30rem;
  z-index: 1;
}
.entry-cont__wrap__txt {
  grid-area: 1/2/2/11;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 1.07vw;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1200px) {
  .entry-cont__wrap__txt {
    font-size: max(1.3rem, 1.083vw);
  }
}
.entry-cont__wrap__btn {
  width: 11.07vw;
  height: 11.07vw;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-area: 1/11/2/13;
  font-size: 1.6vw;
  font-weight: bold;
  line-height: 1;
  letter-spacing: -0.02em;
  border: solid 1px #292726;
  border-radius: 50%;
  position: absolute;
  right: 0;
  transition: background-color 0.4s cubic-bezier(0, 0.55, 0.45, 1), color 0.4s cubic-bezier(0, 0.55, 0.45, 1);
  z-index: 2;
}
.entry-cont__wrap__btn:hover {
  background: #292726;
  color: #F7F6F0;
}
.entry-cont__wrap__btn:hover svg path {
  fill: #F7F6F0;
}
@media screen and (max-width: 959px) {
  .entry-cont__wrap {
    height: 28vw;
  }
}
@media screen and (max-width: 650px) {
  .entry-cont {
    grid-template-columns: repeat(15, 1fr);
  }
  .entry-cont__wrap {
    height: 100%;
    grid-template-columns: repeat(13, 1fr);
    grid-template-rows: auto;
  }
  .entry-cont__wrap__txt {
    padding: 3rem 0 2rem;
    text-align: center;
    grid-area: 1/2/2/13;
  }
  .entry-cont__wrap__btn {
    width: 28vw;
    height: 28vw;
    margin: 0 auto 3rem;
    grid-area: 2/2/3/13;
    font-size: 1.6rem;
    position: relative;
  }
}
@media screen and (max-width: 380px) {
  .entry-cont__wrap {
    grid-template-columns: repeat(15, 1fr);
    grid-area: 1/1/2/16;
  }
  .entry-cont__wrap__txt {
    grid-area: 1/2/2/15;
  }
  .entry-cont__wrap__btn {
    grid-area: 2/2/3/15;
  }
}

.no-current {
  opacity: 0.4 !important;
  pointer-events: none !important;
}

.grecaptcha-badge {
  visibility: visible !important;
  z-index: 99 !important;
}

/* A Modern CSS Reset */
/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */
select::-ms-expand {
  display: none;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* Misc */
/* ============================================ */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

header {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  background: #f4f4f4;
  position: fixed;
  top: 0;
  z-index: 100;
}
header::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: url(/asset/images/common/texture.png) repeat;
  background-size: 30rem 30rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  header .logo img {
    height: 3.5rem;
  }
}
@media screen and (max-width: 480px) {
  header {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
}

.footer {
  background: #fff;
  border-top: solid 1px rgba(41, 39, 38, 0.2);
}
.footer-cont {
  padding: 0 2vw;
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  grid-template-rows: auto;
  grid-column-gap: min(2vw, 3rem);
  grid-area: 1/2/4/15;
}
.footer-cont__info {
  grid-area: 1/2/2/8;
}
@media screen and (max-width: 1024px) {
  .footer-cont__info {
    grid-area: 1/2/2/15;
  }
}
.footer-cont__info img {
  width: 9.8rem;
}
.footer-cont__info .address {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.03em;
}
.footer-cont__info .tel,
.footer-cont__info .fax {
  display: inline-block;
  font-family: YakuHanJP, "Lato", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  line-height: 1;
  vertical-align: bottom;
}
.footer-cont__info .tel span,
.footer-cont__info .fax span {
  margin: 0 0.5rem 0 0;
  font-size: 75%;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
}
.footer-cont__info .tel {
  margin-bottom: 0.5rem;
  transition: opacity 0.4s cubic-bezier(0, 0.55, 0.45, 1);
}
.footer-cont__info .tel:hover {
  opacity: 0.6;
}
.footer-cont__nav {
  grid-area: 1/9/2/15;
}
.footer-cont__nav a {
  font-weight: bold;
  transition: opacity 0.4s cubic-bezier(0, 0.55, 0.45, 1);
}
.footer-cont__nav a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1024px) {
  .footer-cont__nav {
    grid-area: 1/10/2/15;
  }
}
@media screen and (max-width: 600px) {
  .footer-cont__nav {
    padding: 3.5rem 0 2rem;
    border-bottom: solid 1px rgba(41, 39, 38, 0.2);
    grid-area: 2/2/3/15;
  }
}
.footer-cont__nav__item {
  margin-right: 3.33vw;
  margin-bottom: 3.33vw;
}
.footer-cont__nav__item:last-child {
  margin-right: 0;
}
.footer-cont__nav__item > h4 {
  font-size: 2rem;
  font-weight: normal;
  line-height: 1;
  transition: opacity 0.4s cubic-bezier(0, 0.55, 0.45, 1);
}
.footer-cont__nav__item__child {
  margin: 1.5rem 0 0 0;
  padding: 0 0 0 1rem;
  opacity: 0.6;
  border-left: solid 1px rgba(41, 39, 38, 0.6);
}
.footer-cont__nav__item__child a {
  margin: 0 0 1rem 0;
  font-size: 1.4rem;
  transition: opacity 0.4s cubic-bezier(0, 0.55, 0.45, 1);
}
.footer-cont__nav__item__child a:last-child {
  margin: 0;
}
.footer-cont__nav__item__child a:hover {
  opacity: 0.6;
}
.footer-cont__nav__item__other a {
  display: inline-block;
  margin: 0 0 1.5rem 0;
  font-size: 1.4rem;
  transition: opacity 0.4s cubic-bezier(0, 0.55, 0.45, 1);
}
.footer-cont__nav__item__other a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1200px) {
  .footer-cont__nav__item {
    margin-right: 3vw;
    margin-bottom: 3vw;
  }
  .footer-cont__nav__item > h4 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .footer-cont__nav__item {
    margin-bottom: 2rem;
  }
  .footer-cont__nav__item__parent {
    width: 100%;
  }
  .footer-cont__nav__item__parent > ul {
    flex-direction: column;
  }
  .footer-cont__nav__item__parent > ul li {
    margin-right: 0;
  }
  .footer-cont__nav__item__child {
    margin: 1rem 0 0 0;
  }
}
.footer-cont__bnr {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  grid-column-gap: min(2vw, 3rem);
  grid-area: 2/2/3/15;
}
@media screen and (max-width: 600px) {
  .footer-cont__bnr {
    margin-top: 3.5rem !important;
    grid-area: 3/2/3/15;
    grid-row-gap: min(2vw, 3rem);
  }
}
.footer-cont__bnr__item {
  width: 100%;
}
.footer-cont__bnr__item:nth-child(1) {
  grid-area: 3/1/4/5;
}
.footer-cont__bnr__item:nth-child(2) {
  grid-area: 3/5/4/9;
}
.footer-cont__bnr__item:nth-child(3) {
  grid-area: 3/9/4/13;
}
.footer-cont__bnr__item a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  transition: opacity 0.4s cubic-bezier(0, 0.55, 0.45, 1);
}
.footer-cont__bnr__item a img {
  margin-top: 1.2rem;
}
.footer-cont__bnr__item a span {
  margin-top: 0.5rem;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.2;
}
.footer-cont__bnr__item a span svg {
  width: 1.4rem;
  margin-left: 0.5rem;
}
.footer-cont__bnr__item a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 600px) {
  .footer-cont__bnr__item:nth-child(1) {
    grid-area: 1/1/1/13;
  }
  .footer-cont__bnr__item:nth-child(2) {
    grid-area: 2/1/2/13;
  }
  .footer-cont__bnr__item:nth-child(3) {
    grid-area: 3/1/3/13;
  }
}
.footer-cont small {
  grid-area: 3/2/4/15;
  opacity: 0.6;
}
@media screen and (max-width: 600px) {
  .footer-cont small {
    grid-area: 4/2/4/15;
  }
}

.btn-wrap__item {
  width: 100%;
  max-width: 30.67vw;
  height: auto;
  padding: 0 0 0.8rem 0;
  border-bottom: solid 1px #292726;
  transition: color 0.4s cubic-bezier(0, 0.55, 0.45, 1);
}
.btn-wrap__item__arrow {
  width: 0.6rem;
  height: 0.6rem;
  position: relative;
  overflow: hidden;
}
.btn-wrap__item__arrow svg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transition: transform 0.4s cubic-bezier(0, 0.55, 0.45, 1);
}
.btn-wrap__item__arrow svg.sub {
  transform: translateX(-100%);
}
.btn-wrap__item:hover {
  color: #F48A43;
}
.btn-wrap__item:hover svg {
  transform: translateX(100%);
}
.btn-wrap__item:hover svg.sub {
  transform: translateX(0%);
}
@media screen and (max-width: 767px) {
  .btn-wrap__item {
    width: 23.5rem;
    max-width: 23.5rem;
  }
}

.btn-bk {
  width: 22.5rem;
  padding: 1.7rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.4rem;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #F7F6F0;
  background: #292726;
  transition: background-color 0.4s cubic-bezier(0, 0.55, 0.45, 1), color 0.4s cubic-bezier(0, 0.55, 0.45, 1);
}
.btn-bk svg path {
  width: 0.6rem;
  height: 0.6rem;
}
.btn-bk:hover {
  color: #F7F6F0;
  background: #F48A43;
}
@media screen and (max-width: 767px) {
  .btn-bk {
    width: 40%;
    padding: 1.7rem 1rem;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 480px) {
  .btn-bk {
    width: 55%;
    padding: 1.15rem 1rem;
  }
}

.wpcf7-spinner {
  display: none !important;
}

.entry-btn {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}
.entry-btn svg {
  position: absolute;
  top: 0;
  right: 2rem;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .entry-btn {
    width: 20rem;
  }
  .entry-btn .btn-bk {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .entry-btn svg {
    right: 1rem;
  }
}

img {
  width: 100%;
  height: auto;
  border-radius: 0.6rem;
}
@media screen and (max-width: 767px) {
  img {
    border-radius: 0.4rem;
  }
}

.swiper {
  position: relative;
  overflow: hidden;
}
.swiper-bg {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  background: #292726;
  transform: scaleX(0);
  transform-origin: left;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.swiper-wrapper {
  position: relative;
  opacity: 0;
  z-index: 1;
}
.swiper-cover img {
  border-radius: 0.6rem 0 0 0;
}
@media screen and (max-width: 480px) {
  .swiper-cover img {
    border-radius: 0;
  }
}

.mv {
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  padding-top: 13.5rem;
}
.mv-ttl {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 6rem;
  line-height: 1;
  letter-spacing: 0;
  position: absolute;
  top: 26.7vw;
  left: 4vw;
  right: auto;
  z-index: 10;
  display: inline-block;
  overflow: hidden;
}
.mv-ttl__bg {
  width: 100%;
  height: 100%;
  background: #292726;
  transform: scaleX(0);
  transform-origin: left;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.mv-ttl__main {
  font-family: YakuHanJP, "Lato", sans-serif;
  font-size: 4.33vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  position: relative;
  opacity: 0;
  z-index: 1;
}
.mv-ttl__sub {
  margin-top: 1.8rem;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: min(1.33vw, 2rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  position: relative;
  opacity: 0;
  z-index: 1;
}
.mv-sec {
  width: 78.4vw;
  margin-right: unset !important;
  margin-left: auto !important;
  border-radius: 1.2rem 0 0 0;
}
@media screen and (max-width: 1200px) {
  .mv {
    font-size: clamp(4.5rem, 5vw, 6rem);
  }
}
@media screen and (max-width: 767px) {
  .mv {
    padding-top: 10rem;
  }
  .mv-ttl {
    font-size: clamp(3.5rem, 5.86vw, 4.5rem);
    top: 35vw;
  }
  .mv-ttl__sub {
    margin-top: 1.4rem;
    font-size: min(1.82vw, 1.4rem);
  }
  .mv-sec {
    border-radius: 0.4rem 0.4rem 0 0;
  }
}
@media screen and (max-width: 600px) {
  .mv-ttl {
    font-size: clamp(2.8rem, 5.83vw, 3.5rem);
  }
}
@media screen and (max-width: 480px) {
  .mv {
    padding-top: 10rem;
  }
  .mv-ttl {
    margin-bottom: 2.5rem;
    font-size: clamp(2.4rem, 5.83vw, 2.8rem);
    position: relative;
    top: 0;
    left: 2vw;
  }
  .mv-ttl__main {
    font-size: min(5.25rem, 10.93vw);
  }
  .mv-ttl__sub {
    margin-top: 1rem;
    font-size: 1.3rem;
  }
  .mv-sec {
    width: 100vw;
  }
}

.nav-list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  font-weight: bold;
}
.nav-list__item a {
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0;
  transition: color 0.4s cubic-bezier(0, 0.55, 0.45, 1);
}
.nav-list__item a:hover {
  color: #F48A43;
}
@media screen and (max-width: 959px) {
  .nav-list__item {
    display: none;
  }
}
.nav-list__btn {
  margin-right: 1rem;
  box-shadow: 0 0 6px 0 rgba(41, 39, 38, 0.18);
}
.nav-list__btn a {
  padding: 1.7rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.4rem;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #F7F6F0;
  background: #292726;
  transition: background-color 0.4s cubic-bezier(0, 0.55, 0.45, 1), color 0.4s cubic-bezier(0, 0.55, 0.45, 1);
}
.nav-list__btn a svg path {
  width: 0.6rem;
  height: 0.6rem;
}
.nav-list__btn a:hover {
  color: #F7F6F0;
  background: #F48A43;
}
@media screen and (max-width: 767px) {
  .nav-list__btn {
    margin-right: 0.5rem;
    margin-left: 0 !important;
  }
  .nav-list__btn a {
    padding: 1.7rem 1rem;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 480px) {
  .nav-list__btn a {
    padding: 1.15rem 1rem;
  }
}

.menu {
  width: 4.8rem;
  height: 4.8rem;
  background: #292726;
  border-radius: 0.4rem;
  box-shadow: 0 0 6px 0 rgba(41, 39, 38, 0.18);
  transition: background-color 0.4s cubic-bezier(0, 0.55, 0.45, 1);
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  .menu {
    height: 3.5rem;
  }
}
.menu span {
  width: 1.5rem;
  height: 1px;
  background: #F7F6F0;
  transition: transform 0.4s cubic-bezier(0, 0.55, 0.45, 1);
}
.menu span:nth-child(2) {
  margin-left: 0.4rem;
}
.menu span:first-child, .menu span:last-child {
  width: 2.2rem;
  height: 1px;
  margin: auto;
  position: absolute;
  right: 0;
  left: 0;
}
.menu span:first-child {
  top: 1.7rem;
}
.menu span:last-child {
  bottom: 1.7rem;
}
@media screen and (max-width: 480px) {
  .menu span:first-child {
    top: 1.2rem;
  }
  .menu span:last-child {
    bottom: 1.2rem;
  }
}
.menu:hover {
  background: #F48A43;
}
.menu.open {
  background: #F48A43;
}
.menu.open span:nth-child(2) {
  opacity: 0;
}
.menu.open span:first-child {
  transform: rotate(40deg);
}
.menu.open span:last-child {
  transform: rotate(-40deg);
}
.menu.open span:first-child {
  top: 0;
  bottom: 0;
}
.menu.open span:last-child {
  top: 0;
  bottom: 0;
}

.hum {
  max-width: 48rem;
  max-height: -moz-fit-content;
  max-height: fit-content;
  padding: 3rem 1.5rem;
  background: #fff;
  border-radius: 0.4rem;
  position: fixed;
  right: 2vw;
  opacity: 0;
  box-shadow: 0 0 8px 0 rgba(41, 39, 38, 0.12);
  transition: opacity 0.6s cubic-bezier(0, 0.55, 0.45, 1);
  pointer-events: none;
  overflow-y: scroll;
  z-index: -10000;
}
.hum-list__item {
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}
.hum-list__item:last-child {
  margin-bottom: 0;
}
.hum-list__item > a {
  font-weight: bold;
}
.hum-list__item a {
  transition: opacity 0.4s cubic-bezier(0, 0.55, 0.45, 1);
}
.hum-list__item a:hover {
  opacity: 0.4;
}
.hum-list__item > h4 {
  font-size: 2rem;
  font-weight: normal;
  line-height: 1;
  color: #F48A43;
}
.hum-list__item__child {
  margin: 1.5rem 0 0 0;
  padding: 0 0 0 1rem;
  font-size: 1.4rem;
  opacity: 0.8;
  border-left: solid 1px rgba(244, 138, 67, 0.8);
}
.hum-list__item__child a {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.hum-list__item__child a:last-child {
  margin-bottom: 0;
}
.hum-list__item__other {
  margin-bottom: 1rem;
  font-weight: bold;
}
.hum-list__item__other:last-child {
  margin-bottom: 0;
}
.hum-list__item__other a {
  font-size: 1.4rem;
  transition: color 0.4s cubic-bezier(0, 0.55, 0.45, 1);
}
.hum-list__item__other a:hover {
  color: #F48A43;
}
.hum-list__item__bnr {
  margin-top: 3rem;
}
.hum-list__item__bnr li {
  margin-top: 1.2rem;
}
.hum-list__item__bnr li:first-child {
  margin-top: 0;
}
.hum-list__item__bnr li a {
  width: 100%;
  transition: opacity 0.4s cubic-bezier(0, 0.55, 0.45, 1);
}
.hum-list__item__bnr li a span {
  margin-top: 0.5rem;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.2;
}
.hum-list__item__bnr li a span svg {
  width: 1.2rem;
  margin-left: 0.5rem;
}
.hum-list__item__bnr li a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .hum-list__item {
    margin-bottom: 1.8rem;
  }
  .hum-list__item > h4 {
    font-size: 1.8rem;
  }
  .hum-list__item__child {
    font-size: 1.3rem;
  }
  .hum-list__item__child a {
    font-size: 1.3rem;
  }
}
.hum.active {
  opacity: 1;
  z-index: 10000;
  pointer-events: all;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.hum.active::-webkit-scrollbar {
  display: none;
}

.d-b {
  display: block;
}
.d-f {
  display: flex;
  flex-wrap: wrap;
}
.d-f__nw {
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
}
.d-f.row {
  flex-direction: row;
}
.d-f.col {
  flex-direction: column;
}
.d-f.c {
  justify-content: center;
}
.d-f.start {
  justify-content: flex-start;
}
.d-f.end {
  justify-content: flex-end;
}
.d-f.sb {
  justify-content: space-between;
}
.d-f.stretch {
  justify-content: stretch;
}

.a-c {
  align-items: center;
}
.a-start {
  align-items: flex-start;
}
.a-end {
  align-items: flex-end;
}

.m-auto {
  margin: auto;
}
.m-t__xll {
  margin-top: 13.3vw;
}
.m-t__xl {
  margin-top: 10vw;
}
.m-t__l {
  margin-top: 6.67vw;
}
.m-t__ml {
  margin-top: 5.33vw;
}
.m-t__mm {
  margin-top: 2.67vw;
}
.m-t__ms {
  margin-top: 2vw;
}
.m-t__s {
  margin-top: 1.33vw;
}
.m-t__sm {
  margin-top: 1vw;
}
.m-t__ss {
  margin-top: 0.67vw;
}
.m-t__xs {
  margin-top: 0.5rem;
}
@media screen and (max-width: 959px) {
  .m-t__xll {
    margin-top: 13rem;
  }
  .m-t__xl {
    margin-top: 10rem;
  }
  .m-t__l {
    margin-top: 7rem;
  }
  .m-t__ml {
    margin-top: 5rem;
  }
  .m-t__mm {
    margin-top: 2.6rem;
  }
  .m-t__ms {
    margin-top: 2rem;
  }
  .m-t__s {
    margin-top: 1.3rem;
  }
  .m-t__sm {
    margin-top: 1rem;
  }
  .m-t__ss {
    margin-top: 0.7rem;
  }
}
.m-b__xll {
  margin-bottom: 13.3vw;
}
.m-b__xl {
  margin-bottom: 10vw;
}
.m-b__ll {
  margin-bottom: 13.3vw;
}
.m-b__l {
  margin-bottom: 6.67vw;
}
.m-b__ml {
  margin-bottom: 5.33vw;
}
.m-b__mm {
  margin-bottom: 2.67vw;
}
.m-b__ms {
  margin-bottom: 2vw;
}
.m-b__s {
  margin-bottom: 1.33vw;
}
.m-b__sm {
  margin-bottom: 1vw;
}
.m-b__ss {
  margin-bottom: 0.83vw;
}
@media screen and (max-width: 959px) {
  .m-b__xll {
    margin-bottom: 13rem;
  }
  .m-b__xl {
    margin-bottom: 10rem;
  }
  .m-b__l {
    margin-bottom: 7rem;
  }
  .m-b__ml {
    margin-bottom: 5rem;
  }
  .m-b__mm {
    margin-bottom: 2.6rem;
  }
  .m-b__ms {
    margin-bottom: 2rem;
  }
  .m-b__s {
    margin-bottom: 1.3rem;
  }
  .m-b__sm {
    margin-bottom: 1rem;
  }
  .m-b__ss {
    margin-bottom: 0.7rem;
  }
}
.m-r__mm {
  margin-right: 2.67vw;
}
.m-r__ms {
  margin-right: 2vw;
}
.m-r__s {
  margin-right: 1.33vw;
}
.m-r__sm {
  margin-right: 1vw;
}
.m-r__ss {
  margin-right: 0.83vw;
}
.m-l__mm {
  margin-left: 2.67vw;
}
.m-l__ms {
  margin-left: 2vw;
}
.m-l__s {
  margin-left: 1.33vw;
}
.m-l__sm {
  margin-left: 1vw;
}
.m-l__ss {
  margin-left: 0.83vw;
}
.m-l__xs {
  margin-left: 0.5rem;
}

.p-t__xl {
  padding-top: 10vw;
}
.p-t__l {
  padding-top: 6.67vw;
}
.p-t__mm {
  padding-top: 2.67vw;
}
.p-t__ms {
  padding-top: 2vw;
}
.p-t__s {
  padding-top: 1.33vw;
}
.p-t__sm {
  padding-top: 1vw;
}
.p-t__ss {
  padding-top: 0.67vw;
}
.p-t__xs {
  padding-top: 0.5rem;
}
@media screen and (max-width: 959px) {
  .p-t__xl {
    padding-top: 10rem;
  }
  .p-t__l {
    padding-top: 7rem;
  }
  .p-t__ml {
    padding-top: 5rem;
  }
}
.p-b__ll {
  padding-bottom: min(13.3vw, 20rem);
}
.p-b__l {
  padding-bottom: 6.67vw;
}
.p-b__mm {
  padding-bottom: 2.67vw;
}
.p-b__ms {
  padding-bottom: 2vw;
}
.p-b__s {
  padding-bottom: 1.33vw;
}
.p-b__sm {
  padding-bottom: 1vw;
}
.p-b__ss {
  padding-bottom: 0.67vw;
}
.p-b__xs {
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 959px) {
  .p-b__l {
    padding-bottom: 7rem;
  }
  .p-b__ml {
    padding-bottom: 5rem;
  }
}
.p-r__l {
  padding-right: clamp(7.5rem, 6.7vw, 10rem);
}
.p-r__mm {
  padding-right: 2.67vw;
}
.p-r__ms {
  padding-right: 2vw;
}
.p-r__s {
  padding-right: 1.33vw;
}
.p-r__sm {
  padding-right: 1vw;
}
.p-r__ss {
  padding-right: 0.67vw;
}
.p-l__l {
  padding-left: clamp(7.5rem, 6.7vw, 10rem);
}
.p-l__mm {
  padding-left: 2.67vw;
}
.p-l__ms {
  padding-left: 2vw;
}
.p-l__s {
  padding-left: 1.33vw;
}
.p-l__sm {
  padding-left: 1vw;
}
.p-l__ss {
  padding-left: 0.67vw;
}
.p-l__xs {
  padding-left: 0.5rem;
}

.po {
  position: relative;
}

.poa {
  position: absolute;
}
.poa-center {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.pof-center {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

main {
  width: 100%;
}

p,
span,
a,
h1,
h2,
h3,
h4 {
  color: #292726;
}

.page-ttl {
  font-family: YakuHanJP, "Lato", sans-serif;
}

h1 {
  font-size: 6rem;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 1200px) {
  h1 {
    font-size: clamp(4.5rem, 5vw, 6rem);
  }
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: clamp(3.5rem, 5.86vw, 4.5rem);
  }
}
@media screen and (max-width: 600px) {
  h1 {
    font-size: clamp(2.8rem, 5.83vw, 3.5rem);
  }
}
@media screen and (max-width: 480px) {
  h1 {
    font-size: clamp(2.4rem, 5.83vw, 2.8rem);
  }
}

h2,
h3 {
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 1.87vw;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1200px) {
  h2,
  h3 {
    font-size: clamp(2rem, 1.867vw, 2.24rem);
  }
}

h4 {
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 1.47vw;
  font-weight: bold;
  line-height: 1.45;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1200px) {
  h4 {
    font-size: max(1.8rem, 1.5vw);
  }
}

h5 {
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
}

p {
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 1.07vw;
  line-height: 1.75;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1200px) {
  p {
    font-size: max(1.3rem, 1.083vw);
  }
}

a {
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 0.93vw;
  line-height: 1;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1200px) {
  a {
    font-size: max(1.2rem, 1vw);
  }
}

p > span,
span > span,
a > span,
h1 > span,
h2 > span,
h3 > span,
h4 > span,
div > span {
  display: inline-block;
}

.news {
  width: 100%;
  max-width: 78.4vw;
  margin: 0 0 0 auto;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.03em;
  border-radius: 0 0 0 1.2rem;
  background: rgba(255, 255, 255, 0.4);
}
.news-ttl {
  letter-spacing: 0.03em;
  line-height: 1;
  margin: 0 2vw 0 0;
  padding: 1.67vw 2vw 1.67vw 0;
  border-right: solid 1px rgba(41, 39, 38, 0.08);
}
.news-date {
  margin: 0 1.33vw 0 0;
}
.news-content {
  width: 40vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-btn {
  margin: 0 0 0 auto;
  padding: 0.7rem;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.03em;
  white-space: nowrap;
  color: #F7F6F0;
  background: #292726;
  border-radius: 0.4rem;
  transition: color 0.4s cubic-bezier(0, 0.55, 0.45, 1), background-color 0.4s cubic-bezier(0, 0.55, 0.45, 1);
}
.news-btn svg {
  margin: 0 0 0 1.5rem;
}
.news-btn:hover {
  background: #F48A43;
  color: #F7F6F0;
}
@media screen and (max-width: 959px) {
  .news {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .news-ttl {
    margin: 0;
    border-right: unset;
  }
  .news ul {
    width: calc(72.4vw - 11rem);
    height: calc(100% + 1.67vw);
  }
  .news-content {
    width: auto;
  }
  .news-btn {
    width: 11rem;
  }
}
@media screen and (max-width: 480px) {
  .news-ttl {
    padding: 1em 2vw 1em 0;
    border-right: solid 1px rgba(41, 39, 38, 0.08);
  }
  .news-date {
    margin: 0 1.33vw 0 1em;
  }
  .news {
    border-radius: 0 0 0.6rem 0.6rem;
  }
  .news ul {
    width: 90%;
    padding-bottom: 0;
  }
  .news {
    max-width: 100%;
  }
  .news-btn {
    width: auto;
  }
  .news-btn div {
    display: none;
  }
  .news-btn svg {
    margin: 0;
  }
}

.sec-about, .sec-fellow, .sec-work, .sec-recruit {
  padding-right: 2vw;
  padding-left: 2vw;
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  grid-template-rows: auto;
  grid-auto-columns: auto;
  grid-column-gap: min(2vw, 3rem);
}
@media screen and (max-width: 959px) {
  .sec-about, .sec-fellow, .sec-work, .sec-recruit {
    grid-template-columns: repeat(15, 4fr);
    grid-row-gap: min(2vw, 3rem);
  }
}
.sec-about .front-ttl, .sec-fellow .front-ttl, .sec-work .front-ttl, .sec-recruit .front-ttl {
  grid-area: 1/2/2/16;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.sec-about .front-ttl__bg, .sec-fellow .front-ttl__bg, .sec-work .front-ttl__bg, .sec-recruit .front-ttl__bg {
  width: 100%;
  height: 100%;
  background: #292726;
  transform: scaleX(0);
  transform-origin: left;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.sec-about .front-ttl img, .sec-fellow .front-ttl img, .sec-work .front-ttl img, .sec-recruit .front-ttl img {
  position: relative;
  opacity: 0;
  z-index: 2;
}
.sec-about .front-ttl img.about-ttl__img, .sec-fellow .front-ttl img.about-ttl__img, .sec-work .front-ttl img.about-ttl__img, .sec-recruit .front-ttl img.about-ttl__img {
  width: 45.76vw;
}
.sec-about .front-ttl img.fellow-ttl__img, .sec-fellow .front-ttl img.fellow-ttl__img, .sec-work .front-ttl img.fellow-ttl__img, .sec-recruit .front-ttl img.fellow-ttl__img {
  width: 31.2vw;
}
.sec-about .front-ttl img.work-ttl__img, .sec-fellow .front-ttl img.work-ttl__img, .sec-work .front-ttl img.work-ttl__img, .sec-recruit .front-ttl img.work-ttl__img {
  width: 31.33vw;
}
.sec-about .front-ttl img.recruit-ttl__img, .sec-fellow .front-ttl img.recruit-ttl__img, .sec-work .front-ttl img.recruit-ttl__img, .sec-recruit .front-ttl img.recruit-ttl__img {
  width: 46.176vw;
}
@media screen and (max-width: 480px) {
  .sec-about .front-ttl img.about-ttl__img, .sec-fellow .front-ttl img.about-ttl__img, .sec-work .front-ttl img.about-ttl__img, .sec-recruit .front-ttl img.about-ttl__img {
    width: 82.368vw;
  }
  .sec-about .front-ttl img.fellow-ttl__img, .sec-fellow .front-ttl img.fellow-ttl__img, .sec-work .front-ttl img.fellow-ttl__img, .sec-recruit .front-ttl img.fellow-ttl__img {
    width: 56.16vw;
  }
  .sec-about .front-ttl img.work-ttl__img, .sec-fellow .front-ttl img.work-ttl__img, .sec-work .front-ttl img.work-ttl__img, .sec-recruit .front-ttl img.work-ttl__img {
    width: 56.394vw;
  }
  .sec-about .front-ttl img.recruit-ttl__img, .sec-fellow .front-ttl img.recruit-ttl__img, .sec-work .front-ttl img.recruit-ttl__img, .sec-recruit .front-ttl img.recruit-ttl__img {
    width: 83.1168vw;
  }
}
.sec-about .front-side, .sec-fellow .front-side, .sec-work .front-side, .sec-recruit .front-side {
  display: inline-grid;
  grid-area: 1/1/3/2;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  overflow: hidden;
}
@media screen and (max-width: 959px) {
  .sec-about .front-side, .sec-fellow .front-side, .sec-work .front-side, .sec-recruit .front-side {
    grid-area: 1/1/5/2;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 480px) {
  .sec-about .front-side, .sec-fellow .front-side, .sec-work .front-side, .sec-recruit .front-side {
    font-size: 1rem;
  }
}
.sec-about .front-side span, .sec-fellow .front-side span, .sec-work .front-side span, .sec-recruit .front-side span {
  width: 100%;
  height: 100%;
  padding: 0;
  writing-mode: vertical-rl;
  align-content: center;
}
.sec-about .front-side span i, .sec-fellow .front-side span i, .sec-work .front-side span i, .sec-recruit .front-side span i {
  font-family: YakuHanJP, "Lato", sans-serif;
  padding: 0 0 1em 0;
  font-style: normal;
  position: relative;
  z-index: 1;
}
.sec-about .front-side span::after, .sec-fellow .front-side span::after, .sec-work .front-side span::after, .sec-recruit .front-side span::after {
  content: "";
  height: 100%;
  width: 1px;
  margin: 0 -0.75rem 0 0;
  background: #292726;
  display: block;
  position: absolute;
  top: 0;
  z-index: 0;
}
.sec-about .front-cont, .sec-fellow .front-cont, .sec-work .front-cont, .sec-recruit .front-cont {
  grid-area: 2/2/3/16;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: min(2vw, 3rem);
  grid-row-gap: 0;
}
@media screen and (max-width: 959px) {
  .sec-about .front-cont, .sec-fellow .front-cont, .sec-work .front-cont, .sec-recruit .front-cont {
    grid-template-columns: repeat(14, 1fr);
    grid-row-gap: min(2vw, 3rem);
    grid-area: 2/2/5/16;
    margin: min(-2vw, -3rem) 0 0 0;
  }
}
.sec-about .front-cont__txt, .sec-fellow .front-cont__txt, .sec-work .front-cont__txt, .sec-recruit .front-cont__txt {
  grid-area: 1/1/2/8;
}
.sec-about .front-cont__txt p, .sec-fellow .front-cont__txt p, .sec-work .front-cont__txt p, .sec-recruit .front-cont__txt p {
  font-weight: bold;
}
@media screen and (max-width: 959px) {
  .sec-about .front-cont__txt, .sec-fellow .front-cont__txt, .sec-work .front-cont__txt, .sec-recruit .front-cont__txt {
    grid-area: 2/1/3/14;
  }
  .sec-about .front-cont__txt p br, .sec-fellow .front-cont__txt p br, .sec-work .front-cont__txt p br, .sec-recruit .front-cont__txt p br {
    display: none;
  }
}
.sec-about .front-cont__txt .btn-wrap, .sec-fellow .front-cont__txt .btn-wrap, .sec-work .front-cont__txt .btn-wrap, .sec-recruit .front-cont__txt .btn-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
}
.sec-about .front-cont__txt .btn-wrap li:nth-child(1), .sec-fellow .front-cont__txt .btn-wrap li:nth-child(1), .sec-work .front-cont__txt .btn-wrap li:nth-child(1), .sec-recruit .front-cont__txt .btn-wrap li:nth-child(1) {
  grid-area: 1/1/2/5;
}
.sec-about .front-cont__txt .btn-wrap li:nth-child(2), .sec-fellow .front-cont__txt .btn-wrap li:nth-child(2), .sec-work .front-cont__txt .btn-wrap li:nth-child(2), .sec-recruit .front-cont__txt .btn-wrap li:nth-child(2) {
  grid-area: 2/1/3/5;
}
.sec-about .front-cont__txt .btn-wrap li:nth-child(3), .sec-fellow .front-cont__txt .btn-wrap li:nth-child(3), .sec-work .front-cont__txt .btn-wrap li:nth-child(3), .sec-recruit .front-cont__txt .btn-wrap li:nth-child(3) {
  grid-area: 3/1/4/5;
}
.sec-about .front-cont__txt .btn-wrap li:nth-child(4), .sec-fellow .front-cont__txt .btn-wrap li:nth-child(4), .sec-work .front-cont__txt .btn-wrap li:nth-child(4), .sec-recruit .front-cont__txt .btn-wrap li:nth-child(4) {
  grid-area: 4/1/5/5;
}
.sec-about .front-cont__img, .sec-fellow .front-cont__img, .sec-work .front-cont__img, .sec-recruit .front-cont__img {
  grid-area: 1/8/2/16;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: min(2vw, 3rem);
  grid-row-gap: 0;
  align-items: flex-end;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}
.sec-about .front-cont__img .mask, .sec-fellow .front-cont__img .mask, .sec-work .front-cont__img .mask, .sec-recruit .front-cont__img .mask {
  border-radius: 0.6rem;
  position: relative;
  overflow: hidden;
}
.sec-about .front-cont__img .mask-bg, .sec-fellow .front-cont__img .mask-bg, .sec-work .front-cont__img .mask-bg, .sec-recruit .front-cont__img .mask-bg {
  width: 100%;
  height: 100%;
  background: #292726;
  transform: scaleX(0);
  transform-origin: left;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.sec-about .front-cont__img .mask-img, .sec-fellow .front-cont__img .mask-img, .sec-work .front-cont__img .mask-img, .sec-recruit .front-cont__img .mask-img {
  position: relative;
  opacity: 0;
  z-index: 1;
}
@media screen and (max-width: 959px) {
  .sec-about .front-cont__img, .sec-fellow .front-cont__img, .sec-work .front-cont__img, .sec-recruit .front-cont__img {
    grid-template-columns: repeat(14, 1fr);
    grid-area: 3/1/5/15;
  }
}
@media screen and (max-width: 767px) {
  .sec-about .front-cont__img .mask, .sec-fellow .front-cont__img .mask, .sec-work .front-cont__img .mask, .sec-recruit .front-cont__img .mask {
    border-radius: 0.4rem;
  }
}
.sec-about .front-cont__img.about .mask, .sec-fellow .front-cont__img.about .mask, .sec-work .front-cont__img.about .mask, .sec-recruit .front-cont__img.about .mask {
  overflow: hidden;
}
.sec-about .front-cont__img.about .mask:nth-child(1), .sec-fellow .front-cont__img.about .mask:nth-child(1), .sec-work .front-cont__img.about .mask:nth-child(1), .sec-recruit .front-cont__img.about .mask:nth-child(1) {
  grid-area: 1/1/2/6;
  aspect-ratio: 115/143;
}
.sec-about .front-cont__img.about .mask:nth-child(2), .sec-fellow .front-cont__img.about .mask:nth-child(2), .sec-work .front-cont__img.about .mask:nth-child(2), .sec-recruit .front-cont__img.about .mask:nth-child(2) {
  grid-area: 1/6/2/9;
  aspect-ratio: 132/175;
}
@media screen and (max-width: 959px) {
  .sec-about .front-cont__img.about .mask, .sec-fellow .front-cont__img.about .mask, .sec-work .front-cont__img.about .mask, .sec-recruit .front-cont__img.about .mask {
    margin-top: 6.67vw;
  }
  .sec-about .front-cont__img.about .mask:nth-child(1), .sec-fellow .front-cont__img.about .mask:nth-child(1), .sec-work .front-cont__img.about .mask:nth-child(1), .sec-recruit .front-cont__img.about .mask:nth-child(1) {
    grid-area: 1/1/2/10;
  }
  .sec-about .front-cont__img.about .mask:nth-child(2), .sec-fellow .front-cont__img.about .mask:nth-child(2), .sec-work .front-cont__img.about .mask:nth-child(2), .sec-recruit .front-cont__img.about .mask:nth-child(2) {
    grid-area: 1/10/2/15;
  }
}
.sec-about .front-cont__img.work .mask, .sec-fellow .front-cont__img.work .mask, .sec-work .front-cont__img.work .mask, .sec-recruit .front-cont__img.work .mask {
  overflow: hidden;
}
.sec-about .front-cont__img.work .mask:nth-child(1), .sec-fellow .front-cont__img.work .mask:nth-child(1), .sec-work .front-cont__img.work .mask:nth-child(1), .sec-recruit .front-cont__img.work .mask:nth-child(1) {
  grid-area: 1/1/2/4;
  aspect-ratio: 132/175;
}
.sec-about .front-cont__img.work .mask:nth-child(2), .sec-fellow .front-cont__img.work .mask:nth-child(2), .sec-work .front-cont__img.work .mask:nth-child(2), .sec-recruit .front-cont__img.work .mask:nth-child(2) {
  grid-area: 1/4/2/9;
  aspect-ratio: 115/168;
}
@media screen and (max-width: 959px) {
  .sec-about .front-cont__img.work .mask, .sec-fellow .front-cont__img.work .mask, .sec-work .front-cont__img.work .mask, .sec-recruit .front-cont__img.work .mask {
    grid-template-columns: repeat(14, 1fr);
    grid-area: 3/2/5/16;
  }
  .sec-about .front-cont__img.work .mask:nth-child(1), .sec-fellow .front-cont__img.work .mask:nth-child(1), .sec-work .front-cont__img.work .mask:nth-child(1), .sec-recruit .front-cont__img.work .mask:nth-child(1) {
    grid-area: 1/1/2/7;
  }
  .sec-about .front-cont__img.work .mask:nth-child(2), .sec-fellow .front-cont__img.work .mask:nth-child(2), .sec-work .front-cont__img.work .mask:nth-child(2), .sec-recruit .front-cont__img.work .mask:nth-child(2) {
    grid-area: 1/7/2/15;
  }
}
.sec-about .front-cont__img {
  height: 100%;
}
.sec-about .front-side span i {
  background: #f4f4f4;
}
.sec-about .front-side span i::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/asset/images/common/texture.png) repeat;
  background-size: 30rem 30rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.sec-fellow {
  grid-template-rows: auto;
}
.sec-fellow:before {
  content: "";
  width: calc(100% + 2vw);
  height: 100%;
  grid-area: 1/1/4/12;
  background: #fff;
  border-radius: 0 1.2rem 1.2rem 0;
  position: relative;
  left: -2vw;
  z-index: -1;
}
@media screen and (max-width: 650px) {
  .sec-fellow:before {
    width: calc(100% + 4vw);
    grid-area: 1/1/4/16;
  }
}
.sec-fellow .front-ttl {
  margin-top: 10vw;
  grid-area: 1/2/2/12;
}
@media screen and (max-width: 959px) {
  .sec-fellow .front-ttl {
    margin-top: 10rem;
  }
}
.sec-fellow .front-side {
  grid-area: 1/1/3/2;
}
.sec-fellow .front-side span {
  padding: 10vw 0;
}
.sec-fellow .front-side span i {
  background: #fff;
}
.sec-fellow .front-side span::after {
  height: calc(100% - 16.67vw);
  top: 10vw;
}
@media screen and (max-width: 959px) {
  .sec-fellow .front-side span {
    padding: 10rem 0;
  }
  .sec-fellow .front-side span::after {
    height: calc(100% - (6.67vw + 10rem));
    top: 10rem;
  }
}
.sec-fellow .front-cont {
  margin-bottom: 6.67vw;
  grid-template-columns: repeat(14, 1fr);
}
@media screen and (max-width: 959px) {
  .sec-fellow .front-cont {
    grid-area: 2/2/3/11;
    grid-template-columns: repeat(12, 1fr);
  }
}
@media screen and (max-width: 650px) {
  .sec-fellow .front-cont {
    grid-area: 2/2/3/16;
    grid-template-columns: repeat(14, 1fr);
  }
}
.sec-fellow .front-cont__txt .btn-wrap {
  grid-area: 2/2/3/12;
}
.sec-fellow .front-cont__img {
  padding-bottom: 6.67vw;
  display: grid;
  grid-area: 3/1/4/12;
  grid-column-gap: 0;
}
.sec-fellow .front-cont__img.fellow {
  width: calc(100% + 2vw);
  position: relative;
  left: -2vw;
  overflow: hidden;
}
.sec-fellow .front-cont__img.fellow div {
  animation: infinity-scroll-left 50s infinite linear 0.5s both;
}
.sec-fellow .front-cont__img.fellow div img {
  width: 30.7vw;
  aspect-ratio: 23/16;
  margin-right: 2.5vw;
  border-radius: 0.6rem;
}
@media screen and (max-width: 767px) {
  .sec-fellow .front-cont__img.fellow div img {
    border-radius: 0.4rem;
  }
}
@media screen and (max-width: 650px) {
  .sec-fellow .front-cont__img {
    grid-area: 3/1/4/16;
  }
  .sec-fellow .front-cont__img.fellow {
    width: calc(100% + 4vw);
  }
  .sec-fellow .front-cont__img.fellow div img {
    width: 52vw;
  }
}
@media screen and (max-width: 959px) {
  .sec-work {
    grid-template-columns: repeat(15, 4fr);
    grid-row-gap: 0;
  }
}
.sec-work .front-cont__img {
  height: -moz-fit-content;
  height: fit-content;
}
.sec-work .front-side span i {
  background: #f4f4f4;
}
.sec-work .front-side span i::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/asset/images/common/texture.png) repeat;
  background-size: 30rem 30rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.sec-work .front-cont {
  grid-area: 2/2/1/8;
  grid-template-columns: repeat(8, 1fr);
  margin-top: calc(6.3857324841vw + 8rem);
}
@media screen and (max-width: 959px) {
  .sec-work .front-cont {
    grid-area: 1/2/2/16;
    grid-template-columns: repeat(14, 1fr);
  }
}
.sec-work .front-cont__img {
  margin-bottom: auto;
}
@media screen and (max-width: 959px) {
  .sec-work .front-cont__img {
    grid-template-columns: repeat(14, 1fr);
    grid-area: 3/2/5/16;
    margin-top: -7.15vw;
  }
}
@media screen and (max-width: 650px) {
  .sec-work .front-cont__img {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 959px) {
  .sec-work .front-cont__txt {
    margin: min(-2vw, -3rem) 0 0 0;
  }
  .sec-work .front-cont__txt p br {
    display: none;
  }
}
.sec-recruit {
  overflow: unset;
}
@media screen and (max-width: 959px) {
  .sec-recruit {
    margin-top: 0;
    grid-template-columns: repeat(15, 1fr);
    grid-row-gap: 0;
  }
}
.sec-recruit .front-cont {
  display: grid;
  grid-area: 1/2/2/9;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: auto;
  margin-top: calc(6.4633073593vw + 8rem);
}
@media screen and (max-width: 959px) {
  .sec-recruit .front-cont {
    grid-template-rows: 1fr;
    grid-area: 1/2/2/15;
    grid-template-columns: repeat(13, 1fr);
    margin-top: calc(6.3857324841vw + 8rem - min(2vw, 3rem));
  }
}
.sec-recruit .front-cont__img {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-area: 1/9/2/16;
  align-items: flex-start;
}
@media screen and (max-width: 959px) {
  .sec-recruit .front-cont__img {
    margin-top: 6.67vw;
    grid-template-columns: repeat(13, 1fr);
    grid-template-rows: 1fr;
    grid-area: 2/2/2/15;
    grid-row-gap: min(2vw, 3rem);
  }
}
.sec-recruit .front-cont__img.recruit .mask {
  overflow: hidden;
  position: absolute;
}
.sec-recruit .front-cont__img.recruit .mask:nth-child(1) {
  width: min(17.6vw, 26.4rem);
  aspect-ratio: 22/35;
  z-index: 1;
  top: calc(min(30.13vw, 45.2rem) * 0.6666666667 - 10vw + 1.67vw);
  right: calc(min(30.13vw, 45.2rem) - 6rem);
  z-index: 2;
}
.sec-recruit .front-cont__img.recruit .mask:nth-child(2) {
  width: min(30.13vw, 45.2rem);
  aspect-ratio: 2/3;
  top: -15rem;
  right: 0;
}
@media screen and (max-width: 959px) {
  .sec-recruit .front-cont__img.recruit .mask {
    position: relative;
  }
  .sec-recruit .front-cont__img.recruit .mask:nth-child(1) {
    width: 100%;
    top: 0;
    right: 0;
    grid-area: 1/1/1/6;
  }
  .sec-recruit .front-cont__img.recruit .mask:nth-child(2) {
    width: 100%;
    top: 0;
    right: 0;
    grid-area: 1/6/2/14;
  }
}
@media screen and (max-width: 959px) {
  .sec-recruit .front-cont__txt {
    grid-area: 1/1/3/14;
  }
}
.sec-recruit .front-side span {
  padding: 0;
}
.sec-recruit .front-side span i {
  background: #fff;
}

.recruit-cont {
  width: 100%;
  padding: 10rem 0;
  background: #fff;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.logo-bg {
  width: max(43.13vw, 46.7rem);
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  opacity: 0.03;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 600px) {
  .logo-bg {
    width: max(30rem, 77.83vw);
  }
}

.aioseo-breadcrumbs {
  margin-left: calc(13.3333333333vw - min(2vw, 3rem));
  padding-top: 1rem;
  padding-right: calc(13.3333333333vw - min(2vw, 3rem));
  position: relative;
}
.aioseo-breadcrumb {
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.03em;
}
.aioseo-breadcrumb a {
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.03em;
  transition: opacity 0.4s cubic-bezier(0, 0.55, 0.45, 1);
}
.aioseo-breadcrumb a:hover {
  opacity: 0.6;
}
.aioseo-breadcrumb-separator {
  height: 100%;
  margin: auto 0.4rem;
  vertical-align: top;
}

.fst-cont, .fst-wrap {
  padding-top: calc(6.67vw + 1.2rem);
  padding-bottom: 6.67vw;
  padding-right: 2vw;
  padding-left: 2vw;
  display: grid;
  grid-area: 1/1/2/16;
  grid-template-columns: repeat(15, 1fr);
  grid-template-rows: auto;
  grid-auto-columns: auto;
  grid-column-gap: min(2vw, 3rem);
}
.fst-ttl {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  grid-area: 1/2/2/15;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.05em;
  position: relative;
}
.fst-ttl__bg {
  width: 100%;
  height: 102%;
  background: #292726;
  transform: scaleX(0);
  transform-origin: left;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.fst-ttl__main span {
  padding: 0 0 1.5% 0.3rem;
  font-family: YakuHanJP, "Lato", sans-serif;
  font-weight: bold;
  font-size: clamp(1.2rem, 0.93333vw, 1.4rem);
  letter-spacing: 0;
}
.fst-ttl__sub {
  font-family: YakuHanJP, "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0;
  transform: rotate(90deg);
  transform-origin: top left;
  position: absolute;
  top: 0.35em;
  left: -4rem;
}
.fst-txt {
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  grid-area: 2/10/2/16;
}
@media screen and (max-width: 1200px) {
  .fst-wrap {
    padding-top: 10rem;
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 1024px) {
  .fst-ttl__sub {
    font-size: clamp(1.2rem, 1.56vw, 1.6rem);
    top: 0.35em;
    left: -3.9vw;
  }
}
@media screen and (max-width: 767px) {
  .fst-cont, .fst-wrap {
    padding-top: 6.5rem;
    padding-bottom: 5rem;
  }
  .fst-txt {
    padding-right: 2vw;
    padding-left: 2vw;
    grid-area: 2/2/2/15;
  }
}
@media screen and (max-width: 600px) {
  .fst-ttl__sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    left: -3.9vw;
  }
}

.page-fv {
  width: 100%;
  height: 32vw;
  position: relative;
  z-index: 99;
}
.page-fv .mask {
  width: 100%;
  height: inherit;
  overflow: hidden;
}
.page-fv .mask-bg {
  width: 100%;
  height: 100%;
  background: #292726;
  transform: scaleX(0);
  transform-origin: left;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.page-fv .mask-img {
  width: 100%;
  height: 100%;
  position: relative;
  opacity: 0;
  z-index: 1;
}
.page-wrap {
  padding-right: 2vw;
  padding-left: 2vw;
}
.page-wrap article {
  display: grid;
  grid-area: 1/1/2/16;
  grid-template-columns: repeat(15, 1fr);
  grid-template-rows: auto;
  grid-auto-columns: auto;
  grid-column-gap: min(2vw, 3rem);
}
@media screen and (max-width: 1024px) {
  .page-wrap article {
    grid-row-gap: 2rem;
  }
}
.page-ttl {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  grid-area: 1/2/2/7;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  line-height: 1.214;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-ttl {
    grid-area: 1/2/2/15;
  }
}
.page-ttl__sub {
  font-size: 71.43%;
}
.page-ttl__sub__en {
  font-family: YakuHanJP, "Lato", sans-serif;
  font-size: clamp(1rem, 0.8vw, 1.2rem);
}
@media screen and (max-width: 1200px) {
  .page-ttl__sub {
    font-size: 1.6rem;
  }
}
.page-ttl__min {
  margin: auto 0 0 0.5rem;
  font-size: clamp(1rem, 0.8vw, 1.2rem);
}
.page-ttl::before {
  content: "";
  width: 2px;
  height: 100%;
  background: #F48A43;
  position: absolute;
  top: 0;
  left: -1.2rem;
}
.page-txt__list {
  margin-bottom: 2rem;
  border-bottom: solid 1px rgba(41, 39, 38, 0.2);
}
.page-txt__list:last-child {
  margin-bottom: 0;
}
.page-cont {
  display: grid;
  grid-area: 1/7/2/15;
}
.page-cont__full {
  grid-area: 1/2/2/15;
}
.page-cont p a {
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 1.07vw;
  line-height: 1.75;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1200px) {
  .page-cont p a {
    font-size: max(1.3rem, 1.083vw);
  }
}
@media screen and (max-width: 767px) {
  .page-cont {
    grid-area: 2/2/2/15;
  }
}

.greeting {
  padding-right: 0;
  padding-left: 0;
}
.greeting .page-wrap article {
  padding-right: 2vw;
  padding-left: 2vw;
}
.greeting .page-wrap article:nth-child(n+2) {
  background: #fff;
}
.greeting .page-cont h3 {
  font-size: 2.53vw;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .greeting .page-cont h3 {
    font-size: 2rem;
  }
}
.greeting .page-cont p mark {
  padding: 0 0.1rem;
  font-weight: bold;
  color: #F48A43;
  background: unset;
}
.greeting .page-cont p svg {
  margin: 0 0 0 2rem;
  vertical-align: sub;
}
.greeting .page-cont__philosophy {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.greeting .page-cont__philosophy span {
  padding: 0 3.6rem 0 3.2rem;
  text-align: center;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 3.47vw;
  font-weight: bold;
  line-height: 1.54;
  letter-spacing: 0.08em;
  color: #F48A43;
}
.greeting .page-cont__philosophy svg {
  width: 1.67vw;
  height: auto;
  position: absolute;
}
.greeting .page-cont__philosophy svg:first-child {
  top: 0;
  left: 0;
}
.greeting .page-cont__philosophy svg:last-child {
  right: 0;
  bottom: -0.4vw;
}
@media screen and (max-width: 767px) {
  .greeting .page-cont__philosophy {
    margin: 0 auto;
  }
  .greeting .page-cont__philosophy span {
    padding: 0 3.6rem 0 3.2rem;
    font-size: 2.8rem;
  }
  .greeting .page-cont__philosophy svg {
    width: 1.3rem;
  }
}
@media screen and (max-width: 480px) {
  .greeting .page-cont__philosophy span {
    font-size: 2.4rem;
  }
}

.data .page-fv .mask-img {
  background: url(/asset/images/fv/data.webp) no-repeat;
  background-size: 100%;
  background-position: 0 -5.5vw;
}
.data-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
}
.data-list__item {
  width: 48.7%;
  aspect-ratio: 367/156;
  margin: 0 0 calc(min(2vw, 3rem) / 1.5) 0;
  padding: 1.33vw 2vw;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 0.6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .data-list__item {
    padding: 1.96vw 2.6vw;
    border-radius: 0.4rem;
  }
}
@media screen and (max-width: 480px) {
  .data-list__item {
    width: 100%;
    margin: 0 0 1.5rem 0;
    padding: 3.125vw 4.2vw;
    aspect-ratio: 8/3;
  }
}
.data-list__item:last-child {
  margin: 0;
}
.data-list__item svg {
  width: auto;
  margin: auto;
  position: absolute;
  top: 0;
  right: 2vw;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .data-list__item svg {
    right: 2.6vw;
  }
}
@media screen and (max-width: 480px) {
  .data-list__item svg {
    right: 4.2vw;
  }
}
.data-list__item:nth-child(1) svg, .data-list__item:nth-child(2) svg, .data-list__item:nth-child(3) svg, .data-list__item:nth-child(5) svg, .data-list__item:nth-child(9) svg {
  height: 6vw;
}
@media screen and (max-width: 767px) {
  .data-list__item:nth-child(1) svg, .data-list__item:nth-child(2) svg, .data-list__item:nth-child(3) svg, .data-list__item:nth-child(5) svg, .data-list__item:nth-child(9) svg {
    height: 11.73vw;
  }
}
@media screen and (max-width: 480px) {
  .data-list__item:nth-child(1) svg, .data-list__item:nth-child(2) svg, .data-list__item:nth-child(3) svg, .data-list__item:nth-child(5) svg, .data-list__item:nth-child(9) svg {
    height: 18.75vw;
  }
}
.data-list__item:nth-child(4) svg, .data-list__item:nth-child(6) svg, .data-list__item:nth-child(7) svg {
  height: 4.7vw;
}
@media screen and (max-width: 767px) {
  .data-list__item:nth-child(4) svg, .data-list__item:nth-child(6) svg, .data-list__item:nth-child(7) svg {
    height: 9.12vw;
  }
}
@media screen and (max-width: 480px) {
  .data-list__item:nth-child(4) svg, .data-list__item:nth-child(6) svg, .data-list__item:nth-child(7) svg {
    height: 16.7vw;
  }
}
.data-list__item:nth-child(8) svg {
  height: 4.044vw;
}
@media screen and (max-width: 767px) {
  .data-list__item:nth-child(8) svg {
    height: 7.82vw;
  }
}
@media screen and (max-width: 480px) {
  .data-list__item:nth-child(8) svg {
    height: 14.6vw;
  }
}
.data-list__item__cont {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .data-list__item__cont {
    height: calc(100% - 1.96vw);
  }
}
@media screen and (max-width: 480px) {
  .data-list__item__cont {
    height: auto;
  }
}
.data-list__item__cont__chd {
  display: flex;
  align-items: flex-end;
}
.data-list__item__cont__chd svg {
  margin: 0;
  position: relative;
  right: 0;
}
.data-list__item__cont__chd p {
  margin: 0 0 0 0.4rem;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  font-size: 3vw;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
}
.data-list__item__cont__chd p span {
  color: #F48A43;
}
.data-list__item__cont__chd p .cate {
  font-size: clamp(1rem, 1.07vw, 1.6rem);
  color: #292726;
}
.data-list__item__cont__chd p .cate + span {
  margin: 0.5rem 0 0 0;
  -webkit-text-stroke: 0.05rem;
  line-height: 0.7;
  letter-spacing: -0.02em;
}
.data-list__item__cont__chd p .sub {
  font-size: 1.6vw;
  line-height: 1;
  color: #292726;
}
@media screen and (max-width: 767px) {
  .data-list__item__cont__chd p {
    margin: 0 0 0 0.6rem;
    font-size: 5vw;
  }
  .data-list__item__cont__chd p .cate {
    font-size: 2.1vw;
  }
  .data-list__item__cont__chd p .sub {
    font-size: 2.6vw;
  }
}
@media screen and (max-width: 480px) {
  .data-list__item__cont__chd p {
    margin: 0 0 0 0.6rem;
    font-size: 11vw;
  }
  .data-list__item__cont__chd p .cate {
    font-size: 3.75vw;
  }
  .data-list__item__cont__chd p .sub {
    margin-left: 0.35rem;
    font-size: 5vw;
  }
}
.data-list__item h4 {
  font-size: clamp(1rem, 1.07vw, 1.6rem);
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .data-list__item h4 {
    font-size: 2.09vw;
  }
}
@media screen and (max-width: 480px) {
  .data-list__item h4 {
    font-size: 3.75vw;
  }
}
.data-list__item__accent {
  margin: auto 0 1rem 0;
  display: flex;
  align-items: flex-end;
  font-family: YakuHanJP, "Lato", sans-serif !important;
  font-size: 4vw;
  font-weight: bold;
  line-height: 0.7;
  letter-spacing: -0.04em;
  color: #F48A43;
}
@media screen and (max-width: 767px) {
  .data-list__item__accent {
    font-size: 6.51vw;
  }
}
@media screen and (max-width: 480px) {
  .data-list__item__accent {
    font-size: 15vw;
  }
}
.data-list__item__sub {
  padding: 0 0 0 0.1em;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(1.8rem, 1.6vw, 2.4rem);
  font-weight: bold;
  letter-spacing: -0.02em;
  color: #292726;
}
@media screen and (max-width: 480px) {
  .data-list__item__sub {
    margin-left: 0.15rem;
    font-size: 5vw;
  }
}

.charm .page-fv .mask-bg::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(218, 233, 241, 0.3);
  mix-blend-mode: soft-light;
  position: absolute;
  top: 0;
  left: 0;
}
.charm .page-fv .mask-img {
  background: url(/asset/images/fv/charm.webp) no-repeat;
  background-size: cover;
  background-position: 0 -16.93vw;
}

.reason .page-fv .mask-bg::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(218, 233, 241, 0.3);
  mix-blend-mode: soft-light;
  position: absolute;
  top: 0;
  left: 0;
}
.reason .page-fv .mask-img {
  background: url(/asset/images/fv/reason.webp) no-repeat;
  background-size: cover;
  background-position: 0 -7.2vw;
}

.page-wrap.works {
  padding: 0;
  position: relative;
  z-index: 99;
}
.page-wrap.works article {
  grid-template-columns: repeat(15, 2fr);
  background: #fff;
  position: sticky;
  top: 0;
  left: 0;
}
.page-wrap.works article:nth-child(2n) {
  background: #292726;
}
.page-wrap.works article:nth-child(2n) h2 {
  color: #fff;
}
.page-wrap.works article:nth-child(2n) h2 span {
  color: #fff;
}
.page-wrap.works article .page-cont {
  width: 100%;
  grid-area: 2/1/2/17;
}
.page-wrap.works article:nth-child(1) .page-cont {
  background: url(/asset/images/works/works01.webp) no-repeat;
  background-size: cover;
  background-position: center;
}
.page-wrap.works article:nth-child(2) .page-cont {
  background: url(/asset/images/works/works02.webp) no-repeat;
  background-size: cover;
  background-position: center;
}
.page-wrap.works article:nth-child(3) .page-cont {
  background: url(/asset/images/works/works03.webp) no-repeat;
  background-size: cover;
  background-position: center;
}
.page-wrap.works article:nth-child(4) .page-cont {
  background: url(/asset/images/works/works04.webp) no-repeat;
  background-size: cover;
  background-position: center;
}
.page-wrap.works article:nth-child(5) .page-cont {
  background: url(/asset/images/works/works05.webp) no-repeat;
  background-size: cover;
  background-position: center;
}
.page-wrap.works .page-ttl {
  margin: min(3.2vw, 4.8rem) 0;
  grid-area: 1/2/2/15;
}
@media screen and (max-width: 1024px) {
  .page-wrap.works article {
    grid-row-gap: 0;
  }
}
@media screen and (max-width: 480px) {
  .page-wrap.works .page-ttl {
    margin: 1.5rem 0;
  }
  .page-wrap.works article:nth-child(2) .page-cont, .page-wrap.works article:nth-child(3) .page-cont {
    background-position: center;
  }
  .page-wrap.works article:nth-child(4) .page-cont {
    background-size: cover;
  }
}

.works-link__btn {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 22.5rem;
  margin: 6.67vw auto 10rem;
  padding: 2rem;
  display: flex;
  justify-content: center;
  border-radius: 0.4rem;
  align-items: center;
  font-weight: bold;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  line-height: 1;
  color: #fff;
  background: #292726;
  transition: background-color 0.6s cubic-bezier(0, 0.55, 0.45, 1);
}
.works-link__btn svg {
  margin: auto 0 auto 2rem;
}
.works-link__btn svg path {
  fill: #fff;
}
.works-link__btn:hover {
  background: #F48A43;
}
@media screen and (max-width: 959px) {
  .works-link__btn {
    margin: 7rem auto 10rem;
  }
}

.company .page-fv .mask-bg::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(218, 233, 241, 0.3);
  mix-blend-mode: soft-light;
  position: absolute;
  top: 0;
  left: 0;
}
.company .page-fv .mask-img {
  background: url(/asset/images/fv/company.webp) no-repeat;
  background-size: 116.8%;
  background-position: -0.86vw -21.6vw;
}

.company .page-cont,
.recruitments .page-cont {
  grid-area: 1/7/2/17;
}
@media screen and (max-width: 1024px) {
  .company .page-cont,
  .recruitments .page-cont {
    grid-area: 2/2/2/15;
  }
}
.company .page-txt__list,
.recruitments .page-txt__list {
  padding-bottom: 1.5rem;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: min(2vw, 3rem);
  grid-row-gap: 0px;
}
@media screen and (max-width: 1024px) {
  .company .page-txt__list,
  .recruitments .page-txt__list {
    grid-template-columns: auto;
    grid-template-rows: auto;
    grid-row-gap: 1em;
  }
}
.company .page-txt__ttl,
.recruitments .page-txt__ttl {
  grid-area: 1/1/2/3;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .company .page-txt__ttl,
  .recruitments .page-txt__ttl {
    grid-area: 1/1/2/9;
  }
}
.company .page-txt__copy,
.recruitments .page-txt__copy {
  grid-area: 1/3/2/11;
  line-height: 1.375;
}
@media screen and (max-width: 1024px) {
  .company .page-txt__copy,
  .recruitments .page-txt__copy {
    grid-area: 2/1/2/9;
  }
}
.company .page-txt__copy span,
.recruitments .page-txt__copy span {
  font-size: 75%;
}
.company .access .page-txt__list,
.recruitments .access .page-txt__list {
  border-bottom: unset;
  padding-bottom: 0;
}
.company .access .page-txt__list iframe,
.recruitments .access .page-txt__list iframe {
  width: 100%;
  grid-area: 1/1/2/10;
  aspect-ratio: 377/212;
}
@media screen and (max-width: 600px) {
  .company .access .page-txt__list iframe,
  .recruitments .access .page-txt__list iframe {
    aspect-ratio: 1/1;
  }
}

.stuff-interview article {
  display: grid;
  grid-area: 1/1/2/16;
  grid-template-columns: repeat(15, 1fr);
  grid-template-rows: auto;
  grid-auto-columns: auto;
}
.stuff-interview__wrap {
  grid-area: 1/2/2/15;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
  grid-column-gap: unset;
}
.stuff-interview__cont {
  width: 39.2vw;
  border-radius: 0.6rem;
}
.stuff-interview__cont__btn {
  width: 4.8rem;
  height: 4.8rem;
  background: #292726;
  border-radius: 0.4rem;
  box-shadow: 0 0 6px 0 rgba(41, 39, 38, 0.18);
  transition: background-color 0.4s cubic-bezier(0, 0.55, 0.45, 1);
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .stuff-interview__cont__btn {
    width: 3.8rem;
    height: 3.8rem;
  }
}
@media screen and (max-width: 767px) {
  .stuff-interview__cont {
    border-radius: 0.4rem;
  }
}
@media screen and (max-width: 600px) {
  .stuff-interview__cont:nth-child(n+3) {
    margin-bottom: 2.6rem;
  }
  .stuff-interview__cont:last-child {
    margin-bottom: 0;
  }
}
.stuff-interview__cont:hover .stuff-interview__cont__btn {
  background: #F48A43;
}
.stuff-interview__cont:hover .stuff-interview__cont__btn svg {
  transform: translateX(100%);
}
.stuff-interview__cont:hover .stuff-interview__cont__btn svg.sub {
  transform: translateX(0%);
}
.stuff-interview-detail .page-ttl {
  grid-area: 1/2/2/6;
}
.stuff-interview-detail .page-ttl::before {
  display: none;
}
.stuff-interview-detail .page-cont {
  display: block;
}
.stuff-interview-detail .page-cont article:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1200px) {
  .stuff-interview-detail .page-cont article {
    grid-row-gap: 0;
  }
}
.stuff-interview-detail .profile-img {
  position: sticky;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .stuff-interview-detail .profile-img {
    width: 100%;
    grid-area: 1/2/2/15;
    position: relative;
    top: 0 !important;
  }
}
.stuff-interview-detail .profile-txt {
  letter-spacing: 0.03em;
  height: -moz-fit-content;
  height: fit-content;
}
.stuff-interview-detail .profile-txt__name {
  font-size: min(1.87vw, 2.8rem);
  line-height: 1;
  font-weight: bold;
  color: #F48A43;
}
@media screen and (max-width: 1200px) {
  .stuff-interview-detail .profile-txt__name {
    font-size: clamp(2rem, 1.867vw, 2.24rem);
  }
}
.stuff-interview-detail .profile-qes h3 {
  grid-area: 1/1/1/16;
  font-size: min(1.87vw, 2.8rem);
  line-height: 1.25;
}
.stuff-interview-detail .profile-qes__icon {
  margin-bottom: 0.5rem;
  font-family: YakuHanJP, "Lato", sans-serif;
  font-size: max(1.07vw, 1.6rem);
  color: #F48A43;
}
.stuff-interview-detail .profile-qes p {
  grid-area: 2/1/2/16;
  font-size: min(1.07vw, 1.6rem);
  overflow-wrap: break-word;
  word-break: break-word;
}
@media screen and (max-width: 1200px) {
  .stuff-interview-detail .profile-qes h3 {
    font-size: clamp(2rem, 1.867vw, 2.24rem);
  }
  .stuff-interview-detail .profile-qes p {
    font-size: max(1.3rem, 1.083vw);
  }
}
.stuff-interview-detail .profile-schedule h3 {
  grid-area: 1/1/1/16;
  font-size: min(1.87vw, 2.8rem);
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .stuff-interview-detail .profile-schedule h3 {
    font-size: clamp(2rem, 1.867vw, 2.24rem);
  }
}
.stuff-interview-detail .profile-schedule ul {
  grid-area: 3/1/3/16;
}
.stuff-interview-detail .profile-schedule ul li {
  padding: 1.5rem 0;
  grid-area: 1/1/1/16;
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  grid-template-rows: auto;
  grid-auto-columns: auto;
  grid-column-gap: min(2vw, 3rem);
  grid-row-gap: min(2vw, 3rem);
  border-bottom: solid 1px rgba(41, 39, 38, 0.2);
}
.stuff-interview-detail .profile-schedule ul li:first-child {
  padding-top: 0;
}
.stuff-interview-detail .profile-schedule__date {
  font-weight: bold;
  color: #F48A43;
  grid-area: 1/1/1/4;
}
.stuff-interview-detail .profile-schedule__ttl {
  grid-area: 1/4/1/16;
  font-weight: bold;
}
.stuff-interview-detail .profile-schedule__txt {
  grid-area: 2/4/2/16;
  overflow-wrap: break-word;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .stuff-interview-detail .profile-schedule ul li {
    grid-row-gap: min(2vw, 3rem);
  }
  .stuff-interview-detail .profile-schedule__date {
    grid-area: 1/1/1/13;
    line-height: 1;
  }
  .stuff-interview-detail .profile-schedule__ttl {
    grid-area: 2/1/2/16;
  }
  .stuff-interview-detail .profile-schedule__txt {
    grid-area: 3/1/3/16;
  }
}
@media screen and (max-width: 600px) {
  .stuff-interview__cont {
    width: 100%;
  }
}
.stuff-img {
  width: 100%;
  aspect-ratio: 98/55;
  background: #000;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0.6rem 0.6rem 0 0;
}
@media screen and (max-width: 767px) {
  .stuff-img {
    border-radius: 0.4rem 0.4rem 0 0;
  }
}
.stuff-txt {
  width: 100%;
  padding: 1.2rem;
  font-weight: bold;
}
.stuff-profile {
  font-family: YakuHanJP, "Lato", sans-serif;
  font-size: min(1.87vw, 2.8rem);
}
@media screen and (max-width: 1200px) {
  .stuff-profile {
    font-size: clamp(1.8rem, 1.867vw, 2.24rem);
  }
}

.welfare .page-fv .mask-bg::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(218, 233, 241, 0.3);
  mix-blend-mode: soft-light;
  position: absolute;
  top: 0;
  left: 0;
}
.welfare .page-fv .mask-img {
  background: url(/asset/images/fv/welfare.webp) no-repeat;
  background-size: cover;
  background-position: 0 -6.93vw;
}
.welfare .data-list__item {
  justify-content: flex-start;
}
.welfare .data-list__item h4 {
  font-size: 1.6vw;
  line-height: 1;
  color: #292726;
}
@media screen and (max-width: 767px) {
  .welfare .data-list__item h4 {
    font-size: clamp(1.6rem, 2.61vw, 2rem);
  }
}
@media screen and (max-width: 480px) {
  .welfare .data-list__item h4 {
    font-size: 5vw;
  }
}
.welfare .data-list__item p {
  margin-top: 1vw;
  padding-left: 0.8rem;
  font-size: clamp(1rem, 1.07vw, 1.6rem);
  font-weight: bold;
  line-height: 1.5;
  color: #F48A43;
  position: relative;
}
.welfare .data-list__item p span {
  color: #292726;
}
.welfare .data-list__item p:nth-child(3) {
  margin-top: 0;
}
.welfare .data-list__item p::before {
  content: "";
  width: 0.3rem;
  height: 0.3rem;
  margin: auto;
  background: #292726;
  position: absolute;
  top: 0.65em;
  left: 0;
}
@media screen and (max-width: 767px) {
  .welfare .data-list__item p {
    margin-top: 1rem;
    font-size: 2.09vw;
  }
}
@media screen and (max-width: 480px) {
  .welfare .data-list__item p {
    font-size: 3.75vw;
  }
}
.welfare .data-list__item svg {
  height: 6vw;
}
@media screen and (max-width: 767px) {
  .welfare .data-list__item svg {
    height: 11.73vw;
  }
}
@media screen and (max-width: 480px) {
  .welfare .data-list__item svg {
    height: 18.75vw;
  }
}
.welfare .data-list__item svg.smallsvg01 {
  height: 4.93vw;
}
@media screen and (max-width: 767px) {
  .welfare .data-list__item svg.smallsvg01 {
    height: 9.12vw;
  }
}
@media screen and (max-width: 480px) {
  .welfare .data-list__item svg.smallsvg01 {
    height: 16.7vw;
  }
}
.welfare .data-list__item svg.smallsvg02 {
  height: 5.62vw;
}
@media screen and (max-width: 767px) {
  .welfare .data-list__item svg.smallsvg02 {
    height: 11.73vw;
  }
}
@media screen and (max-width: 480px) {
  .welfare .data-list__item svg.smallsvg02 {
    height: 18.75vw;
  }
}
.welfare .data-list__item svg.smallsvg03 {
  height: 4.35vw;
}
@media screen and (max-width: 767px) {
  .welfare .data-list__item svg.smallsvg03 {
    height: 9.12vw;
  }
}
@media screen and (max-width: 480px) {
  .welfare .data-list__item svg.smallsvg03 {
    height: 16.7vw;
  }
}
.welfare-txt {
  font-size: min(1.6vw, 2.4rem);
  font-weight: bold;
  line-height: 1.58;
}
@media screen and (max-width: 767px) {
  .welfare-txt {
    font-size: clamp(1.6rem, 2.61vw, 2rem);
  }
}
@media screen and (max-width: 480px) {
  .welfare-txt {
    font-size: 1.6rem;
  }
  .welfare-txt span {
    display: unset;
  }
}

.referral {
  padding-right: 0;
  padding-left: 0;
}
.referral .page-fv .mask-bg::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(218, 233, 241, 0.3);
  mix-blend-mode: soft-light;
  position: absolute;
  top: 0;
  left: 0;
}
.referral .page-fv .mask-img {
  background: url(/asset/images/fv/referral.webp) no-repeat;
  background-size: cover;
  background-position: 0 -21.87vw;
}
.referral article {
  padding-right: 2vw;
  padding-left: 2vw;
}
.referral article:nth-child(3), .referral article:nth-child(4) {
  background: #fff;
}
.referral .page-cont.sec {
  grid-area: 1/7/2/16;
}
@media screen and (max-width: 767px) {
  .referral .page-cont.sec {
    grid-area: 2/2/2/15;
  }
}
.referral .page-cont h3 span:first-child {
  width: max(2.26vw, 2.4rem);
  height: max(2.26vw, 2.4rem);
  margin-right: 0.6rem;
  padding-bottom: 0.233vw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(1.8rem, 1.47vw, 2.2rem);
  line-height: 1;
  border: solid 1px rgba(41, 39, 38, 0.2);
}
.referral .page-cont h3 span:last-child {
  padding: 0.2vw 0 0 0;
}
@media screen and (max-width: 767px) {
  .referral .page-cont h3 span:first-child {
    padding-bottom: 0.25rem;
  }
}
.referral .page-cont h3 + p {
  border-bottom: solid 1px rgba(41, 39, 38, 0.2);
}
.referral .page-cont .process {
  width: 37.3vw;
}
@media screen and (max-width: 767px) {
  .referral .page-cont .process {
    width: calc(48rem - 4vw);
    margin: auto;
  }
}
@media screen and (max-width: 600px) {
  .referral .page-cont .process {
    width: 83vw;
  }
}

.recruitments .page-fv .mask-bg::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(218, 233, 241, 0.3);
  mix-blend-mode: soft-light;
  position: absolute;
  top: 0;
  left: 0;
}
.recruitments .page-fv .mask-img {
  background: url(/asset/images/fv/recruitments.webp) no-repeat;
  background-size: cover;
  background-position: 0 -16.87vw;
}

.recruitments-txt__qes,
.faq-txt__qes {
  margin-bottom: 1rem;
}
.recruitments-txt__answer,
.faq-txt__answer {
  margin-bottom: 1.5rem;
}
.recruitments-txt__icon,
.faq-txt__icon {
  padding-right: 1rem;
  font-size: 137.5%;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .recruitments-txt__qes,
  .faq-txt__qes {
    margin-bottom: 0.5rem;
  }
}

.news-info .page-cont {
  grid-area: 1/7/2/17;
}
@media screen and (max-width: 1024px) {
  .news-info .page-cont {
    grid-area: 2/2/2/15;
  }
}
.news-info li {
  padding: clamp(1.2rem, 1.2vw, 1.8rem) 0;
}
.news-info li a {
  transition: opacity 0.4s cubic-bezier(0, 0.55, 0.45, 1) !important;
}
.news-info li a:hover {
  opacity: 0.6;
}
.news-info li:first-child {
  padding-top: 0;
}
.news-info li svg {
  margin: auto 0 auto 1.33vw;
}
.news-info__txt {
  grid-area: 1/7/2/15;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  grid-template-rows: auto;
  grid-auto-columns: auto;
}
.news-info__txt__date {
  grid-area: 1/1/2/2;
  font-weight: bold;
}
.news-info__txt__cont {
  grid-area: 1/2/2/16;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-detail__anchor {
  overflow-wrap: break-word;
  word-break: break-word;
}
.news-detail__anchor p a {
  text-decoration: underline !important;
}

.other-cont {
  padding-right: 2vw;
  padding-left: 2vw;
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  grid-template-rows: auto;
  grid-auto-columns: auto;
  grid-column-gap: min(2vw, 3rem);
}
.other-cont__stuff a {
  align-items: flex-end !important;
  aspect-ratio: 2/1;
  font-size: 1.8rem !important;
  font-weight: bold !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  position: relative;
  border-radius: 0.4rem;
}
.other-cont__stuff a span {
  position: relative;
  z-index: 3;
}
.other-cont__stuff a::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 0.4rem;
  background: rgba(41, 39, 38, 0.24);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: opacity 0.4s cubic-bezier(0, 0.55, 0.45, 1) !important;
}
.other-cont__stuff a:hover::after {
  opacity: 0;
}
.other-cont ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
  grid-area: 2/2/2/15;
}
@media screen and (max-width: 959px) {
  .other-cont ul {
    justify-content: flex-start;
  }
}
.other-cont ul li {
  width: calc(33.3333333333% - min(2vw, 3rem));
  margin-right: min(2vw, 3rem);
  padding: 0;
  display: flex;
  border-radius: 0.6rem;
}
.other-cont ul li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 959px) {
  .other-cont ul li {
    width: calc(50% - min(2vw, 3rem));
    margin: 0 0 min(2vw, 3rem) 0;
  }
  .other-cont ul li:first-child {
    margin-right: min(2vw, 3rem);
  }
  .other-cont ul li:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .other-cont ul li {
    border-radius: 0.4rem;
  }
}
@media screen and (max-width: 600px) {
  .other-cont ul li {
    width: 100%;
    margin: 0 0 1rem 0;
  }
  .other-cont ul li:first-child {
    margin-right: 0;
  }
}
.other-cont ul li a {
  width: 100%;
  padding: 1.7rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.4rem;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.03em;
  background: #292726;
  transition: background-color 0.4s cubic-bezier(0, 0.55, 0.45, 1), color 0.4s cubic-bezier(0, 0.55, 0.45, 1);
}
.other-cont ul li a span {
  color: #F7F6F0;
}
.other-cont ul li a svg path {
  width: 0.6rem;
  height: 0.6rem;
}
.other-cont ul li a:hover {
  color: #F7F6F0;
  background: #F48A43;
}
.other-cont h3 {
  width: 100%;
  margin-bottom: min(1.73vw, 2.6rem);
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  grid-area: 1/2/2/7;
  line-height: 1.214;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .other-cont h3 {
    margin-bottom: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .other-cont h3 {
    grid-area: 1/2/2/15;
  }
}

.entryform .page-fv .mask-bg::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(218, 233, 241, 0.3);
  mix-blend-mode: soft-light;
  position: absolute;
  top: 0;
  left: 0;
}
.entryform .page-fv .mask-img {
  background: url(/asset/images/fv/form.webp) no-repeat;
  background-size: cover;
  background-position: 0 -23.5vw;
}
.entryform-tel__guide {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  line-height: 1;
}
.entryform-tel__txt {
  line-height: 1;
}
.entryform-tel__txt span {
  line-height: 1;
}
.entryform-tel__txt span a {
  line-height: 1;
}
.entryform-tel__txt__main {
  margin-right: 0.75rem;
  font-size: 3.2rem !important;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}
.entryform-tel__txt__tel {
  margin-right: 0.25rem;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0;
}
.entryform-tel__txt__open {
  margin-top: 1.3rem;
  font-size: 1.6rem;
}
.entryform-tel__cap__accent {
  font-weight: bold;
  color: #F48A43;
}
.entryform-main dl {
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  grid-template-rows: auto;
  grid-auto-columns: auto;
  grid-column-gap: min(2vw, 3rem);
}
@media screen and (max-width: 1200px) {
  .entryform-main dl {
    margin-top: 2.5rem;
  }
}
.entryform-main dl dt {
  grid-area: 1/1/1/5;
  font-size: min(0.93vw, 1.4rem);
  font-weight: bold;
  letter-spacing: 0;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .entryform-main dl dt {
    grid-area: 1/1/1/16;
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}
.entryform-main dl dt .required {
  font-size: 62.5%;
  font-weight: bold;
  color: #F48A43;
  position: absolute;
  top: 0.35rem;
}
.entryform-main dl dd {
  grid-area: 1/5/1/16;
}
.entryform-main dl dd .wpcf7-form-control-wrap {
  width: 100%;
}
.entryform-main dl dd .wpcf7-not-valid-tip {
  margin-top: 0.8rem;
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #F48A43;
}
.entryform-main dl dd > p {
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .entryform-main dl dd {
    grid-area: 2/1/2/16;
  }
}
.entryform-main dl dd input {
  font-size: 1.6rem;
  line-height: 1.75;
}
.entryform-main dl dd input[type=text], .entryform-main dl dd input[type=tel], .entryform-main dl dd input[type=email] {
  width: 100%;
  padding: 1rem;
  background: #fff;
}
.entryform-main dl dd textarea {
  width: 100%;
  padding: 1rem;
  font-size: 1.6rem;
  background: #fff;
}
.entryform-main dl dd .cap {
  margin-top: 1em;
  display: inline-block;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  line-height: 1;
}
.entryform-main dl dd .cap a {
  text-decoration: underline;
  text-underline-offset: 0.4rem;
  display: inline-block;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  line-height: 1;
}
.entryform-main dl dd ul li:first-child {
  margin-right: min(2vw, 3rem);
}
.entryform-cap {
  font-size: 1.2rem;
  line-height: 1.35;
  letter-spacing: 0.03em;
}

.wpcf7-list-item {
  margin-right: 1rem !important;
  margin-left: 0 !important;
}
.wpcf7-list-item.first {
  margin-left: 0;
}

input[type=radio],
input[type=checkbox] {
  opacity: 0;
  position: absolute;
}

.wpcf7-list-item-label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.6rem;
  position: relative;
  cursor: pointer;
}

.wpcf7-list-item-label::before {
  content: "";
  margin-right: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.8rem;
  height: 2.8rem;
  background: #fff;
  border: solid 1px rgba(41, 39, 38, 0.08);
}

.wpcf7-list-item-label::after {
  content: "";
  width: 1rem;
  height: 1rem;
  display: none;
  border-radius: 50%;
  background: #F48A43;
  border: solid 1px #F48A43;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.9rem;
  margin: auto;
}

input[type=radio]:checked + .wpcf7-list-item-label::after,
input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  display: block;
}

input[type=radio]:checked + .wpcf7-list-item-label::before,
input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  border: solid 1px #F48A43;
}

.wpcf7-response-output {
  margin: 0.8rem 0 0 0 !important;
  padding: 0 !important;
  display: block;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #F48A43;
  border: unset !important;
}

.stuff-interview-detail .fst-cont,
.notFound .fst-cont,
.thankyou .fst-cont {
  padding-bottom: 0;
}

.navigation.pagination {
  width: 100%;
  margin-top: 2.67vw;
  text-align: center;
}
.navigation.pagination .page-numbers {
  padding: 0 0.35rem;
  font-family: YakuHanJP, "Lato", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.03em;
  opacity: 0.6;
  transition: color 0.4s cubic-bezier(0, 0.55, 0.45, 1);
}
.navigation.pagination .page-numbers.next, .navigation.pagination .page-numbers.prev {
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
}
.navigation.pagination .page-numbers.next, .navigation.pagination .page-numbers.prev, .navigation.pagination .page-numbers.current {
  opacity: 1;
}
.navigation.pagination .page-numbers:hover {
  color: #F48A43;
  opacity: 1;
}
@media screen and (max-width: 959px) {
  .navigation.pagination {
    margin-top: 2.6rem;
  }
}/*# sourceMappingURL=style.css.map */