@charset "UTF-8";
.u-desktop {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}

/* 画像の中央寄せ */
.aligncenter {
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}

/* figureタグで囲まれた画像の中央寄せ */
.aligncenter img {
  height: auto;
  max-width: 100%;
}

/* 画像右寄せ */
.alignright {
  height: auto;
  margin-left: auto;
  max-width: 100%;
}

/* figureタグで囲まれた画像右寄せ */
.alignright img {
  height: auto;
  max-width: 100%;
}

/* 位置指定のない画像 */
.alignnone {
  height: auto;
  max-width: 100%;
}

/* figureタグで囲まれた位置指定のない画像 */
.alignnone img {
  height: auto;
  max-width: 100%;
}

/* 自動折り返し有効化 */
pre {
  white-space: pre-wrap;
}

body.is-fixed {
  height: 100%;
  overflow: hidden !important;
}

body {
  font-family: "Shippori Mincho B1", serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.05em;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  /* Safari */
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
/* 初期状態: 非表示で下に少し移動 */
.fadeup {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

/* 表示状態: フェードアップ完了 */
.fadeup.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

main {
  background-color: #f5f5f5;
}

main {
  overflow: clip;
}

html.is-fixed {
  overflow: hidden;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 390px) {
  html {
    font-size: 4.1025641026vw;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.8;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul{
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,

figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul
 {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

fieldset,
legend,
button {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=date],
input[type=datetime-local],
input[type=month],
input[type=time] {
  margin: 0;
  padding: 4px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 16px;
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
input[type=number],
input[type=datetime],
input[type=week],
textarea,
select {
  margin-right: 0;
  margin-left: 0;
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: 0;
  outline: none;
  background: none;
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  width: 100%;
  height: 100px;
  overflow: auto;
}

select {
  padding-right: 30px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALJJREFUeNrslssNgCAQRCmB0ijBEuyEEijBEijBEizBEnAPy0UBWVj8JDvJJB5w3gsXVUoikXwsBrpAPdRCNcOmxi2P2yZ3cIKGU9dOCY0b590pdXhPHOyRyMEDsi4JhVIlSvBYTRGgSNTAQ+pFyyBRC7e5AdchUQt3d1fYIsEGb5Fgh1MktlFwisQwOIeE4/pGuDfhLRLscIrEMHiNxHB4SeIxeMyMPxkenyUSyT9zCDAAj5btZ4c3zaUAAAAASUVORK5CYII=");
  background-repeat: no-repeat;
  background-size: 12px 12px;
  background-position: right 8px center;
}

.select {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.select select {
  width: 100%;
  padding-right: 24px;
  border: 1px solid #ccc;
  background: none;
  text-overflow: "";
  cursor: pointer;
}

.select::before {
  position: absolute;
  top: 13px;
  right: 8px;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666;
  pointer-events: none;
}

/* radio & checkbox */
input[type=radio],
input[type=checkbox] {
  display: none;
}

input[type=radio] + span,
input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  margin-left: 8px;
  padding: 10px 20px;
  color: #555;
  font-size: 22.4px;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1;
  cursor: pointer;
}

input[type=radio] + span::before,
input[type=checkbox] + span::before {
  position: absolute;
  top: 50%;
  left: -8px;
  width: 16px;
  height: 16px;
  content: "";
  margin-top: -8px;
  border: 1px solid #ccc;
  background: #fff;
}

/* fieldset */
fieldset {
  padding: 8px 16px;
  border: 1px solid #ccc;
}

legend {
  padding: 0 8px;
}

/* button */
input[type=submit],
input[type=reset],
input[type=button] {
  display: inline-block;
  margin: 0;
  padding: 10px 30px;
  border: 1px solid #999;
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  background: #efefef;
  color: #000;
  font-size: 20px;
  cursor: pointer;
}

/* ブラウザ対策
---------------------------------------------------------------------------- */
/* Firefox */
/* IE */
select::-ms-expand {
  display: none;
}

/* webkit */
/* iOS */
input[type=submit]::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=search]::-webkit-search-decoration {
  display: none;
}

::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

input[type=search]::-webkit-search-decoration {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: textfield;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
          appearance: none;
  background: none;
  outline: none;
  font-size: 16px;
}

/* 挙動
---------------------------------------------------------------------------- */
/* hover */
input:hover,
textarea:hover,
select:hover {
  border-color: #666;
}

input[type=radio] + span:hover,
input[type=checkbox] + span:hover {
  color: #000;
}

input[type=radio] + span:hover::before,
input[type=checkbox] + span:hover::before {
  border-color: #000;
}

input[type=radio] + span:hover::after,
input[type=checkbox] + span:hover::after {
  position: absolute;
  content: "";
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #ccc;
}

/* checked */
input[type=radio]:checked + span,
input[type=checkbox]:checked + span {
  color: #3498db;
}

input[type=radio]:checked + span::before,
input[type=checkbox]:checked + span::before {
  border-color: #3498db;
}

input[type=radio]:checked + span::after,
input[type=checkbox]:checked + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #3498db;
}

/* radio */
input[type=radio] + span::before,
input[type=radio] + span:hover::after,
input[type=radio]:checked + span::after {
  border-radius: 50%;
}

/* button */
input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover {
  border-color: #3498db;
  background: #3498db;
  color: #fff;
}

/* focus */
input:focus,
textarea:focus {
  border-color: #3498db;
}

input[type=submit]:focus,
input[type=reset]:focus,
input[type=button]:focus,
input[type=search]:focus {
  outline-offset: -2px;
}

/* disabled */
input:disabled,
input:disabled:hover,
textarea:disabled,
textarea:disabled:hover {
  border-color: #ccc;
  background: #eee;
  cursor: not-allowed;
}

input[type=radio]:disabled + span,
input[type=checkbox]:disabled + span {
  color: #ccc;
  cursor: not-allowed;
}

input[type=radio]:disabled + span::before,
input[type=checkbox]:disabled + span::before {
  border-color: #ccc;
  cursor: not-allowed;
}

/* バリデーション */
/* placeholder */
picture {
  display: block;
}

.c-bigText {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.6;
}

/* パンくず
------------------------------------------------ */
.c-breadclumb {
  width: 100%;
  padding: 40px 0;
  padding: 2.5rem 0;
  font-size: 16px;
  font-size: 1rem;
  overflow-x: hidden;
  /* 必要に応じて親要素にも設定 */
}
@media screen and (max-width: 767px) {
  .c-breadclumb {
    padding: 1.25rem 0;
    font-size: 0.875rem;
  }
}

.c-breadclumb__wrap {
  overflow-x: auto;
  /* 横スクロールを有効にする */
  white-space: nowrap;
  /* 子要素を横一列に並べる */
}

.c-breadclumb__wrap a {
  display: inline-block;
  /* 子要素のアンカーをインラインブロックにする */
}

.c-btn {
  position: relative;
  text-align: left;
  display: inline-block;
  min-width: 256px;
  min-width: 16rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 25px;
  padding-bottom: 1.5625rem;
  padding-inline: 3px 50px;
  padding-inline: 0.1875rem 3.125rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.25;
  border-bottom: none !important;
}

.c-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: #000;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}

/* ホバー時アニメーション */
.c-btn.hover::after {
  -webkit-animation: OutIn-Line 700ms ease forwards;
          animation: OutIn-Line 700ms ease forwards;
}

/* ホバー解除時アニメーション */
.c-btn.leave::after {
  -webkit-animation: InOut-Line 700ms ease forwards;
          animation: InOut-Line 700ms ease forwards;
}

/* アウト→イン（右から左に消えて左から右に出る） */
@-webkit-keyframes OutIn-Line {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
  }
  50% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
  }
  50.1% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
@keyframes OutIn-Line {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
  }
  50% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
  }
  50.1% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
/* イン→アウト（左から右に消えて右から左に出る） */
@-webkit-keyframes InOut-Line {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
  }
}
@keyframes InOut-Line {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
  }
}
.c-btn::before {
  position: absolute;
  content: "";
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
  bottom: 25px;
  bottom: 1.5625rem;
  right: 16px;
  right: 1rem;
  background-color: #e96087;
  -webkit-mask: url(../images/common/icon-blank.webp) center center/contain no-repeat;
          mask: url(../images/common/icon-blank.webp) center center/contain no-repeat;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-btn.arrow::before {
  width: 34px;
  width: 2.125rem;
  height: 34px;
  height: 2.125rem;
  -webkit-mask: initial;
          mask: initial;
  border-radius: 50%;
  bottom: 15px;
  bottom: 0.9375rem;
  background: #000 url(../images/common/arrow.webp) center center/14px no-repeat;
  background: #000 url(../images/common/arrow.webp) center center/0.875rem no-repeat;
}

.c-btn:hover::before {
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* -----------------------------------------------------------------
  共通ボタン
----------------------------------------------------------------- */
.c-button a {
  display: inline-block;
  width: 100%;
  max-width: 200px;
  max-width: 12.5rem;
  padding: 12px 5px;
  padding: 0.75rem 0.3125rem;
  font-size: 14px;
  font-size: 0.875rem;
  color: #000;
  text-align: center;
  background-color: #fff;
  border-radius: 1.875rem;
  border: 1px solid #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.c-button a:hover {
  background-color: #000;
  color: #fff;
}

.c-entry {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
  border: 1px solid #c6c6c6;
  background: #fff;
  max-width: 700px;
  max-width: 43.75rem;
  width: 100%;
  height: 212px;
  height: 13.25rem;
  padding-inline: 60px;
  padding-inline: 3.75rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-entry {
    height: 10.625rem;
    padding-inline: 1.875rem;
    margin-top: -2rem;
  }
}

.c-entry::after {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -180px;
  top: -11.25rem;
  width: 1px;
  background-color: #c6c6c6;
  height: 230px;
  height: 14.375rem;
}
@media screen and (max-width: 767px) {
  .c-entry::after {
    height: 6.25rem;
    top: -3.75rem;
  }
}
@media screen and (max-width: 600px) {
  .c-entry::after {
    height: 10rem;
    top: -8.75rem;
  }
}

.c-entry::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 60px;
  right: 3.75rem;
  border-radius: 50%;
  background: url(../images/common/arrow.webp) center center/18px no-repeat;
  background: url(../images/common/arrow.webp) center center/1.125rem no-repeat;
  background-color: #000;
  width: 44px;
  width: 2.75rem;
  height: 44px;
  height: 2.75rem;
}
@media screen and (max-width: 767px) {
  .c-entry::before {
    width: 1.875rem;
    height: 1.875rem;
    right: 1.875rem;
    background-size: 0.875rem;
  }
}

.c-entry:hover {
  opacity: 1;
}

.c-entry__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 36px;
  line-height: 2.25rem;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .c-entry__text {
    font-size: 0.875rem;
  }
}

.c-entry__text span {
  display: block;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-entry__text span {
    font-size: 1.5rem;
  }
}

.c-hamburger {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-transition: all 0.45s;
  transition: all 0.45s;
}
.c-hamburger:before {
  position: absolute;
  width: 100%;
  left: 0;
  color: #fff;
  font-weight: 600;
  bottom: 0px;
  bottom: 0rem;
  content: "Close";
  font-size: 15px;
  font-size: 0.9375rem;
  opacity: 0;
  -webkit-transition: all 0.45s;
  transition: all 0.45s;
}

.c-hamburger span {
  position: absolute;
  display: inline-block;
  background-color: #fff;
  width: 100%;
  height: 1px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.45s;
  transition: all 0.45s;
}
@media screen and (max-width: 767px) {
  .c-hamburger span {
    height: 3px;
    border-radius: 2px;
    width: 1.75rem;
  }
}

.c-hamburger span:nth-child(1) {
  top: calc(50% - 0.625rem);
}

.c-hamburger span:nth-child(2) {
  top: 50%;
}

.c-hamburger span:nth-child(3) {
  top: calc(50% + 0.625rem);
}

.c-hamburger.is-active span:nth-child(1) {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.c-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.c-hamburger.is-active span:nth-child(3) {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.c-hamburger.is-active::before {
  opacity: 1;
}

.c-news {
  display: grid;
  grid-template-columns: 11.25rem 1fr;
  gap: 35px;
  gap: 2.1875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 10px;
  padding: 1.25rem 0.625rem;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
  .c-news {
    padding-inline: 0;
    grid-template-columns: min(31.7948717949vw, 7.75rem) 1fr;
    gap: 1.25rem;
  }
}

.c-news__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.c-news__time {
  font-family: "Libre Baskerville", serif;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .c-news__time {
    font-size: 1.3125rem;
  }
}

.c-news__cat {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-news__cat {
    font-size: min(4.1025641026vw, 1rem);
    margin-left: 1.25rem;
  }
}
@media screen and (max-width: 600px) {
  .c-news__cat {
    font-size: 0.875rem;
    margin-left: 0.3125rem;
  }
}

.c-news__title {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.025em;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-news__title {
    margin-top: 0.625rem;
  }
}

.c-cat-info {
  color: #0091d7;
}

.c-cat-media {
  color: #e96087;
}

.c-cat-case_info {
  color: #deb000;
}

.c-single-cat {
  margin-left: 16px;
  margin-left: 1rem;
}

/* トップ セクションタイトル
------------------------------------------------ */
.c-sectionTitle {
  font-size: 36px;
  font-size: 2.25rem;
  color: #000;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .c-sectionTitle {
    font-size: 1.75rem;
  }
}

.c-sectionTitle span {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  color: #000;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-sectionTitle span {
    font-size: 0.875rem;
  }
}

.c-text {
  font-size: 16px;
  font-size: 1rem;
}

.c-title p {
  font-size: 54px;
  font-size: 3.375rem;
  font-weight: 400;
  line-height: 1.4814814815;
}
@media screen and (max-width: 767px) {
  .c-title p {
    font-size: 2.25rem;
  }
}

.c-title h2 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  color: #808080;
}
@media screen and (max-width: 767px) {
  .c-title h2 {
    font-size: 1rem;
    margin-top: 0.625rem;
  }
}

.l-archive {
  margin-top: 180px;
  margin-top: 11.25rem;
}
@media screen and (max-width: 767px) {
  .l-archive {
    margin-top: 6.25rem;
  }
}
@media screen and (max-width: 600px) {
  .l-archive {
    margin-top: 4.375rem;
  }
}

.l-contents {
  margin-top: 150px;
  margin-top: 9.375rem;
}
@media screen and (max-width: 767px) {
  .l-contents {
    margin-top: 6.25rem;
  }
}

.l-job.l-contents {
  padding-top: 160px;
  padding-top: 10rem;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .l-job.l-contents {
    padding-top: 8rem;
  }
}

.l-inner {
  width: 100%;
  height: 100%;
  max-width: 1250px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.l-single {
  margin-top: 200px;
  margin-top: 12.5rem;
}
@media screen and (max-width: 767px) {
  .l-single {
    margin-top: 6.25rem;
  }
}
@media screen and (max-width: 600px) {
  .l-single {
    margin-top: 4.375rem;
  }
}

/* -----------------------------------------------------------------
  swiper カスタマイズ
----------------------------------------------------------------- */
/* スライドの動き等速 */
/* 前ページ、次ページボタン共通のスタイル */
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
.p-about {
  background-color: #f5f5f5;
  padding-top: 150px;
  padding-top: 9.375rem;
  padding-bottom: 150px;
  padding-bottom: 9.375rem;
}

.p-about__block + .p-about__block {
  padding-top: 90px;
  padding-top: 5.625rem;
  margin-top: 90px;
  margin-top: 5.625rem;
  border-top: 1px solid #eaebf3;
}

.p-access {
  padding-block: 150px;
  padding-block: 9.375rem;
  background-color: #fff;
}

.p-access__map {
  max-width: 1100px;
  max-width: 68.75rem;
  margin-inline: auto;
  margin-top: 93px;
  margin-top: 5.8125rem;
}
@media screen and (max-width: 767px) {
  .p-access__map {
    margin-top: 3.75rem;
  }
}

.p-access__map iframe {
  aspect-ratio: 1100/439;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-access__map iframe {
    aspect-ratio: 1;
  }
}

.p-access__address {
  line-height: 1.5;
  letter-spacing: 0.025em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 400;
  margin-inline: auto;
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-archive__inner {
  max-width: calc(68.75rem + 50px);
}

.p-archive__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-archive__top {
    display: block;
  }
}

.p-archive__terms {
  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: 15px 35px;
  gap: 0.9375rem 2.1875rem;
  width: calc(100% - 15.625rem);
}
@media screen and (max-width: 600px) {
  .p-archive__terms {
    margin-bottom: 2rem;
    width: auto;
  }
}

.p-archive__term a {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  padding-left: 1.5625rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
}
.p-archive__term a::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 13px;
  width: 0.8125rem;
  height: 13px;
  height: 0.8125rem;
  border-radius: 50%;
  background-color: #cccccc;
}

.p-archive__term.is-active a {
  font-weight: bold;
}
.p-archive__term.is-active a::before {
  background-color: #000;
}

.p-archive__select {
  width: 200px;
  width: 12.5rem;
}

.p-archive__select select {
  display: inline-block;
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  text-align: center;
  height: 47px;
  height: 2.9375rem;
  letter-spacing: 0.025em;
  border: 1px solid #b5b5b5;
  background: #f5f5f5 url(../images/common/arrow-select.webp) calc(100% - 1.25rem) center/0.75rem no-repeat;
}

.p-archive__blocks_term {
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.p-archive__blocks {
  /*border-top: 1px solid #ddd;*/
  margin-top: 88px;
  margin-top: 5.5rem;
}
@media screen and (max-width: 767px) {
  .p-archive__blocks {
    margin-top: 3.75rem;
  }
}
@media screen and (max-width: 600px) {
  .p-archive__blocks {
    margin-top: 2.5rem;
  }
}

.p-archive__block {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 76px;
  gap: 4.75rem;
  grid-template-columns: 15.5rem 1fr;
  padding-block: 30px;
  padding-block: 1.875rem;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
  .p-archive__block {
    grid-template-columns: min(31.7948717949vw, 7.75rem) 1fr;
    gap: 1.25rem;
  }
}

.p-archive__thumbnail {
  aspect-ratio: 248/167;
}
.p-archive__thumbnail img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-archive__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 31px;
  gap: 1.9375rem;
}
@media screen and (max-width: 767px) {
  .p-archive__info {
    gap: 0.9375rem;
  }
}

.p-archive__time {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-archive__time {
    font-size: 1rem;
  }
}

.p-archive__cat {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-archive__cat {
    font-size: min(4.1025641026vw, 1rem);
  }
}

.p-archive__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 28px;
  margin-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-archive__title {
    margin-top: 0.625rem;
  }
}

.p-archive__date_ttl {
  font-size: 19.44px;
  font-size: 1.215rem;
  margin: 32px 0 -48px;
  margin: 2rem 0 -3rem;
}

.p-archive__pagenation {
  margin-top: 85px;
  margin-top: 5.3125rem;
}
@media screen and (max-width: 767px) {
  .p-archive__pagenation {
    margin-top: 3.125rem;
  }
}

.wp-pagenavi span {
  border: none !important;
}

.wp-pagenavi {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
}

.p-challenge__inner {
  background: url(../images/recruit/bg_challenge.webp) center center/cover no-repeat;
  padding: 165px 60px 165px 60px;
  padding: 10.3125rem 3.75rem 10.3125rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-challenge__inner {
    padding: 1.875rem 1.25rem;
    display: block;
  }
}

.p-challenge__wrap {
  max-width: 1250px;
  padding: 0 60px 0 60px;
  padding: 0 3.75rem 0 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  gap: 1.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-challenge__wrap {
    padding: 1.875rem 1.25rem;
    display: block;
  }
}

.p-challenge__head {
  position: sticky;
  top: 240px;
  top: 15rem;
}
@media screen and (max-width: 767px) {
  .p-challenge__head {
    position: static;
    margin-bottom: 5rem;
  }
}

.p-challenge__head h2 {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.6666666667;
}
@media screen and (max-width: 767px) {
  .p-challenge__head h2 {
    font-size: 1.875rem;
  }
}

.p-challenge__head p {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-challenge__text {
  font-weight: 500;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 3.5;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 767px) {
  .p-challenge__text {
    font-size: 0.9375rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-challenge__text p + p {
  margin-top: 42px;
  margin-top: 2.625rem;
}
@media screen and (max-width: 767px) {
  .p-challenge__text p + p {
    margin-top: 1.875rem;
  }
}

.p-company {
  background-color: #f5f5f5;
  padding-top: 150px;
  padding-top: 9.375rem;
  padding-bottom: 180px;
  padding-bottom: 11.25rem;
}
@media screen and (max-width: 767px) {
  .p-company {
    padding-block: 5rem;
  }
}

.p-company__inner {
  position: relative;
}

.p-company__info {
  max-width: 847px;
  max-width: 52.9375rem;
  margin-left: auto;
  margin-right: 50px;
  margin-right: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-company__info {
    margin-inline: 0;
    margin-top: 3.125rem;
  }
}

.p-company__row {
  display: grid;
  grid-template-columns: 25rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  gap: 1.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.025em;
  border-bottom: 1px solid rgba(0, 0, 0, .22);
  padding-block: 16px;
  padding-block: 1rem;
}
@media screen and (max-width: 767px) {
  .p-company__row {
    grid-template-columns: 100%;
    gap: 0.75rem;
  }
}

.p-company__row dt {
  font-weight: 600;
}

.p-company__row dd {
  font-weight: 400;
}

.p-company__img {
  position: absolute;
  bottom: 0;
  left: calc(50% - 750px);
  width: 400px;
  width: 25rem;
}
@media screen and (max-width: 1200px) {
  .p-company__img {
    left: calc(50% - 50vw);
    width: calc(-23.4375rem + 50vw - 25px);
  }
}

.p-cv {
  background: url(../images/index/bg_cv.webp) center center/cover no-repeat;
  padding-block: 190px;
  padding-block: 11.875rem;
}
@media screen and (max-width: 767px) {
  .p-cv {
    padding-block: 5rem;
  }
}

.p-cv__title {
  text-align: center;
}
.p-cv__title h2 {
  color: #fff;
}

.p-cv__text {
  line-height: 1.875;
  text-align: center;
  font-weight: 500;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-cv__tel {
  text-align: center;
  font-size: 32px;
  font-size: 2rem;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-cv__tel {
    font-size: 1.5rem;
    margin-top: 2.625rem;
  }
}

.p-cv__tel a {
  font-size: 42px;
  font-size: 2.625rem;
}

.p-cv__tel span {
  display: block;
  font-family: "Shippori Mincho B1", serif;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-data__lead {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.025em;
  color: #808080;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-data__lead {
    font-size: 0.875rem;
  }
}

.p-data__blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 50px;
  gap: 2.5rem 3.125rem;
  margin-top: 27px;
  margin-top: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .p-data__blocks {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}

.p-data__block {
  background-color: #fff;
  height: 237px;
  height: 14.8125rem;
  position: relative;
  padding: 30px;
  padding: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-data__block {
    height: 11.25rem;
    padding: 1.25rem 0.9375rem;
  }
}

.p-data__blockTitle {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
  border-bottom: 1px solid #eaebf3;
}
@media screen and (max-width: 767px) {
  .p-data__blockTitle {
    font-size: 1rem;
    padding-bottom: 0.625rem;
  }
}

.p-data__number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 400;
  gap: 5px;
  gap: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-data__number {
    font-size: 1.5rem;
    gap: 0.1875rem;
  }
}

.p-data__number img {
  width: 74px;
  width: 4.625rem;
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-data__number img {
    width: 3.25rem;
    margin-left: 0.625rem;
  }
}

.p-data__number span {
  font-size: 60px;
  font-size: 3.75rem;
  font-weight: 400;
  letter-spacing: -0.025em;
}
@media screen and (max-width: 767px) {
  .p-data__number span {
    font-size: 2.625rem;
  }
}

.p-data__note {
  font-size: 14px;
  font-size: 0.875rem;
  position: absolute;
  width: calc(100% - 3.75rem);
  text-align: center;
  letter-spacing: 0.01em;
  color: #999999;
  bottom: 26px;
  bottom: 1.625rem;
}
@media screen and (max-width: 767px) {
  .p-data__note {
    width: calc(100% - 2.5rem);
    font-size: 0.75rem;
  }
}

.p-data__icon {
  position: absolute;
  bottom: 70px;
  bottom: 4.375rem;
  right: 30px;
  right: 1.875rem;
  width: 85px;
  width: 5.3125rem;
  height: 61px;
  height: 3.8125rem;
}
@media screen and (max-width: 767px) {
  .p-data__icon {
    width: 3.625rem;
    height: 2.8125rem;
    right: 1.25rem;
    bottom: 3.25rem;
  }
}
.p-data__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}

.p-drawer {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  overflow-y: auto;
  background: url(../images/common/bg_drawer.webp) center center/cover no-repeat;
  padding-top: 100px;
  padding-top: 6.25rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.45s;
  transition: all 0.45s;
}
@media screen and (max-width: 767px) {
  .p-drawer {
    padding-top: 9.375rem;
  }
}

.p-drawer.is-active {
  opacity: 1;
  visibility: visible;
}

.p-drawer__inner {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.p-drawer__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 100px;
  gap: 0 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-drawer__links {
    grid-template-columns: 100%;
  }
}

.p-drawer__link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.025em;
  gap: 62px;
  gap: 3.875rem;
  padding-block: 50px;
  padding-block: 3.125rem;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, .34);
}
@media screen and (max-width: 767px) {
  .p-drawer__link a {
    padding-block: 2rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 2rem 0.5rem;
  }
}

.p-drawer__link a span {
  font-size: 21px;
  font-size: 1.3125rem;
  letter-spacing: 0.01em;
}

.p-drawer__textLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 54px;
  margin-top: 3.375rem;
  gap: 69px;
  gap: 4.3125rem;
}
@media screen and (max-width: 767px) {
  .p-drawer__textLinks {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}

.p-drawer__textLink a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  color: #d9d9d9;
  gap: 14px;
  gap: 0.875rem;
}

.p-drawer__textLink a img {
  width: 16px;
  width: 1rem;
}

.p-drawer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 75px;
  margin-top: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .p-drawer__wrap {
    display: block;
  }
}

.p-drawer__info {
  line-height: 1.875;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-drawer__info {
    text-align: center;
  }
}

.p-drawer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  gap: 0.9375rem;
  margin-top: 78px;
  margin-top: 4.875rem;
}
@media screen and (max-width: 767px) {
  .p-drawer__sns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-drawer__sns span {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.025em;
}

.p-drawer__snsLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 70px;
  gap: 4.375rem;
  gap: 12px;
  gap: 0.75rem;
}

.p-drawer__snsLink {
  width: 33px;
  width: 2.0625rem;
  height: 28px;
  height: 1.75rem;
}

.p-drawer__snsLink a {
  display: block;
}

.p-drawer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 65px;
  margin-top: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .p-drawer__bottom {
    display: block;
    text-align: center;
  }
}

.p-drawer__privacy {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .p-drawer__privacy {
    font-size: 0.875rem;
  }
}

.p-drawer__copy {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-drawer__copy {
    margin-top: 2rem;
  }
}

.p-eiko__wrap {
  display: grid;
  grid-template-columns: 52% 1fr;
  gap: min(4vw, 60px);
  gap: min(4vw, 3.75rem);
  margin-top: 126px;
  margin-top: 7.875rem;
}
@media screen and (max-width: 767px) {
  .p-eiko__wrap {
    display: block;
    margin-top: 5rem;
  }
}
@media screen and (max-width: 600px) {
  .p-eiko__wrap {
    margin-top: 3.75rem;
  }
}

.p-eiko__bigText {
  line-height: 2;
}

.p-eiko__text {
  line-height: 2.25;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-eiko__text {
    line-height: 1.5;
  }
}

.p-eiko__text p + p {
  margin-top: 36px;
  margin-top: 2.25rem;
}

.p-eiko__img {
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-eiko__img {
    margin-top: 1.875rem;
  }
}

.p-eiko__features {
  margin-top: 80px;
  margin-top: 5rem;
}

.p-features {
  background-color: #eaebf3;
  padding-block: 150px 200px;
  padding-block: 9.375rem 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-features {
    padding-block: 5rem;
  }
}

.p-features__blocks {
  margin-inline: auto;
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-features__block {
  display: grid;
  padding: 25px 60px;
  padding: 1.5625rem 3.75rem;
  gap: 50px;
  gap: 3.125rem;
  grid-template-columns: 21.1875rem 1fr;
  border: 1px solid #dfdfdf;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-features__block {
    display: block;
    padding: 1.25rem 1.25rem;
  }
}

.p-features__block + .p-features__block {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-features__contents p:nth-child(1) {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-features__contents p:nth-child(1) {
    line-height: 1.5;
    margin-top: 1.5rem;
  }
}

.p-features__contents p:nth-child(2) {
  line-height: 1.875;
  font-weight: 400;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-features__contents p:nth-child(2) {
    margin-top: 1.25rem;
  }
}

.p-footer {
  color: #fff;
  background-color: #000;
  padding-block: 152px 182px;
  padding-block: 9.5rem 11.375rem;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-block: 5rem 1.875rem;
  }
}

.p-footer__wrap {
  display: grid;
  grid-template-columns: 1fr 50rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-footer__wrap {
    display: block;
  }
}

.p-footer__logo {
  width: 242px;
  width: 15.125rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    margin-inline: auto;
  }
}

.p-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  gap: 0.9375rem;
  margin-top: 78px;
  margin-top: 4.875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__sns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 3.25rem;
  }
}

.p-footer__sns span {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.025em;
}

.p-footer__snsLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  gap: 0.75rem;
}

.p-footer__snsLink {
  width: 33px;
  width: 2.0625rem;
  height: 28px;
  height: 1.75rem;
}

.p-footer__snsLink a {
  display: block;
}

.p-footer__snsLink a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}

.p-footer__nav {
  margin-top: -30px;
  margin-top: -1.875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    margin-top: 3.125rem;
  }
}

.p-footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 10px;
  padding-inline: 0.625rem;
  padding-block: 30px;
  padding-block: 1.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, .34);
}
@media screen and (max-width: 767px) {
  .p-footer__links {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5625rem 1.25rem;
  }
}

.p-footer__link + .p-footer__link {
  margin-left: 70px;
  margin-left: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-footer__link + .p-footer__link {
    margin-left: 0;
  }
}

.p-footer__link:nth-child(1) {
  min-width: 110px;
  min-width: 6.875rem;
}

.p-footer__link a {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.p-footer__link.--sub a {
  color: #737373;
  font-size: 16px;
  font-size: 1rem;
}

.p-footer__link.--sub + .p-footer__link.--sub {
  margin-left: 40px;
  margin-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__link.--sub + .p-footer__link.--sub {
    margin-left: 0;
  }
}

.p-footer__bottom {
  margin-top: 135px;
  margin-top: 8.4375rem;
}
@media screen and (max-width: 767px) {
  .p-footer__bottom {
    margin-top: 3.4375rem;
  }
}

.p-footer__about {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-footer__about {
    text-align: center;
  }
}

.p-footer__about p + p {
  margin-top: 0.5em;
}

.p-footer__bottomWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 44px;
  margin-top: 2.75rem;
}
@media screen and (max-width: 767px) {
  .p-footer__bottomWrap {
    margin-top: 3.25rem;
    display: block;
    text-align: center;
  }
}

.p-footer__privacy {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .p-footer__privacy {
    font-size: 0.875rem;
  }
}

.p-footer__copy {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .p-footer__copy {
    font-size: 0.875rem;
    margin-top: 1.5rem;
  }
}

.p-globalNav {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 53px;
  gap: 3.3125rem;
}

.p-globalNav__links {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 39px;
  gap: 2.4375rem;
}

.p-globalNav__link {
  height: 100%;
}

.p-globalNav__link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.025em;
  gap: 11px;
  gap: 0.6875rem;
  -webkit-transition: all 0.45s;
  transition: all 0.45s;
}

.p-globalNav__link a span {
  font-size: 17px;
  font-size: 1.0625rem;
  letter-spacing: 0.01em;
}

.p-globalNav__x {
  width: 25px;
  width: 1.5625rem;
  -webkit-transition: all 0.45s;
  transition: all 0.45s;
}

.p-globalNav__x a {
  display: block;
}

.p-greeting__body {
  background: url(../images/recruit/bg_greeting.webp) center right/cover no-repeat;
  margin-top: 64px;
  margin-top: 4rem;
  padding: 82px 52px;
  padding: 5.125rem 3.25rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-greeting__body {
    padding: 1.875rem 1.25rem;
  }
}
@media screen and (max-width: 600px) {
  .p-greeting__body {
    background-image: none;
    padding: 3rem 2rem;
  }
}

.p-greeting__message {
  line-height: 1.875;
  max-width: 650px;
  max-width: 40.625rem;
}

.p-greeting__message p + p {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-greeting__name {
  max-width: 650px;
  max-width: 40.625rem;
  text-align: right;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  margin-top: 45px;
  margin-top: 2.8125rem;
}

.p-greeting__pic {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-greeting__pic {
    display: block;
    margin-top: 4rem;
  }
}

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 136px;
  height: 8.5rem;
  z-index: 100;
  -webkit-transition: all 0.45s;
  transition: all 0.45s;
  padding-top: 45px;
  padding-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 4.375rem;
    padding-block: 0;
  }
}

.p-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: unset;
  padding-inline: 25px 50px;
  padding-inline: 1.5625rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding-inline: 1.25rem;
  }
}

.p-header__logo {
  position: relative;
  z-index: 1;
  width: 180px;
  width: 11.25rem;
  -webkit-transition: all 0.45s;
  transition: all 0.45s;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="table" tableValues="1 0" /><feFuncG type="table" tableValues="1 0" /><feFuncB type="table" tableValues="1 0" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 7.5rem;
  }
}

.is-active .p-header .p-header__logo {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="table" tableValues="1 0" /><feFuncG type="table" tableValues="1 0" /><feFuncB type="table" tableValues="1 0" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(0) invert(1) !important;
          filter: brightness(0) invert(1) !important;
}

.is-scrolled .p-header__logo {
  -webkit-filter: none !important;
          filter: none !important;
}

.p-header.is-sub .p-header__logo {
  -webkit-filter: none;
          filter: none;
}

.p-header__logo a {
  display: block;
}

.p-header__globalNav {
  height: 100%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-header__globalNav {
    display: none;
  }
}

.p-header__hamburger {
  position: relative;
  z-index: 1;
  width: 45px;
  width: 2.8125rem;
  height: 100%;
  margin-left: auto;
}

.p-header.is-scrolled,
.p-header.is-sub {
  background: whitesmoke;
  height: 104px;
  height: 6.5rem;
  padding-top: 0;
}
.p-header.is-scrolled .p-globalNav__x,
.p-header.is-sub .p-globalNav__x {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.p-header.is-scrolled .p-globalNav__link a,
.p-header.is-sub .p-globalNav__link a {
  color: #000;
}
.p-header.is-scrolled .c-hamburger span,
.p-header.is-sub .c-hamburger span {
  background-color: #000;
}

@media screen and (max-width: 767px) {
  .p-header.is-scrolled {
    height: 4.5rem;
  }
}

.p-history {
  padding-block: 150px;
  padding-block: 9.375rem;
}

.p-history__wrap {
  display: grid;
  grid-template-columns: 11.625rem 1fr;
  gap: min(11.4666666667vw, 172px);
  gap: min(11.4666666667vw, 10.75rem);
  margin-top: 65px;
  margin-top: 4.0625rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-history__wrap {
    grid-template-columns: 6.25rem 1fr;
    gap: 1.25rem;
  }
}

.p-history__gallery {
  display: grid;
  grid-template-columns: 100%;
  gap: 21px;
  gap: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .p-history__gallery {
    gap: 2rem;
  }
}

.p-history__block {
  display: grid;
  grid-template-columns: 14.375rem 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-history__block {
    grid-template-columns: 100%;
  }
}

.p-history__block + .p-history__block {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-history__block + .p-history__block {
    margin-top: 2.5rem;
  }
}

.p-history__year {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-history__year {
    font-size: 0.75rem;
  }
}

.p-history__year strong {
  display: block;
  font-weight: 400;
  font-size: 42px;
  font-size: 2.625rem;
  margin-bottom: 18px;
  margin-bottom: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-history__year strong {
    font-size: 2rem;
    margin-bottom: 0.375rem;
  }
}

.p-history__content {
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
}
@media screen and (max-width: 767px) {
  .p-history__content {
    font-size: 0.875rem;
    margin-top: 0.875rem;
  }
}

.p-history__content strong {
  display: block;
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 600;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-history__content strong {
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
  }
}

.p-job__blocks {
  max-width: 1000px;
  max-width: 62.5rem;
  margin-inline: auto;
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-job__btn {
  position: relative;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.05em;
  padding-block: 40px;
  padding-block: 2.5rem;
  border-bottom: 1px solid;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-job__btn {
    font-size: 1.125rem;
    padding-block: 1.25rem;
  }
}

.p-job__btn::before,
.p-job__btn::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 5px;
  right: 0.3125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 22px;
  width: 1.375rem;
  height: 2px;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .p-job__btn::before,
.p-job__btn::after {
    width: 0.875rem;
    height: 0.0625rem;
    right: 0;
  }
}

.p-job__btn::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  -webkit-transition: all 0.45s;
  transition: all 0.45s;
}

.p-job__btn.is-active::after {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-job__toggleContent {
  display: none;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-job__toggleContent {
    margin-top: 1.875rem;
  }
}

.p-media {
  padding-block: 150px;
  padding-block: 9.375rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-media {
    padding-block: 5rem;
  }
}

.p-media__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-media__head {
    display: block;
  }
}

.p-media__lead {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6666666667;
}
@media screen and (max-width: 767px) {
  .p-media__lead {
    font-size: 1rem;
    margin-top: 1.25rem;
  }
}

.p-media__cards {
  display: grid;
  width: 91.66%;
  grid-template-columns: repeat(2, 1fr);
  gap: 55px;
  gap: 3.4375rem;
  margin-inline: auto;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-media__cards {
    grid-template-columns: 1fr;
    gap: 2.1875rem;
  }
}

.p-media__card {
  display: grid;
  grid-template-rows: subgrid;
  gap: 0;
  grid-row: span 3;
}

.p-media__img img {
  aspect-ratio: 308/209;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.3125rem;
}

.p-media__cardTitle {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-media__text {
  line-height: 1.875;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-message {
  background-color: #f5f5f5;
  padding-block: 180px;
  padding-block: 11.25rem;
}
@media screen and (max-width: 767px) {
  .p-message {
    padding-block: 5rem;
  }
}

.p-message__wrap {
  display: grid;
  grid-template-columns: 1fr 42.5rem;
  gap: 110px;
  gap: 6.875rem;
  margin-top: 90px;
  margin-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-message__wrap {
    display: block;
    margin-top: 5rem;
  }
}

.p-message__img {
  margin-left: calc(-50vw - -37.5rem);
}
@media screen and (max-width: 1200px) {
  .p-message__img {
    margin-left: -25px;
  }
}
@media screen and (max-width: 767px) {
  .p-message__img {
    margin-inline: auto;
  }
}

@media screen and (max-width: 767px) {
  .p-message__content {
    margin-top: 1.875rem;
  }
}

.p-message__text {
  font-weight: 400;
  line-height: 1.875;
}

.p-message__text p + p {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-message__name {
  text-align: right;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-mission__wrap {
  display: grid;
  grid-template-columns: 47.8125rem 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-mission__wrap {
    display: block;
  }
}

.p-mission__subTitle {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-mission__subTitle {
    margin-top: 5rem;
  }
}

.p-mission__text {
  line-height: 2.25;
  font-weight: 400;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-mission__text {
    line-height: 2;
  }
}

.p-mission__img {
  margin-right: calc(-50vw - -37.5rem);
}
@media screen and (max-width: 1200px) {
  .p-mission__img {
    margin-right: -25px;
  }
}
@media screen and (max-width: 767px) {
  .p-mission__img {
    margin-inline: 0;
    margin-top: 1.875rem;
  }
}

.p-mv {
  position: relative;
  height: 100vh;
  min-height: 800px;
  max-height: 1000px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-mv {
    min-height: 31.25rem;
  }
}

.p-mv__inner {
  max-width: calc(87.5rem + 50px);
  position: relative;
  z-index: 1;
}

.p-mv__content {
  position: absolute;
  left: 25px;
  width: calc(100% - 50px);
  bottom: 144px;
  bottom: 9rem;
}
@media screen and (max-width: 767px) {
  .p-mv__content {
    width: calc(100% - 2.5rem);
    bottom: 10.3125rem;
  }
}

.p-mv__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-mv__title {
    font-size: 0.875rem;
  }
}

.p-mv__title span {
  display: block;
  font-weight: 400;
  font-size: 80px;
  font-size: 5rem;
  letter-spacing: 0.025em;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-mv__title span {
    font-size: 2.75rem;
    letter-spacing: -0.025em;
    margin-top: 1rem;
  }
}

.p-mv__text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.875;
  margin-top: 33px;
  margin-top: 2.0625rem;
}
@media screen and (max-width: 767px) {
  .p-mv__text {
    font-size: 0.6875rem;
    line-height: 1.6363636364;
    margin-top: 1.125rem;
  }
}

.p-mv__recruit {
  position: absolute;
  width: 182px;
  width: 11.375rem;
  height: 182px;
  height: 11.375rem;
  background-color: #0091d7;
  border-radius: 50%;
  -webkit-transition: all 0.45s;
  transition: all 0.45s;
  right: 0;
  bottom: 80px;
  bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-mv__recruit {
    width: 7.5rem;
    height: 7.5rem;
    bottom: 2.5rem;
    right: 0.3125rem;
  }
}

.p-mv__recruit a {
  position: relative;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  gap: 13px;
  gap: 0.8125rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .p-mv__recruit a {
    font-size: 0.8125rem;
    line-height: 1.2307692308;
  }
}

.p-mv__recruit a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  background: url(../images/index/recruit_txt.png) center center/contain no-repeat;
  -webkit-animation: rotate 30s linear infinite;
          animation: rotate 30s linear infinite;
}
@media screen and (max-width: 767px) {
  .p-mv__recruit a::before {
    width: calc(100% - 0.625rem);
    height: calc(100% - 0.625rem);
  }
}

.p-mv__recruit span {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-mv__recruit span {
    font-size: 0.625rem;
  }
}

.p-mv__slider {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.p-mv__slider .slick-list,
.p-mv__slider .slick-track {
  height: 100%;
}
.p-mv__slider .slider-dots {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 29px;
  gap: 1.8125rem;
  bottom: 70px;
  bottom: 4.375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding-inline: 25px;
  max-width: calc(87.5rem + 50px);
  width: 100%;
}
.p-mv__slider .slider-dots li {
  list-style: none;
  position: relative;
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  border-radius: 50%;
  background-color: #fff;
}
.p-mv__slider .slider-dots li::before {
  position: absolute;
  content: "";
  border: 1px solid #fff;
  border-radius: 50%;
  width: 21px;
  width: 1.3125rem;
  height: 21px;
  height: 1.3125rem;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transition: all 0.45s;
  transition: all 0.45s;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-mv__slider .slider-dots li.slick-active::before {
  opacity: 1;
}
.p-mv__slider .slider-dots button {
  display: none;
}

.p-mv__img {
  width: 100%;
  height: 100%;
}

.p-mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

@media (hover: hover) {
  .p-mv__recruit:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.p-mv__img.slick-active img {
  -webkit-animation: zoomIn 9s linear forwards;
          animation: zoomIn 9s linear forwards;
}

.p-mv__img:first-of-type.slick-active img {
  -webkit-animation: zoomIn 9s linear forwards;
          animation: zoomIn 9s linear forwards;
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
}

@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@keyframes zoomIn {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 33px;
  gap: 2.0625rem;
}

.page-numbers {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #999999;
}

.page-numbers.current {
  color: #000;
}

.p-philosophy {
  background: url(../images/about/bg_philosophy.webp) center center/cover no-repeat;
  padding-block: 160px;
  padding-block: 10rem;
}
@media screen and (max-width: 767px) {
  .p-philosophy {
    padding-block: 5rem;
  }
}

.p-philosophy__title h2 {
  color: #fff;
}

.p-philosophy__bigText {
  margin-block: auto;
  font-weight: 400;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 2;
  letter-spacing: 0.075em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  margin-top: 140px;
  margin-top: 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-philosophy__bigText {
    font-size: 1.5rem;
    margin-top: 5rem;
  }
}

.p-philosophy__text {
  text-align: center;
  font-weight: 400;
  line-height: 2.25;
  margin-top: 96px;
  margin-top: 6rem;
}

.p-recruit-vision {
  padding-block: 80px;
  padding-block: 5rem;
  background-color: #fff;
  position: relative;
}

.p-recruit-vision::before {
  position: absolute;
  content: "Vision";
  width: 100%;
  height: 330px;
  height: 20.625rem;
  font-weight: 400;
  font-size: 330px;
  font-size: 20.625rem;
  opacity: 0.04;
  letter-spacing: normal;
  font-family: "Libre Baskerville", serif;
  bottom: 170px;
  bottom: 10.625rem;
  left: -50px;
  left: -3.125rem;
  color: black;
}
@media screen and (max-width: 767px) {
  .p-recruit-vision::before {
    font-size: 7.8125rem;
    height: 7.8125rem;
    bottom: 1.875rem;
    left: -1.875rem;
  }
}

.p-recruit-vision__inner {
  position: relative;
  z-index: 1;
}

.p-recruit-vision__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-recruit-vision__head {
    display: block;
  }
}

.p-recruit-vision__lead {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-recruit-vision__lead {
    font-size: 1rem;
    margin-top: 1.25rem;
  }
}

.p-recruit-vision__slider {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 96px;
  margin-top: 6rem;
}

.p-recruit-vision__slider picture {
  width: 288px;
  width: 18rem;
  margin-right: 36px;
  margin-right: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-vision__slider picture {
    width: 12.5rem;
    margin-right: 1.875rem;
  }
}

.p-recruit-vision__text {
  max-width: 766px;
  max-width: 47.875rem;
  margin-left: auto;
  line-height: 1.875;
  margin-top: 90px;
  margin-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-vision__text {
    margin-top: 3.75rem;
  }
}

.p-recruit-vision__text p + p {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-recruit__links {
  margin-top: 87px;
  margin-top: 5.4375rem;
  margin-left: calc(50% - 50vw);
  width: 100vw;
  background-color: #ccc;
  background-image: url(../images/recruit/bg_recruit_designer.jpg);
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 767px) {
  .p-recruit__links {
    margin-top: 3.4375rem;
  }
}

.p-recruit__link {
  position: relative;
}

.p-recruit__link + .p-recruit__link {
  border-top: 1px solid rgba(255, 255, 255, .27);
}

.p-recruit__link a {
  position: relative;
  display: block;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.05em;
  padding-block: 88px;
  padding-block: 5.5rem;
  padding-right: max(50vw - 600px, 25px);
  padding-right: max(50vw - 37.5rem, 25px);
  padding-left: max(50vw - 600px + 190px, 25px + 190px);
  padding-left: max(50vw - 37.5rem + 11.875rem, 25px + 11.875rem);
}
@media screen and (max-width: 767px) {
  .p-recruit__link a {
    font-size: 1rem;
    padding-right: 1.25rem;
    padding-left: 6.25rem;
    padding-block: 3rem;
  }
}

.p-recruit__link.is-active a::before {
  position: absolute;
  content: "募集中";
  width: 118px;
  width: 7.375rem;
  height: 120px;
  height: 7.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: normal;
  left: max(50vw - 600px, 25px);
  left: max(50vw - 37.5rem, 25px);
  background: url(../images/recruit/recruit-active.webp) center center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-recruit__link.is-active a::before {
    width: 3.75rem;
    height: 3.75rem;
    font-size: 0.75rem;
  }
}

.p-recruit__link a::after {
  position: absolute;
  content: "";
  width: 35px;
  width: 2.1875rem;
  height: 35px;
  height: 2.1875rem;
  border: 1px solid #fff;
  border-radius: 50%;
  right: max(50vw - 600px, 25px);
  right: max(50vw - 37.5rem, 25px);
  background: url(../images/common/arrow.webp) center center/15px no-repeat;
  background: url(../images/common/arrow.webp) center center/0.9375rem no-repeat;
  border: 1px solid #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-recruit__link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all 0.45s;
  transition: all 0.45s;
}

.p-recruit__link:hover::after {
  opacity: 0.16;
}

.p-recruit__entry {
  text-align: center;
  margin-top: 150px;
  margin-top: 9.375rem;
}

.p-single__inner {
  max-width: calc(56.25rem + 50px);
}

.p-single__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 34px;
  gap: 2.125rem;
}
@media screen and (max-width: 767px) {
  .p-single__info {
    gap: 1.25rem;
  }
}

.p-single__time {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .p-single__time {
    font-size: 1.25rem;
  }
}

.p-single__cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-single__cats {
    gap: 0.625rem;
  }
}

.p-single__cat a {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-single__cat a {
    font-size: 0.875rem;
  }
}

.p-single__title {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.6666666667;
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-single__title {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
}

.p-single__content {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
  margin-top: 50px;
  margin-top: 3.125rem;
}

@media screen and (max-width: 767px) {
  .p-single__content {
    margin-top: 2.5rem;
  }
}
.p-single__content h2 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-single__content h2 {
    font-size: 1.25rem;
  }
}
.p-single__content h3 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .p-single__content h3 {
    font-size: 1.125rem;
  }
}

.p-single__content p {
  font-size: 16px;
  font-size: 1rem;
}

.p-single__content a {
  color: #000;
  text-decoration: underline;
  -webkit-transition: all 0.45s;
  transition: all 0.45s;
}
.p-single__content a.btn{ text-decoration: none;}


/**
.p-single__content * + *:not(li) {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-single__content * + *:not(li) {
    margin-top: 1.25rem;
  }
}
.p-single__content * + h2,
.p-single__content * + h3 {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-single__content * + h2,
.p-single__content * + h3 {
    margin-top: 3.125rem;
  }
}**/
.p-single__content ul {
  list-style-type: disc;
  margin-left: 1em;
}
.p-single__content ol {
  list-style: decimal;
  margin-left: 1em;
}

.p-single__content .wp-block-button a {
  color: #fff;
  border: 1px solid #000;
  text-decoration: none;
  -webkit-transition: all 0.45s;
  transition: all 0.45s;
}
.p-single__content a:hover {
  opacity: 0.6;
}
.p-single__content a:hover img{
  opacity: 0.6;
	  -webkit-transition: all 0.45s;
  transition: all 0.45s;
}

.p-single__content .addtoany_share_save_container {
  text-align: center;
}
.p-single__content .a2a_kit a + a {
  margin-top: 0;
}

.p-single__bottom {
  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;
  padding-top: 95px;
  padding-top: 5.9375rem;
  margin-top: 100px;
  margin-top: 6.25rem;
  border-top: 1px solid rgba(191, 191, 191, .54);
}
@media screen and (max-width: 767px) {
  .p-single__bottom {
    padding-top: 3.75rem;
    margin-top: 3.75rem;
  }
}

.p-single__nav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  gap: 24px;
  gap: 1.5rem;
  line-height: 1.875;
}
.p-single__nav a::before {
  content: "";
  width: 16px;
  width: 1rem;
  height: 11px;
  height: 0.6875rem;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(0);
          filter: brightness(0);
  background: url(../images/common/arrow.webp) center center/contain no-repeat;
}

.p-single__nav.--prev a::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.p-single__nav.--next a {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.p-single__back a {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.875;
}

.p-subMv {
  padding-top: 230px;
  padding-top: 14.375rem;
}
@media screen and (max-width: 767px) {
  .p-subMv {
    padding-top: 10rem;
  }
}

.p-subMv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-subMv__inner {
    display: block;
  }
}

.p-subMv__title h1 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-subMv__title h1 {
    font-size: 0.75rem;
  }
}

.p-subMv__title p {
  font-size: 72px;
  font-size: 4.5rem;
  font-weight: 400;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-subMv__title p {
    font-size: 2.875rem;
  }
}

.p-symbol__wrap {
  display: grid;
  grid-template-columns: 1fr 19.75rem;
  gap: min(10.7333333333vw, 161px);
  gap: min(10.7333333333vw, 10.0625rem);
}
@media screen and (max-width: 767px) {
  .p-symbol__wrap {
    display: block;
  }
}

.p-symbol__text {
  line-height: 2.25;
  margin-top: 80px;
  margin-top: 5rem;
}

.p-symbol__logo {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-symbol__logo {
    margin-top: 3.125rem;
    margin-inline: auto;
    max-width: 15.625rem;
  }
}

.p-topAbout {
  position: relative;
}

.p-topAbout__inner {
  position: relative;
}

.p-topAbout__title {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-topAbout__title {
    font-size: 1.125rem;
  }
}

.p-topAbout__subTitle {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.875;
  letter-spacing: 0.025em;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-topAbout__subTitle {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
}

.p-topAbout__en {
  position: relative;
  z-index: 1;
  color: #a6a6a6;
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: -0.01em;
  line-height: 1.5;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-topAbout__en {
    font-size: 1.25rem;
    margin-top: 2rem;
  }
}

.p-topAbout__text {
  width: 50%;
  line-height: 1.875;
  margin-left: auto;
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-topAbout__text {
    width: 100%;
    margin-top: 1.5rem;
  }
}

.p-topAbout__btn {
  text-align: right;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 600px) {
  .p-topAbout__btn {
    text-align: center;
  }
}

.p-topAbout__img {
  position: absolute;
  max-width: 820px;
  max-width: 51.25rem;
  top: 0;
  right: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-topAbout__img {
    position: static;
    position: initial;
    margin-top: 2rem;
  }
}

.p-topBusiness__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-topBusiness__head {
    display: block;
  }
}

.p-topBusiness__subTitle {
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-topBusiness__subTitle {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-top: 1.25rem;
  }
}

.p-topBusiness__lead {
  font-weight: 500;
  line-height: 1.875;
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-topBusiness__blocks {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-topBusiness__block + .p-topBusiness__block {
  margin-top: 45px;
  margin-top: 2.8125rem;
}

.p-topBusiness__blockTitle {
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}
.p-topBusiness__blockTitle span {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: normal;
}

.p-topBusiness__box {
  display: grid;
  grid-template-columns: 1fr 50%;
  gap: 65px;
  gap: 4.0625rem;
  background-color: #e9e9e4;
  padding: 75px 50px;
  padding: 4.6875rem 3.125rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-topBusiness__box {
    margin-top: 2rem;
    display: block;
    padding: 1.875rem 1.25rem;
  }
}

.p-topBusiness__boxText {
  line-height: 2.25;
}
@media screen and (max-width: 767px) {
  .p-topBusiness__boxText {
    line-height: 1.5;
    margin-top: 1.5rem;
  }
}

.p-topBusiness__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  margin-top: 2.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 45px;
  gap: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-topBusiness__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.875rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-topBusiness__link {
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.p-topCase__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 100px;
  gap: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-topCase__head {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .p-topCase__lead {
    margin-top: 1.25rem;
    line-height: 1.5;
  }
}

.p-topCase__lists {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 75px;
  margin-top: 4.6875rem;
  gap: 50px 30px;
  gap: 3.125rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-topCase__lists {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5625rem 1.25rem;
    margin-top: 3.125rem;
  }
}

.p-topCase__img a {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 276/281;
  width: 100%;
  height: 100%;
}

.p-topCase__listTitle {
  color: #808080;
  margin-top: 20px;
  margin-top: 1.25rem;
  letter-spacing: 0.025em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-topCase__listTitle {
    margin-top: 0.875rem;
  }
}

.p-topCase__listText {
  margin-top: 16px;
  margin-top: 1rem;
  letter-spacing: 0.025em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-topCase__listText {
    margin-top: 0.625rem;
  }
}

.p-topCase__link {
  margin-top: 110px;
  margin-top: 6.875rem;
  text-align: center;
}

.p-topFacility {
  background-color: #eaebf3;
  overflow: hidden;
  padding-bottom: 135px;
  padding-bottom: 8.4375rem;
}

.p-topFacility__headImg {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.p-topFacility__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-topFacility__wrap {
    display: block;
  }
}

.p-topFacility__lead {
  width: 50%;
  font-weight: 500;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .p-topFacility__lead {
    width: 100%;
    margin-top: 3.125rem;
  }
}

.p-topFacility__link {
  margin-top: 25px;
  margin-top: 1.5625rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-topFacility__link {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 600px) {
  .p-topFacility__link {
    text-align: center;
  }
}

.p-topFacility__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 26px;
  gap: 2rem 1.625rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-topFacility__cards {
    grid-template-columns: 100%;
    gap: 1.5625rem;
  }
}

.p-topFacility__card {
  border: 1px solid #d4d5dd;
  padding: 15px 15px 40px;
  padding: 0.9375rem 0.9375rem 2.5rem;
}

.p-topFacility__img img {
  aspect-ratio: 350/300;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.p-topFacility__cardTitle {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-topFacility__text {
  text-align: center;
  line-height: 1.875;
  letter-spacing: 0.025em;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-topNews__wrap {
  display: grid;
  grid-template-columns: 1fr 52.0625rem;
}
@media screen and (max-width: 767px) {
  .p-topNews__wrap {
    grid-template-columns: 100%;
  }
}

@media screen and (max-width: 767px) {
  .p-topNews__lead {
    display: contents;
  }
}

.p-topNews__cats {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-topNews__cats {
    margin: 2.8125rem 0 1.25rem;
    gap: 0.875rem 1.4375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-topNews__cat {
  padding-left: 27px;
  padding-left: 1.6875rem;
  position: relative;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.025em;
  cursor: pointer;
  -webkit-transition: all 0.45s;
  transition: all 0.45s;
}

.p-topNews__cat:hover {
  opacity: 0.8;
}

.p-topNews__cat::before {
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 14px;
  width: 0.875rem;
  height: 14px;
  height: 0.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-color: #cccccc;
}

.p-topNews__cat.is-active::before {
  background-color: #000;
}

.p-topNews__cat + .p-topNews__cat {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-topNews__cat + .p-topNews__cat {
    margin-top: 0;
  }
}

.p-topNews__btn {
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-topNews__btn {
    text-align: center;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 3.125rem;
  }
}
.p-topNews__btn a {
  border-bottom: none;
}

.p-topNews__block {
  display: none;
}

.p-topNews__block:nth-child(1) {
  display: block;
}

.p-topNews__btn .c-btn.arrow::after {
  display: none;
}

.p-topNews__btn .c-btn {
  min-width: 176px;
  min-width: 11rem;
}

.p-topRecruit {
  overflow: hidden;
}

.p-topRecruit__wrap {
  margin-top: 80px;
  margin-top: 5rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: min(10.56vw, 132px);
  gap: min(10.56vw, 8.25rem);
}
@media screen and (max-width: 767px) {
  .p-topRecruit__wrap {
    display: block;
    margin-top: 3.125rem;
  }
}

.p-topRecruit__subTitle {
  font-size: min(2.88vw, 36px);
  font-size: min(2.88vw, 2.25rem);
  line-height: 1.6666666667;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .p-topRecruit__subTitle {
    font-size: 1.25rem;
  }
}

.p-topRecruit__text {
  line-height: 1.875;
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-topRecruit__text {
    margin-top: 1.25rem;
  }
}

.p-topRecruit__img {
  margin-top: 90px;
  margin-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-topRecruit__img {
    margin-top: 2rem;
  }
}

.p-topRecruit__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  gap: 2.5rem;
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-topRecruit__btns {
    -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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2rem;
    margin-top: 3.125rem;
  }
}

.p-topRecruit__bigImg {
  width: calc(100% + 50vw - 575px);
  max-width: 648px;
  max-width: 40.5rem;
}
@media screen and (max-width: 1200px) {
  .p-topRecruit__bigImg {
    width: calc(100% + 25px);
  }
}
@media screen and (max-width: 767px) {
  .p-topRecruit__bigImg {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: 3.125rem;
  }
}

.p-topRecruit__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
  gap: 6.25rem;
  margin-top: 190px;
  margin-top: 11.875rem;
}
@media screen and (max-width: 767px) {
  .p-topRecruit__links {
    -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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 5rem;
    gap: 2.5rem;
  }
}

.p-topRecruit__link {
  width: 100%;
}
.p-topRecruit__link a {
  width: 100%;
}

.p-values__wrap {
  display: grid;
  grid-template-columns: 1fr 38.75rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: min(9.6666666667vw, 145px);
  gap: min(9.6666666667vw, 9.0625rem);
}
@media screen and (max-width: 767px) {
  .p-values__wrap {
    display: block;
  }
}

.p-values__subTitle {
  margin-top: 80px;
  margin-top: 5rem;
}

.p-values__text {
  margin-top: 48px;
  margin-top: 3rem;
  line-height: 2.25;
}

.p-values__img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin-left: calc(-50vw - -37.5rem);
}
@media screen and (max-width: 1200px) {
  .p-values__img {
    margin-left: -25px;
  }
}
@media screen and (max-width: 767px) {
  .p-values__img {
    margin-inline: 0;
    margin-top: 1.875rem;
  }
}

.p-vision__wrap {
  display: grid;
  grid-template-columns: 18.75rem 1fr;
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-vision__wrap {
    display: block;
  }
}

.p-vision__content {
  max-width: 660px;
  max-width: 41.25rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}

.p-vision__text {
  line-height: 2.25;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-vision__text p + p {
  margin-top: 36px;
  margin-top: 2.25rem;
}

.u-white {
  color: #fff;
}

.u-blue {
  color: #0091d7;
}

.u-yellow {
  color: #fcd12b;
}

.u-pink {
  color: #e96087;
}

.u-en {
  font-family: "Libre Baskerville", serif;
}

/* -----------------------------------------------------------------
  猪原さん用
----------------------------------------------------------------- */
.is-active .p-header__logo {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(1) !important;
          filter: brightness(1) !important;
}

.is-active .c-hamburger.is-active span {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(1);
          filter: brightness(1);
  background-color: #fff;
}

.c-title p {
  line-height: 1.3;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

.u-en {
  text-transform: capitalize;
}

.p-recruit-about__head {
  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;
}
@media screen and (max-width: 767px) {
  .p-recruit-about__head {
    display: block;
  }
}

.p-recruit-about__wrap {
  margin-top: 96px;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-about__wrap {
    margin-top: 3rem;
  }
}

.p-recruit-about_head_txt {
  width: 45%;
  line-height: 1.5;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-about_head_txt {
    width: auto;
    margin-top: 4rem;
  }
}

.p-recruit-about__features {
  margin-top: 96px;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-about__features {
    margin-top: 3rem;
  }
}

.p-recruit-about_features__blocks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .p-recruit-about_features__blocks {
    display: block;
  }
}

.p-recruit-about_features__block {
  border-right: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .p-recruit-about_features__block {
    border-bottom: 1px solid #ccc;
    border-right: none;
  }
}

.p-recruit-about_features__block:last-child {
  border-right: none;
}

.p-recruit-about_features__block:nth-child(3) {
  border-bottom: none;
  border-right: none;
}

.p-recruit-about_features__contents {
  padding: 0 32px 16px;
  padding: 0 2rem 1rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-about_features__contents {
    padding: 2rem 1rem;
  }
}

.p-recruit-about_features_num {
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.p-recruit-about_features_ttl {
  font-size: 24px;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.p-recruit-about_features_text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.7;
}

.p-recruit-about_features__point {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-about_features__point {
    margin-top: 3rem;
  }
}

.p-recruit-about_features__point_list {
  display: grid;
  grid-template-columns: 35% 1fr;
  border: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .p-recruit-about_features__point_list {
    display: block;
  }
}

.p-recruit-about_features__point_list_ttl {
  background: #000;
  color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 32px;
  padding: 2rem;
}
@media screen and (max-width: 600px) {
  .p-recruit-about_features__point_list_ttl {
    padding: 1rem;
  }
}

.p-recruit-about_features__point_list_ttlen {
  font-size: 18px;
  font-size: 1.125rem;
  display: block;
}

.p-recruit-about_features__point_list_ttlmain {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-recruit-about_features__point_list_ttlmain {
    font-size: 1.215rem;
  }
}

.p-recruit-about_features__point_list_item {
  border-bottom: 1px solid #ccc;
  padding: 16px;
  padding: 1rem;
  font-size: 18px;
  font-size: 1.125rem;
}

.p-recruit-about_features__point_list_item:last-child {
  border-bottom: none;
}

.p-recruit-about_features__point_list_sub {
  padding: 48px;
  padding: 3rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-recruit-about_features__point_list_sub {
    padding: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .p-recruit-about_features__point_list_sub {
    padding: 1rem;
  }
}

.p-recruit-about_features_supplement {
  text-align: center;
  line-height: 1.7;
  margin-top: 64px;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-about_features_supplement {
    margin-top: 3rem;
  }
}

/*challenge*/
.p-recruit-challenge-career {
  padding-block: 150px;
  padding-block: 9.375rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-recruit-challenge-career {
    padding-block: 6rem;
  }
}

.p-recruit-challenge__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-top: 80px;
  margin-top: 5rem;
  gap: 96px;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-challenge__wrap {
    display: block;
    margin-top: 3rem;
  }
}

.p-recruit-career {
  margin-top: 80px;
  margin-top: 5rem;
}

.p-recruit-challenge__pic {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .p-recruit-challenge__pic {
    width: auto;
    margin-top: 3rem;
  }
}

.p-recruit-challenge_txt {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .p-recruit-challenge_txt {
    width: auto;
  }
}

.p-recruit-challenge__lead {
  margin-bottom: 32px;
  margin-bottom: 2rem;
  line-height: 2;
}

.p-recruit-challenge__lead:last-child {
  margin-bottom: 0;
}

.p-recruit-career__wrap {
  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;
  margin-top: 80px;
  margin-top: 5rem;
  gap: 96px;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-career__wrap {
    display: block;
    margin-top: 3rem;
  }
}

.p-recruit-career__pic {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .p-recruit-career__pic {
    width: auto;
    margin-top: 3rem;
  }
}

.p-recruit-career_txt {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .p-recruit-career_txt {
    width: auto;
  }
}

.p-recruit-career__lead {
  margin-bottom: 32px;
  margin-bottom: 2rem;
  line-height: 2;
}

.p-recruit-career__lead:last-child {
  margin-bottom: 0;
}

/*interview*/
.p-recruit-interview__body {
  background: #fff;
  margin-top: 64px;
  margin-top: 4rem;
  padding: 80px;
  padding: 5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-interview__body {
    padding: 3rem;
  }
}
@media screen and (max-width: 600px) {
  .p-recruit-interview__body {
    padding: 3rem 1.5rem;
  }
}

.p-recruit-interview_name h3 {
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-interview_name h3 {
    font-size: 1.215rem;
  }
}

.p-recruit-interview__pic {
  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;
  margin: 32px auto;
  margin: 2rem auto;
  gap: 16px;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-interview__pic {
    display: block;
  }
}

.p-recruit-interview__voice_block {
  margin-top: 48px;
  margin-top: 3rem;
  padding-left: 80px;
  padding-left: 5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-interview__voice_block {
    padding-left: 2rem;
  }
}

.p-recruit-interview__voice_ttl {
  position: relative;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  font-size: 18px;
  font-size: 1.125rem;
}

.p-recruit-interview__voice_ttl::before {
  content: "";
  display: block;
  position: absolute;
  width: 48px;
  width: 3rem;
  height: 1px;
  background: #000;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -80px;
  left: -5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-interview__voice_ttl::before {
    width: 1rem;
    left: -2rem;
  }
}

.p-recruit-interview__voice_txt {
  line-height: 1.5;
}

/*attention*/
.p-recruit-attention__head_lead {
  margin: 64px 0 0;
  margin: 4rem 0 0;
  line-height: 1.7;
}

.p-recruit-attention {
  padding-block: 150px;
  padding-block: 9.375rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-recruit-attention {
    padding-block: 6rem;
  }
}

.p-recruit-attention__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-top: 80px;
  margin-top: 5rem;
  gap: 96px;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-attention__wrap {
    margin-top: 3rem;
  }
}

.p-recruit-attention {
  margin-top: 80px;
  margin-top: 5rem;
}

.p-recruit-attention__list_item {
  padding: 64px;
  padding: 4rem;
  border: 1px solid #ccc;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-attention__list_item {
    padding: 3rem;
  }
}
@media screen and (max-width: 600px) {
  .p-recruit-attention__list_item {
    padding: 3rem 2rem;
  }
}

.p-recruit-attention__list_item:first-child {
  margin-top: 0;
}

.p-recruit-attention__list_ttl {
  font-size: 19.44px;
  font-size: 1.215rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.p-recruit-attention__list_txt {
  line-height: 1.6;
}

/*job*/
.p-recruit-description__body {
  margin-top: 80px;
  margin-top: 5rem;
}

.p-recruit-description_block:nth-child(1) {
  margin: 0 auto;
}

.p-recruit-description_block {
  max-width: 860px;
  margin: 64px auto 0;
  margin: 4rem auto 0;
}

.p-recruit-description_table {
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
}

.p-recruit-description_block_ttl {
  padding: 0 0 32px 0;
  padding: 0 0 2rem 0;
  font-size: 24px;
  font-size: 1.5rem;
  border-bottom: 1px solid #000;
}

.p-recruit-description_table tr {
  border-bottom: 1px solid #ccc;
  display: block;
}

.p-recruit-description_table tr th {
  padding: 16px 0;
  padding: 1rem 0;
  text-align: left;
  width: 208px;
  width: 13rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-recruit-description_table tr th {
    width: 8rem;
  }
}
@media screen and (max-width: 600px) {
  .p-recruit-description_table tr th {
    width: auto;
    display: block;
    padding: 1.5rem 0;
  }
}

.p-recruit-description_table tr td {
  padding: 24px;
  padding: 1.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .p-recruit-description_table tr td {
    width: auto;
    display: block;
    padding: 0 0 1.5rem 0;
  }
}

.p-recruit-description_table_job {
  font-weight: bold;
  display: block;
}

.p-recruit-description_table_salary {
  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: 32px;
  gap: 2rem;
  margin: 0 !important;
}

.p-recruit-description_block_section {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-description_block_section {
    margin-top: 3rem;
  }
}

.p-recruit-description_block_section_ttl {
  padding: 0 0 32px;
  padding: 0 0 2rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .p-recruit-description_block_section_ttl {
    font-size: 1.215rem;
    padding: 0 0 1rem 0;
  }
}

.p-recruit-description_block_lead p {
  line-height: 1.6;
  padding: 8px 0;
  padding: 0.5rem 0;
  font-size: 16px;
  font-size: 1rem;
}

/*btn*/
a.c-entry {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a.c-entry:hover {
  background: #000;
  color: #fff;
  border: 1px solid #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a.c-entry:hover::before {
  background: url(../images/common/arrow_bk.webp) center center/18px no-repeat #fff;
  background: url(../images/common/arrow_bk.webp) center center/1.125rem no-repeat #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*fade*/
.js-fade {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}

.scroll {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

/*PAGE*/
.l-page {
  margin-top: 200px;
  margin-top: 12.5rem;
}
@media screen and (max-width: 767px) {
  .l-page {
    margin-top: 6.25rem;
  }
}

.p-page__inner.l-inner {
  max-width: calc(56.25rem + 50px);
}

.p-privacy .p-page__inner h2 {
  margin-bottom: 32px;
  margin-bottom: 2rem;
  margin-top: 48px;
  margin-top: 3rem;
  font-size: 24px;
  font-size: 1.5rem;
}

.p-privacy .p-page__inner h2:nth-child(1) {
  margin-top: 0;
}

.p-privacy .p-page__inner h3 {
  margin-bottom: 32px;
  margin-bottom: 2rem;
  font-size: 19.448px;
  font-size: 1.2155rem;
}

.p-privacy .p-page__inner p {
  line-height: 1.6;
}
/*# sourceMappingURL=style.css.map */
