@charset "UTF-8";
/* ================================
Reset
================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  word-break: break-all;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dd {
  margin-left: 0;
}

a {
  display: inline-block;
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  word-wrap: break-word;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

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;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

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

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

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

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

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

textarea {
  overflow: auto;
  resize: none;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

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

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

picture {
  display: block;
  width: 100%;
  height: 100%;
}

img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ================================
Base
================================ */
html {
  font-size: min(1.3vw, 16px);
  scroll-behavior: smooth;
  scroll-padding-top: 5.6rem;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 4.3vw;
  }
}

body {
  font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  color: #222;
  letter-spacing: 0.04em;
}

* img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ================================
Container
================================ */
/* root container */
.l-wrapper {
  overflow-x: clip;
}

/* main container */
.l-content-container {
  background-color: #fff;
  margin: 5.6rem 0 0;
}
@media screen and (max-width: 768px) {
  .l-content-container {
    margin: 3.3rem 0 0;
  }
}

/* container */
.l-container {
  width: calc(100% - 2rem);
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.l-container.-sm {
  max-width: 67.5rem;
}
.l-container.-xs {
  max-width: 48.8rem;
}

/* ================================
Header
================================ */
.l-header {
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5.6rem;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.l-header__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 2.5rem;
}
.l-header__logo {
  width: 7.5rem;
  aspect-ratio: 120/58;
  margin: 0 auto 0 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.l-header__logo:hover {
  opacity: 0.7;
}
.l-header__toggle {
  display: none;
}
.l-header.is-fixed {
  position: fixed;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .l-header {
    height: 3.3rem;
  }
  .l-header__logo {
    width: 5rem;
  }
  .l-header__toggle {
    display: block;
    position: relative;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    z-index: 1000;
    width: 3.3rem;
    height: 3.3rem;
    cursor: pointer;
    margin: 0 -1rem 0 0;
  }
  .l-header__toggle span {
    position: absolute;
    left: 0.9rem;
    display: inline-block;
    width: 1.5rem;
    height: 0.1rem;
    background-color: #222;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .l-header__toggle span:nth-of-type(1) {
    top: 1.1rem;
  }
  .l-header__toggle span:nth-of-type(2) {
    top: 1.6rem;
  }
  .l-header__toggle span:nth-of-type(3) {
    bottom: 1.1rem;
  }
  .l-header__toggle.is-active span:nth-of-type(1) {
    -webkit-transform: translateY(0.5rem) rotate(45deg);
            transform: translateY(0.5rem) rotate(45deg);
  }
  .l-header__toggle.is-active span:nth-of-type(2) {
    opacity: 0;
  }
  .l-header__toggle.is-active span:nth-of-type(3) {
    -webkit-transform: translateY(-0.5rem) rotate(-45deg);
            transform: translateY(-0.5rem) rotate(-45deg);
  }
}

.l-header-drawer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem 2.5rem;
}
.l-header-drawer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 2.5rem;
}
.l-header-drawer__menu-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.04em;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}
.l-header-drawer__menu-item a {
  display: block;
}
.l-header-drawer__menu-item.menu-item-blank a {
  pointer-events: none;
}
.l-header-drawer__menu-item.menu-item-inactive {
  opacity: 0.7;
  pointer-events: none;
}
.l-header-drawer__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.3rem 2.5rem;
}
.l-header-drawer__btn.-engineer {
  color: #fff;
  background: linear-gradient(-120deg, #d9c07d, #eca900);
  border: none;
}
.l-header-drawer__btn.-engineer:hover {
  color: #eca900;
  background: #fff;
}
@media screen and (min-width: 769px) {
  .l-header-drawer .l-header-drawer__menu-item a {
    position: relative;
    padding: 0.5rem;
  }
  .l-header-drawer .l-header-drawer__menu-item a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transition: -webkit-transform 0.2s linear;
    transition: -webkit-transform 0.2s linear;
    transition: transform 0.2s linear;
    transition: transform 0.2s linear, -webkit-transform 0.2s linear;
  }
  .l-header-drawer .l-header-drawer__menu-item .sub-menu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 100%);
            transform: translate(-50%, 100%);
    color: #fff;
    background-color: #000;
    padding: 1rem;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
  }
  .l-header-drawer .l-header-drawer__menu-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
  }
  .l-header-drawer .l-header-drawer__menu-item:hover > a::after, .l-header-drawer .l-header-drawer__menu-item.menu-item-current > a::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@media screen and (max-width: 768px) {
  .l-header-drawer {
    visibility: hidden;
    opacity: 0;
    height: 0;
    position: fixed;
    z-index: 500;
    top: 0;
    right: 0;
    width: 100%;
    background-color: #fff;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 4.5rem 1rem 2.5rem;
  }
  .l-header-drawer.is-active {
    visibility: visible;
    opacity: 1;
    height: 100lvh;
  }
  .l-header-drawer__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .l-header-drawer__menu-item {
    display: block;
    font-size: 1.1rem;
    font-weight: 400;
    border-bottom: 1px solid #ddd;
  }
  .l-header-drawer__menu-item a {
    padding: 0.9rem 0;
  }
  .l-header-drawer__menu-item .sub-menu-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .l-header-drawer__menu-item .sub-menu-heading a {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .l-header-drawer__menu-item .sub-menu {
    visibility: hidden;
    display: block;
    opacity: 0;
    height: 0;
    -webkit-transition: opacity 0.2s ease-out, height 0.2s ease-out;
    transition: opacity 0.2s ease-out, height 0.2s ease-out;
  }
  .l-header-drawer__menu-item .sub-menu .l-header-drawer__menu-item a {
    padding: 0.9rem 1.3rem;
  }
  .l-header-drawer__menu-item .sub-menu .l-header-drawer__menu-item:last-of-type {
    border-bottom: none;
  }
  .l-header-drawer__menu-item .sub-menu-toggle {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 3.3rem;
    height: 3.3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .l-header-drawer__menu-item .sub-menu-toggle::before {
    content: "＋";
    color: #f9c985;
  }
  .l-header-drawer__menu-item.is-open .sub-menu {
    visibility: visible;
    opacity: 1;
    height: auto;
    border-top: 1px solid #ddd;
  }
  .l-header-drawer__menu-item.is-open .sub-menu-toggle::before {
    content: "－";
  }
  .l-header-drawer__cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .l-header-drawer__btn::after {
    content: "";
    display: inline-block;
    width: 0.4rem;
    height: 0.4rem;
    border-top: 0.1rem solid currentColor;
    border-right: 0.1rem solid currentColor;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

/* ================================
Footer
================================ */
.l-footer {
  color: #fff;
  background-color: #1d1d1e;
  padding: 10.6rem 0;
}
.l-footer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.9rem 3.8rem;
  margin: 0 0 8.8rem;
}
.l-footer__copyright {
  display: block;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 6.3rem 0 2.5rem;
  }
  .l-footer__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 6.3rem;
  }
  .l-footer__copyright {
    font-size: 0.9rem;
    text-align: center;
  }
}

.l-footer-company__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin: 0 0 2.5rem;
}
.l-footer-company__logo {
  width: 9.3rem;
  aspect-ratio: 148/80;
  background-color: #fff;
  padding: 0.6rem;
}
.l-footer-company__logo img {
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-footer-company__sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1.5rem;
}
.l-footer-company__sns-item {
  height: 1.8rem;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.l-footer-company__sns-item:hover {
  opacity: 0.7;
}
.l-footer-company__address {
  font-size: 0.9rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .l-footer-company__header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 1.5rem;
  }
  .l-footer-company__address {
    font-size: 0.9rem;
  }
}

.l-footer-nav__menu-item a {
  display: block;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.l-footer-nav__menu-item a:hover {
  opacity: 0.7;
}
.l-footer-nav__menu-item:not(:last-of-type) {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .l-footer-nav__menu-item {
    text-align: center;
  }
  .l-footer-nav__menu-item:not(:last-of-type) {
    margin-bottom: 1rem;
  }
}

.l-footer-banner__item {
  width: 17.5rem;
  aspect-ratio: 560/316;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.l-footer-banner__item:hover {
  opacity: 0.7;
}

.l-footer-cta__tel {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1.9rem;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.l-footer-cta__tel:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .l-footer-cta__tel {
    margin: 0 0 1.5rem;
  }
  .l-footer-cta__mail {
    min-width: 12.5rem !important;
    padding: 0.9rem 2.5rem !important;
  }
}

/* ================================
Common module
================================ */
/* heading */
.c-heading {
  font-size: 2.5rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  margin: 0 0 5rem;
}
.c-heading::after {
  display: block;
  content: attr(data-en);
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  background: linear-gradient(30deg, #eca900, #d9c07d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-heading {
    font-size: 1.8rem;
    margin: 0 0 2.5rem;
  }
  .c-heading::after {
    font-size: 1rem;
    margin: 0.5rem auto 0;
  }
}
.c-heading.-gd::after {
  background: linear-gradient(15deg, #ffffff, #dec688);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c-heading.-bk::after {
  background: -webkit-gradient(linear, left top, right top, from(#222), to(#666));
  background: linear-gradient(to right, #222, #666);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c-heading.-wh {
  color: #fff;
}

.c-underline-heading {
  position: relative;
  font-size: 1.9rem;
  font-weight: 700;
  text-align: center;
  padding: 0 0 1.9rem;
  margin: 0 0 5rem;
}
.c-underline-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 4rem;
  height: 0.3rem;
  background-color: currentColor;
}
@media screen and (max-width: 768px) {
  .c-underline-heading {
    font-size: 1.6rem;
    padding: 0 0 1.3rem;
    margin: 0 0 2.5rem;
  }
}

/*sentence*/
.c-sentence + .c-sentence {
  margin-top: 1.6em;
}
.c-sentence.-center_only_desktop {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-sentence.-center_only_desktop {
    text-align: left;
  }
}

/* button */
.c-btn {
  min-width: 15.6rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1rem;
  color: #222;
  letter-spacing: 0.04em;
  border-radius: 9999px;
  background-color: #fff;
  border: 1px solid #222;
  padding: 1.1rem 2.5rem;
  -webkit-transition: background-color 0.2s linear, color 0.2s linear;
  transition: background-color 0.2s linear, color 0.2s linear;
}
.c-btn:hover {
  color: #fff;
  background-color: #000;
}
.c-btn.-bk {
  color: #fff;
  background-color: #000;
}
.c-btn.-bk:hover {
  color: #000;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .c-btn {
    width: 100%;
  }
}

.c-arrow-btn {
  min-width: 16.9rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1rem;
  color: #fff;
  font-weight: 700;
  padding: 0.6rem 0.6rem 0.6rem 1.5rem;
  border-radius: 9999px;
  background-color: #000;
  -webkit-transition: background-color 0.2s linear, color 0.2s linear;
  transition: background-color 0.2s linear, color 0.2s linear;
}
.c-arrow-btn__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  padding: 0 0 0 1rem;
}
.c-arrow-btn__ico {
  position: relative;
  z-index: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 2.8rem;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-arrow-btn__ico::before {
  content: "";
  display: inline-block;
  width: 1.3rem;
  aspect-ratio: 21/4;
  background: url(../img/cmn/arrow_right_wh.svg) no-repeat center center/contain;
}
.c-arrow-btn__ico::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background-color: #000;
  border-radius: 50%;
  -webkit-transition: width 0.2s linear, height 0.2s linear;
  transition: width 0.2s linear, height 0.2s linear;
}
.c-arrow-btn:hover {
  color: #000;
  background-color: #fff;
}
.c-arrow-btn:hover .c-arrow-btn__ico::after {
  width: 100%;
  height: 100%;
}
.c-arrow-btn.-wh {
  color: #222;
  background-color: #fff;
}
.c-arrow-btn.-wh .c-arrow-btn__text {
  text-align: left;
}
.c-arrow-btn.-wh:hover {
  color: #fff;
  background-color: #000;
}

.c-btn__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.6rem 1.3rem;
}
@media screen and (max-width: 768px) {
  .c-btn__wrap {
    gap: 0.5rem 0.5rem;
  }
}
.c-btn__wrap.-left {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.c-btn__wrap.-right {
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
.c-btn__wrap.-vertical_only_desktop {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .c-btn__wrap.-vertical_only_desktop {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.c-btn__wrap.-right_only_desktop {
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
@media screen and (max-width: 768px) {
  .c-btn__wrap.-right_only_desktop {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.c-btn__wrap.-left_only_desktop {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
@media screen and (max-width: 768px) {
  .c-btn__wrap.-left_only_desktop {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* table */
.c-table {
  width: 100%;
  table-layout: fixed;
}
.c-table th, .c-table td {
  padding: 1.5rem 0;
}
.c-table th {
  width: 12.5rem;
  font-weight: 700;
  white-space: nowrap;
  border-bottom: 2px solid #ddd;
}
.c-table td {
  font-weight: 500;
  border-bottom: 2px solid #ddd;
}
.c-table tr:last-child th, .c-table tr:last-child td {
  border-bottom: none;
  padding-bottom: 0;
}
.c-table__heading {
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.c-table__sentence {
  margin: 0 0 1rem;
}
.c-table__sentence + .c-table__heading {
  margin-top: 1rem;
}
.c-table.-twotone th {
  border-bottom-color: #222;
}
@media screen and (max-width: 768px) {
  .c-table th, .c-table td {
    display: block;
    width: 100%;
  }
  .c-table th {
    padding: 1.5rem 0 1rem;
    border-bottom: none;
  }
  .c-table td {
    padding: 0 0 1.5rem;
  }
}

/* pager */
.c-pager__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.6rem 0.6rem;
}
.c-pager__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 0.2rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}
.c-pager__item.current {
  color: #fff;
  background-color: #222;
}
.c-pager__item.prev::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  aspect-ratio: 1/1;
  border-left: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-pager__item.next::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  aspect-ratio: 1/1;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-pager__item:hover {
  opacity: 0.7;
}
.c-pager .screen-reader-text {
  display: none;
}
/* breadcrumbs */
.c-breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-breadcrumbs__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
.c-breadcrumbs__item a {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.c-breadcrumbs__item a:hover {
  opacity: 0.7;
}
.c-breadcrumbs__item:not(:last-of-type)::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1px;
  background-color: currentColor;
  margin: 0 0.5em;
}
.c-breadcrumbs__item:first-of-type::before {
  content: "";
  display: inline-block;
  width: 0.6rem;
  aspect-ratio: 1/1;
  background-color: currentColor;
  border-radius: 50%;
  margin: 0 0.5em 0 0;
}
/* media object */
.c-media-object {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem 2.5rem;
}
.c-media-object__img-wrap {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32.5rem;
}
.c-media-object__img {
  aspect-ratio: 520/310;
}
.c-media-object__img img {
  border-radius: 6.3rem;
}
.c-media-object__sub-title {
  display: block;
  font-family: "Oswald", sans-serif;
  color: #ddd;
  font-size: 3.8rem;
  text-transform: capitalize;
  font-weight: 700;
  line-height: 1;
  text-align: right;
  mix-blend-mode: difference;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  margin: -0.6em 0 0;
}
.c-media-object__main-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 2.5rem;
}
.c-media-object__desc {
  max-width: 32.5rem;
}
.c-media-object:not(:last-of-type) {
  margin-bottom: 13.8rem;
}
@media screen and (min-width: 769px) {
  .c-media-object:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  .c-media-object {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .c-media-object__img-wrap {
    width: 100%;
  }
  .c-media-object__img img {
    border-radius: 3.8rem;
  }
  .c-media-object__sub-title {
    font-size: 2.5rem;
    margin: -0.5em 0 0;
  }
  .c-media-object__main-title {
    font-size: 1.8rem;
    margin: 0 0 1rem;
  }
  .c-media-object__desc {
    max-width: initial;
  }
  .c-media-object:not(:last-of-type) {
    margin-bottom: 4.4rem;
  }
}

/* FAQ */
.c-faq-list__item {
  cursor: pointer;
}
.c-faq-list__item.is-open .c-faq-list__header::after {
  content: "－";
}
.c-faq-list__item.is-open .c-faq-list__content {
  visibility: visible;
  opacity: 1;
  height: auto;
  padding: 1.5rem;
}
.c-faq-list__item:not(:last-of-type) {
  margin-bottom: 0.5rem;
}
.c-faq-list__header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: first baseline;
      -ms-flex-align: first baseline;
          align-items: first baseline;
  gap: 0 1.5rem;
  background-color: #fff;
  border-radius: 0.6rem;
  padding: 1rem 1.5rem;
}
.c-faq-list__header::before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "Q";
  width: 2.3rem;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  font-weight: 700;
  border-radius: 50%;
  background-color: #222;
}
.c-faq-list__header::after {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "＋";
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}
.c-faq-list__question {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 500;
}
.c-faq-list__content {
  visibility: hidden;
  opacity: 0;
  height: 0;
  padding: 0 1.5rem;
  -webkit-transition: opacity 0.2s ease-out, height 0.2s ease-out, padding 0.2s ease-out;
  transition: opacity 0.2s ease-out, height 0.2s ease-out, padding 0.2s ease-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: first baseline;
      -ms-flex-align: first baseline;
          align-items: first baseline;
  gap: 0 1.5rem;
}
.c-faq-list__content::before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "A";
  width: 2.3rem;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  font-weight: 700;
  border-radius: 50%;
  background: linear-gradient(30deg, #ECA900, #D9C07D);
}
.c-faq-list__answer {
  font-size: 0.9rem;
}
@media screen and (max-width: 768px) {
  .c-faq-list__header {
    gap: 0 0.8rem;
  }
  .c-faq-list__content {
    gap: 0 0.8rem;
  }
}

/* Flow List */
.c-flow-list__item {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 4rem;
}
.c-flow-list__item:not(:last-of-type) {
  padding-bottom: 4rem;
}
.c-flow-list__item:not(:last-of-type)::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 1.7rem;
  display: block;
  width: 1px;
  height: 100%;
  background-color: #f9c985;
}
.c-flow-list__num {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 3.5rem;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background-color: #f9c985;
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  text-align: center;
}
.c-flow-list__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-flow-list__content > *:not(:last-child) {
  margin-bottom: 1rem;
}
.c-flow-list__title {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .c-flow-list__item {
    gap: 0 1rem;
  }
}

/* blog card */
.c-blog-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem 2.5rem;
}
.c-blog-card__thumb {
  width: 100%;
  aspect-ratio: 420/280;
  border-radius: 1.5rem;
  overflow: hidden;
}
.c-blog-card__thumb img {
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}
.c-blog-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 0.8rem;
}
.c-blog-card__category {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  background-color: #fff;
  border-radius: 9999px;
  border: 1px solid #222;
  padding: 0.5rem 1rem;
}
.c-blog-card__date {
  color: #777;
  font-size: 0.9rem;
  font-weight: 700;
}
.c-blog-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.c-blog-card__desc {
  font-weight: 500;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 1.3rem 0 0;
}
.c-blog-card__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem 0.5rem;
  margin: 1.1rem 0 0;
}
.c-blog-card__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.3rem;
  font-size: 0.9rem;
}
.c-blog-card__tag::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  width: 1em;
  aspect-ratio: 1/1;
  background: url(../img/cmn/tag_ico.svg) no-repeat center center/contain;
}
.c-blog-card.-wide {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 1rem 0;
  border-bottom: 1px solid #ddd;
}
.c-blog-card.-wide .c-blog-card__thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 9.4rem;
  border-radius: 0.8rem;
}
.c-blog-card.-wide .c-blog-card__title {
  font-size: 1.3rem;
  -webkit-line-clamp: 1;
}
.c-blog-card:hover .c-blog-card__thumb img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media screen and (max-width: 768px) {
  .c-blog-card__desc {
    -webkit-line-clamp: 3;
  }
  .c-blog-card.-wide .c-blog-card__meta {
    margin: 0 0 0.5rem;
  }
  .c-blog-card.-wide .c-blog-card__title {
    font-size: 0.9rem;
    -webkit-line-clamp: 3;
  }
}

.c-blog-card__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.5rem 2.5rem;
}
.c-blog-card__wrap .c-blog-card {
  width: calc(50% - 1.3rem);
}
@media screen and (max-width: 768px) {
  .c-blog-card__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem 0;
  }
  .c-blog-card__wrap .c-blog-card {
    width: 100%;
  }
}

/* interview card */
.c-interview-card {
  width: 100%;
  max-width: 45.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem 1rem;
}
.c-interview-card__thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 18.8rem;
  aspect-ratio: 300/400;
  border-radius: 3.8rem;
  overflow: hidden;
}
.c-interview-card__thumb img {
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}
.c-interview-card__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-interview-card__catch {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1.3rem;
}
.c-interview-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.5rem 0.5rem;
}
.c-interview-card__meta-item {
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid #222;
  border-radius: 9999px;
  padding: 0.5rem 0.8rem;
  background-color: #fff;
}
.c-interview-card__meta-item.-job {
  color: #fff;
  background-color: #222;
}
.c-interview-card:not(:first-of-type) {
  margin-top: -2.5rem;
}
.c-interview-card:nth-of-type(even) {
  margin-left: auto;
}
.c-interview-card:hover .p-interview-card__thumb img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media screen and (max-width: 768px) {
  .c-interview-card {
    max-width: initial;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-interview-card__thumb {
    width: 100%;
    aspect-ratio: 343/230;
    border-radius: 3.8rem;
  }
  .c-interview-card__catch {
    font-size: 1.3rem;
    margin: 0 0 1rem;
  }
  .c-interview-card__catch br {
    display: none;
  }
  .c-interview-card__meta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .c-interview-card:not(:first-of-type) {
    margin-top: 4.4rem;
  }
}

.c-interview-card__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

/* Contact Form 7 */
.wpcf7-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.5rem 2.5rem;
}
.wpcf7-item.-required .wpcf7-form-label::before {
  content: "必須";
  color: #FA9E00;
}
.wpcf7-item.-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.wpcf7-item.-vertical .wpcf7-item-col--label {
  width: 100%;
}
.wpcf7-item.-vertical .wpcf7-item-col--controls {
  width: 100%;
}
.wpcf7-item.-vertical .wpcf7-form-label {
  min-height: initial;
}
.wpcf7-item:not(:last-of-type) {
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .wpcf7-item:not(:last-of-type) {
    margin-bottom: 1.5rem;
  }
}

.wpcf7-item-col--label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 18.1rem;
}
.wpcf7-item-col--controls {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem 0.5rem;
}
.wpcf7-form-label {
  min-height: 2.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: first baseline;
      -ms-flex-align: first baseline;
          align-items: first baseline;
  gap: 0 0.6rem;
  font-weight: 700;
}
.wpcf7-form-label::before {
  content: "任意";
  color: #333;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  border: 1px solid currentColor;
  border-radius: 9999px;
  padding: 0 0.5rem 0.1rem;
}
@media screen and (max-width: 768px) {
  .wpcf7-form-label {
    min-height: initial;
  }
}

.wpcf7-form-control-block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.3rem 0.6rem;
}
.wpcf7-form-control-block.-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.wpcf7-text {
  width: 100%;
  height: 2.9rem;
  background-color: #f1f1f1;
  border-radius: 0.5rem;
  padding: 0 1.3rem;
}
.wpcf7-text.-sm {
  width: 12.5rem;
}
.wpcf7-textarea {
  width: 100%;
  height: 15rem;
  background-color: #f1f1f1;
  border-radius: 0.5rem;
  padding: 1.3rem;
}
.wpcf7-form-control-wrap {
  width: 100%;
  height: 100%;
}

.wpcf7-not-valid-tip {
  font-size: 0.8em;
  white-space: nowrap;
}

.wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem 0;
}

.wpcf7-list-item {
  margin: 0;
}
.wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
}
.wpcf7-list-item input {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.8rem;
  accent-color: #222;
}

.wpcf7-spinner {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  margin: 0;
}

.wpcf7-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 3.8rem 0 0;
}
.wpcf7-form-button {
  position: relative;
  height: 4rem;
  padding: 0;
}
.wpcf7-form-button .c-arrow-btn__text {
  height: 100%;
  padding: 0.6rem;
}
.wpcf7-form-button .c-arrow-btn__ico {
  position: absolute;
  top: 0.6rem;
  right: 1.5rem;
}
.wpcf7-form-button:has(input:disabled) {
  pointer-events: none;
}
/* CTA */
.c-cta {
  position: relative;
  z-index: 0;
  background-color: #1d1d1e;
  padding: 23.1rem 0 14.4rem;
}
.c-cta__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  aspect-ratio: 1440/735;
}
.c-cta__btn {
  position: relative;
  z-index: 0;
  width: 44.5rem;
  height: 17.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem 0;
  margin: 0 auto;
}
.c-cta__btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 90%;
  height: 90%;
  background: -webkit-gradient(linear, left top, right top, from(#e7b873), to(#f0dbb7));
  background: linear-gradient(to right, #e7b873, #f0dbb7);
  border-radius: 9999px;
  -webkit-transition: width 0.2s linear, height 0.2s linear;
  transition: width 0.2s linear, height 0.2s linear;
}
.c-cta__btn:hover::before {
  width: 100%;
  height: 100%;
}
.c-cta__btn-text01 {
  font-family: "Oswald", sans-serif;
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1;
}
.c-cta__btn-text02 {
  font-weight: 700;
}
.c-cta__typo {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 11.3rem;
  background: url(../img/cmn/cta_typo.svg) repeat-x 0 0/auto 100%;
  -webkit-animation: cta_typo_loop 50s linear infinite;
          animation: cta_typo_loop 50s linear infinite;
}
@-webkit-keyframes cta_typo_loop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -58.3rem 0;
  }
}
@keyframes cta_typo_loop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -58.3rem 0;
  }
}
@media screen and (max-width: 768px) {
  .c-cta {
    padding: 10rem 0 12.5rem;
  }
  .c-cta__bg {
    aspect-ratio: 375/260;
  }
  .c-cta__btn {
    width: 100%;
    height: 8.4rem;
    gap: 0.5rem 0;
  }
  .c-cta__btn-text01 {
    font-size: 3.1rem;
  }
  .c-cta__btn-text02 {
    font-size: 1rem;
  }
  .c-cta__typo {
    height: 7.5rem;
    -webkit-animation: cta_typo_loop_sp 25s linear infinite;
            animation: cta_typo_loop_sp 25s linear infinite;
  }
  @-webkit-keyframes cta_typo_loop_sp {
    from {
      background-position: 0 0;
    }
    to {
      background-position: -81.1rem 0;
    }
  }
  @keyframes cta_typo_loop_sp {
    from {
      background-position: 0 0;
    }
    to {
      background-position: -81.1rem 0;
    }
  }
}

/* ================================
Top
================================ */
.p-top-sec__sub-heading {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Oswald", sans-serif;
  font-size: 10.9rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  mix-blend-mode: difference;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.p-top-sec__main-heading {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-top-sec__sub-heading {
    font-size: 5.6rem;
    white-space: nowrap;
  }
  .p-top-sec__main-heading {
    font-size: 3.8rem;
  }
}

.p-top-about {
  color: #fff;
  padding: 9.4rem 0 42.5rem;
}
.p-top-about__sub-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.4rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
  background: -webkit-gradient(linear, left top, right top, from(#e7b873), to(#f0dbb7));
  background: linear-gradient(to right, #e7b873, #f0dbb7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-top-about__sub-heading::after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#e7b873), to(#f0dbb7));
  background: linear-gradient(to right, #e7b873, #f0dbb7);
}
.p-top-about__main-heading {
  font-size: 4.8rem;
  font-weight: 700;
  margin: 0 0 5rem;
}
.p-top-about__desc {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 2;
}
.p-top-about__desc + .p-top-about__desc {
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  .p-top-about {
    padding: 5.6rem 0;
  }
  .p-top-about__sub-heading {
    font-size: 1rem;
    margin: 0 0 0.5rem;
  }
  .p-top-about__sub-heading::after {
    width: 1.5rem;
  }
  .p-top-about__main-heading {
    font-size: 3.3rem;
    line-height: 1.2;
    margin: 0 0 2.5rem;
  }
  .p-top-about__desc {
    font-size: 1rem;
    font-weight: 500;
  }
  .p-top-about__desc + .p-top-about__desc {
    margin-top: 1.6em;
  }
}

.p-top-business__inner {
  position: relative;
  padding: 10.6rem 0 0;
}
.p-top-business__sub-heading {
  margin: -0.55em 0 0;
}
.p-top-business__main-heading {
  letter-spacing: 0.1em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.p-top-business__area01 {
  padding: 0 0 13.8rem;
  margin: -25rem 0 0;
}
.p-top-business__area02 {
  position: relative;
  z-index: 0;
  background-color: #f1f1f1;
  padding: 0 0 15.6rem;
}
.p-top-business__area02::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -16.9rem;
  left: 0;
  display: block;
  width: 100%;
  height: 16.9rem;
  background: url(../img/cmn/wave_object.png) no-repeat top left/100% 100%;
}
.p-top-business__block {
  position: relative;
  width: 48.8rem;
  padding: 17.5rem 0 0;
  margin: 0 auto;
}
.p-top-business__block:not(:last-of-type) {
  margin-bottom: 8.1rem;
}
.p-top-business__block02 {
  padding-top: 6.3rem;
  margin: 0 auto 0 0;
}
.p-top-business__block03 {
  margin: 0 0 0 auto;
}
.p-top-business__block03 .p-top-business__title {
  font-size: 3.1rem;
}
.p-top-business__title {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  color: #dddddd;
  font-size: 3.8rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  white-space: nowrap;
  letter-spacing: 0.1em;
  mix-blend-mode: difference;
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
}
.p-top-business__content {
  position: relative;
  z-index: 0;
  aspect-ratio: 778/470;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding: 0 0 3.3rem;
}
.p-top-business__content:hover .p-top-business__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.p-top-business__content:hover .p-top-business__btn::after {
  width: 100%;
  height: 100%;
}
.p-top-business__img {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 6.3rem;
}
.p-top-business__img img {
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}
.p-top-business__footer {
  width: 82.0512820513%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem 2.5rem;
  margin: 0 auto;
}
.p-top-business__desc {
  color: #fff;
  font-weight: 700;
}
.p-top-business__btn {
  position: relative;
  z-index: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 5.5rem;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-top-business__btn::before {
  content: "";
  display: inline-block;
  width: 1.3rem;
  aspect-ratio: 21/4;
  background: url(../img/cmn/arrow_right_wh.svg) no-repeat center center/contain;
}
.p-top-business__btn::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background-color: #000;
  border: 1px solid #fff;
  border-radius: 50%;
  -webkit-transition: width 0.2s linear, height 0.2s linear;
  transition: width 0.2s linear, height 0.2s linear;
}
@media screen and (max-width: 768px) {
  .p-top-business__inner {
    padding: 11.3rem 0 0;
  }
  .p-top-business__sub-heading {
    top: -2.8rem;
    margin: 0;
  }
  .p-top-business__main-heading {
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    letter-spacing: 0;
  }
  .p-top-business__area01 {
    padding: 0 0 3.5rem;
    margin: 2.5rem 0 0;
  }
  .p-top-business__area02 {
    padding: 0 0 7.5rem;
  }
  .p-top-business__area02::before {
    top: -3.9rem;
    height: 3.9rem;
  }
  .p-top-business__block {
    width: 100%;
    padding: 10rem 0 0;
  }
  .p-top-business__block:not(:last-of-type) {
    margin-bottom: 2.5rem;
  }
  .p-top-business__block02 {
    padding-top: 3.8rem;
  }
  .p-top-business__block02 .p-top-business__title {
    font-size: 2.6rem;
  }
  .p-top-business__block03 {
    padding-top: 7.5rem;
  }
  .p-top-business__block03 .p-top-business__title {
    font-size: 2.2rem;
  }
  .p-top-business__title {
    font-size: 1.9rem;
  }
  .p-top-business__content {
    aspect-ratio: initial;
    gap: 1.5rem 0;
    padding: 0;
  }
  .p-top-business__img {
    position: initial;
    aspect-ratio: 343/206;
    border-radius: 3.1rem;
  }
  .p-top-business__desc {
    color: #222;
  }
  .p-top-business__footer {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-top-business__btn {
    width: 4.1rem;
    margin: 0 0 0 auto;
  }
}

.p-top-recruit {
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#f1f1f1), color-stop(50%, #f1f1f1), color-stop(50%, #fff), to(#fff));
  background: linear-gradient(to bottom, #f1f1f1 0%, #f1f1f1 50%, #fff 50%, #fff 100%);
  padding: 0 0 11.3rem;
}
.p-top-recruit__wrap {
  border-radius: 6.3rem;
  background: url(../img/top/recruit_bg.jpg) no-repeat center center/cover;
  overflow: hidden;
}
.p-top-recruit__inner01 {
  position: relative;
}
.p-top-recruit__inner02 {
  position: relative;
  padding: 7.5rem 0;
}
.p-top-recruit__main-heading {
  line-height: 1.2;
  margin: 0 0 5.6rem;
}
.p-top-recruit__sub-heading {
  margin: -0.55em 0 0;
}
.p-top-recruit__content {
  width: 31.3rem;
}
.p-top-recruit__slider01 {
  position: absolute;
  top: 0;
  right: 19.5rem;
  width: 18.8rem;
  aspect-ratio: 300/1260;
  background: url(../img/top/recruit-slider01_img.png?251002) repeat-y 0 0/100% auto;
  -webkit-animation: recruit_slider01_loop 50s linear infinite;
          animation: recruit_slider01_loop 50s linear infinite;
}
@-webkit-keyframes recruit_slider01_loop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 78.8rem;
  }
}
@keyframes recruit_slider01_loop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 78.8rem;
  }
}
.p-top-recruit__slider02 {
  position: absolute;
  top: 0;
  right: 0;
  width: 18.8rem;
  aspect-ratio: 300/1260;
  background: url(../img/top/recruit-slider02_img.png?251002) repeat-y 0 0/100% auto;
  -webkit-animation: recruit_slider02_loop 50s linear infinite;
          animation: recruit_slider02_loop 50s linear infinite;
}
@-webkit-keyframes recruit_slider02_loop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 -78.8rem;
  }
}
@keyframes recruit_slider02_loop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 -78.8rem;
  }
}
.p-top-recruit__btn-wrap {
  margin: 5.6rem 0 0;
}
@media screen and (max-width: 768px) {
  .p-top-recruit {
    padding: 0 0 4rem;
  }
  .p-top-recruit__wrap {
    border-radius: 0;
  }
  .p-top-recruit__inner02 {
    padding: 5.6rem 0 3.1rem;
  }
  .p-top-recruit__main-heading {
    line-height: 1.2;
    margin: 0 0 2.5rem;
  }
  .p-top-recruit__slider01 {
    position: initial;
    width: auto;
    height: 18.8rem;
    aspect-ratio: 712/300;
    margin: 0 -1rem 2rem;
    background: url(../img/top/recruit-slider01_img_sp.png?251002) repeat-x 0 0/auto 100%;
    -webkit-animation: recruit_slider01_loop_sp 25s linear infinite;
            animation: recruit_slider01_loop_sp 25s linear infinite;
  }
  @-webkit-keyframes recruit_slider01_loop_sp {
    from {
      background-position: 0 0;
    }
    to {
      background-position: 44.5rem 0;
    }
  }
  @keyframes recruit_slider01_loop_sp {
    from {
      background-position: 0 0;
    }
    to {
      background-position: 44.5rem 0;
    }
  }
  .p-top-recruit__slider02 {
    position: initial;
    width: auto;
    height: 18.8rem;
    aspect-ratio: 712/300;
    margin: 2rem -1rem 0;
    background: url(../img/top/recruit-slider02_img_sp.png?251002) repeat-x 0 0/auto 100%;
    -webkit-animation: recruit_slider02_loop_sp 25s linear infinite;
            animation: recruit_slider02_loop_sp 25s linear infinite;
  }
  @-webkit-keyframes recruit_slider02_loop_sp {
    from {
      background-position: 0 0;
    }
    to {
      background-position: -44.5rem 0;
    }
  }
  @keyframes recruit_slider02_loop_sp {
    from {
      background-position: 0 0;
    }
    to {
      background-position: -44.5rem 0;
    }
  }
  .p-top-recruit__content {
    width: 100%;
  }
  .p-top-recruit__btn-wrap {
    margin: 2rem 0 0;
  }
}

.p-top-blog {
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding: 7.5rem 0 0;
}
.p-top-blog::after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: -5.6rem;
  left: 0;
  display: block;
  width: 100%;
  height: 5.6rem;
  background: url(../img/cmn/round_object.png) no-repeat top left/100% 100%;
}
.p-top-blog__wrap {
  background-color: #f1f1f1;
}
.p-top-blog__inner {
  position: relative;
  padding: 12.5rem 0 15rem;
}
.p-top-blog__ico {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 15rem;
  aspect-ratio: 1/1;
  background: url(../img/top/blog-heading_img.png?251002) no-repeat center center/contain;
}
.p-top-blog__sub-heading {
  left: initial;
  right: 10.6rem;
  margin: -0.55em 0 0;
}
.p-top-blog__main-heading {
  grid-area: main-heading;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  margin: 0 auto;
}
.p-top-blog__btn {
  grid-area: btn;
  position: relative;
  z-index: 0;
  width: 8.3rem;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem 0;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
}
.p-top-blog__btn::before {
  content: "";
  display: inline-block;
  width: 2.5rem;
  aspect-ratio: 21/4;
  background: url(../img/cmn/arrow_right_wh.svg) no-repeat center center/contain;
}
.p-top-blog__btn::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background-color: #000;
  border-radius: 50%;
  -webkit-transition: width 0.2s linear, height 0.2s linear;
  transition: width 0.2s linear, height 0.2s linear;
}
.p-top-blog__btn:hover::after {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 769px) {
  .p-top-blog__body {
    display: grid;
    grid-template-areas: "main-heading list" "btn list";
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    gap: 3.8rem 12.5rem;
  }
  .p-top-blog__list {
    grid-area: list;
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, auto);
    gap: 3.8rem 4.4rem;
  }
  .p-top-blog__card:nth-of-type(2) {
    margin-top: -6.3rem;
  }
  .p-top-blog__card:nth-of-type(3) {
    margin-top: 6.3rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-blog {
    padding: 4.7rem 0 0;
  }
  .p-top-blog::after {
    bottom: -1.3rem;
    height: 1.3rem;
  }
  .p-top-blog__sub-heading {
    right: 6.6rem;
  }
  .p-top-blog__ico {
    right: -0.9rem;
    width: 9.4rem;
  }
  .p-top-blog__inner {
    padding: 7.5rem 0;
  }
  .p-top-blog__main-heading {
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    letter-spacing: 0;
    margin: 0 0 2.5rem;
  }
  .p-top-blog__card:not(:last-of-type) {
    margin-bottom: 2.5rem;
  }
  .p-top-blog__card:nth-of-type(n + 3) {
    display: none;
  }
  .p-top-blog__btn {
    margin: 0 0 0 auto;
  }
}

/* ================================
Page
================================ */
.p-page-breadcrumbs {
  padding: 1.6rem 0 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-page-breadcrumbs {
    display: none;
  }
}

.p-page-content {
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding: 3.8rem 0 15rem;
}
.p-page-content::after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: -5.6rem;
  left: 0;
  display: block;
  width: 100%;
  height: 5.6rem;
  background: url(../img/cmn/round_object_wh.png) no-repeat top left/100% 100%;
}
.p-page-content__editable-area p a {
  text-decoration: underline;
}
.p-page-content__editable-area p + p {
  margin-top: 1.6em;
}
.p-page-content__editable-area h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1.9rem 0 1.3rem;
}
.p-page-content__editable-area ul {
  margin: 1.3rem 0 1.9rem;
}
.p-page-content__editable-area ul > li {
  position: relative;
  padding: 0 0 0 1em;
}
.p-page-content__editable-area ul > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
}
.p-page-content__editable-area ul > li:not(:last-child) {
  margin-bottom: 1.6em;
}
.p-page-content__editable-area ul > li ol,
.p-page-content__editable-area ul > li ul {
  margin: 0.3rem 0 1.9rem;
}
.p-page-content__editable-area ul > li ol li:not(:last-child),
.p-page-content__editable-area ul > li ul li:not(:last-child) {
  margin-bottom: 0;
}
.p-page-content__editable-area ol {
  margin: 1.3rem 0 1.9rem;
}
.p-page-content__editable-area ol > li {
  position: relative;
  counter-increment: table-ol;
  padding: 0 0 0 1em;
}
.p-page-content__editable-area ol > li::before {
  content: counter(table-ol) ".";
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
}
.p-page-content__editable-area ol > li:not(:last-child) {
  margin-bottom: 1.6em;
}
.p-page-content__editable-area ol > li ol,
.p-page-content__editable-area ol > li ul {
  margin: 0.3rem 0 1.9rem;
}
.p-page-content__editable-area ol > li ol li:not(:last-child),
.p-page-content__editable-area ol > li ul li:not(:last-child) {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-page-content {
    padding: 3rem 0 7.5rem;
    margin: 0;
  }
  .p-page-content::after {
    bottom: -1.3rem;
    height: 1.3rem;
  }
}

.p-page-mv + .p-page-content,
.p-recruit-mv + .p-page-content {
  background-color: #f1f1f1;
  margin: 16.9rem 0 0;
}
.p-page-mv + .p-page-content::before,
.p-recruit-mv + .p-page-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -16.8rem;
  left: 0;
  display: block;
  width: 100%;
  height: 16.9rem;
  background: url(../img/cmn/wave_object.png) no-repeat top left/100% 100%;
}
.p-page-mv + .p-page-content::after,
.p-recruit-mv + .p-page-content::after {
  background: url(../img/cmn/round_object.png) no-repeat top left/100% 100%;
}
@media screen and (max-width: 768px) {
  .p-page-mv + .p-page-content,
  .p-recruit-mv + .p-page-content {
    padding: 3.1rem 0 7.5rem;
    margin: 6.9rem 0 0;
  }
  .p-page-mv + .p-page-content::before,
  .p-recruit-mv + .p-page-content::before {
    top: -3.9rem;
    height: 3.9rem;
  }
}

.p-page-header {
  margin: 0 0 5rem;
}
.p-page-header__main-heading {
  font-size: 4.8rem;
  line-height: 1.4;
  font-weight: 700;
}
.p-page-header__sub-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.3rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  line-height: 1;
  text-transform: capitalize;
  background: -webkit-gradient(linear, left top, right top, from(#222), to(#666));
  background: linear-gradient(to right, #222, #666);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-page-header__sub-heading::before {
  content: "";
  display: inline-block;
  width: 1.3rem;
  height: 1px;
  background-color: #222;
}
@media screen and (max-width: 768px) {
  .p-page-header {
    margin: 0 0 3rem;
  }
  .p-page-header__main-heading {
    font-size: 2rem;
  }
  .p-page-header__sub-heading {
    font-size: 1rem;
  }
  .p-page-header__sub-heading::before {
    width: 1rem;
  }
}

.p-page-pagetop {
  position: fixed;
  z-index: 10;
  bottom: 1.9rem;
  right: 1.9rem;
  width: 3.3rem;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background: linear-gradient(45deg, #e7b873, #f0dbb7);
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.p-page-pagetop__arrow::before {
  content: "";
  display: block;
  width: 0.9rem;
  aspect-ratio: 14/22;
  background: url(../img/cmn/arrow_up.svg) no-repeat center center/contain;
}
.p-page-pagetop:hover {
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  .p-page-pagetop {
    bottom: 1rem;
    right: 1rem;
  }
}

.p-page-nav__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem 2.5rem;
}
.p-page-nav__item {
  position: relative;
  z-index: 0;
  width: calc((100% - 5rem) / 3);
  aspect-ratio: 360/220;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 3.1rem;
  overflow: hidden;
}
.p-page-nav__item::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.p-page-nav__item::after {
  content: "";
  position: absolute;
  bottom: 1.5rem;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  display: inline-block;
  width: 1.6rem;
  aspect-ratio: 26/11;
  background: url(../img/cmn/chevron_down_wh.svg) no-repeat center center/contain;
}
.p-page-nav__bg {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-page-nav__title {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-page-nav__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-page-nav__item {
    width: 100%;
    aspect-ratio: initial;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    border-radius: 9999px;
    padding: 0.8rem 1rem;
  }
  .p-page-nav__item::before {
    background-color: #222;
  }
  .p-page-nav__item::after {
    right: 1rem;
    bottom: 50%;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
    width: 1rem;
  }
  .p-page-nav__title {
    font-size: 1rem;
  }
  .p-page-nav__bg {
    display: none;
  }
}

.p-page-sec + .p-page-sec {
  margin-top: 13.8rem;
}
@media screen and (max-width: 768px) {
  .p-page-sec + .p-page-sec {
    margin-top: 4.5rem;
  }
}

/* ================================
Post
================================ */
.p-post-layout__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4rem 2.5rem;
}
.p-post-layout__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-post-layout__side {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 22.5rem;
}
@media screen and (max-width: 768px) {
  .p-post-layout__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-post-layout__side {
    width: 100%;
  }
}

.p-post-side__block:not(:last-of-type) {
  margin-bottom: 3.1rem;
}
.p-post-side__heading {
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0 0 0.8rem;
  margin: 0 0 1.3rem;
  border-bottom: 1px solid #222;
}
.p-post-side__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.8rem 0.5rem;
}
.p-post-side__category {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.3rem;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border: 1px solid #222;
  background-color: #fff;
  border-radius: 9999px;
}
.p-post-side__category.-tag {
  color: #fff;
  background-color: #222;
}
.p-post-side__category.-tag::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  width: 1em;
  aspect-ratio: 1/1;
  background: url(../img/cmn/tag_ico_wh.svg) no-repeat center center/contain;
}
.p-post-side__card .c-blog-card__meta {
  margin: 0 0 0.3rem;
}
.p-post-side__card .c-blog-card__title {
  font-size: 1rem;
}
.p-post-side__card:not(:last-of-type) {
  padding-bottom: 1rem;
  border-bottom: 1px solid #ddd;
}
.p-post-side__card:not(:first-of-type) {
  padding-top: 1rem;
}
@media screen and (max-width: 768px) {
  .p-post-side__block:not(:last-of-type) {
    margin-bottom: 1.5rem;
  }
  .p-post-side__heading {
    margin: 0 0 0.8rem;
  }
  .p-post-side__card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
  }
  .p-post-side__card .c-blog-card__thumb {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 9.4rem;
    border-radius: 0.8rem;
  }
  .p-post-side__card .c-blog-card__title {
    font-size: 0.9rem;
    -webkit-line-clamp: 3;
  }
  .p-post-side__card .c-blog-card__meta {
    margin: 0 0 0.5rem;
  }
  .p-post-side__card:nth-of-type(n + 4) {
    display: none;
  }
}

.p-post-archive__footer {
  width: 100%;
  margin: 5rem 0 0;
}
@media screen and (max-width: 768px) {
  .p-post-archive__footer {
    margin: 4rem 0 0;
  }
}

.p-post-single {
  background-color: #fff;
  margin: 0;
}
.p-post-single::before {
  content: none;
}
.p-post-single::after {
  background: url(../img/cmn/round_object_wh.png) no-repeat top left/100% 100%;
}
.p-post-single__related {
  margin: 6.3rem 0 0;
}
@media screen and (max-width: 768px) {
  .p-post-single__related {
    margin: 4rem 0 0;
  }
}

.p-post-article__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 0 1.5rem;
}
.p-post-article__date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #777;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: right;
}
.p-post-article__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
}
.p-post-article__thumb {
  aspect-ratio: 820/410;
  border-radius: 2.5rem;
  overflow: hidden;
  margin: 0 0 1.5rem;
}
.p-post-article__editable-area h2 {
  color: #fff;
  font-size: 1.5rem;
  background-color: #222;
  padding: 0.6rem 1rem;
  margin: 2.5rem 0 1rem;
}
.p-post-article__editable-area h3 {
  font-size: 1.3rem;
  font-weight: 700;
  padding: 0 0 0.6rem;
  margin: 2.5rem 0 1rem;
  border-bottom: 1px solid #222;
}
.p-post-article__editable-area h4 {
  font-size: 1.1rem;
  margin: 2.5rem 0 1rem;
}
.p-post-article__editable-area p + p {
  margin-top: 2em;
}
/* ================================
勤務条件
================================ */
.p-cond__tab-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0 0.5rem;
}
.p-cond__tab {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 3.6rem;
  font-weight: 700;
  text-align: center;
  border-radius: 1.3rem 1.3rem 0 0;
  background-color: #fff;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor: pointer;
}
.p-cond__tab.is-active {
  color: #fff;
  font-size: 1.5rem;
  background-color: #222;
}
.p-cond__content-area {
  background-color: #fff;
  padding: 5rem;
  margin: 0 0 3.8rem;
  border-radius: 0 0 1.3rem 1.3rem;
}
.p-cond__content {
  visibility: hidden;
  opacity: 0;
  height: 0;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.p-cond__content.is-active {
  visibility: visible;
  opacity: 1;
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-cond__tab-area {
    gap: 0 1px;
  }
  .p-cond__tab {
    height: 2rem;
    font-size: 0.9rem;
    border-radius: 0.5rem 0.5rem 0 0;
  }
  .p-cond__tab.is-active {
    height: 2.5rem;
    font-size: 0.9rem;
  }
  .p-cond__content-area {
    padding: 2rem 0.8rem;
    border-radius: 0 0 0.5rem 0.5rem;
  }
}

/* ================================
会社情報
================================ */
.p-company-philo__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-company-philo__block:not(:last-of-type) {
  margin-bottom: 6.3rem;
}
.p-company-philo__sub-title {
  font-family: "Oswald", sans-serif;
  font-size: 5rem;
  line-height: 1;
  font-weight: 700;
  background: linear-gradient(30deg, #e7b873, #f0dbb7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 0.6rem;
}
.p-company-philo__main-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
}
.p-company-philo__catch {
  font-size: 1.9rem;
  font-weight: 700;
  text-align: center;
}
.p-company-philo__desc {
  font-size: 1.3rem;
  line-height: 2;
  margin: 1.8rem 0 0;
}
@media screen and (max-width: 768px) {
  .p-company-philo__block:not(:last-of-type) {
    margin-bottom: 2rem;
  }
  .p-company-philo__block:nth-of-type(3) .p-company-philo__catch {
    text-align: left;
  }
  .p-company-philo__sub-title {
    font-size: 3rem;
  }
  .p-company-philo__main-title {
    font-size: 1rem;
    margin: 0 0 0.5rem;
  }
  .p-company-philo__catch {
    font-size: 1.3rem;
  }
  .p-company-philo__desc {
    font-size: 1rem;
    margin: 0.5rem 0 0;
  }
}

.p-company-message {
  position: relative;
  z-index: 0;
  color: #fff;
  background-color: #f1f1f1;
  padding: 0 0 5.9rem;
}
.p-company-message__wrap {
  border-radius: 6.3rem;
  background: url(../img/cmn/sec_bg.jpg) no-repeat center center/cover;
  padding: 4.4rem 0 13.8rem;
}
.p-company-message__sub-heading {
  position: absolute;
  z-index: 1;
  bottom: 1.3rem;
  left: 0;
  font-family: "Oswald", sans-serif;
  font-size: 9.7rem;
  font-weight: 600;
  line-height: 1;
  color: #ddd;
  mix-blend-mode: difference;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.p-company-message__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem 5rem;
}
.p-company-message__img {
  width: 40rem;
  aspect-ratio: 640/960;
  border-radius: 0 4rem 4rem 0;
  overflow: hidden;
  margin: 0 0 0 -5rem;
}
.p-company-message__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-company-message__catch {
  font-size: 2.1rem;
  font-weight: 500;
  margin: 0 0 3.8rem;
}
@media screen and (max-width: 768px) {
  .p-company-message {
    padding: 0 0 3.1rem;
  }
  .p-company-message__wrap {
    border-radius: 3.1rem;
    padding: 3.8rem 0 6.6rem;
    background: url(../img/cmn/sec_bg_sp.jpg) no-repeat center center/cover;
  }
  .p-company-message__sub-heading {
    font-size: 4.2rem;
  }
  .p-company-message__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-company-message__img {
    width: 100vw;
    border-radius: 3.8rem;
    margin: 0 calc(50% - 50vw);
  }
  .p-company-message__catch {
    font-size: 1.5rem;
    margin: 0 0 1.5rem;
  }
}

.p-company-profile {
  width: 100%;
  background-color: #fff;
  border-radius: 3.1rem;
  padding: 6.3rem 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-company-profile {
    padding: 3.8rem 1rem;
  }
}

/* ================================
ITソリューション
================================ */
.p-it-intro {
  margin: 0 0 6.3rem;
}
.p-it-intro__desc {
  max-width: 42.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-it-intro {
    margin: 0 0 2rem;
  }
}

.p-it-sec__img-wrap {
  position: relative;
  max-width: 42.5rem;
  margin: 0 auto 2.5rem;
}
.p-it-sec__img {
  width: 100%;
  aspect-ratio: 680/340;
  border-radius: 6.3rem;
  overflow: hidden;
}
.p-it-sec__desc {
  max-width: 42.5rem;
  margin: 0 auto;
}
.p-it-sec__main-heading::after {
  content: none;
}
.p-it-sec__sub-heading {
  display: block;
  color: #dddddd;
  font-family: "Oswald", sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1;
  text-align: right;
  mix-blend-mode: difference;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  text-transform: capitalize;
  margin: -0.5em 0 0;
}
@media screen and (max-width: 768px) {
  .p-it-sec__img {
    aspect-ratio: 343/204;
    border-radius: 3.8rem;
  }
  .p-it-sec__sub-heading {
    font-size: 2.5rem;
  }
}

.p-it-merit__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3rem 5.4rem;
}
.p-it-merit__item {
  position: relative;
  z-index: 0;
  width: 11.9rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.1rem;
  text-align: center;
}
.p-it-merit__item::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 180%;
  aspect-ratio: 1/1;
  background: url(../img/it-solutions/merit-item_bg.png) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .p-it-merit__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 6rem 0 8.1rem;
  }
  .p-it-merit__item {
    font-size: 1rem;
  }
}

.p-it-feature {
  background: url(../img/cmn/sec_bg.jpg) no-repeat center center/cover;
  padding: 6.3rem 0;
  border-radius: 6.3rem;
  color: #fff;
}
.p-it-feature__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem 3.8rem;
}
.p-it-feature__block:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.p-it-feature__block:nth-of-type(even) .p-it-feature__img {
  border-radius: 0 9999px 9999px 0;
  margin: 0 0 0 -11.3rem;
}
.p-it-feature__block:not(:last-of-type) {
  margin-bottom: 10rem;
}
.p-it-feature__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 38.8rem;
  aspect-ratio: 620/344;
  border-radius: 9999px 0 0 9999px;
  overflow: hidden;
  margin: 0 -11.3rem 0 0;
}
.p-it-feature__num {
  font-family: "Oswald", sans-serif;
  color: #abaaaa;
  font-size: 6.3rem;
  line-height: 1.4;
}
.p-it-feature__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 1rem;
}
@media screen and (max-width: 768px) {
  .p-it-feature {
    background: url(../img/cmn/sec_bg_sp.jpg) no-repeat center center/cover;
    padding: 3.8rem 0;
    border-radius: 3.8rem;
  }
  .p-it-feature__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .p-it-feature__block:nth-of-type(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-it-feature__block:nth-of-type(even) .p-it-feature__img {
    margin: 0 0 0 -1rem;
  }
  .p-it-feature__block:not(:last-of-type) {
    margin-bottom: 1.5rem;
  }
  .p-it-feature__content {
    width: 100%;
  }
  .p-it-feature__num {
    font-size: 3.8rem;
  }
  .p-it-feature__img {
    width: 19.8rem;
    aspect-ratio: 316/194;
    margin: 0 -1rem 0 0;
  }
}

.p-it-area__block {
  display: grid;
  grid-template-areas: "title title" "content img";
  grid-template-columns: 1fr 31.9rem;
  gap: 0 4rem;
  background-color: #fff;
  border-radius: 6.3rem;
  padding: 3.8rem 6.3rem;
}
.p-it-area__block + .p-it-area__block {
  margin-top: 7.5rem;
}
.p-it-area__title {
  position: relative;
  z-index: 0;
  grid-area: title;
  min-height: 4.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 2.5rem;
}
.p-it-area__title::before {
  content: attr(data-en);
  position: absolute;
  z-index: -1;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 3.1rem;
  color: #ddd;
  font-family: "Oswald", sans-serif;
  font-size: 4.4rem;
  white-space: nowrap;
}
.p-it-area__content {
  grid-area: content;
}
.p-it-area__label {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  padding: 0.6rem 1.3rem;
  border-radius: 9999px;
  background-color: #4a4a4a;
  margin: 0 0 1.3rem;
}
.p-it-area__label:not(:first-of-type) {
  margin-top: 1.9rem;
}
.p-it-area__list li {
  display: inline;
  margin: 0 0.5em 0 0;
}
.p-it-area__list li::before {
  content: "・";
  color: #f9c985;
}
.p-it-area__img {
  grid-area: img;
  aspect-ratio: 508/366;
  border-radius: 3.1rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-it-area__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 3.1rem;
    padding: 1.5rem 1rem;
  }
  .p-it-area__block + .p-it-area__block {
    margin-top: 1.5rem;
  }
  .p-it-area__img {
    width: 100%;
    margin: 0 0 1.5rem;
  }
  .p-it-area__title {
    min-height: 3.1rem;
    font-size: 1.5rem;
    margin: 0 0 1rem;
  }
  .p-it-area__title::before {
    left: initial;
    right: 0;
    font-size: 3.1rem;
  }
  .p-it-area__label {
    margin: 0 0 0.5rem;
  }
  .p-it-area__label:not(:first-of-type) {
    margin-top: 1rem;
  }
}

.p-it-flow {
  position: relative;
  z-index: 0;
  padding: 16.9rem 0 0;
}
.p-it-flow::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -16.9rem;
  left: 0;
  display: block;
  width: 100%;
  height: 16.9rem;
  background: url(../img/cmn/wave_object_bottom.png) no-repeat top left/100% 100%;
}
.p-it-flow__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1440/612;
  background: url(../img/cmn/noimage.jpg) no-repeat center center/cover;
}
.p-it-flow__body {
  width: 100%;
  background-color: #fff;
  padding: 5rem 6.3rem;
  border-radius: 6.3rem;
}
.p-it-flow__list {
  max-width: 55rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-it-flow {
    padding: 6.3rem 0 1.3rem;
  }
  .p-it-flow::after {
    bottom: -3.9rem;
    height: 3.9rem;
  }
  .p-it-flow__bg {
    aspect-ratio: 375/460;
  }
  .p-it-flow__body {
    border-radius: 3.1rem;
    padding: 5rem 1rem;
  }
  .p-it-flow__list .c-flow-list__item:not(:last-of-type)::before {
    left: 1.5rem;
  }
  .p-it-flow__list .c-flow-list__num {
    width: 3rem;
  }
}

.p-it-client {
  background-color: #fff;
  padding: 16.9rem 0 15rem;
}
@media screen and (max-width: 768px) {
  .p-it-client {
    padding: 3.9rem 0 5.1rem;
  }
}

.p-it-inhouse {
  position: relative;
  z-index: 0;
  background-color: #f1f1f1;
}
.p-it-inhouse::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -16.8rem;
  left: 0;
  display: block;
  width: 100%;
  height: 16.9rem;
  background: url(../img/cmn/wave_object.png) no-repeat top left/100% 100%;
}
@media screen and (max-width: 768px) {
  .p-it-inhouse::before {
    top: -3.9rem;
    height: 3.9rem;
  }
}

/* ================================
お問い合わせ
================================ */
.p-contact-form {
  margin: 5rem 0 0;
}

/* ================================
社員インタビュー
================================ */
.post-type-archive-interview .p-page-content {
  padding-top: 0;
}
.post-type-archive-interview .p-interview-mv {
  min-height: initial;
}
.post-type-archive-interview .p-interview-mv .p-interview-mv__body {
  min-height: initial;
}
@media screen and (max-width: 768px) {
  .post-type-archive-interview .p-page-content {
    padding-top: 1.5rem;
  }
}

.single-interview .p-page-content {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .single-interview .p-page-content {
    padding-top: 1.5rem;
  }
}

.p-interview-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2rem 7.5rem;
  margin: 0 auto 11.3rem;
}
.p-interview-block__img-wrap {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 37.5rem;
  margin: 0 0 0 -5rem;
}
.p-interview-block__img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 0 9999px 9999px 0;
  overflow: hidden;
}
.p-interview-block__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 40rem;
}
.p-interview-block__note {
  margin: 0 0 3.1rem;
}
.p-interview-block__question {
  position: relative;
  z-index: 0;
  min-height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1.9rem;
}
.p-interview-block__question::before {
  content: attr(data-en);
  position: absolute;
  z-index: -1;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  font-family: "Oswald", sans-serif;
  font-size: 5rem;
  background: linear-gradient(15deg, #f1f1f1, #f8e2aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-interview-block__answer p strong {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(20%, transparent), color-stop(20%, #fff59d), color-stop(90%, #fff59d), color-stop(90%, transparent), to(transparent));
  background: linear-gradient(to bottom, transparent 0%, transparent 20%, #fff59d 20%, #fff59d 90%, transparent 90%, transparent 100%);
}
.p-interview-block__answer p + p {
  margin-top: 1.6em;
}
.p-interview-block__answer:not(:last-of-type) {
  margin-bottom: 7.5rem;
}
.p-interview-block.-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.p-interview-block.-reverse .p-interview-block__img-wrap {
  margin: 0 -5rem 0 0;
}
.p-interview-block.-reverse .p-interview-block__img {
  border-radius: 9999px 0 0 9999px;
}
.p-interview-block:last-of-type .p-interview-block__img-wrap::after {
  content: "";
  position: absolute;
  bottom: -6.3rem;
  right: 0;
  display: inline-block;
  width: 23.5rem;
  aspect-ratio: 730/410;
  background: url(../img/interview/joinus_typo.png) no-repeat center center/contain;
  mix-blend-mode: difference;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
@media screen and (max-width: 768px) {
  .p-interview-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 0 auto 3rem;
  }
  .p-interview-block__img-wrap {
    width: 21.4rem;
    margin: 0 0 0 -1rem;
  }
  .p-interview-block__img {
    aspect-ratio: 1/1;
  }
  .p-interview-block__note {
    margin: 0 0 2rem;
  }
  .p-interview-block__question {
    min-height: 3.8rem;
    font-size: 1.1rem;
    margin: 0 0 1.3rem;
  }
  .p-interview-block__question::before {
    font-size: 3.8rem;
  }
  .p-interview-block__answer:not(:last-of-type) {
    margin-bottom: 3rem;
  }
  .p-interview-block.-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .p-interview-block.-reverse .p-interview-block__img-wrap {
    margin: 0 -1rem 0 0;
  }
  .p-interview-block:last-of-type .p-interview-block__img-wrap {
    margin: 0 0 5.5rem -1rem;
  }
  .p-interview-block:last-of-type .p-interview-block__img-wrap::after {
    bottom: -5.5rem;
    right: initial;
    left: 0;
    width: 18rem;
  }
}

/* ================================
エンジニアの方へ（採用情報）
================================ */
.recruit .p-page-content::after {
  background: url(../img/cmn/round_object.png) no-repeat top left/100% 100%;
}
@media screen and (max-width: 768px) {
  .recruit .p-page-content {
    margin-top: -5rem;
    padding-top: 7.5rem;
  }
}

.p-recruit-intro {
  position: relative;
  z-index: 0;
  min-height: 43.8rem;
}
.p-recruit-intro__bg {
  width: 86.3rem;
  aspect-ratio: 1380/700;
  background: url(../img/recruit/intro_bg.png) no-repeat center center/cover;
}
.p-recruit-intro__text {
  text-align: center;
  margin: 0 0 5rem;
}
@media screen and (min-width: 769px) {
  .p-recruit-intro__bg {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  .p-recruit-intro__bg {
    width: 100%;
    aspect-ratio: 375/300;
    background: url(../img/recruit/intro_bg_sp.png) no-repeat center center/cover;
    margin: 2.5rem auto 0;
  }
  .p-recruit-intro__text {
    margin: 0 0 3.5rem;
  }
}

.p-recruit-identity {
  display: block;
  color: #fff;
  background: url(../img/cmn/sec_bg.jpg) no-repeat center center/cover;
  border-radius: 6.3rem;
  padding: 6.3rem 0;
}
.p-recruit-identity__slider .slick-list {
  overflow: visible;
}
.p-recruit-identity__slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 2.5rem;
}
.p-recruit-identity__slide {
  width: 36.3rem;
  height: auto;
}
.p-recruit-identity__img {
  width: calc(100% - 1.3rem);
  aspect-ratio: 343/228;
  border-radius: 2.1rem;
  overflow: hidden;
  margin: 0 0 0 auto;
}
.p-recruit-identity__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.3rem 0;
  font-size: 2rem;
  font-weight: 700;
  margin: -1.3rem 0 1rem;
}
.p-recruit-identity__title span {
  color: #222;
  background-color: #fff;
  border-radius: 0.3rem;
  padding: 0 0.8rem;
}
.p-recruit-identity__control {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.5rem;
  margin: 3.8rem 0 0;
}
.p-recruit-identity__control .slick-dots {
  bottom: 0;
  line-height: 0;
}
.p-recruit-identity__control .slick-dots li {
  width: 0.6rem;
  height: 0.6rem;
  margin: 0 0.4rem;
}
.p-recruit-identity__control .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
}
.p-recruit-identity__control .slick-dots li button::before {
  content: "";
  width: 100%;
  height: 100%;
  opacity: 1;
  background-color: #ddd;
  border-radius: 50%;
}
.p-recruit-identity__control .slick-dots li.slick-active button::before {
  opacity: 1;
  background-color: #777;
}
.p-recruit-identity__control .slick-arrow {
  width: 3.1rem;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  -webkit-box-shadow: 0 0.3rem 0.6rem rgba(119, 119, 119, 0.15);
          box-shadow: 0 0.3rem 0.6rem rgba(119, 119, 119, 0.15);
}
.p-recruit-identity__control .slick-arrow.slick-disabled, .p-recruit-identity__control .slick-arrow:hover {
  opacity: 0.7;
}
.p-recruit-identity__control .slick-arrow-prev::before {
  content: "";
  display: inline-block;
  width: 0.6rem;
  aspect-ratio: 1/1;
  border-left: 1px solid #777;
  border-bottom: 1px solid #777;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-recruit-identity__control .slick-arrow-next::before {
  content: "";
  display: inline-block;
  width: 0.6rem;
  aspect-ratio: 1/1;
  border-right: 1px solid #777;
  border-top: 1px solid #777;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .p-recruit-identity {
    border-radius: 3.1rem;
    padding: 4rem 0 5rem;
    background: url(../img/cmn/sec_bg_sp.jpg) no-repeat center center/cover;
  }
  .p-recruit-identity__slide {
    width: 21.4rem;
  }
  .p-recruit-identity__img {
    width: 100%;
    border-radius: 1.9rem;
  }
  .p-recruit-identity__title {
    font-size: 1.5rem;
  }
  .p-recruit-identity__control {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 0 2.1rem;
    margin: 1.5rem 0 0;
  }
}

.p-recruit-feature {
  display: block;
}
.p-recruit-feature__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem 3.8rem;
}
.p-recruit-feature__block + .p-recruit-feature__block {
  margin-top: 11.3rem;
}
.p-recruit-feature__block:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.p-recruit-feature__block:nth-of-type(even) .p-recruit-feature__img {
  border-radius: 0 9999px 9999px 0;
  margin: 0 0 0 -11.3rem;
}
.p-recruit-feature__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-recruit-feature__img {
  width: 37.5rem;
  aspect-ratio: 600/360;
  border-radius: 9999px 0 0 9999px;
  overflow: hidden;
  margin: 0 -11.3rem 0 0;
}
.p-recruit-feature__num {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 1.9rem;
  background: linear-gradient(30deg, #eca900, #d9c07d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 0.5rem;
}
.p-recruit-feature__title {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 1rem;
}
.p-recruit-feature__btn-wrap {
  margin: 5rem 0 0;
}
@media screen and (max-width: 768px) {
  .p-recruit-feature__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .p-recruit-feature__block:nth-of-type(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .p-recruit-feature__block:nth-of-type(even) .p-recruit-feature__img {
    margin: 0 0 0 -1rem;
  }
  .p-recruit-feature__block + .p-recruit-feature__block {
    margin-top: 4rem;
  }
  .p-recruit-feature__img {
    width: 22.5rem;
    aspect-ratio: 360/225;
    margin: 0 -1rem 0 0;
  }
  .p-recruit-feature__content {
    width: 100%;
  }
  .p-recruit-feature__num {
    font-size: 1.5rem;
  }
  .p-recruit-feature__title {
    font-size: 1.6rem;
  }
  .p-recruit-feature__btn-wrap {
    margin: 3.5rem 0 0;
  }
}

.p-recruit-project__slider-wrap {
  margin: 6.3rem auto 11.3rem;
}
.p-recruit-project__slider .slick-list {
  overflow: visible;
}
.p-recruit-project__slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 2.5rem;
}
.p-recruit-project__slide {
  width: 39rem;
  height: auto;
  border-radius: 6.3rem;
  background-color: #fff;
  padding: 2.5rem 3.5rem;
  -webkit-box-shadow: 0 0 1.9rem rgba(0, 0, 0, 0.07);
          box-shadow: 0 0 1.9rem rgba(0, 0, 0, 0.07);
}
.p-recruit-project__title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  padding: 0.6rem;
  margin: 0 0 1.5rem;
}
.p-recruit-project__label {
  display: inline-block;
  color: #fff;
  background-color: #4A4A4A;
  border-radius: 9999px;
  padding: 0.6rem 1.3rem;
  margin: 0 0 0.8rem;
}
.p-recruit-project__label:not(:first-of-type) {
  margin-top: 1.3rem;
}
.p-recruit-project__control {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.5rem;
  margin: 3.8rem 0 0;
}
.p-recruit-project__control .slick-dots {
  bottom: 0;
  line-height: 0;
}
.p-recruit-project__control .slick-dots li {
  width: 0.6rem;
  height: 0.6rem;
  margin: 0 0.4rem;
}
.p-recruit-project__control .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
}
.p-recruit-project__control .slick-dots li button::before {
  content: "";
  width: 100%;
  height: 100%;
  opacity: 1;
  background-color: #ddd;
  border-radius: 50%;
}
.p-recruit-project__control .slick-dots li.slick-active button::before {
  opacity: 1;
  background-color: #777;
}
.p-recruit-project__control .slick-arrow {
  width: 3.1rem;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  -webkit-box-shadow: 0 0.3rem 0.6rem rgba(119, 119, 119, 0.15);
          box-shadow: 0 0.3rem 0.6rem rgba(119, 119, 119, 0.15);
}
.p-recruit-project__control .slick-arrow.slick-disabled, .p-recruit-project__control .slick-arrow:hover {
  opacity: 0.7;
}
.p-recruit-project__control .slick-arrow-prev::before {
  content: "";
  display: inline-block;
  width: 0.6rem;
  aspect-ratio: 1/1;
  border-left: 1px solid #777;
  border-bottom: 1px solid #777;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-recruit-project__control .slick-arrow-next::before {
  content: "";
  display: inline-block;
  width: 0.6rem;
  aspect-ratio: 1/1;
  border-right: 1px solid #777;
  border-top: 1px solid #777;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .p-recruit-project__slider-wrap {
    margin: 2rem auto 4rem;
  }
  .p-recruit-project__slide {
    width: 21.4rem;
    border-radius: 2.5rem;
    padding: 1.6rem 1rem;
  }
  .p-recruit-project__title {
    font-size: 1.5rem;
    margin: 0 0 1rem;
  }
  .p-recruit-project__label {
    margin: 0 0 0.5rem;
  }
  .p-recruit-project__label:not(:first-of-type) {
    margin-top: 0.8rem;
  }
  .p-recruit-project__control {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 0 2.1rem;
    margin: 1.5rem 0 0;
  }
}

.p-recruit-benefit {
  color: #fff;
  background: url(../img/cmn/sec_bg.jpg) no-repeat center center/cover;
  border-radius: 6.3rem;
  padding: 6.3rem 0;
}
.p-recruit-benefit__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.9rem 1.9rem;
}
.p-recruit-benefit__item {
  position: relative;
  width: calc((100% - 3.8rem) / 3);
  color: #222;
  background-color: #fff;
  border-radius: 1.3rem;
  padding: 2.3rem 1rem 3.5rem;
  cursor: pointer;
}
.p-recruit-benefit__item::after {
  content: "＋";
  position: absolute;
  bottom: 2.3rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 1.1rem;
  color: #FA9E00;
  line-height: 1;
}
.p-recruit-benefit__item.is-open::after {
  content: "－";
}
.p-recruit-benefit__item.is-open .p-recruit-benefit__content {
  visibility: visible;
  opacity: 1;
  height: auto;
  padding: 1rem 0;
  border-top: 1px solid #FA9E00;
}
.p-recruit-benefit__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.3rem 0.8rem;
  padding: 0 0 1rem;
}
.p-recruit-benefit__ico {
  width: 5rem;
  aspect-ratio: 1/1;
}
.p-recruit-benefit__ico img {
  -o-object-fit: contain;
     object-fit: contain;
}
.p-recruit-benefit__title {
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
}
.p-recruit-benefit__content {
  opacity: 0;
  visibility: hidden;
  height: 0;
  -webkit-transition: opacity 0.2s ease-out, height 0.2s ease-out, padding 0.2s ease-out;
  transition: opacity 0.2s ease-out, height 0.2s ease-out, padding 0.2s ease-out;
}
@media screen and (max-width: 768px) {
  .p-recruit-benefit {
    background: url(../img/cmn/sec_bg_sp.jpg) no-repeat center center/cover;
    border-radius: 3.1rem;
    padding: 3.8rem 0 6.3rem;
  }
  .p-recruit-benefit__list {
    gap: 1.5rem 0.6rem;
  }
  .p-recruit-benefit__item {
    width: calc(50% - 0.3rem);
    min-height: 12.1rem;
    padding: 1rem 0.5rem 1.5rem;
    border-radius: 0.6rem;
  }
  .p-recruit-benefit__item::after {
    bottom: 1rem;
  }
  .p-recruit-benefit__item.-lg_only_mobile {
    width: 100%;
    padding: 2.3rem 1rem 3.5rem;
  }
  .p-recruit-benefit__item.-lg_only_mobile::after {
    bottom: 1.3rem;
  }
  .p-recruit-benefit__item.-lg_only_mobile .p-recruit-benefit__header {
    gap: 1.3rem 0.8rem;
  }
  .p-recruit-benefit__item.-lg_only_mobile .p-recruit-benefit__ico {
    width: 5rem;
  }
  .p-recruit-benefit__item.-lg_only_mobile .p-recruit-benefit__title {
    font-size: 1.3rem;
  }
  .p-recruit-benefit__item.-sm_only_mobile {
    width: 100%;
    min-height: initial;
    padding: 1rem 1.3rem;
  }
  .p-recruit-benefit__item.-sm_only_mobile::after {
    left: initial;
    right: 2rem;
    bottom: initial;
    top: 1.5rem;
    -webkit-transform: none;
            transform: none;
  }
  .p-recruit-benefit__item.-sm_only_mobile .p-recruit-benefit__header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0;
  }
  .p-recruit-benefit__item.-sm_only_mobile .p-recruit-benefit__ico {
    width: 2.3rem;
    margin: 0 0 0 0.8rem;
  }
  .p-recruit-benefit__item.-sm_only_mobile .p-recruit-benefit__title {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 0 1.5rem 0 0;
  }
  .p-recruit-benefit__item.-sm_only_mobile.is-open .p-recruit-benefit__header {
    padding: 0 0 1rem;
  }
  .p-recruit-benefit__item.-sm_only_mobile.is-open .p-recruit-benefit__content {
    padding: 1rem 0 0;
  }
  .p-recruit-benefit__header {
    gap: 1rem 0.8rem;
  }
  .p-recruit-benefit__ico {
    width: 3.8rem;
  }
  .p-recruit-benefit__title {
    font-size: 1rem;
  }
  .p-recruit-benefit__desc {
    font-size: 0.9rem;
  }
}

.p-recruit-interview__list {
  margin: 0 0 10rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-interview__list {
    margin: 0 0 3.5rem;
  }
}

.p-recruit-message {
  padding: 5rem 0 9.1rem;
  background: url(../img/recruit/message_bg.jpg) no-repeat center center/cover;
}
.p-recruit-message__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7.5rem 7.5rem;
}
.p-recruit-message__img-wrap {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  width: 31.3rem;
  margin: 0 0 0 -5rem;
}
.p-recruit-message__img-wrap::before {
  content: "";
  position: absolute;
  bottom: -7.1rem;
  right: -5.4rem;
  display: inline-block;
  width: 26.1rem;
  aspect-ratio: 836/363;
  background: url(../img/recruit/message_typo.png) no-repeat center center/contain;
  mix-blend-mode: difference;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.p-recruit-message__img {
  width: 100%;
  aspect-ratio: 500/750;
  overflow: hidden;
  border-radius: 0 4rem 4rem 0;
}
.p-recruit-message__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-recruit-message__catch {
  font-size: 1.9rem;
  font-weight: 700;
  margin: 0 0 1.9rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-message {
    padding: 3.8rem 0 4.5rem;
  }
  .p-recruit-message__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-recruit-message__img-wrap {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
  .p-recruit-message__img-wrap::before {
    bottom: -5rem;
    left: 0;
    width: 20rem;
  }
  .p-recruit-message__img {
    aspect-ratio: 375/583;
    border-radius: 3.8rem;
  }
  .p-recruit-message__catch {
    font-size: 1.5rem;
  }
}

.p-recruit-cover {
  position: relative;
  margin-top: 0 !important;
}
.p-recruit-cover::before {
  content: "";
  position: absolute;
  bottom: -4rem;
  right: 7.6rem;
  display: inline-block;
  width: 27.6rem;
  aspect-ratio: 730/410;
  background: url(../img/recruit/joinus_typo.png) no-repeat center center/contain;
  mix-blend-mode: difference;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.p-recruit-cover__img {
  width: 100%;
  aspect-ratio: 1440/584;
}
@media screen and (max-width: 768px) {
  .p-recruit-cover::before {
    content: none;
  }
  .p-recruit-cover__img {
    aspect-ratio: 375/302;
  }
}

.p-recruit-flow {
  width: 100%;
  color: #fff;
  background: url(../img/cmn/sec_bg.jpg) no-repeat center center/cover;
  border-radius: 6.3rem;
  padding: 5rem;
}
.p-recruit-flow__list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.p-recruit-flow__list .c-flow-list__item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-recruit-flow__list .c-flow-list__item:not(:last-of-type)::before {
  background-color: #777;
}
.p-recruit-flow__list .c-flow-list__num {
  background: linear-gradient(30deg, #eca900, #d9c07d);
}
@media screen and (max-width: 768px) {
  .p-recruit-flow {
    background: url(../img/cmn/sec_bg_sp.jpg) no-repeat center center/cover;
    border-radius: 3.8rem;
    padding: 3.8rem 0;
  }
}

.p-recruit-faq__inner {
  max-width: 55rem;
}
.p-recruit-condition__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.1rem 4rem;
  margin: 0 0 5rem;
}
.p-recruit-condition__item {
  position: relative;
  width: calc(50% - 2rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 1rem;
  background-color: #fff;
  overflow: hidden;
  -webkit-filter: drop-shadow(0 0 1.9rem rgba(0, 0, 0, 0.07));
          filter: drop-shadow(0 0 1.9rem rgba(0, 0, 0, 0.07));
}
.p-recruit-condition__item:hover .p-recruit-condition__ico::after {
  width: 100%;
  height: 100%;
}
.p-recruit-condition__img {
  height: 10rem;
  aspect-ratio: 1/1;
}
.p-recruit-condition__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
}
.p-recruit-condition__ico {
  position: absolute;
  top: 50%;
  right: 1.3rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 2.8rem;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-recruit-condition__ico::before {
  content: "";
  display: inline-block;
  width: 1.3rem;
  aspect-ratio: 21/4;
  background: url(../img/cmn/arrow_right_wh.svg) no-repeat center center/contain;
}
.p-recruit-condition__ico::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background-color: #000;
  border-radius: 50%;
  -webkit-transition: width 0.2s linear, height 0.2s linear;
  transition: width 0.2s linear, height 0.2s linear;
}
.p-recruit-condition__btn {
  min-width: initial;
  width: 35.6rem;
  height: 15.3rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.9rem;
  background: url(../img/recruit/condition-btn_bg.jpg) no-repeat top left/cover;
}
.p-recruit-condition__btn .c-arrow-btn__text {
  -webkit-box-flex: initial;
      -ms-flex: initial;
          flex: initial;
  padding: 0;
}
.p-recruit-condition__btn .c-arrow-btn__ico::before {
  background: url(../img/cmn/arrow_right.svg) no-repeat center center/contain;
}
.p-recruit-condition__btn .c-arrow-btn__ico::after {
  background: linear-gradient(45deg, #eca900, #d9c07d);
}
.p-recruit-condition__btn:hover {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-recruit-condition__list {
    gap: 1.5rem 0;
    margin: 0 0 3.4rem;
  }
  .p-recruit-condition__item {
    width: 100%;
    border-radius: 0.6rem;
  }
  .p-recruit-condition__title {
    font-size: 1rem;
  }
  .p-recruit-condition__img {
    height: 6.9rem;
  }
  .p-recruit-condition__ico {
    right: 0.8rem;
    width: 1.8rem;
  }
  .p-recruit-condition__btn {
    width: 13.8rem;
    height: 5.6rem;
    gap: 0 0.5rem;
    font-size: 1.1rem;
  }
  .p-recruit-condition__btn .c-arrow-btn__ico {
    width: 1.5rem;
  }
  .p-recruit-condition__btn .c-arrow-btn__ico::before {
    width: 0.7rem;
  }
}

/* ================================
Adjistment
================================ */
.u-fit--contain {
  text-align: center;
}
.u-fit--contain img,
.u-fit--contain source {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: middle;
}

.u-color--main {
  color: #f9c985;
}
.u-color--main_pale {
  color: #f9c985;
}
.u-color--sub {
  color: #98c940;
}
.u-color--wh {
  color: #fff;
}

.u-align--center {
  text-align: center;
}
.u-align--right {
  text-align: right;
}
.u-align--left {
  text-align: left;
}

.u-lh--20 {
  line-height: 2;
}
.u-lh--14 {
  line-height: 1.4;
}

.u-indent--01 {
  display: inline-block;
  text-indent: -1em;
  padding-left: 1em;
}

.u-display_ib {
  display: inline-block;
}
.u-display_ib--sm {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-display_ib--sm {
    display: inline-block;
  }
}

.u-display--lg {
  display: none;
}
@media screen and (max-width: 1280px) {
  .u-display--lg {
    display: block;
  }
}
.u-display--md {
  display: none;
}
@media screen and (max-width: 1024px) {
  .u-display--md {
    display: block;
  }
}
.u-display--sm {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-display--sm {
    display: block;
  }
}

.u-display_flex--lg {
  display: none;
}
@media screen and (max-width: 1280px) {
  .u-display_flex--lg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.u-display_flex--md {
  display: none;
}
@media screen and (max-width: 1024px) {
  .u-display_flex--md {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.u-display_flex--sm {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-display_flex--sm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 1280px) {
  .u-hidden--lg {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .u-hidden--md {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .u-hidden--sm {
    display: none;
  }
}