@charset "UTF-8";
/*------------------
color設定
-------------------*/
:root {
  --color-white: #fff;
  --color-black: #252525;
  --color-orange: #f57920;
  --color-blue: #2073f5;
  --color-purple: #4f39d0;
  --color-green: #40d039;
  --color-red: #f53a20;
}

/*------------------
googleフォント指定
-------------------*/
/*------------------
break point
-------------------*/
/*------------------
スマホ倍率
-------------------*/
/*------------------
header固定時の高さ指定　PC SP ※header fix時に使用
-------------------*/
html {
  scroll-padding-top: 108px;
}
@media screen and (max-width: 1128px) {
  html {
    scroll-padding-top: 60px;
  }
}

/*------------------
よく使う横幅
-------------------*/
/*------------------
coming soon時　※jsの変更も必要
-------------------*/
/* ===========================================
* 追記
* ======================================== */
a {
  display: block;
  color: #111;
  text-decoration: none;
}

@media screen and (min-width: 960px) {
  a {
    transition: 0.2s;
  }
  a:hover {
    opacity: 0.5;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes doorOpenSkew {
  0% {
    transform: scaleX(1) skewY(0deg);
  }
  100% {
    transform: scaleX(0) skewY(15deg);
  }
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.a-text-underline {
  position: relative;
  text-decoration: none;
  transition: 0.3s;
}

.a-text-underline::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: #000;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}

.a-text-underline:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.a-text-underline__right {
  position: relative;
  text-decoration: none;
  transition: 0.3s;
}

.a-text-underline__right::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: #000;
  transform-origin: left top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}

.a-text-underline__right:hover::before {
  transform-origin: right top;
  transform: scale(1, 1);
}

.a-text-underline__center {
  position: relative;
  text-decoration: none;
  transition: 0.3s;
}

.a-text-underline__center::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: #000;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}

.a-text-underline__center:hover::before {
  transform-origin: center top;
  transform: scale(1, 1);
}

.a-text-marker {
  position: relative;
  z-index: 1;
  padding: 0;
  text-decoration: none;
}

.a-text-marker::before {
  background: #000;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
  z-index: -1;
}

.a-text-marker:hover {
  color: #fff;
}

.a-text-marker:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.a-text-move__right {
  display: inline-block;
  text-decoration: none;
}

.a-text-move__right:hover {
  transform: translateX(5px);
}

.a-text-move__top {
  display: inline-block;
  text-decoration: none;
}

.a-text-move__top:hover {
  transform: translateY(-5px);
}

.a-text-gradient {
  display: inline-block;
  color: #000;
  text-decoration: none;
  color: transparent;
  background: linear-gradient(to right, #000 50%, #000 50%) 100%;
  background-clip: text;
  background-size: 200% 100%;
  transition: background-position 0.4s;
}

.a-text-gradient:hover {
  background-position: 0 100%;
}

.a-hide {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: 0.6s;
}

.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  animation-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

/*--------------------
menu
--------------------*/
.a-menubtn {
  position: relative;
  background: #f00;
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 40px;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 1128px) {
  .a-menubtn {
    margin: 0;
    width: 30px;
    height: 30px;
  }
}
.a-menubtn span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  position: absolute;
  left: 10px;
  width: 20px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
}
@media screen and (max-width: 1128px) {
  .a-menubtn span {
    left: 7px;
    width: 16px;
  }
}
.a-menubtn span:nth-of-type(1) {
  top: 14px;
}
@media screen and (max-width: 1128px) {
  .a-menubtn span:nth-of-type(1) {
    top: 9px;
  }
}
.a-menubtn span:nth-of-type(2) {
  top: 19px;
}
@media screen and (max-width: 1128px) {
  .a-menubtn span:nth-of-type(2) {
    top: 14px;
  }
}
.a-menubtn span:nth-of-type(3) {
  top: 24px;
}
@media screen and (max-width: 1128px) {
  .a-menubtn span:nth-of-type(3) {
    top: 19px;
  }
}

.a-menubtn.active span:nth-of-type(1) {
  transform: translateY(5px) rotate(-45deg);
}
.a-menubtn.active span:nth-of-type(2) {
  opacity: 0;
}
.a-menubtn.active span:nth-of-type(3) {
  transform: translateY(-5px) rotate(45deg);
}

/*--------------------
faq
--------------------*/
.a-plus {
  cursor: pointer;
  position: relative;
}

.a-plus::before,
.a-plus::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 3px;
  background-color: #f00;
  position: absolute;
  right: 20px;
  top: 55%;
  transform: translateY(-50%);
  transition: opacity 0.5s;
}

.a-plus::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.5s;
}

.a-plus.show::before {
  opacity: 0;
}

.a-plus.show::after {
  transform: translateY(-50%) rotate(180deg);
}

.a-faq__q {
  cursor: pointer;
}

.a-faq__a {
  display: none;
}

#header.is-hide .l-header {
  transform: translateY(-100%);
}

.l-header {
  width: calc(100% - 1rem);
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 500;
  pointer-events: none;
  translate: -50% -200%;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 960px) {
  .l-header {
    width: calc(100% - 4rem);
    top: 2rem;
  }
}
.l-header.is-active {
  animation: downMove 1s 1s ease forwards;
}
.l-header.is-ready {
  translate: -50% 0;
}
@keyframes downMove {
  0% {
    translate: -50% -200%;
  }
  100% {
    translate: -50% 0;
  }
}
.l-header__inner {
  padding: clamp(1rem, 0.8262032086rem + 0.7130124777vw, 1.5rem) clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-header__logo__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 0.3155080214rem + 1.7825311943vw, 2rem);
  pointer-events: all;
}
.l-header__logo__img {
  width: clamp(5rem, 3.2620320856rem + 7.1301247772vw, 10rem);
  padding-top: clamp(0.09375rem, 0.0611631016rem + 0.1336898396vw, 0.1875rem);
  padding-bottom: clamp(0.3125rem, 0.2038770053rem + 0.4456327986vw, 0.625rem);
}
.l-header__logo__sub {
  font-size: clamp(0.625rem, 0.4512032086rem + 0.7130124777vw, 1.125rem);
  line-height: 1;
  font-weight: 700;
}
.l-header__btns {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
}
.l-header__btn {
  height: clamp(2.25rem, 1.6417112299rem + 2.495543672vw, 4rem);
  background: var(--color-black);
  border: 1px solid #ccc;
  color: var(--color-white);
  font-size: clamp(0.6875rem, 0.5788770053rem + 0.4456327986vw, 1rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  pointer-events: all;
}
@media screen and (min-width: 960px) {
  .l-header__btn {
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .l-header__btn.u-menu::before {
    content: "";
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 1000px;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    transition: transform 0.5s ease;
    transform: scale(0);
  }
  .l-header__btn.u-menu:hover {
    opacity: 1;
    color: var(--color-white);
  }
  .l-header__btn.u-menu:hover .c-hamb {
    background-color: var(--color-white);
  }
  .l-header__btn.u-menu:hover .c-hamb__top, .l-header__btn.u-menu:hover .c-hamb__middle, .l-header__btn.u-menu:hover .c-hamb__bottom {
    background-color: var(--color-black);
  }
  .l-header__btn.u-menu:hover::before {
    transform: scale(1);
  }
}
.l-header__btn.u-entry {
  width: clamp(7.625rem, 6.1477272727rem + 6.0606060606vw, 11.875rem);
  padding-left: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  padding-right: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  border-radius: clamp(3.125rem, 2.0387700535rem + 4.4563279857vw, 6.25rem);
  justify-content: space-between;
}
.l-header__btn.u-menu {
  aspect-ratio: 1/1;
  border-radius: 50%;
  justify-content: center;
}
.l-header__btn.u-menu::before {
  background: var(--color-black);
}
@media screen and (min-width: 960px) {
  .l-header__btn.u-menu {
    width: 11.875rem;
    padding-left: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
    padding-right: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
    border: 1px solid var(--border-gray, rgba(0, 0, 0, 0.2));
    aspect-ratio: auto;
    border-radius: 100px;
    background-color: var(--color-white);
    color: var(--color-black);
    justify-content: space-between;
  }
}
.l-header__btn__text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .l-header__btn__text {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    clip: auto;
    overflow: visible;
  }
}
.l-header__entry {
  position: relative;
  pointer-events: all;
}
@media screen and (min-width: 960px) {
  .l-header__entry:hover .l-header__entry__wrap {
    opacity: 1;
    visibility: visible;
  }
}
.l-header__entry__wrap {
  opacity: 0;
  visibility: hidden;
  width: clamp(7.75rem, 6.3161764706rem + 5.8823529412vw, 11.875rem);
  padding: 0.75rem;
  margin-top: 1rem;
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  background: var(--gradation-orange, linear-gradient(316deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 56.27%), #f57920);
  background-blend-mode: overlay, normal;
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
  transition: 0.2s opacity;
}
.l-header__entry__wrap.is-active {
  opacity: 1;
  visibility: visible;
}
.l-header__entry__btns {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
}
.l-header__entry__btn {
  height: clamp(2.25rem, 1.6417112299rem + 2.495543672vw, 4rem);
  padding-left: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  padding-right: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  border-radius: 50px;
  background: var(--color-black);
  color: var(--color-white);
  font-size: clamp(0.6875rem, 0.5788770053rem + 0.4456327986vw, 1rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-header__entry__btn__ic {
  width: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  height: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-header__entry__btn__ic img {
  width: clamp(0.375rem, 0.2446524064rem + 0.5347593583vw, 0.75rem);
}
.l-header__entry__btn__ic {
  width: clamp(1.25rem, 0.9893048128rem + 1.0695187166vw, 2rem);
  height: clamp(1.25rem, 0.9893048128rem + 1.0695187166vw, 2rem);
}
.l-header__nav {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: calc(100vh - 1.5rem);
  height: calc(100dvh - 1.5rem);
  background: var(--color-white);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  overflow: scroll;
  transition: 0.2s;
}
@media screen and (min-width: 960px) {
  .l-header__nav {
    width: calc(100% - 3.875rem);
    height: auto;
    max-height: calc(100vh - 6.875rem);
    border: 1px solid var(--border-gray, rgba(0, 0, 0, 0.2));
    border-radius: 16px;
    top: 1.375rem;
    left: auto;
  }
}
.l-header__nav.is-active {
  opacity: 1;
  visibility: visible;
}
.l-header__nav__container {
  width: 100%;
  height: 100vh;
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.l-header__nav__inner {
  max-width: 1384px;
  padding: clamp(3rem, 2.6524064171rem + 1.4260249554vw, 4rem) clamp(1.5rem, -0.064171123rem + 6.4171122995vw, 6rem);
  margin: 0 auto;
  position: relative;
}
.l-header__nav__hamb {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 100px;
  background: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 1rem;
  right: 1rem;
}
@media screen and (min-width: 960px) {
  .l-header__nav__hamb {
    width: 2rem;
    height: 2rem;
    top: 2.5rem;
    right: 3rem;
    cursor: pointer;
  }
}
.l-header__nav__hamb-top, .l-header__nav__hamb-bottom {
  width: 1rem;
  height: 0.0625rem;
  background: var(--color-white);
  position: absolute;
}
@media screen and (min-width: 960px) {
  .l-header__nav__hamb-top, .l-header__nav__hamb-bottom {
    width: 0.75rem;
  }
}
.l-header__nav__hamb-top {
  rotate: 30deg;
}
.l-header__nav__hamb-bottom {
  rotate: -30deg;
}
.l-header__nav .l-header__logo {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 0.3155080214rem + 1.7825311943vw, 2rem);
  justify-content: flex-start;
  margin-bottom: 3rem;
}
@media screen and (min-width: 960px) {
  .l-header__nav .l-header__logo {
    margin-bottom: 2rem;
  }
}

.l-footer {
  padding: clamp(4.5rem, 3.9786096257rem + 2.1390374332vw, 6rem) 0;
  background: url(/work/recruit/assets/img/common/bg_tile.png) top left/200px 200px repeat;
}
.l-footer__inner {
  width: clamp(21.5625rem, 3.1617647059rem + 75.4901960784vw, 74.5rem);
  margin: 0 auto;
}
.l-footer__nav {
  margin-bottom: clamp(2rem, 1.3048128342rem + 2.8520499109vw, 4rem);
}
.l-footer .c-nav__list {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: flex-start;
  gap: clamp(2rem, 2rem + 0vw, 2rem);
}
@media screen and (min-width: 960px) {
  .l-footer .c-nav__list {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 0;
    column-gap: 4rem;
  }
}
.l-footer .c-nav__list__item:nth-of-type(3) {
  grid-column: 2/3;
  grid-row: 1/2;
}
@media screen and (min-width: 960px) {
  .l-footer .c-nav__list__item:nth-of-type(3) {
    grid-column: auto;
    grid-row: auto;
  }
}
@media screen and (min-width: 960px) {
  .l-footer .c-nav__list__item:nth-of-type(2) {
    grid-column: 2/4;
    columns: 2;
  }
  .l-footer .c-nav__list__item:nth-of-type(2) dt {
    column-span: all;
  }
  .l-footer .c-nav__list__item:nth-of-type(2) dd:nth-of-type(4) {
    break-before: column;
  }
}
.l-footer .c-nav__list__ttl {
  height: clamp(1.25rem, 1.1631016043rem + 0.3565062389vw, 1.5rem);
}
.l-footer .c-nav__list__link {
  font-size: clamp(0.8125rem, 0.7473262032rem + 0.2673796791vw, 1rem);
}
.l-footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--color-orange);
}
@media screen and (min-width: 960px) {
  .l-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.l-footer__list {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
}
@media screen and (min-width: 960px) {
  .l-footer__list {
    margin-bottom: 0;
  }
}
.l-footer__list__link {
  padding: 2px 0;
  font-size: clamp(0.625rem, 0.4946524064rem + 0.5347593583vw, 1rem);
  font-weight: 500;
  line-height: 1;
}
.l-footer__copy__text {
  font-family: "Manrope", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(0.625rem, 0.4946524064rem + 0.5347593583vw, 1rem);
  font-weight: 600;
  line-height: 1;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-style: normal;
  color: var(--color-black);
}

li {
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  font-style: italic;
}

/* contact */
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: none;
}

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

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

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

summary {
  list-style: none; /* 標準的な書き方 */
}

summary::-webkit-details-marker {
  display: none; /* Safariなどの古い環境用 */
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

@media screen and (min-width: 1128px) {
  .only_sp {
    display: none !important;
  }
}

.only_pc {
  display: none !important;
}
@media screen and (min-width: 1128px) {
  .only_pc {
    display: block !important;
  }
}

/* ===========================================
* component
* ======================================== */
/* 下層ページ全体のふわっと表示 */
body:not(.p-home) {
  opacity: 0;
  transition: opacity 0.8s ease;
}
body:not(.p-home).is-loaded {
  opacity: 1;
}

body.is-fixed {
  overflow: hidden;
  scrollbar-gutter: stable;
}

.c-container {
  width: calc(100% - 1rem);
  margin: 1rem auto 0;
  position: relative;
}
@media screen and (min-width: 960px) {
  .c-container {
    width: calc(100% - 4rem);
    margin-top: 2rem;
  }
}
.c-container::before {
  content: "";
  display: block;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  border: 0.5rem solid var(--color-blue);
  border-top: 1rem solid var(--color-blue);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
}
@media screen and (min-width: 960px) {
  .c-container::before {
    border-width: 2rem;
  }
}
.c-container.is-active::before {
  animation: fadeIn 1s 2s ease forwards;
}
.c-container.is-ready::before {
  opacity: 1;
}
.c-container__text {
  color: var(--color-white, #fff);
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  position: fixed;
  top: 0.1875rem;
  left: 50%;
  translate: -50% 0;
  z-index: 1001;
}
@media screen and (min-width: 960px) {
  .c-container__text {
    font-size: 1rem;
    top: 0.5rem;
  }
}

.c-pattern__bg {
  margin-top: clamp(4.5rem, 3.2834224599rem + 4.991087344vw, 8rem);
  background: url(/work/recruit/assets/img/common/bg_tile.png) top left/200px 200px repeat;
}

.c-plus {
  width: clamp(1.25rem, 0.9893048128rem + 1.0695187166vw, 2rem);
  height: clamp(1.25rem, 0.9893048128rem + 1.0695187166vw, 2rem);
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s;
}
.c-plus__vertical {
  width: clamp(0.04375rem, 0.0372326203rem + 0.0267379679vw, 0.0625rem);
  height: clamp(0.46875rem, 0.3709893048rem + 0.4010695187vw, 0.75rem);
  position: absolute;
  background: var(--color-black);
  transition: 0.4s;
}
.c-plus__beside {
  width: clamp(0.46875rem, 0.3709893048rem + 0.4010695187vw, 0.75rem);
  height: clamp(0.04375rem, 0.0372326203rem + 0.0267379679vw, 0.0625rem);
  position: absolute;
  background: var(--color-black);
  transition: 0.4s;
}

.c-hamb {
  width: 0.75rem;
  height: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s;
}
@media screen and (min-width: 960px) {
  .c-hamb {
    width: 2rem;
    height: 2rem;
    padding: 0.625rem 0.625rem;
    background: var(--color-black);
    border-radius: 50%;
  }
}
.c-hamb__top, .c-hamb__middle, .c-hamb__bottom {
  width: 100%;
  height: 1px;
  background: var(--color-white);
  position: absolute;
  transition: 0.4s;
}
@media screen and (min-width: 960px) {
  .c-hamb__top, .c-hamb__middle, .c-hamb__bottom {
    width: 0.75rem;
  }
}
.c-hamb__top {
  top: 0;
}
@media screen and (min-width: 960px) {
  .c-hamb__top {
    top: auto;
    translate: 0 4px;
  }
}
.c-hamb__middle {
  top: 50%;
  translate: 0 -50%;
}
@media screen and (min-width: 960px) {
  .c-hamb__middle {
    top: auto;
    translate: 0 0;
  }
}
.c-hamb__bottom {
  bottom: 0;
}
@media screen and (min-width: 960px) {
  .c-hamb__bottom {
    bottom: auto;
    translate: 0 -4px;
  }
}

.c-nav {
  pointer-events: all;
}
.c-nav__list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: clamp(3rem, 2.6524064171rem + 1.4260249554vw, 4rem);
}
@media screen and (min-width: 960px) {
  .c-nav__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 960px) {
  .c-nav__list__item:nth-of-type(2) {
    grid-column: 2/4;
    columns: 2;
  }
  .c-nav__list__item:nth-of-type(2) dt {
    column-span: all;
  }
  .c-nav__list__item:nth-of-type(2) dd:nth-of-type(4) {
    break-before: column;
  }
}
.c-nav__list__catch {
  margin-bottom: clamp(1.5rem, 1.3262032086rem + 0.7130124777vw, 2rem);
  font-family: "Manrope", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(0.75rem, 0.6631016043rem + 0.3565062389vw, 1rem);
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: clamp(0.375rem, 0.2446524064rem + 0.5347593583vw, 0.75rem);
}
.c-nav__list__catch::before {
  content: "";
  display: block;
  width: clamp(0.375rem, 0.3315508021rem + 0.1782531194vw, 0.5rem);
  height: clamp(0.375rem, 0.3315508021rem + 0.1782531194vw, 0.5rem);
  border-radius: 50%;
}
.c-nav__list__catch.u-blue::before {
  background: var(--color-blue);
}
.c-nav__list__catch.u-orange::before {
  background: var(--color-orange);
}
.c-nav__list__catch.u-purple::before {
  background: var(--color-purple);
}
.c-nav__list__catch.u-green::before {
  background: var(--color-green);
}
.c-nav__list__ttl {
  height: clamp(1.5rem, 1.3262032086rem + 0.7130124777vw, 2rem);
  margin-bottom: clamp(1.375rem, 1.1577540107rem + 0.8912655971vw, 2rem);
}
.c-nav__list__ttl img {
  height: 100%;
}
.c-nav__list__desc:last-of-type .c-nav__list__link {
  margin-bottom: 0;
}
.c-nav__list__link {
  padding: 2px 0;
  margin-bottom: clamp(0.875rem, 0.8315508021rem + 0.1782531194vw, 1rem);
  font-size: clamp(0.875rem, 0.8315508021rem + 0.1782531194vw, 1rem);
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
}

.c-nav-page {
  padding: clamp(0.5rem, 0.4131016043rem + 0.3565062389vw, 0.75rem) clamp(1rem, 0.8262032086rem + 0.7130124777vw, 1.5rem);
  border-radius: 16px 0 0 0;
  border: 1px solid var(--color-blue);
  background-color: var(--color-white);
  position: fixed;
  right: 0.5rem;
  bottom: 0.5rem;
  z-index: 1;
  transition: 0.4s;
}
@media screen and (min-width: 960px) {
  .c-nav-page {
    width: 11.25rem;
    right: 2rem;
    bottom: 2rem;
  }
}
.c-nav-page__btn {
  width: 100%;
  padding: clamp(0.5rem, 0.4131016043rem + 0.3565062389vw, 0.75rem) 0;
  font-family: "Manrope", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(0.875rem, 0.7446524064rem + 0.5347593583vw, 1.25rem);
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}
.c-nav-page__btn.is-active .c-nav-page__btn__plus {
  rotate: 135deg;
}
.c-nav-page__btn__plus {
  width: clamp(1rem, 1rem + 0vw, 1rem);
  height: clamp(1rem, 1rem + 0vw, 1rem);
  border-radius: 50%;
  background-color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: rotate 0.4s;
}
.c-nav-page__btn__plus span {
  width: 8px;
  height: 1px;
  background-color: var(--color-white);
  position: absolute;
}
.c-nav-page__btn__plus span:first-of-type {
  rotate: 90deg;
}
.c-nav-page__list {
  opacity: 0;
  visibility: hidden;
  display: grid;
  grid-template-columns: 0fr;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.4s ease, opacity 0.4s ease, visibility 0.4s;
}
.c-nav-page__list.is-active {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  row-gap: clamp(0.25rem, 0.2065508021rem + 0.1782531194vw, 0.375rem);
  opacity: 1;
  visibility: visible;
  overflow: visible;
}
.c-nav-page__list.is-active .c-nav-page__item {
  max-height: none;
}
.c-nav-page__list.is-active .c-nav-page__item.is-active .c-nav-page__link {
  color: var(--color-blue);
}
.c-nav-page__list.is-active .c-nav-page__link {
  max-height: none;
  font-size: clamp(0.6875rem, 0.6223262032rem + 0.2673796791vw, 0.875rem);
  font-weight: 500;
  line-height: 1.5;
}
.c-nav-page__list * {
  max-height: 0;
}

.c-main__head {
  width: clamp(21.5625rem, -1.0093582888rem + 92.6024955437vw, 86.5rem);
  padding: clamp(3rem, 1.9572192513rem + 4.2780748663vw, 6rem) clamp(1.5rem, -0.064171123rem + 6.4171122995vw, 6rem);
  margin: clamp(5.25rem, 3.5989304813rem + 6.7736185383vw, 10rem) auto 0;
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  background: url(/work/recruit/assets/img/common/bg_tile.png) top left/200px 200px repeat;
  position: relative;
}
.c-main__ttl__sub {
  margin-bottom: clamp(1.5rem, 0.6310160428rem + 3.5650623886vw, 4rem);
  font-family: "Manrope", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(0.75rem, 0.5762032086rem + 0.7130124777vw, 1.25rem);
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: clamp(0.375rem, 0.2446524064rem + 0.5347593583vw, 0.75rem);
}
.c-main__ttl__sub::before {
  content: "";
  display: block;
  width: clamp(0.375rem, 0.3315508021rem + 0.1782531194vw, 0.5rem);
  height: clamp(0.375rem, 0.3315508021rem + 0.1782531194vw, 0.5rem);
  border-radius: 50%;
  background-color: var(--color-orange);
}
.c-main__ttl {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .c-main__ttl {
    height: calc(0.0423280423 * min(100vw, 1512px));
  }
}

.c-bread {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow-x: auto;
}
.c-bread__list {
  width: max-content;
  border-radius: 0 0 100px 0;
  padding: 0 clamp(1.25rem, 0.9893048128rem + 1.0695187166vw, 2rem) clamp(0.625rem, 0.4946524064rem + 0.5347593583vw, 1rem) clamp(1.25rem, 0.9893048128rem + 1.0695187166vw, 2rem);
  background: var(--color-white, #fff);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.c-bread__item:not(:has(a)) {
  padding: 2px 0;
  font-size: clamp(0.6875rem, 0.6657754011rem + 0.0891265597vw, 0.75rem);
  font-weight: 500;
  line-height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.c-bread__item:not(:has(a))::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
  rotate: -45deg;
}
.c-bread__link {
  padding: 2px 0;
  color: var(--color-orange);
  font-size: clamp(0.6875rem, 0.6657754011rem + 0.0891265597vw, 0.75rem);
  font-weight: 500;
  line-height: 1;
}

.c-section__inner {
  width: clamp(21.5625rem, 3.1617647059rem + 75.4901960784vw, 74.5rem);
  margin: 0 auto;
}

.c-section__wrap {
  padding-bottom: clamp(4.5rem, 3.9786096257rem + 2.1390374332vw, 6rem);
}

.c-index {
  margin-bottom: clamp(1.5rem, 0.6310160428rem + 3.5650623886vw, 4rem);
  font-family: "Manrope", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(0.75rem, 0.5762032086rem + 0.7130124777vw, 1.25rem);
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: clamp(0.375rem, 0.2446524064rem + 0.5347593583vw, 0.75rem);
}
.c-index::before {
  content: "";
  display: block;
  width: clamp(0.375rem, 0.3315508021rem + 0.1782531194vw, 0.5rem);
  height: clamp(0.375rem, 0.3315508021rem + 0.1782531194vw, 0.5rem);
  border-radius: 50%;
}
.c-index.u-red::before {
  background: var(--color-red);
}
.c-index.u-blue::before {
  background: var(--color-blue);
}
.c-index.u-orange::before {
  background: var(--color-orange);
}
.c-index.u-white {
  color: var(--color-white);
}
.c-index.u-white::before {
  background: var(--color-white);
}
.c-index.u-purple::before {
  background: var(--color-purple);
}
.c-index.u-green::before {
  background: var(--color-green);
}

.c-ttl {
  margin-bottom: clamp(2rem, 1.3048128342rem + 2.8520499109vw, 4rem);
}
.c-ttl > img {
  height: clamp(1.75rem, 1.1634358289rem + 2.4064171123vw, 3.4375rem);
}
.c-ttl-en {
  display: inline-block;
  height: clamp(1rem, 0.695855615rem + 1.247771836vw, 1.875rem);
}
.c-ttl-en img {
  height: 100%;
}

.c-sttl {
  height: clamp(1.625rem, 1.1470588235rem + 1.9607843137vw, 3rem);
}
.c-sttl img {
  height: 100%;
}

.c-textlink {
  display: inline;
  color: var(--color-orange);
  font-weight: 500;
  text-decoration-line: underline;
  text-underline-position: from-font;
}

.c-modal {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: 0.3s;
}
.c-modal.js-active {
  opacity: 1;
  visibility: visible;
}
.c-modal__overlay {
  position: absolute;
  inset: 0;
}
.c-modal__close {
  width: 2.25rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 2rem;
  right: 1.5rem;
  z-index: 999;
}
@media screen and (min-width: 960px) {
  .c-modal__close {
    width: 2rem;
    top: 5rem;
    right: 5rem;
  }
}
.c-modal__close span {
  height: 1px;
  width: 0.75rem;
  background-color: var(--color-white);
  position: absolute;
}
.c-modal__close span:first-of-type {
  rotate: 30deg;
}
.c-modal__close span:last-of-type {
  rotate: -30deg;
}

.c-btn {
  width: clamp(21.5625rem, 16.4572192513rem + 20.944741533vw, 36.25rem);
  height: clamp(3.75rem, 2.2727272727rem + 6.0606060606vw, 8rem);
  padding-left: clamp(2rem, 1.3048128342rem + 2.8520499109vw, 4rem);
  padding-right: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  border-radius: clamp(3.125rem, 2.0387700535rem + 4.4563279857vw, 6.25rem);
  border: 0.5px solid var(--border-gray, rgba(0, 0, 0, 0.2));
  background: var(--color-white);
  font-size: clamp(1rem, 0.7827540107rem + 0.8912655971vw, 1.625rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.c-btn__pic {
  width: clamp(1.75rem, 0.9679144385rem + 3.2085561497vw, 4rem);
  height: clamp(1.75rem, 0.9679144385rem + 3.2085561497vw, 4rem);
  margin-right: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  z-index: 1;
}
.c-btn__ic {
  margin-left: auto;
  width: clamp(1.75rem, 0.9679144385rem + 3.2085561497vw, 4rem);
  height: clamp(1.75rem, 0.9679144385rem + 3.2085561497vw, 4rem);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-btn__ic img {
  width: clamp(0.625rem, 0.320855615rem + 1.247771836vw, 1.5rem);
}
.c-btn__ic {
  margin-left: auto;
}
.c-btn__text {
  z-index: 1;
}

.c-sbtn {
  width: fit-content;
  height: clamp(2rem, 1.3048128342rem + 2.8520499109vw, 4rem);
  padding-left: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  padding-right: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  border-radius: 50px;
  border: 0.5px solid var(--border-gray, rgba(0, 0, 0, 0.2));
  background: var(--color-white);
  font-size: clamp(0.6875rem, 0.5788770053rem + 0.4456327986vw, 1rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
}
@media screen and (min-width: 960px) {
  .c-sbtn {
    border: 1px solid var(--border-gray, rgba(0, 0, 0, 0.2));
    line-height: 1.25;
  }
}
.c-sbtn__ic {
  width: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  height: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-sbtn__ic img {
  width: clamp(0.375rem, 0.2446524064rem + 0.5347593583vw, 0.75rem);
}
.c-sbtn__text {
  z-index: 1;
}

@media screen and (min-width: 960px) {
  .c-hover-btn {
    position: relative;
    overflow: hidden;
  }
  .c-hover-btn::before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--color-black);
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.4s ease;
    transform: scaleX(0);
    transform-origin: left;
  }
  .c-hover-btn:hover {
    opacity: 1;
    color: var(--color-white);
  }
  .c-hover-btn:hover::before {
    transform: scaleX(1);
  }
  .c-hover-btn:hover .c-arrow-container.u-black {
    background-color: var(--color-white);
  }
  .c-hover-btn:hover .c-arrow-container.u-white {
    background-color: var(--color-black);
  }
  .c-hover-btn:hover .c-arrow-main {
    translate: 200% 0;
  }
  .c-hover-btn:hover .c-arrow-sub {
    translate: 0 0;
  }
  .c-hover-btnB {
    position: relative;
    overflow: hidden;
  }
  .c-hover-btnB::before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--color-white);
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.4s ease;
    transform: scaleX(0);
    transform-origin: left;
  }
  .c-hover-btnB:hover {
    opacity: 1;
    color: var(--color-black);
  }
  .c-hover-btnB:hover::before {
    transform: scaleX(1);
  }
  .c-hover-btnB:hover .c-arrow-container {
    background-color: var(--color-black);
  }
  .c-hover-btnB:hover .c-arrow-main {
    translate: 200% 0;
  }
  .c-hover-btnB:hover .c-arrow-sub {
    translate: 0 0;
  }
}
white-arrow,
black-arrow {
  display: block; /* または inline-block */
  width: 100%;
  height: 100%;
}

.c-arrow-container {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--border-gray, rgba(0, 0, 0, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
}
.c-arrow-container.u-black {
  background: var(--color-black);
}
.c-arrow-container.u-white {
  background: var(--color-white);
}
.c-arrow-main, .c-arrow-sub {
  position: absolute;
  transition: 0.4s;
}
.c-arrow-sub {
  translate: -200% 0;
}

.c-recruit__btns {
  margin-bottom: clamp(2rem, 1.3048128342rem + 2.8520499109vw, 4rem);
  display: grid;
  grid-template-columns: 1fr;
  row-gap: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
}
@media screen and (min-width: 960px) {
  .c-recruit__btns {
    display: flex;
    flex-wrap: wrap;
    column-gap: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
    justify-content: center;
  }
}
.c-recruit__btns .c-btn {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .c-recruit__btns .c-btn {
    width: calc(50% - 1rem);
  }
}

.c-entry {
  width: 100%;
  padding: clamp(2rem, 1.3048128342rem + 2.8520499109vw, 4rem);
  border-radius: 8px;
  background: var(--gradation-orange, linear-gradient(316deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 56.27%), #f57920);
  background-blend-mode: overlay, normal;
}
.c-entry__ttl {
  margin-bottom: clamp(2rem, 1.3048128342rem + 2.8520499109vw, 4rem);
  color: var(--color-white);
  font-size: clamp(1.375rem, 0.8536096257rem + 2.1390374332vw, 2.875rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 0.1524064171rem + 1.4260249554vw, 1.5rem);
}
.c-entry__pic {
  width: clamp(2.25rem, 1.2072192513rem + 4.2780748663vw, 5.25rem);
  height: clamp(2.25rem, 1.2072192513rem + 4.2780748663vw, 5.25rem);
}
.c-entry__btns {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1rem;
}
@media screen and (min-width: 960px) {
  .c-entry__btns {
    grid-template-columns: 1fr 1fr;
    row-gap: 0;
    column-gap: 2rem;
  }
}
.c-entry__btn {
  width: 100%;
  height: clamp(3.75rem, 2.2727272727rem + 6.0606060606vw, 8rem);
  padding-left: clamp(2rem, 1.3048128342rem + 2.8520499109vw, 4rem);
  padding-right: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  border: 0.5px solid var(--border-gray, rgba(0, 0, 0, 0.2));
  background: var(--color-black);
  color: var(--color-white);
  font-size: clamp(1rem, 0.7827540107rem + 0.8912655971vw, 1.625rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-entry__btn__ic {
  margin-left: auto;
  width: clamp(1.75rem, 0.9679144385rem + 3.2085561497vw, 4rem);
  height: clamp(1.75rem, 0.9679144385rem + 3.2085561497vw, 4rem);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-entry__btn__ic img {
  width: clamp(0.625rem, 0.320855615rem + 1.247771836vw, 1.5rem);
}
.c-entry__btn__ic {
  background-color: var(--color-white);
}
.c-entry__btn__sub {
  padding: 1rem;
  padding-left: 2rem;
  margin-top: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  border-radius: 1000px;
  border: 0.5px solid var(--border-gray, rgba(0, 0, 0, 0.2));
  background: var(--color-white);
  font-size: clamp(0.75rem, 0.6631016043rem + 0.3565062389vw, 1rem);
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 960px) {
  .c-entry__btn__sub {
    width: fit-content;
    height: 4rem;
    padding-top: 0;
    padding-bottom: 0;
    margin-left: auto;
    margin-right: auto;
  }
}
.c-entry__btn__sub .c-btn__ic {
  flex-shrink: 0;
}
@media screen and (min-width: 960px) {
  .c-entry__btn__sub .c-btn__ic {
    width: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
    height: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .c-entry__btn__sub .c-btn__ic img {
    width: clamp(0.375rem, 0.2446524064rem + 0.5347593583vw, 0.75rem);
  }
}

.c-before__dot {
  display: flex;
  align-items: flex-start;
}
.c-before__dot::before {
  content: "";
  display: block;
  width: clamp(0.25rem, 0.25rem + 0vw, 0.25rem);
  height: clamp(0.25rem, 0.25rem + 0vw, 0.25rem);
  margin-top: clamp(0.625rem, 0.625rem + 0vw, 0.625rem);
  margin-right: clamp(0.625rem, 0.625rem + 0vw, 0.625rem);
  border-radius: 50%;
  background: var(--color-black);
  flex-shrink: 0;
}

.p-home {
  /* --- アニメーション設定（％を揃えて順番に光るように調整） --- */
}
@keyframes bounce {
  0%, 20%, 100% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(-20px);
  }
}
@keyframes op-ripple {
  0%, 20%, 100% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
}
.p-home-kv__head {
  padding-top: clamp(7.5rem, 6.9786096257rem + 2.1390374332vw, 9rem);
  margin-bottom: clamp(3.75rem, 3.3155080214rem + 1.7825311943vw, 5rem);
  position: relative;
  opacity: 0;
}
.p-home-kv__head.is-active {
  animation: fadeIn 1s forwards ease;
  /* 2. アニメーションするパス（詳細度を高く設定） */
}
.p-home-kv__head.is-active .color-layer {
  animation: op-ripple 3s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
}
.p-home-kv__head.is-active {
  /* SVG全体の跳ねる動き */
}
.p-home-kv__head.is-active svg,
.p-home-kv__head.is-active svg {
  animation: bounce 3s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.p-home-kv__head__top, .p-home-kv__head__bottom {
  height: clamp(2.5rem, 1.2834224599rem + 4.991087344vw, 6rem);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(0.1875rem, 0.0788770053rem + 0.4456327986vw, 0.5rem);
}
.p-home-kv__head__top svg, .p-home-kv__head__bottom svg {
  width: auto;
  height: 100%;
}
.p-home-kv__head__top {
  /* --- 3. 各文字の色とディレイ --- */
  /* 1文字目: #f53a20 */
}
.p-home-kv__head__top svg:nth-child(1) {
  animation-delay: 0s;
}
.p-home-kv__head__top svg:nth-child(1) .color-layer {
  fill: #f53a20;
  animation-delay: 0s;
}
.p-home-kv__head__top {
  /* 2文字目: #f57920 */
}
.p-home-kv__head__top svg:nth-child(2) {
  animation-delay: 0.2s;
}
.p-home-kv__head__top svg:nth-child(2) .color-layer {
  fill: #f57920;
  animation-delay: 0.2s;
}
.p-home-kv__head__top {
  /* 3文字目: #2073f5 */
}
.p-home-kv__head__top svg:nth-child(3) {
  animation-delay: 0.4s;
}
.p-home-kv__head__top svg:nth-child(3) .color-layer {
  fill: #2073f5;
  animation-delay: 0.4s;
}
.p-home-kv__head__top {
  /* 4文字目: #f53a20 */
}
.p-home-kv__head__top svg:nth-child(4) {
  animation-delay: 0.6s;
}
.p-home-kv__head__top svg:nth-child(4) .color-layer {
  fill: #f53a20;
  animation-delay: 0.6s;
}
.p-home-kv__head__top {
  /* 5文字目: #ecdc26 */
}
.p-home-kv__head__top svg:nth-child(5) {
  animation-delay: 0.8s;
}
.p-home-kv__head__top svg:nth-child(5) .color-layer {
  fill: #ecdc26;
  animation-delay: 0.8s;
}
.p-home-kv__head__top {
  /* 6文字目: #4f39d0 */
}
.p-home-kv__head__top svg:nth-child(6) {
  animation-delay: 1s;
}
.p-home-kv__head__top svg:nth-child(6) .color-layer {
  fill: #4f39d0;
  animation-delay: 1s;
}
.p-home-kv__head__top {
  /* 7文字目: #40d039 */
}
.p-home-kv__head__top svg:nth-child(7) {
  animation-delay: 1.2s;
}
.p-home-kv__head__top svg:nth-child(7) .color-layer {
  fill: #40d039;
  animation-delay: 1.2s;
}
.p-home-kv__head__bottom {
  /* 1文字目: #f53a20 */
}
.p-home-kv__head__bottom svg:nth-child(1) {
  animation-delay: 0.6s;
}
.p-home-kv__head__bottom svg:nth-child(1) .color-layer {
  fill: #f53a20;
  animation-delay: 0.6s;
}
.p-home-kv__head__bottom {
  /* 2文字目: #ecdc26 */
}
.p-home-kv__head__bottom svg:nth-child(2) {
  animation-delay: 0.8s;
}
.p-home-kv__head__bottom svg:nth-child(2) .color-layer {
  fill: #ecdc26;
  animation-delay: 0.8s;
}
.p-home-kv__head__bottom {
  /* 3文字目: #4f39d0 */
}
.p-home-kv__head__bottom svg:nth-child(3) {
  animation-delay: 1s;
}
.p-home-kv__head__bottom svg:nth-child(3) .color-layer {
  fill: #4f39d0;
  animation-delay: 1s;
}
.p-home-kv__head__bottom {
  /* 4文字目: #40d039 */
}
.p-home-kv__head__bottom svg:nth-child(4) {
  animation-delay: 1.2s;
}
.p-home-kv__head__bottom svg:nth-child(4) .color-layer {
  fill: #40d039;
  animation-delay: 1.2s;
}
.p-home-kv__text {
  width: clamp(6.875rem, 3.7032085561rem + 13.0124777184vw, 16rem);
  rotate: -15deg;
  position: absolute;
  top: 100%;
  left: calc(50% + 3.03125rem);
  opacity: 0;
  translate: -10px -10px;
}
@media screen and (min-width: 960px) {
  .p-home-kv__text {
    top: 50%;
    left: calc(50% + 0.2585978836 * min(100vw, 1512px));
  }
}
.p-home-kv__text.is-active {
  animation: fade-inKvText 1s 1s ease forwards;
}
@keyframes fade-inKvText {
  0% {
    opacity: 0;
    translate: 10px 10px;
  }
  100% {
    opacity: 1;
    translate: 0 0;
  }
}
.p-home-kv .splide__track {
  padding-bottom: 5.3125rem;
}
.p-home-kv #kv-slider-bottom {
  margin-top: -5.3125rem;
}
.p-home-kv__slide {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 0.3155080214rem + 1.7825311943vw, 2rem);
}
.p-home-kv__slide-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 0.3155080214rem + 1.7825311943vw, 2rem);
  opacity: 0;
}
.p-home-kv__slide-wrap.is-active {
  animation: fadeIn 5s 1s ease forwards;
  /* 共通アニメーション */
  /* スペースを空けずに繋げて書くことで「このクラスを両方持つli」を指します */
}
.p-home-kv__slide-wrap.is-active .p-home-kv__slide__item::before {
  animation: doorOpenSkew 1.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
.p-home-kv__slide-wrap.is-active #kv-slider-top [data-index="1"]::before {
  animation-delay: 2.5s !important;
}
.p-home-kv__slide-wrap.is-active #kv-slider-top [data-index="2"]::before {
  animation-delay: 2.3s !important;
}
.p-home-kv__slide-wrap.is-active #kv-slider-top [data-index="3"]::before {
  animation-delay: 2.1s !important;
}
.p-home-kv__slide-wrap.is-active #kv-slider-top [data-index="4"]::before {
  animation-delay: 1.9s !important;
}
.p-home-kv__slide-wrap.is-active #kv-slider-top [data-index="5"]::before {
  animation-delay: 1.7s !important;
}
.p-home-kv__slide-wrap.is-active #kv-slider-top [data-index="6"]::before {
  animation-delay: 1.5s !important;
}
.p-home-kv__slide-wrap.is-active #kv-slider-bottom [data-index="1"]::before {
  animation-delay: 2.7s !important;
}
.p-home-kv__slide-wrap.is-active #kv-slider-bottom [data-index="2"]::before {
  animation-delay: 2.5s !important;
}
.p-home-kv__slide-wrap.is-active #kv-slider-bottom [data-index="3"]::before {
  animation-delay: 2.3s !important;
}
.p-home-kv__slide-wrap.is-active #kv-slider-bottom [data-index="4"]::before {
  animation-delay: 2.1s !important;
}
.p-home-kv__slide-wrap.is-active #kv-slider-bottom [data-index="5"]::before {
  animation-delay: 1.9s !important;
}
.p-home-kv__slide-wrap.is-active #kv-slider-bottom [data-index="6"]::before {
  animation-delay: 1.7s !important;
}
.p-home-kv__slide__item {
  width: clamp(8.375rem, 4.9859625668rem + 13.9037433155vw, 18.125rem);
  border-radius: 1000px 1000px 0 0;
  aspect-ratio: 53/89;
  position: relative;
}
.p-home-kv__slide__item.u-photo img,
.p-home-kv__slide__item.u-photo video {
  border-radius: 1000px 1000px 0 0;
  overflow: hidden;
}
.p-home-kv__slide__item.u-blue {
  background: var(--gradation-blue, linear-gradient(316deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 56.27%), #2073f5);
  background-blend-mode: overlay, normal;
}
.p-home-kv__slide__item.u-blue img {
  width: clamp(7.0625rem, 4.1948529412rem + 11.7647058824vw, 15.3125rem);
  margin-top: clamp(2.125rem, 1.2668783422rem + 3.5204991087vw, 4.59375rem);
}
.p-home-kv__slide__item.u-orange {
  background: var(--gradation-orange, linear-gradient(316deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 56.27%), #f57920);
  background-blend-mode: overlay, normal;
}
.p-home-kv__slide__item.u-orange img {
  width: clamp(7.671875rem, 4.6032754011rem + 12.5891265597vw, 16.5rem);
  margin-top: clamp(1.0625rem, 0.6214906417rem + 1.8092691622vw, 2.33125rem);
}
.p-home-kv__slide__item.u-purple {
  background: var(--gradation-purple, linear-gradient(316deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 56.27%), #4f39d0);
  background-blend-mode: overlay, normal;
}
.p-home-kv__slide__item.u-purple img {
  width: clamp(8.6875rem, 5.1898395722rem + 14.3493761141vw, 18.75rem);
  margin-top: clamp(2.0625rem, 1.2261029412rem + 3.431372549vw, 4.46875rem);
}
.p-home-kv__slide__item.u-red {
  background: var(--gradation-red, linear-gradient(316deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 56.27%), #f53a20);
  background-blend-mode: overlay, normal;
}
.p-home-kv__slide__item.u-red img {
  width: clamp(6.59375rem, 3.9216243316rem + 10.9625668449vw, 14.28125rem);
  margin-top: clamp(1.90625rem, 1.135026738rem + 3.1639928699vw, 4.125rem);
}
.p-home-kv__slide__item.u-yellow {
  background: var(--gradation-yellow, linear-gradient(316deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 56.27%), #ecdc26);
  background-blend-mode: overlay, normal;
}
.p-home-kv__slide__item.u-yellow img {
  width: clamp(9.2rem, 5.4785762032rem + 15.2673796791vw, 19.90625rem);
  margin-top: clamp(2.125rem, 1.2636196524rem + 3.5338680927vw, 4.603125rem);
}
.p-home-kv__slide__item.u-green {
  background: var(--gradation-green, linear-gradient(316deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 56.27%), #40d039);
  background-blend-mode: overlay, normal;
}
.p-home-kv__slide__item.u-green img {
  width: clamp(7.1375rem, 4.2481283422rem + 11.8538324421vw, 15.45rem);
  margin-top: clamp(2.175rem, 1.3299131016rem + 3.4670231729vw, 4.60625rem);
}
.p-home-kv__slide__item::before {
  content: "";
  display: block;
  width: clamp(8.375rem, 4.9859625668rem + 13.9037433155vw, 18.125rem);
  aspect-ratio: 53/89;
  border-radius: 1000px 1000px 0 0;
  background-color: #fafafa;
  position: absolute;
  top: 0;
  left: 0;
  /* --- アニメーションの設定ここから --- */
  transform-origin: left;
  transform: scaleX(1) skewY(0deg);
}
.p-home-kv__slide__item .bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.p-home-message {
  padding-top: clamp(4.5rem, 3.2834224599rem + 4.991087344vw, 8rem);
}
.p-home-message__inner {
  width: clamp(21.5625rem, -1.0093582888rem + 92.6024955437vw, 86.5rem);
  padding: clamp(3rem, 1.9572192513rem + 4.2780748663vw, 6rem) clamp(1.5rem, -0.064171123rem + 6.4171122995vw, 6rem);
  margin: 0 auto;
  border-radius: 8px;
  background: url(/work/recruit/assets/img/common/bg_tile.png) top left/200px 200px repeat;
  position: relative;
}
.p-home-message__inner::before {
  content: "";
  display: block;
  width: clamp(3.21875rem, 2.0999331551rem + 4.5900178253vw, 6.4375rem);
  height: clamp(3.96875rem, 2.5892379679rem + 5.6595365419vw, 7.9375rem);
  background: url(/work/recruit/assets/img/home/ic_maracas.png) center/contain no-repeat;
  position: absolute;
  top: -0.625rem;
  right: 1.53125rem;
}
@media screen and (min-width: 960px) {
  .p-home-message__inner::before {
    top: -1.25rem;
    right: auto;
    left: 29rem;
  }
}
@media screen and (min-width: 960px) {
  .p-home-message__wrap {
    display: flex;
    align-items: flex-start;
  }
}
@media screen and (min-width: 960px) {
  .p-home-message__ttl {
    width: 50%;
  }
}
.p-home-message__ttl > img {
  height: clamp(5rem, 3.5879010695rem + 5.7932263815vw, 9.0625rem);
  margin-bottom: 3rem;
}
@media screen and (min-width: 960px) {
  .p-home-message__ttl > img {
    margin-bottom: 1.5rem;
  }
}
.p-home-message__text {
  font-size: clamp(0.9375rem, 0.7419786096rem + 0.8021390374vw, 1.5rem);
  font-weight: 500;
  line-height: 1.75;
}
@media screen and (min-width: 960px) {
  .p-home-message__text {
    width: 50%;
  }
}
.p-home-who {
  padding-top: clamp(4.5rem, 3.9786096257rem + 2.1390374332vw, 6rem);
  position: relative;
}
.p-home-who::before {
  content: "";
  display: block;
  width: clamp(4.01875rem, 2.6240307487rem + 5.7219251337vw, 8.03125rem);
  height: clamp(3.7375rem, 2.4361965241rem + 5.3386809269vw, 7.48125rem);
  background: url(/work/recruit/assets/img/home/ic_xylophone.png) center/contain no-repeat;
  rotate: 10deg;
  position: absolute;
  top: -1.25rem;
  right: 1.609375rem;
}
@media screen and (min-width: 960px) {
  .p-home-who::before {
    top: 1.8125rem;
    right: calc(50% - min(39.5502645503vw, 598px));
  }
}
.p-home-who__inner {
  width: clamp(21.5625rem, 3.1617647059rem + 75.4901960784vw, 74.5rem);
  margin: 0 auto;
}
.p-home-who__ttl {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 0.4893048128rem + 1.0695187166vw, 1.5rem);
}
.p-home-who__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
}
@media screen and (min-width: 960px) {
  .p-home-who__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-home-who__card {
  height: clamp(8.5rem, 1.613302139rem + 28.2531194296vw, 28.3125rem);
  padding-right: 3rem;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}
@media screen and (min-width: 960px) {
  .p-home-who__card {
    padding: 0;
    border-radius: 1rem;
    align-items: center;
    justify-content: flex-end;
  }
}
.p-home-who__card.u-blue {
  background: url(/work/recruit/assets/img/home/card_img-sp.png) center/cover no-repeat;
}
@media screen and (min-width: 960px) {
  .p-home-who__card.u-blue {
    background-image: url(/work/recruit/assets/img/home/card_img.png);
  }
}
.p-home-who__card.u-green {
  background: url(/work/recruit/assets/img/home/card_img2-sp.png) center/cover no-repeat;
}
@media screen and (min-width: 960px) {
  .p-home-who__card.u-green {
    background-image: url(/work/recruit/assets/img/home/card_img2.png);
  }
}
.p-home-who__card.u-red {
  background: url(/work/recruit/assets/img/home/card_img3-sp.png) center/cover no-repeat;
}
@media screen and (min-width: 960px) {
  .p-home-who__card.u-red {
    background-image: url(/work/recruit/assets/img/home/card_img3.png);
  }
}
.p-home-who__card__textwrap {
  width: clamp(9.125rem, 5.5187165775rem + 14.7950089127vw, 19.5rem);
}
@media screen and (min-width: 960px) {
  .p-home-who__card__textwrap {
    margin-bottom: 2rem;
  }
}
.p-home-who__card__ttl {
  margin-bottom: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  color: var(--color-white);
  font-size: clamp(1rem, 0.7827540107rem + 0.8912655971vw, 1.625rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.64px;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .p-home-who__card__ttl {
    letter-spacing: 1.04px;
  }
}
.p-home-who__card__link {
  width: clamp(6.4375rem, 4.8516042781rem + 6.5062388592vw, 11rem);
  height: clamp(2rem, 1.3048128342rem + 2.8520499109vw, 4rem);
  padding-left: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  padding-right: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  margin: 0 auto;
  border-radius: 50px;
  border: 0.5px solid rgba(0, 0, 0, 0.2);
  background: var(--color-white);
  font-size: clamp(0.6875rem, 0.5788770053rem + 0.4456327986vw, 1rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 960px) {
  .p-home-who__card__link {
    border-width: 1px;
  }
}
.p-home-who__card__ic {
  width: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  height: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-home-who__card__ic img {
  width: clamp(0.375rem, 0.2446524064rem + 0.5347593583vw, 0.75rem);
}
.p-home-job {
  padding-top: clamp(4.5rem, 3.9786096257rem + 2.1390374332vw, 6rem);
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .p-home-job {
    overflow: visible;
  }
}
.p-home-job__inner {
  width: clamp(21.5625rem, 3.1617647059rem + 75.4901960784vw, 74.5rem);
  margin: 0 auto;
}
.p-home-job__ttl {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 0.4893048128rem + 1.0695187166vw, 1.5rem);
}
.p-home-job__bnr__wrap {
  display: grid;
  gap: clamp(1rem, 1rem + 0vw, 1rem);
}
@media screen and (min-width: 960px) {
  .p-home-job__bnr__wrap {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.p-home-job__bnr__link {
  width: 100%;
  height: clamp(6.25rem, 3.8168449198rem + 9.9821746881vw, 13.25rem);
  padding-right: clamp(1rem, -0.0427807487rem + 4.2780748663vw, 4rem);
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  background: var(--color-white);
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .p-home-job__bnr__link {
    height: auto;
    flex-direction: column;
    padding-right: 0;
  }
}
.p-home-job__bnr__link:hover {
  opacity: 1;
}
.p-home-job__bnr__link:hover .p-home-job__bnr__ttl {
  opacity: 0.5;
}
.p-home-job__bnr__link:hover .c-arrow-container {
  background-color: var(--color-white);
}
.p-home-job__bnr__link:hover .c-arrow-main {
  translate: 200% 0;
}
.p-home-job__bnr__link:hover .c-arrow-sub {
  translate: 0 0;
}
.p-home-job__bnr__img {
  height: 100%;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 960px) {
  .p-home-job__bnr__img {
    aspect-ratio: 2/1;
  }
}
.p-home-job__bnr__img img {
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 960px) {
  .p-home-job__bnr__img img {
    height: auto;
  }
}
.p-home-job__bnr__box {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 960px) {
  .p-home-job__bnr__box {
    width: 100%;
    display: block;
    padding: clamp(2rem, 2rem + 0vw, 2rem) 0;
    position: relative;
  }
}
.p-home-job__bnr__ttl {
  margin-left: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  font-size: clamp(1rem, 0.7827540107rem + 0.8912655971vw, 1.625rem);
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  transition: 0.3s;
}
.p-home-job__bnr__ic {
  margin-left: auto;
  width: clamp(1.75rem, 0.9679144385rem + 3.2085561497vw, 4rem);
  height: clamp(1.75rem, 0.9679144385rem + 3.2085561497vw, 4rem);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-home-job__bnr__ic img {
  width: clamp(0.625rem, 0.320855615rem + 1.247771836vw, 1.5rem);
}
@media screen and (min-width: 960px) {
  .p-home-job__bnr__ic {
    width: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
    height: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .p-home-job__bnr__ic img {
    width: clamp(0.375rem, 0.2446524064rem + 0.5347593583vw, 0.75rem);
  }
  .p-home-job__bnr__ic {
    position: absolute;
    right: 2rem;
    top: 50%;
    translate: 0 -50%;
  }
}
.p-home-people {
  display: grid;
  padding-top: clamp(2rem, 1.3048128342rem + 2.8520499109vw, 4rem);
}
.p-home-people__ttl {
  width: 100%;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 960px) {
  .p-home-people__ttl {
    height: min(2.9761904762vw, 45px);
  }
}
.p-home-people__ttl > picture {
  display: block;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .p-home-people__ttl > picture {
    width: auto;
    height: 100%;
  }
}
.p-home-people__ttl img {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .p-home-people__ttl img {
    height: 100%;
  }
}
.p-home-people__list {
  display: grid;
  grid-auto-flow: column;
}
.splide:not(.is-overflow) .p-home-people__list {
  justify-content: center;
}
.p-home-people__list__item {
  width: 38.4615384615vw;
  padding-bottom: clamp(1.5rem, 0.9786096257rem + 2.1390374332vw, 3rem);
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  border-radius: 547.445px 547.445px 0 0;
  background: var(--color-white);
}
@media screen and (min-width: 960px) {
  .p-home-people__list__item {
    width: min(16.0052910053vw, 242px);
    border-radius: 1000px 1000px 0 0;
  }
  .p-home-people__list__item:hover {
    opacity: 1;
  }
  .p-home-people__list__item:hover .p-home-people__list__catch,
  .p-home-people__list__item:hover .p-home-people__list__desc {
    opacity: 0.5;
  }
  .p-home-people__list__item:hover .c-hover-btn {
    opacity: 1;
    color: var(--color-white);
  }
  .p-home-people__list__item:hover .c-hover-btn::before {
    transform: scaleX(1);
  }
  .p-home-people__list__item:hover .c-hover-btn .c-arrow-container.u-black {
    background-color: var(--color-white);
  }
  .p-home-people__list__item:hover .c-hover-btn .c-arrow-container.u-white {
    background-color: var(--color-black);
  }
  .p-home-people__list__item:hover .c-hover-btn .c-arrow-main {
    translate: 200% 0;
  }
  .p-home-people__list__item:hover .c-hover-btn .c-arrow-sub {
    translate: 0 0;
  }
}
.splide:not(.is-overflow) .p-home-people__list__item:last-child {
  margin-right: 0 !important;
}
.p-home-people__list__img {
  width: 100%;
  margin-bottom: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
.p-home-people__list__catch {
  margin-bottom: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  font-feature-settings: "palt";
  font-size: clamp(0.875rem, 0.6143048128rem + 1.0695187166vw, 1.625rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.56px;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .p-home-people__list__catch {
    letter-spacing: 1.04px;
    transition: 0.3s;
  }
}
.p-home-people__list__desc {
  margin-bottom: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  font-size: clamp(0.625rem, 0.5381016043rem + 0.3565062389vw, 0.875rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.55;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .p-home-people__list__desc {
    transition: 0.3s;
  }
}
.p-home-people__list__desc span {
  font-family: "Manrope", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(0.75rem, 0.6631016043rem + 0.3565062389vw, 1rem);
  font-weight: 600;
}
.p-home-people__list__link {
  width: clamp(6.4375rem, 4.8516042781rem + 6.5062388592vw, 11rem);
  height: clamp(2rem, 1.3048128342rem + 2.8520499109vw, 4rem);
  padding-left: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  padding-right: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  margin: 0 auto;
  border-radius: 50px;
  border: 0.5px solid rgba(0, 0, 0, 0.2);
  background: var(--color-white);
  font-size: clamp(0.6875rem, 0.5788770053rem + 0.4456327986vw, 1rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 960px) {
  .p-home-people__list__link {
    border-width: 1px;
  }
}
.p-home-people__list__ic {
  width: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  height: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-home-people__list__ic img {
  width: clamp(0.375rem, 0.2446524064rem + 0.5347593583vw, 0.75rem);
}
.p-home-people__btn {
  margin: clamp(2rem, 1.3048128342rem + 2.8520499109vw, 4rem) auto 0;
}
.p-home-people .splide.is-overflow {
  padding-bottom: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  margin-bottom: clamp(1.75rem, 0.9679144385rem + 3.2085561497vw, 4rem);
}
.p-home-people .splide__track {
  overflow: visible;
}
.p-home-people .splide__arrows {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 0;
  top: 100%;
  gap: clamp(0.75rem, 0.3155080214rem + 1.7825311943vw, 2rem);
}
.p-home-people .splide__arrow {
  width: clamp(1.75rem, 0.9679144385rem + 3.2085561497vw, 4rem);
  height: clamp(1.75rem, 0.9679144385rem + 3.2085561497vw, 4rem);
  border-radius: 50%;
  background: url(/work/recruit/assets/img/common/ic_arrow-white.svg) center/10px no-repeat;
  background-color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
  transform: translateY(0);
  opacity: 1;
}
@media screen and (min-width: 960px) {
  .p-home-people .splide__arrow {
    background-size: 1.5rem;
  }
}
.p-home-people .splide__arrow:disabled {
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
}
.p-home-people .splide__arrow--prev {
  transform: rotate(180deg);
}
.p-home-people .splide__arrow svg {
  display: none;
}
.p-home-people .splide__pagination {
  display: none;
}
.p-home-voices {
  padding-top: clamp(4.5rem, 3.9786096257rem + 2.1390374332vw, 6rem);
}
.p-home-voices__inner {
  width: clamp(21.5625rem, 3.1617647059rem + 75.4901960784vw, 74.5rem);
  padding: clamp(3rem, 1.9572192513rem + 4.2780748663vw, 6rem) clamp(1.5rem, -0.064171123rem + 6.4171122995vw, 6rem);
  margin: 0 auto;
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  background: var(--gradation-purple, linear-gradient(316deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 56.27%), #4f39d0);
  background-blend-mode: overlay, normal;
  position: relative;
}
.p-home-voices__inner::before {
  content: "";
  display: block;
  width: clamp(3.73125rem, 2.4429812834rem + 5.2852049911vw, 7.4375rem);
  height: clamp(4.44375rem, 2.9034759358rem + 6.3190730838vw, 8.875rem);
  background: url(/work/recruit/assets/img/home/ic_guitar.png) center/contain no-repeat;
  position: absolute;
  top: -0.46875rem;
  right: 1.4625rem;
}
@media screen and (min-width: 960px) {
  .p-home-voices__inner::before {
    top: 3.984375rem;
    right: 6rem;
  }
}
.p-home-voices__index {
  color: var(--color-white);
}
.p-home-voices__ttl {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 0.4893048128rem + 1.0695187166vw, 1.5rem);
}
.p-home-voices__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
}
@media screen and (min-width: 960px) {
  .p-home-voices__cards {
    grid-template-columns: 1fr 1fr;
  }
}
.p-home-voices__card {
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  background: var(--color-white);
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-home-voices__card {
    height: 21.515625rem;
  }
}
.p-home-voices__card:first-of-type::before {
  content: "";
  display: block;
  width: clamp(5.375rem, 3.5284090909rem + 7.5757575758vw, 10.6875rem);
  height: clamp(4.30625rem, 3.3264705882rem + 4.0196078431vw, 7.125rem);
  background: url(/work/recruit/assets/img/home/fukidashi-blue-sp.png) center/contain no-repeat;
  rotate: -15deg;
  position: absolute;
  left: -17px;
  top: 3.465px;
}
@media screen and (min-width: 960px) {
  .p-home-voices__card:first-of-type::before {
    background-image: url(/work/recruit/assets/img/home/fukidashi-blue.png);
    left: -4px;
    top: -34.55px;
  }
}
.p-home-voices__card:first-of-type::after {
  content: "";
  display: block;
  width: clamp(6.4375rem, 4.8298796791rem + 6.5953654189vw, 11.0625rem);
  height: clamp(4.0625rem, 3.3455882353rem + 2.9411764706vw, 6.125rem);
  background: url(/work/recruit/assets/img/home/fukidashi-orange-sp.png) center/contain no-repeat;
  rotate: 15deg;
  position: absolute;
  right: -18.91px;
  bottom: -5.57px;
}
@media screen and (min-width: 960px) {
  .p-home-voices__card:first-of-type::after {
    background-image: url(/work/recruit/assets/img/home/fukidashi-orange.png);
    right: -10px;
    bottom: -30px;
  }
}
.p-home-voices__card:last-of-type::before {
  content: "";
  display: block;
  width: clamp(5.625rem, 3.8001336898rem + 7.486631016vw, 10.875rem);
  height: clamp(4.0625rem, 3.3455882353rem + 2.9411764706vw, 6.125rem);
  background: url(/work/recruit/assets/img/home/fukidashi-yellow-sp.png) center/contain no-repeat;
  rotate: -15deg;
  position: absolute;
  left: -13px;
  top: 3px;
}
@media screen and (min-width: 960px) {
  .p-home-voices__card:last-of-type::before {
    background-image: url(/work/recruit/assets/img/home/fukidashi-yellow.png);
    left: 15px;
    top: -23.25px;
  }
}
.p-home-voices__card:last-of-type::after {
  content: "";
  display: block;
  width: clamp(6.4375rem, 3.8088235294rem + 10.7843137255vw, 14rem);
  height: clamp(3.4375rem, 2.8509358289rem + 2.4064171123vw, 5.125rem);
  background: url(/work/recruit/assets/img/home/fukidashi-red-sp.png) center/contain no-repeat;
  rotate: 15deg;
  position: absolute;
  right: -19px;
  bottom: -4.6px;
}
@media screen and (min-width: 960px) {
  .p-home-voices__card:last-of-type::after {
    background-image: url(/work/recruit/assets/img/home/fukidashi-red.png);
    right: -29.5px;
    bottom: -23.5px;
  }
}
.p-home-voices__card__inner {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .p-home-voices__card__inner {
    width: 100%;
    height: 100%;
    padding: 0 4rem;
    justify-content: center;
  }
}
.p-home-voices__card__catch {
  display: inline;
  padding-bottom: clamp(0.25rem, 0.1631016043rem + 0.3565062389vw, 0.5rem);
  border-bottom: 0.5px solid var(--color-black);
  font-size: clamp(0.625rem, 0.4512032086rem + 0.7130124777vw, 1.125rem);
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 960px) {
  .p-home-voices__card__catch {
    border-bottom: 1px solid var(--color-black);
  }
}
.p-home-voices__card__ttl {
  font-feature-settings: "palt" on;
  font-size: clamp(1.25rem, 0.9024064171rem + 1.4260249554vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.8px;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .p-home-voices__card__ttl {
    letter-spacing: 1.44px;
  }
}
.p-home-voices__card__link {
  width: clamp(6.4375rem, 4.8516042781rem + 6.5062388592vw, 11rem);
  height: clamp(2rem, 1.3048128342rem + 2.8520499109vw, 4rem);
  padding-left: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  padding-right: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  margin: 0 auto;
  border-radius: 50px;
  border: 0.5px solid rgba(0, 0, 0, 0.2);
  background: var(--color-white);
  font-size: clamp(0.6875rem, 0.5788770053rem + 0.4456327986vw, 1rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 960px) {
  .p-home-voices__card__link {
    border-width: 1px;
  }
}
.p-home-voices__card__link__ic {
  width: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  height: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-home-voices__card__link__ic img {
  width: clamp(0.375rem, 0.2446524064rem + 0.5347593583vw, 0.75rem);
}
.p-home-voices__card__loop {
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  animation: loop-text 100s linear infinite;
}
@media screen and (min-width: 960px) {
  .p-home-voices__card__loop {
    animation-duration: 160s;
  }
}
.p-home-voices__card__bg {
  display: inline-block;
  padding-right: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  font-family: "Manrope", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(3rem, 1.9572192513rem + 4.2780748663vw, 6rem);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  opacity: 0.05;
}
@keyframes loop-text {
  0% {
    transform: 0;
  } /* 左の場外から */
  100% {
    transform: translateX(-50%);
  } /* 右の場外へ */
}
.p-home-recruit {
  padding-top: clamp(4.5rem, 3.9786096257rem + 2.1390374332vw, 6rem);
}
.p-home-recruit__inner {
  width: clamp(21.5625rem, 3.1617647059rem + 75.4901960784vw, 74.5rem);
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .p-home .c-pattern__bg {
    overflow: hidden;
  }
}

.p-president__section {
  padding-top: clamp(4.5rem, 3.2834224599rem + 4.991087344vw, 8rem);
}
.p-president__bg-color {
  width: clamp(21.5625rem, -1.0093582888rem + 92.6024955437vw, 86.5rem);
  padding: clamp(3rem, 1.9572192513rem + 4.2780748663vw, 6rem) clamp(1.5rem, -0.064171123rem + 6.4171122995vw, 6rem);
  margin: 0 auto;
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  background: var(--gradation-purple, linear-gradient(316deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 56.27%), #4f39d0);
  background-blend-mode: overlay, normal;
}
@media screen and (min-width: 960px) {
  .p-president__ttl {
    height: calc(0.0423280423 * min(100vw, 1512px));
  }
  .p-president__ttl img {
    height: 100%;
  }
}
.p-president__list {
  display: grid;
  gap: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
}
.p-president__item {
  padding: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem) clamp(1rem, -0.0427807487rem + 4.2780748663vw, 4rem);
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  background: var(--color-white);
  font-size: clamp(0.9375rem, 0.6550802139rem + 1.1586452763vw, 1.75rem);
  font-weight: 500;
  line-height: 1.75;
  display: flex;
  align-items: flex-start;
  gap: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
}
.p-president__item span {
  width: clamp(1rem, 0.7393048128rem + 1.0695187166vw, 1.75rem);
  height: clamp(1rem, 0.7393048128rem + 1.0695187166vw, 1.75rem);
  margin-top: clamp(0.3125rem, 0.1930147059rem + 0.4901960784vw, 0.65625rem);
  border-radius: 50%;
  background: var(--color-purple);
  color: var(--color-white);
  font-family: "Manrope", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(0.625rem, 0.4946524064rem + 0.5347593583vw, 1rem);
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-president__photo {
  margin-bottom: clamp(2rem, 1.3048128342rem + 2.8520499109vw, 4rem);
}
.p-president__catch {
  display: block;
  margin-bottom: clamp(2rem, 1.3048128342rem + 2.8520499109vw, 4rem);
}
@media screen and (min-width: 960px) {
  .p-president__catch {
    height: calc(0.1170634921 * min(100vw, 1512px));
  }
  .p-president__catch img {
    height: 100%;
  }
}
.p-president__name__career {
  margin-bottom: clamp(0.625rem, 0.4077540107rem + 0.8912655971vw, 1.25rem);
  font-size: clamp(0.75rem, 0.6196524064rem + 0.5347593583vw, 1.125rem);
  font-weight: 500;
  line-height: 1.5;
}
.p-president__name {
  display: inline-block;
  font-size: clamp(1.125rem, 0.7339572193rem + 1.6042780749vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
}
.p-president__name__kana {
  display: inline-block;
  margin-left: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  font-family: "Manrope", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(0.75rem, 0.5762032086rem + 0.7130124777vw, 1.25rem);
  font-weight: 600;
  line-height: 1;
}
.p-president__ssection {
  padding-top: clamp(4.5rem, 3.9786096257rem + 2.1390374332vw, 6rem);
}
@media screen and (min-width: 960px) {
  .p-president__ssection:nth-child(2n) .p-president__column__item:first-of-type {
    order: 1;
  }
  .p-president__ssection:nth-child(2n) .p-president__column__item:last-of-type {
    order: 0;
  }
}
.p-president__column {
  display: grid;
  gap: clamp(1.5rem, 0.6310160428rem + 3.5650623886vw, 4rem);
}
@media screen and (min-width: 960px) {
  .p-president__column {
    grid-template-columns: 1fr 1fr;
  }
}
.p-president__sttl {
  margin-bottom: clamp(1.5rem, 0.6310160428rem + 3.5650623886vw, 4rem);
}
@media screen and (min-width: 960px) {
  .p-president__sttl {
    height: calc(0.0317460317 * min(100vw, 1512px));
  }
}
.p-president__sttl__wrap {
  margin-bottom: clamp(1.5rem, 0.6310160428rem + 3.5650623886vw, 4rem);
}
.p-president__lead {
  font-feature-settings: "palt" on;
  font-size: clamp(1.125rem, 0.9077540107rem + 0.8912655971vw, 1.75rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.72px;
}
.p-president__text {
  text-align: justify;
  font-size: clamp(0.875rem, 0.7446524064rem + 0.5347593583vw, 1.25rem);
  font-weight: 500;
  line-height: 1.75;
}
.p-president__text + p {
  margin-top: clamp(1.53125rem, 1.3031417112rem + 0.935828877vw, 2.1875rem);
}
.p-president__figure {
  display: block;
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  overflow: hidden;
}
.p-president__figure + figure {
  margin-top: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
}

.p-chairman__text {
  padding-top: clamp(4.5rem, 3.2834224599rem + 4.991087344vw, 8rem);
  margin-bottom: clamp(4rem, 2.6096256684rem + 5.7040998217vw, 8rem);
  text-align: justify;
  font-size: clamp(0.9375rem, 0.8288770053rem + 0.4456327986vw, 1.25rem);
  font-weight: 500;
  line-height: 1.75;
}
.p-chairman__content {
  padding-bottom: clamp(4rem, 2.6096256684rem + 5.7040998217vw, 8rem);
  position: relative;
}
.p-chairman__content::before {
  content: "";
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1' height='2' viewBox='0 0 1 2' fill='none'%3E%3Cpath d='M0.5 0V1' stroke='%23F57920'/%3E%3C/svg%3E");
  background-repeat: repeat-y;
  background-size: clamp(0.0625rem, 0.0407754011rem + 0.0891265597vw, 0.125rem) clamp(0.125rem, 0.0815508021rem + 0.1782531194vw, 0.25rem);
  position: absolute;
  inset: 0;
  top: clamp(0.75rem, 0.6196524064rem + 0.5347593583vw, 1.125rem);
  left: 0.34375rem;
}
@media screen and (min-width: 960px) {
  .p-chairman__content::before {
    top: 0;
    left: calc(0.2255291005 * min(100vw, 1512px));
  }
}
@media screen and (min-width: 960px) {
  .p-chairman__content:first-of-type::before {
    top: 0.75rem;
  }
}
@media screen and (min-width: 960px) {
  .p-chairman__content:last-of-type {
    padding-bottom: 0;
  }
}
.p-chairman__content:last-of-type::before {
  width: clamp(0.75rem, 0.6196524064rem + 0.5347593583vw, 1.125rem);
  height: clamp(6.625rem, 2.3018048128rem + 17.7361853832vw, 19.0625rem);
  background: url(/work/recruit/assets/img/chairman/line-sp.svg) center/contain no-repeat;
  inset: auto;
}
@media screen and (min-width: 960px) {
  .p-chairman__content:last-of-type::before {
    background-image: url(/work/recruit/assets/img/chairman/line.svg);
    top: 0;
    left: calc(0.2195767196 * min(100vw, 1512px));
  }
}
.p-chairman__content::after {
  content: "";
  display: block;
  width: clamp(0.75rem, 0.6196524064rem + 0.5347593583vw, 1.125rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--color-orange);
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (min-width: 960px) {
  .p-chairman__content::after {
    top: 0.75rem;
    left: calc(0.2195767196 * min(100vw, 1512px));
  }
}
.p-chairman__content__inner {
  margin-left: 7.1794871795vw;
  display: grid;
  grid-template-columns: 1fr 25.641025641vw;
  gap: clamp(1rem, 1rem + 0vw, 1rem);
}
@media screen and (min-width: 960px) {
  .p-chairman__content__inner {
    margin-left: 0;
    grid-template-columns: calc(0.1984126984 * min(100vw, 1512px));
    row-gap: calc(0.0211640212 * min(100vw, 1512px));
    column-gap: calc(0.0753968254 * min(100vw, 1512px));
  }
}
.p-chairman__content__year {
  font-family: "Manrope", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(1.25rem, 0.6417112299rem + 2.495543672vw, 3rem);
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 960px) {
  .p-chairman__content__year {
    justify-self: flex-end;
  }
}
.p-chairman__content__year span {
  display: inline-block;
  margin-left: clamp(0.125rem, 0.0815508021rem + 0.1782531194vw, 0.25rem);
  font-feature-settings: "palt" on;
  font-size: clamp(0.75rem, 0.5762032086rem + 0.7130124777vw, 1.25rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.48px;
}
.p-chairman__content__ttl {
  font-feature-settings: "palt" on;
  font-size: clamp(1.25rem, 0.9893048128rem + 1.0695187166vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.8px;
}
@media screen and (min-width: 960px) {
  .p-chairman__content__ttl {
    letter-spacing: 1.28px;
    justify-self: flex-start;
  }
}
.p-chairman__content__img {
  grid-column: 2/3;
  grid-row: 1/3;
  align-self: flex-start;
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .p-chairman__content__img {
    grid-column: 1/2;
    grid-row: 2/4;
  }
}
.p-chairman__content__text {
  grid-column: 1/3;
  text-align: justify;
  font-size: clamp(0.875rem, 0.8315508021rem + 0.1782531194vw, 1rem);
  font-weight: 500;
  line-height: 1.75;
}
@media screen and (min-width: 960px) {
  .p-chairman__content__text {
    grid-column: 2/3;
  }
}
.p-chairman__content__wrap {
  grid-column: 1/3;
  padding: clamp(2rem, 1.3048128342rem + 2.8520499109vw, 4rem) clamp(1.5rem, 0.6310160428rem + 3.5650623886vw, 4rem);
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  background-blend-mode: overlay, normal;
  display: grid;
  grid-template-columns: 1fr 25.641025641vw;
  gap: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
}
@media screen and (min-width: 960px) {
  .p-chairman__content__wrap {
    grid-column: 2/3;
    grid-template-columns: calc(0.1322751323 * min(100vw, 1512px));
  }
}
.p-chairman__content__wrap.u-purple {
  background: var(--gradation-purple, linear-gradient(316deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 56.27%), #4f39d0);
}
.p-chairman__content__wrap.u-blue {
  background: var(--gradation-blue, linear-gradient(316deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 56.27%), #2073f5);
}
.p-chairman__content__wrap.u-green {
  background: var(--gradation-green, linear-gradient(316deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 56.27%), #40d039);
}
.p-chairman__content__wrap.u-red {
  background: var(--gradation-red, linear-gradient(316deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 56.27%), #f53a20);
}
.p-chairman__content__wrap.u-orange {
  background: var(--gradation-orange, linear-gradient(316deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 56.27%), #f57920);
}
.p-chairman__content__wrap__index {
  margin-bottom: 0;
}
@media screen and (min-width: 960px) {
  .p-chairman__content__wrap__index {
    grid-column: 1/3;
  }
}
.p-chairman__content__wrap__lead {
  grid-column: 1/3;
  color: var(--color-white);
  font-size: clamp(1rem, 0.7827540107rem + 0.8912655971vw, 1.625rem);
  font-weight: 700;
  line-height: 1.5;
}
.p-chairman__content__wrap__img {
  grid-column: 2/3;
  grid-row: 1/3;
  align-self: flex-start;
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .p-chairman__content__wrap__img {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
.p-chairman__content__wrap__text {
  grid-column: 1/3;
  color: var(--color-white);
  text-align: justify;
  font-size: clamp(0.75rem, 0.6631016043rem + 0.3565062389vw, 1rem);
  font-weight: 500;
  line-height: 1.75;
}
.p-chairman__content__wrap:has(img) .p-chairman__content__wrap__lead {
  grid-column: 1/2;
}
@media screen and (min-width: 960px) {
  .p-chairman__content__wrap:has(img) .p-chairman__content__wrap__lead {
    grid-column: 1/3;
  }
}
@media screen and (min-width: 960px) {
  .p-chairman__content__wrap:has(img) .p-chairman__content__wrap__text {
    grid-column: 2/3;
  }
}

.p-service__section {
  padding-top: clamp(4.5rem, 3.2834224599rem + 4.991087344vw, 8rem);
}
.p-service__column {
  display: grid;
  row-gap: 2rem;
}
@media screen and (min-width: 960px) {
  .p-service__column {
    grid-template-columns: 1fr 1fr;
    gap: calc(0.0423280423 * min(100vw, 1512px));
  }
}
.p-service__lead {
  margin-bottom: 2rem;
  font-size: clamp(1.25rem, 0.9893048128rem + 1.0695187166vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
}
.p-service__text {
  text-align: justify;
  font-size: clamp(0.875rem, 0.7881016043rem + 0.3565062389vw, 1.125rem);
  font-weight: 500;
  line-height: 1.75;
}
.p-service__text + p {
  margin-top: clamp(1.53125rem, 1.3791778075rem + 0.623885918vw, 1.96875rem);
}
.p-service__note {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.75;
}
.p-service__bg-color {
  width: clamp(21.5625rem, -1.0093582888rem + 92.6024955437vw, 86.5rem);
  padding: clamp(3rem, 1.9572192513rem + 4.2780748663vw, 6rem) clamp(1.5rem, -0.064171123rem + 6.4171122995vw, 6rem);
  margin: clamp(2rem, 1.3048128342rem + 2.8520499109vw, 4rem) auto 0;
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  background: var(--gradation-purple, linear-gradient(316deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 56.27%), #4f39d0);
  background-blend-mode: overlay, normal;
}
.p-service__ttl__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
}
.p-service__catch {
  display: inline-block;
  padding-bottom: clamp(0.25rem, 0.1631016043rem + 0.3565062389vw, 0.5rem);
  border-bottom: 0.5px solid var(--color-white);
  color: var(--color-white);
  font-size: clamp(0.625rem, 0.4512032086rem + 0.7130124777vw, 1.125rem);
  font-weight: 700;
  line-height: 1;
}
.p-service__list {
  display: grid;
  gap: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
}
@media screen and (min-width: 960px) {
  .p-service__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.p-service__item {
  padding: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  background: var(--color-white);
}
.p-service__dttl {
  padding-bottom: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  margin-bottom: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  border-bottom: 1px solid var(--color-purple);
  display: flex;
  align-items: flex-start;
  gap: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  font-size: clamp(1rem, 0.8262032086rem + 0.7130124777vw, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 960px) {
  .p-service__dttl {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.p-service__dttl span {
  width: clamp(1rem, 0.8262032086rem + 0.7130124777vw, 1.5rem);
  margin-top: 0.25rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--color-purple);
  color: var(--color-white);
  font-family: "Manrope", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(0.625rem, 0.4946524064rem + 0.5347593583vw, 1rem);
  font-weight: 600;
  line-height: 1;
  flex-shrink: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 960px) {
  .p-service__dttl span {
    margin-top: 0;
  }
}
.p-service__desc {
  text-align: justify;
  font-size: clamp(0.75rem, 0.6631016043rem + 0.3565062389vw, 1rem);
  font-weight: 500;
  line-height: 1.75;
}
.p-service__ssection {
  padding-top: clamp(4.5rem, 3.9786096257rem + 2.1390374332vw, 6rem);
}
.p-service__sttl {
  margin-bottom: clamp(2rem, 1.3048128342rem + 2.8520499109vw, 4rem);
}
@media screen and (min-width: 960px) {
  .p-service__sttl {
    height: calc(0.0317460317 * min(100vw, 1512px));
  }
}
.p-service__media {
  margin-top: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  padding: clamp(2rem, 1.3048128342rem + 2.8520499109vw, 4rem) clamp(1.5rem, 0.6310160428rem + 3.5650623886vw, 4rem);
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  background: var(--color-white);
  display: grid;
  row-gap: clamp(1rem, 1rem + 0vw, 1rem);
}
@media screen and (min-width: 960px) {
  .p-service__media {
    grid-template-columns: 1fr 1fr;
    gap: calc(0.0211640212 * min(100vw, 1512px)) calc(0.0423280423 * min(100vw, 1512px));
  }
}
.p-service__media__ttl {
  font-feature-settings: "palt" on;
  font-size: clamp(1.25rem, 0.9893048128rem + 1.0695187166vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.8px;
}
.p-service__media__text {
  text-align: justify;
  font-size: clamp(0.875rem, 0.7446524064rem + 0.5347593583vw, 1.25rem);
  font-weight: 500;
  line-height: 1.75;
}
.p-service__media__photo {
  aspect-ratio: 4/3;
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .p-service__media__photo {
    grid-column: 2/3;
    grid-row: 1/4;
  }
}
.p-service__media__btns {
  width: fit-content;
  margin-inline: auto;
}
.p-service__media__btns:last-child a {
  width: 100%;
  margin-top: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  justify-content: space-between;
}
.p-service__smedia {
  padding: clamp(2rem, 1.3048128342rem + 2.8520499109vw, 4rem) clamp(1.5rem, 0.6310160428rem + 3.5650623886vw, 4rem);
  margin-top: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  background: var(--gradation-orange, linear-gradient(316deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 56.27%), #f57920);
  background-blend-mode: overlay, normal;
  display: grid;
  gap: clamp(1rem, 1rem + 0vw, 1rem);
}
@media screen and (min-width: 960px) {
  .p-service__smedia {
    grid-column: 1/3;
    grid-template-columns: 1fr 1fr;
    gap: calc(0.0211640212 * min(100vw, 1512px)) calc(0.0423280423 * min(100vw, 1512px));
  }
}
.p-service__smedia__ttl {
  color: var(--color-white);
  font-size: clamp(1rem, 0.7827540107rem + 0.8912655971vw, 1.625rem);
  font-weight: 700;
  line-height: 1.5;
}
.p-service__smedia__text {
  color: var(--color-white);
  text-align: justify;
  font-size: clamp(0.75rem, 0.6196524064rem + 0.5347593583vw, 1.125rem);
  font-weight: 500;
  line-height: 1.75;
}
.p-service__smedia__photo {
  aspect-ratio: 4/3;
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .p-service__smedia__photo {
    grid-column: 1/2;
    grid-row: 1/4;
  }
}
.p-service .c-sbtn {
  margin-inline: auto;
}
@media screen and (min-width: 960px) {
  .p-service .c-sbtn {
    margin-left: 0;
  }
}

.p-musicschool__text {
  padding-top: clamp(4.5rem, 3.2834224599rem + 4.991087344vw, 8rem);
  margin-bottom: clamp(4rem, 2.6096256684rem + 5.7040998217vw, 8rem);
  text-align: justify;
  font-size: clamp(0.9375rem, 0.8288770053rem + 0.4456327986vw, 1.25rem);
  font-weight: 500;
  line-height: 1.75;
}
.p-musicschool__section-bg {
  width: clamp(21.5625rem, -1.0093582888rem + 92.6024955437vw, 86.5rem);
  padding: clamp(3rem, 1.9572192513rem + 4.2780748663vw, 6rem) clamp(1.5rem, -0.064171123rem + 6.4171122995vw, 6rem);
  margin: 0 auto;
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  background: var(--gradation-orange, linear-gradient(316deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 56.27%), #f57920);
  background-blend-mode: overlay, normal;
}
.p-musicschool__section-bg__ttl-wrap {
  margin-bottom: clamp(2rem, 1.3048128342rem + 2.8520499109vw, 4rem);
  display: grid;
  gap: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  justify-items: center;
}
.p-musicschool__section-bg__ttl-sub {
  padding-bottom: clamp(0.25rem, 0.1631016043rem + 0.3565062389vw, 0.5rem);
  border-bottom: 0.5px solid var(--color-white);
  color: var(--color-white);
  font-size: clamp(0.625rem, 0.4512032086rem + 0.7130124777vw, 1.125rem);
  font-weight: 700;
  line-height: 1;
}
.p-musicschool__section-bg__ttl {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .p-musicschool__section-bg__ttl {
    width: min(40.2116402116vw, 608px);
  }
}
.p-musicschool__section-bg__ttl img {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .p-musicschool__section-bg__ttl img {
    width: auto;
  }
}
.p-musicschool__grid {
  display: grid;
  gap: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
}
@media screen and (min-width: 960px) {
  .p-musicschool__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.p-musicschool__grid__item {
  padding: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  background: var(--color-white);
}
.p-musicschool__grid__ttl {
  padding-bottom: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  border-bottom: 1px solid #f57920;
  margin-bottom: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  font-size: clamp(1rem, 0.7827540107rem + 0.8912655971vw, 1.625rem);
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
}
@media screen and (min-width: 960px) {
  .p-musicschool__grid__ttl {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
}
.p-musicschool__grid__num {
  width: clamp(1rem, 0.8262032086rem + 0.7130124777vw, 1.5rem);
  margin-top: 1.0256410256vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--color-orange);
  flex-shrink: 0;
  color: var(--color-white);
  font-family: "Manrope", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(0.625rem, 0.4946524064rem + 0.5347593583vw, 1rem);
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 960px) {
  .p-musicschool__grid__num {
    margin-top: 0;
  }
}
.p-musicschool__grid__text {
  font-size: clamp(0.875rem, 0.7446524064rem + 0.5347593583vw, 1.25rem);
  font-weight: 500;
  line-height: 1.75;
  text-align: justify;
}
.p-musicschool__section {
  padding-top: clamp(4.5rem, 3.9786096257rem + 2.1390374332vw, 6rem);
  position: relative;
}
.p-musicschool__section::before {
  content: "";
  display: block;
  width: clamp(3.875rem, 2.3977272727rem + 6.0606060606vw, 8.125rem);
  height: clamp(3.875rem, 2.3977272727rem + 6.0606060606vw, 8.125rem);
  background: url(/work/instructor/assets/img/musicschool/ic_trumpet.png) center/contain no-repeat;
  position: absolute;
  top: -0.958125rem;
  right: 7.8871794872vw;
  rotate: -10.75deg;
}
@media screen and (min-width: 960px) {
  .p-musicschool__section::before {
    top: -1.875rem;
    right: 50%;
    translate: calc(50% + min(34.3915343915vw, 520px));
  }
}
.p-musicschool__section__ttl {
  margin-bottom: clamp(2rem, 1.3048128342rem + 2.8520499109vw, 4rem);
}
.p-musicschool__section__ttl img {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .p-musicschool__section__ttl img {
    width: auto;
  }
}
.p-musicschool__list {
  display: grid;
  gap: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
}
@media screen and (min-width: 960px) {
  .p-musicschool__list {
    grid-template-columns: 1fr 1fr;
  }
}
.p-musicschool__list__item {
  padding: clamp(2rem, 1.3048128342rem + 2.8520499109vw, 4rem) clamp(1.5rem, 0.6310160428rem + 3.5650623886vw, 4rem);
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  background: var(--color-white);
}
@media screen and (min-width: 960px) {
  .p-musicschool__list__item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 5;
    gap: 0;
  }
}
.p-musicschool__list__ttl {
  margin-bottom: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  font-size: clamp(1.125rem, 0.820855615rem + 1.247771836vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  gap: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  align-items: flex-start;
}
.p-musicschool__list__num {
  margin-top: clamp(0.21875rem, 0.1209893048rem + 0.4010695187vw, 0.5rem);
  width: clamp(1.25rem, 0.9893048128rem + 1.0695187166vw, 2rem);
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--color-white);
  font-family: "Manrope", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(0.8125rem, 0.7038770053rem + 0.4456327986vw, 1.125rem);
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.p-musicschool__list__num.u-blue {
  background-color: var(--color-blue);
}
.p-musicschool__list__num.u-green {
  background-color: var(--color-green);
}
.p-musicschool__list__wrap {
  padding-top: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  margin-top: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
}
.p-musicschool__list__wrap.u-blue {
  border-top: 1px solid var(--color-blue);
}
.p-musicschool__list__wrap.u-green {
  border-top: 1px solid var(--color-green);
}
.p-musicschool__list__box {
  margin-bottom: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 960px) {
  .p-musicschool__list__box {
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-musicschool__list__sttl {
  font-size: clamp(1rem, 0.7827540107rem + 0.8912655971vw, 1.625rem);
  font-weight: 700;
  line-height: 1.5;
}
.p-musicschool__list__sttl + ul {
  margin-top: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  display: grid;
  gap: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
}
.p-musicschool__list__round {
  padding: clamp(0.25rem, 0.1631016043rem + 0.3565062389vw, 0.5rem);
  border-radius: 1000px;
  color: var(--color-white);
  font-size: clamp(0.875rem, 0.6143048128rem + 1.0695187166vw, 1.625rem);
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
@media screen and (min-width: 960px) {
  .p-musicschool__list__round {
    width: 100%;
  }
}
.p-musicschool__list__round.u-blue {
  background-color: var(--color-blue);
}
.p-musicschool__list__round.u-green {
  background-color: var(--color-green);
}
.p-musicschool__list__text {
  font-size: clamp(0.875rem, 0.7446524064rem + 0.5347593583vw, 1.25rem);
  font-weight: 500;
  line-height: 1.75;
  text-align: justify;
}
.p-musicschool__list__text.u-before__check {
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.p-musicschool__list__text.u-before__check::before {
  content: "";
  display: block;
  width: clamp(1rem, 0.9131016043rem + 0.3565062389vw, 1.25rem);
  margin-top: clamp(0.15625rem, 0.1019385027rem + 0.2228163993vw, 0.3125rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: url(/work/instructor/assets/img/musicschool/ic_check.svg) center/clamp(0.5rem, 0.4565508021rem + 0.1782531194vw, 0.625rem) clamp(0.3125rem, 0.2690508021rem + 0.1782531194vw, 0.4375rem) no-repeat;
  flex-shrink: 0;
}
.p-musicschool__list__text.u-before__check.u-blue::before {
  background-color: var(--color-blue);
}
.p-musicschool__list__text.u-before__check.u-green::before {
  background-color: var(--color-green);
}
.p-musicschool__list__btn {
  width: 100%;
  margin-top: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  justify-content: space-between;
}

.p-teacher__text {
  padding-top: clamp(4.5rem, 3.2834224599rem + 4.991087344vw, 8rem);
  font-size: clamp(0.9375rem, 0.8288770053rem + 0.4456327986vw, 1.25rem);
  font-weight: 500;
  line-height: 1.75;
  text-align: justify;
}
.p-teacher__section {
  padding-top: clamp(4.5rem, 3.9786096257rem + 2.1390374332vw, 6rem);
  padding-bottom: clamp(4.5rem, 3.9786096257rem + 2.1390374332vw, 6rem);
}
.p-teacher__section__inner {
  width: clamp(21.5625rem, 3.1617647059rem + 75.4901960784vw, 74.5rem);
  padding: clamp(2rem, 1.3048128342rem + 2.8520499109vw, 4rem) clamp(1.5rem, 0.6310160428rem + 3.5650623886vw, 4rem);
  margin: 0 auto clamp(4.5rem, 3.9786096257rem + 2.1390374332vw, 6rem);
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  background: var(--color-white);
}
.p-teacher__section__sttl {
  margin-bottom: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  font-feature-settings: "palt" on;
  font-size: clamp(1.25rem, 0.9893048128rem + 1.0695187166vw, 2rem);
  font-weight: 700;
  line-height: 1, 5;
  letter-spacing: 0.8px;
}
@media screen and (min-width: 960px) {
  .p-teacher__section__sttl {
    letter-spacing: 1.28px;
  }
}
.p-teacher__section__text {
  margin-bottom: clamp(2rem, 1.3048128342rem + 2.8520499109vw, 4rem);
  font-size: clamp(0.875rem, 0.7446524064rem + 0.5347593583vw, 1.25rem);
  font-weight: 500;
  line-height: 1.75;
}
.p-teacher__section__text .u-before {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.5rem, 0.4565508021rem + 0.1782531194vw, 0.625rem);
  text-align: justify;
}
.p-teacher__section__text .u-before::before {
  content: "";
  display: block;
  width: clamp(0.25rem, 0.2065508021rem + 0.1782531194vw, 0.375rem);
  margin-top: clamp(0.625rem, 0.5163770053rem + 0.4456327986vw, 0.9375rem);
  margin-left: clamp(0.5rem, 0.4565508021rem + 0.1782531194vw, 0.625rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--color-black);
  flex-shrink: 0;
}
@media screen and (min-width: 960px) {
  .p-teacher__section__figure {
    display: block;
    padding: min(2.1164021164vw, 32px);
    border-radius: 1rem;
    background-color: var(--color-white);
  }
}
.p-teacher__column {
  margin-bottom: clamp(2rem, 1.3048128342rem + 2.8520499109vw, 4rem);
  display: grid;
  gap: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
}
@media screen and (min-width: 960px) {
  .p-teacher__column {
    grid-template-columns: 1fr 1fr;
  }
}
.p-teacher__column__item {
  padding: clamp(2rem, 1.3048128342rem + 2.8520499109vw, 4rem) clamp(1.5rem, 0.6310160428rem + 3.5650623886vw, 4rem);
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  border: clamp(0.03125rem, 0.0203877005rem + 0.0445632799vw, 0.0625rem) solid var(--border-gray, rgba(0, 0, 0, 0.2));
  background: var(--color-white);
}
.p-teacher__column__ttl {
  margin-bottom: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  font-size: clamp(1rem, 0.7827540107rem + 0.8912655971vw, 1.625rem);
  font-weight: 700;
  line-height: 1.5;
}
.p-teacher__column__text {
  margin-bottom: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  font-size: clamp(0.75rem, 0.6196524064rem + 0.5347593583vw, 1.125rem);
  font-weight: 500;
  line-height: 1.75;
  text-align: justify;
}
.p-teacher__column__img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
}
.p-teacher__bg-color {
  padding: clamp(1.5rem, 0.6310160428rem + 3.5650623886vw, 4rem);
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  background: var(--gradation-orange, linear-gradient(316deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 56.27%), #f57920);
  background-blend-mode: overlay, normal;
}
.p-teacher__bg-color__ttl {
  margin-bottom: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  color: var(--color-white);
  font-size: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
}
.p-teacher__grid {
  display: grid;
  gap: clamp(1rem, 1rem + 0vw, 1rem);
}
@media screen and (min-width: 960px) {
  .p-teacher__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.p-teacher__grid__item {
  padding: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  background: var(--color-white);
}
.p-teacher__grid__text {
  font-size: clamp(0.75rem, 0.5762032086rem + 0.7130124777vw, 1.25rem);
  font-weight: 500;
  line-height: 1.75;
  text-align: justify;
  display: flex;
  align-items: flex-start;
  gap: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
}
.p-teacher__grid__num {
  width: clamp(1rem, 0.8262032086rem + 0.7130124777vw, 1.5rem);
  margin-top: clamp(0.15625rem, 0.1453877005rem + 0.0445632799vw, 0.1875rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--color-orange);
  color: var(--color-white);
  font-family: "Manrope", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(0.625rem, 0.4946524064rem + 0.5347593583vw, 1rem);
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.p-teacher__list {
  display: grid;
  gap: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
}
.p-teacher__list__item {
  padding: clamp(1.5rem, 0.6310160428rem + 3.5650623886vw, 4rem);
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  background: var(--color-white);
  display: grid;
  grid-template-columns: clamp(3.75rem, 2.0120320856rem + 7.1301247772vw, 8.75rem) 1fr;
  align-items: flex-start;
  gap: clamp(1.5rem, 0.6310160428rem + 3.5650623886vw, 4rem);
}
.p-teacher__list__ttl {
  margin-bottom: clamp(0.5rem, -0.0213903743rem + 2.1390374332vw, 2rem);
  font-feature-settings: "palt";
  font-size: clamp(1rem, 0.7827540107rem + 0.8912655971vw, 1.625rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.64px;
}
@media screen and (min-width: 960px) {
  .p-teacher__list__ttl {
    letter-spacing: 1.04px;
  }
}
.p-teacher__list__text {
  font-size: clamp(0.75rem, 0.5762032086rem + 0.7130124777vw, 1.25rem);
  font-weight: 500;
  line-height: 1.75;
  text-align: justify;
}
.p-teacher__section-bg {
  width: clamp(21.5625rem, -1.0093582888rem + 92.6024955437vw, 86.5rem);
  margin: clamp(4rem, 2.6096256684rem + 5.7040998217vw, 8rem) auto 0;
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  background: url(/work/recruit/assets/img/common/bg_tile.png) top left/200px 200px repeat;
}
.p-teacher__section-bg__inner {
  padding: clamp(3rem, 1.9572192513rem + 4.2780748663vw, 6rem) clamp(1.5rem, -0.064171123rem + 6.4171122995vw, 6rem);
}
.p-teacher__section-bg__lead {
  margin-bottom: 2rem;
  font-feature-settings: "palt" on;
  font-size: clamp(1.125rem, 0.9512032086rem + 0.7130124777vw, 1.625rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.72px;
  white-space: nowrap;
}
@media screen and (min-width: 960px) {
  .p-teacher__section-bg__lead {
    letter-spacing: 1.04px;
  }
}
.p-teacher__dlist {
  width: 100%;
  padding: 2rem clamp(1.5rem, 0.6310160428rem + 3.5650623886vw, 4rem);
  border-radius: clamp(0.5rem, 0.5rem + 0vw, 0.5rem);
  background: var(--color-white);
}
.p-teacher__dlist__item {
  margin-bottom: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  display: grid;
  grid-template-columns: clamp(5.875rem, 3.5721925134rem + 9.4474153298vw, 12.5rem) 1fr;
  align-items: flex-start;
  gap: clamp(0.5rem, -0.0213903743rem + 2.1390374332vw, 2rem);
}
.p-teacher__dlist__ttl {
  font-size: clamp(0.875rem, 0.7446524064rem + 0.5347593583vw, 1.25rem);
  font-weight: 700;
  line-height: 1.75;
}
.p-teacher__dlist__desc {
  font-size: clamp(0.875rem, 0.7446524064rem + 0.5347593583vw, 1.25rem);
  font-weight: 500;
  line-height: 1.75;
}
.p-teacher__slist {
  display: grid;
  gap: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
}
@media screen and (min-width: 960px) {
  .p-teacher__slist {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.p-teacher__slist__item {
  padding: clamp(1.5rem, 1.3262032086rem + 0.7130124777vw, 2rem);
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  background: var(--color-white);
}
.p-teacher__slist__ttl {
  margin-bottom: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  font-feature-settings: "palt" on;
  font-size: clamp(1rem, 0.8262032086rem + 0.7130124777vw, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.64px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (min-width: 960px) {
  .p-teacher__slist__ttl {
    letter-spacing: 0.96px;
  }
}
.p-teacher__slist__ttl::before {
  content: "";
  display: block;
  width: clamp(1rem, 0.9131016043rem + 0.3565062389vw, 1.25rem);
  margin-top: clamp(0.15625rem, 0.1019385027rem + 0.2228163993vw, 0.3125rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: url(/work/instructor/assets/img/musicschool/ic_check.svg) center/clamp(0.5rem, 0.4565508021rem + 0.1782531194vw, 0.625rem) clamp(0.3125rem, 0.2690508021rem + 0.1782531194vw, 0.4375rem) no-repeat;
  background-color: var(--color-blue);
  flex-shrink: 0;
}
.p-teacher__slist__text {
  font-size: clamp(0.875rem, 0.7881016043rem + 0.3565062389vw, 1.125rem);
  font-weight: 500;
  line-height: 1.75;
  text-align: justify;
}
.p-teacher .p-home-people {
  padding-top: clamp(4.5rem, 3.2834224599rem + 4.991087344vw, 8rem);
}
@media screen and (min-width: 960px) {
  .p-teacher .p-home-people {
    width: calc(0.7883597884 * min(100vw, 1512px));
    margin: 0 auto;
  }
}
.p-teacher .p-home-people .p-home-people__ttl {
  width: 88.4615384615vw;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 960px) {
  .p-teacher .p-home-people .p-home-people__ttl {
    width: 100%;
  }
}
.p-teacher .p-home-people .splide__track {
  padding-left: 4.1025641026vw !important;
  padding-right: 4.1025641026vw !important;
}
@media screen and (min-width: 960px) {
  .p-teacher .p-home-people .splide__track {
    padding: 0 !important;
  }
}
.p-teacher .p-home-people .splide__arrows {
  left: 6.1538461538vw;
}
@media screen and (min-width: 960px) {
  .p-teacher .p-home-people .splide__arrows {
    left: 0;
  }
}
.p-teacher .p-home-people .splide__pagination li {
  width: 33.3333333333%;
}
.p-teacher .c-pattern__bg {
  overflow: hidden;
}

.p-instructor__text {
  padding-top: clamp(4.5rem, 3.2834224599rem + 4.991087344vw, 8rem);
  font-size: clamp(0.9375rem, 0.8288770053rem + 0.4456327986vw, 1.25rem);
  font-weight: 500;
  line-height: 1.75;
  text-align: justify;
}
.p-instructor__section {
  padding-top: clamp(4.5rem, 3.9786096257rem + 2.1390374332vw, 6rem);
  padding-bottom: clamp(4.5rem, 3.9786096257rem + 2.1390374332vw, 6rem);
}
.p-instructor__section__sttl {
  margin-bottom: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  font-feature-settings: "palt" on;
  font-size: clamp(1.25rem, 0.9893048128rem + 1.0695187166vw, 2rem);
  font-weight: 700;
  line-height: 1, 5;
  letter-spacing: 0.8px;
}
@media screen and (min-width: 960px) {
  .p-instructor__section__sttl {
    letter-spacing: 1.28px;
  }
}
.p-instructor__section__text {
  margin-bottom: clamp(2rem, 1.3048128342rem + 2.8520499109vw, 4rem);
  font-size: clamp(0.875rem, 0.7446524064rem + 0.5347593583vw, 1.25rem);
  font-weight: 500;
  line-height: 1.75;
}
.p-instructor__section__text .u-before {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.5rem, 0.4565508021rem + 0.1782531194vw, 0.625rem);
  text-align: justify;
}
.p-instructor__section__text .u-before::before {
  content: "";
  display: block;
  width: clamp(0.25rem, 0.2065508021rem + 0.1782531194vw, 0.375rem);
  margin-top: clamp(0.625rem, 0.5163770053rem + 0.4456327986vw, 0.9375rem);
  margin-left: clamp(0.5rem, 0.4565508021rem + 0.1782531194vw, 0.625rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--color-black);
  flex-shrink: 0;
}
.p-instructor__section__text .u-small {
  margin-left: clamp(1rem, 0.9565508021rem + 0.1782531194vw, 1.125rem);
  font-size: clamp(0.75rem, 0.6631016043rem + 0.3565062389vw, 1rem);
}
@media screen and (min-width: 960px) {
  .p-instructor__section__figure {
    display: block;
    padding: min(2.1164021164vw, 32px);
    border-radius: 1rem;
    background-color: var(--color-white);
  }
}
.p-instructor__wrap {
  padding: clamp(2rem, 1.3048128342rem + 2.8520499109vw, 4rem) clamp(1.5rem, 0.6310160428rem + 3.5650623886vw, 4rem);
  margin-bottom: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  background: var(--color-white);
}
.p-instructor__bg-color {
  padding: clamp(1.5rem, 0.6310160428rem + 3.5650623886vw, 4rem);
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  background: var(--gradation-orange, linear-gradient(316deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 56.27%), #f57920);
  background-blend-mode: overlay, normal;
}
@media screen and (min-width: 960px) {
  .p-instructor__bg-color {
    display: grid;
    grid-template-columns: 1fr min(19.8412698413vw, 300px);
    gap: min(4.2328042328vw, 64px);
  }
}
.p-instructor__bg-color__ttl {
  margin-bottom: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  color: var(--color-white);
  font-size: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
}
.p-instructor__bg-color__text {
  margin-bottom: 4.1025641026vw;
  color: var(--color-white, #fff);
  font-size: clamp(0.75rem, 0.5762032086rem + 0.7130124777vw, 1.25rem);
  font-weight: 500;
  line-height: 1.75;
  text-align: justify;
}
@media screen and (min-width: 960px) {
  .p-instructor__bg-color__text {
    margin-bottom: 0;
  }
}
.p-instructor__bg-color__img {
  aspect-ratio: 4/3;
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  overflow: hidden;
}
.p-instructor__bg-color.u-green {
  background: var(--gradation-green, linear-gradient(316deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 56.27%), #40d039);
  display: grid;
  grid-template-columns: clamp(3.75rem, 2.0120320856rem + 7.1301247772vw, 8.75rem) 1fr;
  gap: clamp(1.5rem, 1.3262032086rem + 0.7130124777vw, 2rem);
}
@media screen and (min-width: 960px) {
  .p-instructor__bg-color.u-green {
    align-items: center;
  }
}
.p-instructor__bg-color.u-green img {
  grid-column: 1/2;
  grid-row: 1/2;
}
.p-instructor__bg-color.u-green .p-instructor__bg-color__text {
  margin-bottom: 0;
}
.p-instructor__list {
  display: grid;
  gap: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
}
.p-instructor__list__item {
  padding: clamp(1.5rem, 0.6310160428rem + 3.5650623886vw, 4rem);
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  background: var(--color-white);
  display: grid;
  grid-template-columns: clamp(3.75rem, 2.0120320856rem + 7.1301247772vw, 8.75rem) 1fr;
  align-items: flex-start;
  gap: clamp(1.5rem, 0.6310160428rem + 3.5650623886vw, 4rem);
}
@media screen and (min-width: 960px) {
  .p-instructor__list__item {
    row-gap: min(2.1164021164vw, 32px);
    align-items: center;
  }
}
.p-instructor__list__ttl {
  margin-bottom: clamp(0.5rem, -0.0213903743rem + 2.1390374332vw, 2rem);
  font-feature-settings: "palt";
  font-size: clamp(1rem, 0.7827540107rem + 0.8912655971vw, 1.625rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.64px;
}
@media screen and (min-width: 960px) {
  .p-instructor__list__ttl {
    letter-spacing: 1.04px;
  }
}
.p-instructor__list__text {
  font-size: clamp(0.75rem, 0.5762032086rem + 0.7130124777vw, 1.25rem);
  font-weight: 500;
  line-height: 1.75;
  text-align: justify;
}
.p-instructor__list__swrap {
  padding: clamp(1.5rem, 1.3262032086rem + 0.7130124777vw, 2rem);
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  background: var(--gradation-orange, linear-gradient(316deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 56.27%), #f57920);
  background-blend-mode: overlay, normal;
  grid-column: 1/3;
}
.p-instructor__list__sttl {
  margin-bottom: 1rem;
  color: var(--color-white);
  font-size: clamp(1rem, 0.7827540107rem + 0.8912655971vw, 1.625rem);
  font-weight: 700;
  line-height: 1.5;
}
.p-instructor__list__stext {
  color: var(--color-white);
  font-size: clamp(0.75rem, 0.6196524064rem + 0.5347593583vw, 1.125rem);
  font-weight: 500;
  line-height: 1.75;
  text-align: justify;
}
.p-instructor__section-bg {
  width: clamp(21.5625rem, -1.0093582888rem + 92.6024955437vw, 86.5rem);
  margin: clamp(4rem, 2.6096256684rem + 5.7040998217vw, 8rem) auto 0;
  background: url(/work/recruit/assets/img/common/bg_tile.png) top left/200px 200px repeat;
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
}
.p-instructor__section-bg__inner {
  padding: clamp(3rem, 1.9572192513rem + 4.2780748663vw, 6rem) clamp(1.5rem, -0.064171123rem + 6.4171122995vw, 6rem);
}
.p-instructor__section-bg__lead {
  margin-bottom: 2rem;
  font-feature-settings: "palt" on;
  font-size: clamp(1.125rem, 0.9512032086rem + 0.7130124777vw, 1.625rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.72px;
}
@media screen and (min-width: 960px) {
  .p-instructor__section-bg__lead {
    letter-spacing: 1.04px;
  }
}
.p-instructor__dlist {
  width: 100%;
  padding: 2rem clamp(1.5rem, 0.6310160428rem + 3.5650623886vw, 4rem);
  border-radius: clamp(0.5rem, 0.5rem + 0vw, 0.5rem);
  background: var(--color-white);
}
.p-instructor__dlist__item {
  margin-bottom: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  display: grid;
  grid-template-columns: clamp(5.875rem, 3.5721925134rem + 9.4474153298vw, 12.5rem) 1fr;
  align-items: flex-start;
  gap: clamp(0.5rem, -0.0213903743rem + 2.1390374332vw, 2rem);
}
.p-instructor__dlist__ttl {
  font-size: clamp(0.875rem, 0.7446524064rem + 0.5347593583vw, 1.25rem);
  font-weight: 700;
  line-height: 1.75;
}
.p-instructor__dlist__desc {
  font-size: clamp(0.875rem, 0.7446524064rem + 0.5347593583vw, 1.25rem);
  font-weight: 500;
  line-height: 1.75;
}
.p-instructor__slist {
  display: grid;
  gap: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
}
@media screen and (min-width: 960px) {
  .p-instructor__slist {
    grid-template-columns: 1fr 1fr;
  }
}
.p-instructor__slist__item {
  padding: clamp(1.5rem, 1.3262032086rem + 0.7130124777vw, 2rem);
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  background: var(--color-white);
}
.p-instructor__slist__ttl {
  margin-bottom: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  font-feature-settings: "palt" on;
  font-size: clamp(1rem, 0.8262032086rem + 0.7130124777vw, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.64px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (min-width: 960px) {
  .p-instructor__slist__ttl {
    letter-spacing: 0.96px;
  }
}
.p-instructor__slist__ttl::before {
  content: "";
  display: block;
  width: clamp(1rem, 0.9131016043rem + 0.3565062389vw, 1.25rem);
  margin-top: clamp(0.15625rem, 0.1019385027rem + 0.2228163993vw, 0.3125rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: url(/work/instructor/assets/img/musicschool/ic_check.svg) center/clamp(0.5rem, 0.4565508021rem + 0.1782531194vw, 0.625rem) clamp(0.3125rem, 0.2690508021rem + 0.1782531194vw, 0.4375rem) no-repeat;
  background-color: var(--color-green);
  flex-shrink: 0;
}
.p-instructor__slist__text {
  font-size: clamp(0.875rem, 0.7881016043rem + 0.3565062389vw, 1.125rem);
  font-weight: 500;
  line-height: 1.75;
  text-align: justify;
}
.p-instructor .p-home-people {
  padding-top: clamp(4.5rem, 3.2834224599rem + 4.991087344vw, 8rem);
}
@media screen and (min-width: 960px) {
  .p-instructor .p-home-people {
    width: calc(0.7883597884 * min(100vw, 1512px));
    margin: 0 auto;
  }
}
.p-instructor .p-home-people .p-home-people__ttl {
  width: 88.4615384615vw;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 960px) {
  .p-instructor .p-home-people .p-home-people__ttl {
    width: 100%;
  }
}
.p-instructor .p-home-people .splide__track {
  padding-left: 4.1025641026vw !important;
  padding-right: 4.1025641026vw !important;
}
@media screen and (min-width: 960px) {
  .p-instructor .p-home-people .splide__track {
    padding: 0 !important;
  }
}
.p-instructor .p-home-people .splide__arrows {
  left: 6.1538461538vw;
}
@media screen and (min-width: 960px) {
  .p-instructor .p-home-people .splide__arrows {
    left: 0;
  }
}
.p-instructor .p-home-people .splide__pagination li {
  width: 33.3333333333%;
}
.p-instructor .c-pattern__bg {
  overflow: hidden;
}

.p-people__fv {
  width: 88.4615384615vw;
  height: calc(100vh - 6.75rem);
  height: calc(100svh - 6.75rem);
  margin: clamp(5.25rem, 3.5989304813rem + 6.7736185383vw, 10rem) auto 0;
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  background: center top/cover no-repeat;
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-people__fv {
    width: calc(0.9153439153 * min(100vw, 1512px));
    height: calc(100vh - 14rem);
    min-height: 45rem;
  }
}
.p-people__fv.u-01 {
  background-image: url(/work/instructor/assets/img/people/people1_fv-sp.jpg);
}
@media screen and (min-width: 960px) {
  .p-people__fv.u-01 {
    background-image: url(/work/instructor/assets/img/people/people1_fv.jpg);
  }
}
.p-people__fv.u-02 {
  background-image: url(/work/instructor/assets/img/people/people2_fv-sp.jpg);
}
@media screen and (min-width: 960px) {
  .p-people__fv.u-02 {
    background-image: url(/work/instructor/assets/img/people/people2_fv.jpg);
  }
}
.p-people__fv.u-03 {
  background-image: url(/work/instructor/assets/img/people/people3_fv-sp.jpg);
}
@media screen and (min-width: 960px) {
  .p-people__fv.u-03 {
    background-image: url(/work/instructor/assets/img/people/people3_fv.jpg);
  }
}
.p-people__fv.u-04 {
  background-image: url(/work/instructor/assets/img/people/people4_fv-sp.jpg);
}
@media screen and (min-width: 960px) {
  .p-people__fv.u-04 {
    background-image: url(/work/instructor/assets/img/people/people4_fv.jpg);
  }
}
.p-people__fv.u-05 {
  background-image: url(/work/instructor/assets/img/people/people5_fv-sp.jpg);
}
@media screen and (min-width: 960px) {
  .p-people__fv.u-05 {
    background-image: url(/work/instructor/assets/img/people/people5_fv.jpg);
  }
}
.p-people__fv.u-06 {
  background-image: url(/work/instructor/assets/img/people/people6_fv-sp.jpg);
}
@media screen and (min-width: 960px) {
  .p-people__fv.u-06 {
    background-image: url(/work/instructor/assets/img/people/people6_fv.jpg);
  }
}
.p-people__fv__group {
  width: calc(100% - 2rem);
  padding: clamp(1.5rem, 0.9786096257rem + 2.1390374332vw, 3rem);
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  background: var(--gradation-orange, linear-gradient(316deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 56.27%), #f57920);
  background-blend-mode: overlay, normal;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  position: absolute;
  left: 50%;
  bottom: clamp(1rem, 1rem + 0vw, 1rem);
  translate: -50% 0;
}
@media screen and (min-width: 960px) {
  .p-people__fv__group {
    width: auto;
    left: 4rem;
    bottom: 2rem;
    translate: 0 0;
  }
}
.p-people__fv__sub-ttl {
  color: var(--color-white);
  font-feature-settings: "palt" on;
  font-size: clamp(0.75rem, 0.5762032086rem + 0.7130124777vw, 1.25rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.96px;
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 0.6631016043rem + 0.3565062389vw, 1rem);
}
@media screen and (min-width: 960px) {
  .p-people__fv__sub-ttl {
    letter-spacing: 1.6px;
  }
}
.p-people__fv__sub-ttl img {
  height: clamp(0.625rem, 0.4946524064rem + 0.5347593583vw, 1rem);
}
.p-people__fv__catch {
  width: 100%;
}
.p-people__fv__catch img {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .p-people__fv__catch img {
    width: auto;
  }
}
.p-people__fv__name {
  display: block;
  color: var(--color-white);
  font-family: "Manrope", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(0.875rem, 0.7446524064rem + 0.5347593583vw, 1.25rem);
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 960px) {
  .p-people__fv__name {
    display: inline-block;
    margin-right: 1rem;
  }
}
.p-people__fv__job, .p-people__fv__year, .p-people__fv__career {
  display: inline-block;
  margin-right: clamp(0.25rem, 0.1631016043rem + 0.3565062389vw, 0.5rem);
  color: var(--color-white);
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(0.625rem, 0.5381016043rem + 0.3565062389vw, 0.875rem);
  font-weight: 500;
  line-height: 1.25;
  white-space: nowrap;
}
.p-people__fv__note {
  display: block;
  margin-top: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  color: var(--color-white);
  font-size: clamp(0.75rem, 0.6196524064rem + 0.5347593583vw, 1.125rem);
  font-weight: 500;
  line-height: 1;
}
.p-people__section {
  margin-top: clamp(4.5rem, 3.2834224599rem + 4.991087344vw, 8rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 1.5rem + 0vw, 1.5rem);
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-people__section {
    grid-template-columns: 1fr 1fr;
    column-gap: calc(0.0211640212 * min(100vw, 1512px));
    row-gap: calc(0.0423280423 * min(100vw, 1512px));
  }
}
.p-people__section:nth-of-type(1)::before {
  content: "";
  display: block;
  width: clamp(3.75rem, 2.5551470588rem + 4.9019607843vw, 7.1875rem);
  height: clamp(3.6875rem, 2.4926470588rem + 4.9019607843vw, 7.125rem);
  background: url(/work/recruit/assets/img/sales/ic_target.png) center/contain no-repeat;
  position: absolute;
  top: 0;
  right: 0;
}
.p-people__section:nth-of-type(2)::before {
  content: "";
  display: block;
  width: clamp(3.4375rem, 2.4164438503rem + 4.1889483066vw, 6.375rem);
  height: clamp(3.1875rem, 2.253342246rem + 3.8324420677vw, 5.875rem);
  background: url(/work/recruit/assets/img/sales/ic_bag.png) center/contain no-repeat;
  position: absolute;
  top: 0;
  right: 0;
}
.p-people__section:nth-of-type(3)::before {
  content: "";
  display: block;
  width: clamp(3.4375rem, 2.4164438503rem + 4.1889483066vw, 6.375rem);
  height: clamp(3.5625rem, 2.5197192513rem + 4.2780748663vw, 6.5625rem);
  background: url(/work/recruit/assets/img/sales/ic_clock.png) center/contain no-repeat;
  position: absolute;
  top: 0;
  right: 0;
}
.p-people__ttl {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .p-people__ttl {
    width: auto;
    height: 4rem;
  }
}
.p-people__ttl img {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .p-people__ttl img {
    width: auto;
  }
}
@media screen and (min-width: 960px) {
  .p-people__ttl-group {
    grid-column: 1/3;
  }
}
.p-people__lead {
  font-feature-settings: "palt" on;
  font-size: clamp(1.125rem, 0.9077540107rem + 0.8912655971vw, 1.75rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.72px;
}
.p-people__lead.u-white {
  color: var(--color-white);
}
.p-people__text {
  font-size: clamp(0.875rem, 0.7446524064rem + 0.5347593583vw, 1.25rem);
  font-weight: 500;
  line-height: 175%;
  text-align: justify;
}
.p-people__text.u-white {
  color: var(--color-white);
}
.p-people__bg-img {
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  aspect-ratio: 3/2;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .p-people__bg-img {
    margin-top: 4rem;
    grid-column: 1/3;
  }
}
.p-people__bg-section__wrap {
  width: clamp(21.5625rem, -1.0093582888rem + 92.6024955437vw, 86.5rem);
  margin: clamp(4rem, 2.6096256684rem + 5.7040998217vw, 8rem) auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
}
@media screen and (min-width: 960px) {
  .p-people__bg-section__wrap {
    grid-template-columns: 1fr 1fr;
  }
}
.p-people__bg-section {
  padding: clamp(3rem, 1.9572192513rem + 4.2780748663vw, 6rem) clamp(1.5rem, -0.064171123rem + 6.4171122995vw, 6rem);
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  background-blend-mode: overlay, normal;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 1.3262032086rem + 0.7130124777vw, 2rem);
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-people__bg-section:nth-of-type(1) {
    grid-column: 1/3;
    grid-template-columns: auto 1fr;
  }
  .p-people__bg-section:nth-of-type(1) .p-people__ttl {
    margin-bottom: 2rem;
  }
}
.p-people__bg-section:nth-of-type(1)::before {
  content: "";
  display: block;
  width: clamp(3.4375rem, 2.5902406417rem + 3.4759358289vw, 5.875rem);
  height: clamp(3.5rem, 2.4137700535rem + 4.4563279857vw, 6.625rem);
  background: url(/work/recruit/assets/img/sales/ic_bell.png) center/contain no-repeat;
  position: absolute;
  top: 1.75625rem;
  right: 1.35625rem;
  rotate: 10deg;
  z-index: -1;
}
@media screen and (min-width: 960px) {
  .p-people__bg-section:nth-of-type(1)::before {
    top: 5rem;
    right: 5.0625rem;
  }
}
@media screen and (min-width: 960px) {
  .p-people__bg-section:nth-of-type(2) {
    row-gap: 3rem;
    align-content: flex-start;
  }
  .p-people__bg-section:nth-of-type(2) .p-people__ttl-sub {
    margin-bottom: 3rem;
  }
  .p-people__bg-section:nth-of-type(2) .p-people__ttl {
    height: 6.75rem;
  }
  .p-people__bg-section:nth-of-type(2) .p-people__ttl.u-06 {
    height: 3rem;
  }
  .p-people__bg-section:nth-of-type(2) .p-people__ttl-group {
    grid-column: 1/2;
  }
}
.p-people__bg-section:nth-of-type(2)::before {
  content: "";
  display: block;
  width: clamp(3.4375rem, 2.3947192513rem + 4.2780748663vw, 6.4375rem);
  height: clamp(3.96375rem, 2.7606417112rem + 4.935828877vw, 7.425rem);
  background: url(/work/recruit/assets/img/sales/ic_memo.png) center/contain no-repeat;
  position: absolute;
  top: 1.75625rem;
  right: 1.35625rem;
  rotate: 11.7deg;
  z-index: -1;
}
@media screen and (min-width: 960px) {
  .p-people__bg-section:nth-of-type(2)::before {
    top: 3.625rem;
    right: 3.6875rem;
  }
}
@media screen and (min-width: 960px) {
  .p-people__bg-section:nth-of-type(3) {
    row-gap: 3rem;
    align-content: flex-start;
  }
  .p-people__bg-section:nth-of-type(3) .p-people__ttl-sub {
    margin-bottom: 3rem;
  }
  .p-people__bg-section:nth-of-type(3) .p-people__ttl {
    height: 3rem;
  }
  .p-people__bg-section:nth-of-type(3) .p-people__ttl-group {
    grid-column: 1/2;
  }
  .p-people__bg-section:nth-of-type(3) .p-people__text {
    margin-bottom: min(3.9682539683vw, 60px);
  }
  .p-people__bg-section:nth-of-type(3) .p-people__text.u-06 {
    margin-bottom: 0;
  }
}
.p-people__bg-section:nth-of-type(3)::before {
  content: "";
  display: block;
  width: clamp(3.125rem, 2.1321858289rem + 4.073083779vw, 5.98125rem);
  height: clamp(3.9375rem, 2.6861631016rem + 5.1336898396vw, 7.5375rem);
  background: url(/work/recruit/assets/img/sales/ic_coffee.png) center/contain no-repeat;
  position: absolute;
  top: 1.75625rem;
  right: 1.35625rem;
  rotate: 5deg;
  z-index: -1;
}
@media screen and (min-width: 960px) {
  .p-people__bg-section:nth-of-type(3)::before {
    top: 3.25rem;
    right: 3.35rem;
  }
}
.p-people__bg-section.u-orange {
  background: var(--gradation-orange, linear-gradient(316deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 56.27%), #f57920);
}
.p-people__bg-section.u-blue {
  background: var(--gradation-blue, linear-gradient(316deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 56.27%), #2073f5);
}
.p-people__bg-section.u-green {
  background: var(--gradation-green, linear-gradient(316deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 56.27%), #40d039);
}
.p-people__img-circle {
  width: clamp(11.25rem, 8.8602941176rem + 9.8039215686vw, 18.125rem);
  aspect-ratio: 1;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .p-people__img-circle {
    grid-column: 1/2;
    grid-row: 2/4;
    margin-right: 4rem;
  }
}
.p-people__img {
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  aspect-ratio: 4/3;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .p-people__img {
    margin-top: auto;
  }
}
.p-people .p-home-people {
  padding-top: clamp(4.5rem, 3.2834224599rem + 4.991087344vw, 8rem);
}
@media screen and (min-width: 960px) {
  .p-people .p-home-people {
    width: calc(0.7883597884 * min(100vw, 1512px));
    margin: 0 auto;
  }
}
.p-people .p-home-people .p-people__ttl-group {
  width: 88.4615384615vw;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .p-people .p-home-people .p-people__ttl-group {
    width: 100%;
  }
}
.p-people .p-home-people__ttl {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 960px) {
  .p-people .p-home-people__ttl {
    width: auto;
    height: min(4.2328042328vw, 64px);
    margin-bottom: min(4.2328042328vw, 64px);
  }
}
.p-people .p-home-people__ttl img {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .p-people .p-home-people__ttl img {
    width: auto;
  }
}
.p-people .p-home-people .splide__track {
  padding-left: 4.1025641026vw !important;
  padding-right: 4.1025641026vw !important;
}
@media screen and (min-width: 960px) {
  .p-people .p-home-people .splide__track {
    padding: 0 !important;
  }
}
.p-people .p-home-people .splide__arrows {
  left: 6.1538461538vw;
}
@media screen and (min-width: 960px) {
  .p-people .p-home-people .splide__arrows {
    left: 0;
  }
}
.p-people .c-pattern__bg {
  overflow: hidden;
}

.p-requirement__section {
  padding-top: clamp(4.5rem, 3.2834224599rem + 4.991087344vw, 8rem);
}
.p-requirement__ttl {
  margin-bottom: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
}
@media screen and (min-width: 960px) {
  .p-requirement__ttl {
    height: calc(0.0317460317 * min(100vw, 1512px));
  }
}
.p-requirement__ttl.u-mb {
  margin-bottom: 0;
}
.p-requirement__text {
  margin-bottom: clamp(2rem, 1.3048128342rem + 2.8520499109vw, 4rem);
  text-align: justify;
  font-size: clamp(0.9375rem, 0.8288770053rem + 0.4456327986vw, 1.25rem);
  font-weight: 500;
  line-height: 1.75;
}
.p-requirement__sttl {
  margin-bottom: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  font-feature-settings: "palt" on;
  font-size: clamp(1.25rem, 0.9893048128rem + 1.0695187166vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.8px;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .p-requirement__sttl {
    letter-spacing: 1.28px;
  }
}
.p-requirement__list {
  margin-bottom: clamp(2rem, 1.3048128342rem + 2.8520499109vw, 4rem);
  display: grid;
  row-gap: clamp(3.5rem, 2.6310160428rem + 3.5650623886vw, 6rem);
}
.p-requirement__list__item {
  padding: clamp(1.5rem, 0.6310160428rem + 3.5650623886vw, 4rem);
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  background: url(/work/recruit/assets/img/common/bg_tile.png) top left/200px 200px repeat;
  display: grid;
  grid-template-columns: clamp(3.5rem, 2.5441176471rem + 3.9215686275vw, 6.25rem) auto;
  column-gap: clamp(1rem, -0.0427807487rem + 4.2780748663vw, 4rem);
  align-items: flex-start;
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-requirement__list__item {
    display: flex;
  }
}
.p-requirement__list__item + .p-requirement__list__item::before {
  content: "";
  display: block;
  width: clamp(1.875rem, 1.2232620321rem + 2.6737967914vw, 3.75rem);
  aspect-ratio: 2/1;
  background: url(/work/recruit/assets/img/requirement/ic_arrow.svg) center/contain no-repeat;
  position: absolute;
  bottom: calc(100% + clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem));
  left: 50%;
  translate: -50% 0;
}
.p-requirement__list__column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "area1 area2" "area3 area3" "area4 area4";
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-requirement__list__column {
    grid-template-areas: "area1 area3" "area2 area4";
    column-gap: min(4.2328042328vw, 64px);
    row-gap: min(6.2169312169vw, 94px);
  }
}
.p-requirement__list__column .p-requirement__list__item:nth-of-type(1) {
  margin-bottom: 4.1025641026vw;
  grid-template-columns: 1fr;
  grid-area: area1;
}
@media screen and (min-width: 960px) {
  .p-requirement__list__column .p-requirement__list__item:nth-of-type(1) {
    margin-bottom: 0;
    align-self: self-start;
    flex-direction: column;
  }
}
.p-requirement__list__column .p-requirement__list__item:nth-of-type(1)::before {
  content: "";
  display: block;
  width: clamp(1.875rem, 1.2232620321rem + 2.6737967914vw, 3.75rem);
  aspect-ratio: 2/1;
  background: url(/work/recruit/assets/img/requirement/ic_arrow.svg) center/contain no-repeat;
  position: absolute;
  bottom: calc(100% + clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem));
  left: 50%;
  translate: -50% 0;
}
.p-requirement__list__column .p-requirement__list__item:nth-of-type(1) .p-requirement__list__num {
  margin-bottom: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
}
.p-requirement__list__column .p-requirment__list__arrow {
  margin-bottom: 4.1025641026vw;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-requirement__list__column .p-requirment__list__arrow {
    display: none;
  }
}
.p-requirement__list__column .p-requirment__list__arrow img {
  position: absolute;
  bottom: 0;
  height: calc(100% + clamp(0.9375rem, 0.611631016rem + 1.3368983957vw, 1.875rem) + clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem));
}
.p-requirement__list__column .p-requirement__list__item:nth-of-type(3) {
  margin-bottom: 12.0512820513vw;
  grid-area: area3;
}
@media screen and (min-width: 960px) {
  .p-requirement__list__column .p-requirement__list__item:nth-of-type(3) {
    margin-bottom: 0;
    flex-direction: column;
  }
  .p-requirement__list__column .p-requirement__list__item:nth-of-type(3)::before {
    content: "";
    display: block;
    width: clamp(1.875rem, 1.2232620321rem + 2.6737967914vw, 3.75rem);
    aspect-ratio: 2/1;
    background: url(/work/recruit/assets/img/requirement/ic_arrow.svg) center/contain no-repeat;
    position: absolute;
    bottom: calc(100% + clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem));
    left: 50%;
    translate: -50% 0;
  }
}
.p-requirement__list__column .p-requirement__list__item:nth-of-type(4) {
  grid-area: area4;
}
@media screen and (min-width: 960px) {
  .p-requirement__list__column .p-requirement__list__item:nth-of-type(4) {
    flex-direction: column;
  }
}
.p-requirement__list__num {
  margin-top: 0.46875rem;
  font-family: "Manrope", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(1rem, 0.7393048128rem + 1.0695187166vw, 1.75rem);
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, 0.1631016043rem + 0.3565062389vw, 0.5rem);
}
@media screen and (min-width: 960px) {
  .p-requirement__list__num {
    width: 6.25rem;
  }
}
.p-requirement__list__num span {
  width: clamp(1rem, 0.7393048128rem + 1.0695187166vw, 1.75rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--color-orange);
  color: var(--color-white);
  font-family: "Manrope", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(0.625rem, 0.4946524064rem + 0.5347593583vw, 1rem);
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 960px) {
  .p-requirement__list__wrap {
    flex: 1;
  }
}
.p-requirement__list__ttl {
  font-feature-settings: "palt" on;
  font-size: clamp(1.125rem, 0.9512032086rem + 0.7130124777vw, 1.625rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.72px;
}
@media screen and (min-width: 960px) {
  .p-requirement__list__ttl {
    letter-spacing: 1.04px;
  }
}
.p-requirement__list__note {
  margin-top: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  font-size: clamp(0.625rem, 0.4946524064rem + 0.5347593583vw, 1rem);
  font-weight: 500;
  line-height: 1.75;
}
.p-requirement__list__btn {
  margin-top: clamp(1rem, 1rem + 0vw, 1rem);
  grid-column: 2/3;
}
@media screen and (min-width: 960px) {
  .p-requirement__list__btn {
    margin-top: 0;
    margin-left: auto;
  }
}
.p-requirement__list__content {
  padding: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem) clamp(1.5rem, 1.3262032086rem + 0.7130124777vw, 2rem);
  margin-top: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  background: var(--gradation-orange, linear-gradient(316deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 56.27%), #f57920);
  background-blend-mode: overlay, normal;
}
.p-requirement__list__sttl {
  color: var(--color-white);
  font-size: clamp(0.875rem, 0.6143048128rem + 1.0695187166vw, 1.625rem);
  font-weight: 700;
  line-height: 1.5;
}
.p-requirement__list__text {
  margin-top: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  color: var(--color-white);
  text-align: justify;
  font-size: clamp(0.75rem, 0.6196524064rem + 0.5347593583vw, 1.125rem);
  font-weight: 500;
  line-height: 1.75;
}
.p-requirement__bg-color {
  padding: clamp(1.5rem, 0.6310160428rem + 3.5650623886vw, 4rem);
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  background: var(--gradation-orange, linear-gradient(316deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 56.27%), #f57920);
  background-blend-mode: overlay, normal;
}
.p-requirement__bg-color__ttl {
  margin-bottom: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  color: var(--color-white);
  font-size: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
}
.p-requirement__bg-color__text {
  color: var(--color-white);
  text-align: justify;
  font-size: clamp(0.75rem, 0.5762032086rem + 0.7130124777vw, 1.25rem);
  font-weight: 500;
  line-height: 1.75;
}
.p-requirement__bg-color__text + p {
  margin-top: clamp(1.3125rem, 1.008355615rem + 1.247771836vw, 2.1875rem);
}
.p-requirement__ssection {
  padding-top: clamp(4.5rem, 3.9786096257rem + 2.1390374332vw, 6rem);
}
.p-requirement__btn-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
}
@media screen and (min-width: 960px) {
  .p-requirement__btn-area {
    grid-template-columns: repeat(4, 1fr);
  }
}
.p-requirement__btn-area a {
  width: 100%;
  justify-content: space-between;
}
.p-requirement__swrap {
  margin-top: clamp(4.5rem, 3.9786096257rem + 2.1390374332vw, 6rem);
}
.p-requirement__dlist {
  border-top: 0.5px solid var(--border-gray, rgba(0, 0, 0, 0.2));
}
@media screen and (min-width: 960px) {
  .p-requirement__dlist {
    border-top-width: 1px;
  }
}
.p-requirement__ditem {
  padding-top: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  padding-bottom: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  border-bottom: 0.5px solid var(--border-gray, rgba(0, 0, 0, 0.2));
}
@media screen and (min-width: 960px) {
  .p-requirement__ditem {
    border-bottom-width: 1px;
    display: grid;
    grid-template-columns: 12.5rem 1fr;
    column-gap: 2rem;
  }
}
.p-requirement__ditem.u-center {
  align-items: center;
}
.p-requirement__dttl {
  margin-bottom: 0.5rem;
  font-size: clamp(0.875rem, 0.7446524064rem + 0.5347593583vw, 1.25rem);
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (min-width: 960px) {
  .p-requirement__dttl {
    margin-bottom: 0;
  }
}
.p-requirement__desc {
  font-size: clamp(0.875rem, 0.7446524064rem + 0.5347593583vw, 1.25rem);
  font-weight: 500;
  line-height: 1.75;
}
.p-requirement .c-underline {
  color: var(--color-orange);
  text-decoration-line: underline;
  text-underline-position: from-font;
}
.p-requirement .c-underline.u-dib {
  display: inline-block;
}

.p-qa__section {
  padding-top: clamp(4.5rem, 3.2834224599rem + 4.991087344vw, 8rem);
}
.p-qa__ttl {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: clamp(2rem, 1.3048128342rem + 2.8520499109vw, 4rem);
}
@media screen and (min-width: 960px) {
  .p-qa__ttl {
    height: calc(0.0317460317 * min(100vw, 1512px));
  }
}
.p-qa__ssection {
  padding: clamp(2rem, 1.3048128342rem + 2.8520499109vw, 4rem) clamp(1.5rem, 0.6310160428rem + 3.5650623886vw, 4rem);
  margin-top: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  background: url(/work/recruit/assets/img/common/bg_tile.png) top left/200px 200px repeat;
}
.p-qa__sttl {
  margin-bottom: 2rem;
  font-feature-settings: "palt" on;
  font-size: clamp(1.125rem, 0.9512032086rem + 0.7130124777vw, 1.625rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.72px;
}
@media screen and (min-width: 960px) {
  .p-qa__sttl {
    letter-spacing: 1.04px;
  }
}
.p-qa__sttl__note {
  display: block;
  margin-top: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  font-feature-settings: "palt" on;
  font-size: clamp(0.75rem, 0.7065508021rem + 0.1782531194vw, 0.875rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.48px;
}
@media screen and (min-width: 960px) {
  .p-qa__sttl__note {
    display: inline-block;
    margin-top: 0;
    margin-left: 1rem;
    letter-spacing: 0.56px;
  }
}
.p-qa__list {
  display: grid;
  gap: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
}
.p-qa__list__item {
  border-radius: clamp(0.5rem, 0.3262032086rem + 0.7130124777vw, 1rem);
  background: var(--color-white);
}
.p-qa__list__item.is-open .p-qa__list__ic::before {
  rotate: 0deg;
}
.p-qa__list__item.is-open .p-qa__list__acco {
  grid-template-rows: 1fr;
}
.p-qa__list__btn {
  padding: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
@media screen and (min-width: 960px) {
  .p-qa__list__btn {
    cursor: pointer;
  }
}
.p-qa__list__ttl {
  text-align: justify;
  font-size: clamp(0.875rem, 0.7446524064rem + 0.5347593583vw, 1.25rem);
  font-weight: 700;
  line-height: 1.75;
  flex: 1;
}
.p-qa__list__q, .p-qa__list__a {
  margin-top: clamp(0.40625rem, 0.3519385027rem + 0.2228163993vw, 0.5625rem);
  color: var(--color-orange);
  font-family: "Manrope", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(1rem, 0.8262032086rem + 0.7130124777vw, 1.5rem);
  font-weight: 600;
  line-height: 1;
}
.p-qa__list__ic {
  width: clamp(0.75rem, 0.4893048128rem + 1.0695187166vw, 1.5rem);
  height: clamp(1.5625rem, 1.3452540107rem + 0.8912655971vw, 2.1875rem);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.p-qa__list__ic::before, .p-qa__list__ic::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.125rem;
  background-color: var(--color-orange);
  position: absolute;
}
.p-qa__list__ic::before {
  rotate: 90deg;
  transition: 0.4s;
}
.p-qa__list__acco {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
  overflow: hidden;
}
.p-qa__list__body {
  min-height: 0;
  padding: 0 clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.p-qa__list__text {
  margin-bottom: clamp(1rem, 0.6524064171rem + 1.4260249554vw, 2rem);
  text-align: justify;
  font-feature-settings: "palt" on;
  font-size: clamp(0.875rem, 0.7446524064rem + 0.5347593583vw, 1.25rem);
  font-weight: 500;
  line-height: 1.75;
  flex: 1;
}